
/* #region CSS Reset and Setup --------------- */
/* html, body, div,
p, a, img, figure,
dl, dt, dd,
ul, ol, li,
button,
h1, h2, h3, h4, h5, h6,
hr, header, footer, section, article {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
} */

/* Document setup */
html {
}

body {
	padding: 0;
	background: #fbfbfb;
	color: var(--wp--preset--color--default-text);
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	text-align: center;
}
#bodybox {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	margin: 0 auto;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	border: none;
	max-width: 100%;
	vertical-align: middle
}

svg {
	fill: currentcolor;
}

*, *::before, *::after {
	box-sizing: border-box;
}

.inner {
	display: block;
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
}
@media print {
	body {
		width: 1000px;
		-webkit-transform: scale(0.79);
		transform: scale(0.79);
		-webkit-transform-origin: 0 0;
		transform-origin: 0 0;
	}
}

@media only screen and (max-width: 1024px) {
	body {
		-webkit-text-size-adjust: 100%;
	}
}

/* #endregion -------------------------------- */



/* #region Header =================================== */
.global-header {
	width: 100%;
	min-height: 60px;
	background: var(--wp--preset--color--primary);
	color: #fff;
	text-align: left;
	z-index: 50;
}
.gh-title-block {
	position: relative;
	padding: 80px 40px;
}
.gh-title-block > .title {
	display: inline-block;
	margin: 0;
	margin-right: 1em;
	font-weight: 700;
	font-size: 32px;
	line-height: 1.3;
	letter-spacing: 0.05em;
}
.gh-title-block .title-link {
	display: block;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.gh-title-block .title-link:hover {
	opacity: 0.6;
}
.gh-title-block .description {
	display: inline-block;
	margin: 7px 0;
	font-weight: 500;
	font-size: 14px;
}
@media only screen and (max-width: 480px) {
	.gh-title-block {
		padding: 60px 30px;
	}
	.gh-title-block > .title {
		font-size: 24px;
	}
}
/* #endregion Header -------------------------------- */

/* #region Footer =================================== */
.global-footer {
	padding: 2rem;
	background: var(--wp--preset--color--primary);
	color: #fff;
}
.global-footer > .inner {
	max-width: 1560px;
}
/* #endregion Footer -------------------------------- */

/* #region Main =================================== */
.main-container {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	column-gap: 60px;
	min-height: 800px;
	padding: 100px 40px;
	background: #fbfbfb;
}
.site-main {
	flex: 0 1 820px;
	max-width: var(--wp--style--global--content-size);
	margin: 0 auto 80px;
}
.site-main .notfound {
	padding: 100px 0;
}
.site-aside {
	flex: 0 0 300px;
	max-width: var(--wp--style--global--content-size);
	margin: 0 auto 40px;
}

.site-aside a {
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.site-aside a:hover {
	opacity: 0.3;
}
@media only screen and (max-width: 1024px) {
	.main-container {
		display: block;
	}
}
@media only screen and (max-width: 480px) {
	.main-container {
		padding: 60px 30px 40px;
	}
}
/* #endregion Main -------------------------------- */

/* #region archive =================================== */
/* アーカイブページタイトル */
.page-title {
	margin: 0;
	padding: 0 10px 20px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-align: left;
}

/* 記事一覧 */
.entries {
	border-top: 1px solid #ccc;
	text-align: left;
}
.entries-item {
	border-bottom: 1px solid #ccc;
}
.entries-item a {
	display: block;
	padding:  40px 10px;
	transition: background 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.entries-item a:hover {
	background: #f7f7f7;
}
.entries-item .entry-meta {
	margin-bottom: 5px;
	font-size: 16px;
	font-weight: 500;
}
.entries-item .entry-title {
	margin: 0;
	margin-bottom: 0.6em;
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 0.03em;
}
@media only screen and (max-width: 480px) {
	.entries-item .entry-title {
		font-size: 18px;
	}
}

/* ページネーション */
.pagination {
	padding: 20px 10px;
}
.nav-links {
	display: flex;
	justify-content: center;
}
.nav-links a, .nav-links span {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin: 10px;
	border-radius: 4px;
	background-color: #fff;
	font-weight: 700;
	line-height: 40px;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.nav-links a:hover {
	opacity: 0.3;
}
.nav-links .current {
	color: #fff;
	background: var(--wp--preset--color--default-text);
}

/* #endregion archive -------------------------------- */

/* #region single =================================== */
.entry-content {
	font-size: 18px;
	line-height: 1.85;
	text-align: left;
}
@media only screen and (max-width: 480px) {
	.entry-content {
		font-size: 16px;
	}
}

.entry-header {
	margin-bottom: 40px;
}
.entry-header .entry-title {
	margin: 0;
	margin-bottom: 0.5em;
	font-weight: 500;
	font-size: 30px;
	line-height: 1.5;
	letter-spacing: 0.03em;
}
.entry-header .entry-title-link {
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.entry-header .entry-title-link:hover {
	opacity: 0.3;
}

.entry-meta {
	color: #777;
	font-size: 13px;
}
.entry-meta-item {
	display: inline-flex;
	align-items: center;
	margin-right: 1em;
	line-height: 1;
	vertical-align: middle;
}
.entry-meta-item .icon {
	margin-right: 3px;
	width: 16px;
	height: 16px;
}
.entry-meta-item > a {
	margin-right: 1em;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.entry-meta-item > a:hover {
	opacity: 0.3;
}
.entry-meta-item .entry-tag {
	padding: 2px 5px;
	border-radius: 2px;
	background: #eee;
	font-size: 0.9em;
}
.entry-meta-item .entry-tag::before {
	content: '#';
}
@media only screen and (max-width: 480px) {
	.entry-header .entry-title {
		font-size: 20px;
	}
}

/* .entry-main */
.entry-main {
	padding-bottom: 40px;
}


.entry-main h1.wp-block-heading {
	font-size: 1.5em;
}
.entry-main h2.wp-block-heading {
	font-size: 1.25em;
}
.entry-main h3.wp-block-heading {
	font-size: 1.125em;
}
.entry-main h4.wp-block-heading {
	font-size: 1.1em;
}
.entry-main h5.wp-block-heading {
	font-size: 1em;
}
.entry-main h6.wp-block-heading {
	font-size: 0.8em;
}

.is-layout-flow .wp-block-separator {
	border-top: 1px solid #ccc;
}

.is-layout-flow a {
	font-weight: 500;
	color: #354ce4;
    text-decoration: underline;
	transition: opacity 0.3s;
}
.is-layout-flow a:hover {
    text-decoration: none;
	opacity: 0.6;
}
.is-layout-flow .wp-block-file a[href $='.pdf']:not(.wp-block-file__button) {
    display: inline-block;
	padding-left: 25px;
	margin-top: 1.2em;
	margin-bottom: 1.2em;
	background: url(../images/icon-pdf.svg) center left no-repeat;
	font-weight: 500;
	transition: opacity 0.3s;
}
.is-layout-flow .wp-block-file a[href $='.pdf']:not(.wp-block-file__button):hover {
    text-decoration: none;
	opacity: 0.6;
}
.is-layout-flow .wp-block-file__button {
	padding: 0.3em 2em;
	color: #fff;
	text-decoration: none;
}



.entry-footer {
	padding-top: 20px;
	border-top: 1px solid #ccc;
}



/* ページャー */
.single-pager-box {
	display: flex;
	justify-content: space-between;
	font-weight: 500;
}

.single-pager {
	flex: 0 0 33%;
}
.single-pager.center {
	text-align: center;
}
.single-pager.next {
	text-align: right;
}
.single-pager .link {
	display: inline-flex;
	align-items: center;
	max-width: 12em;
	line-height: 1.3em;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.single-pager .link:hover {
	opacity: 0.3;
}
.single-pager .text {
	display: inline-block;
	margin: 0;
	letter-spacing: 0.05em;
}

.single-pager .link svg, .single-pager .link svg {
	margin-top: 2px;
	width: 22px;
	height: 22px;
}

@media only screen and (max-width: 1024px) {
	.single-pager {
		/* display: block; */
	}
	.single-pager-link {
		max-width: 7em; /* 省略せずに表示するサイズを指定 */
	}
}
/* #endregion single -------------------------------- */

/* #region widget =================================== */
.my-sidebar .wp-block {
	font-family: 'Noto Sans JP', sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}

.my-sidebar .wp-block-heading {
	margin-bottom: 0.5em;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.1em;
}
.my-sidebar .wp-block-group {
	margin: 0 auto;
	padding: 20px 10px;
	border-bottom: 1px solid #ccc;
	text-align: left;
}

.my-sidebar ul, .my-sidebar ol {
	padding: 0;
	margin: 0;
	padding-left: 0.5em;
	margin-top: 5px;
	list-style: none;
}
.my-sidebar li {
	margin-bottom: 0.5em;
}
.my-sidebar li a {
	color: inherit;
	text-decoration: none;
}

.my-sidebar .wp-block-search__label {
	display: none;
}
.my-sidebar .wp-block-search__button {
	padding: 10px;
	border-radius: 4px;
	font-size: 14px;
	white-space: nowrap;

}
/* #endregion widget -------------------------------- */

/* #region Theme ----------------------------- */



/* .entry-content > *.alignfull {
	margin-left: calc( var(--wp--custom--gutter) * -1);
	margin-right: calc( var(--wp--custom--gutter) * -1);
} */

/* 幅広・全幅ブロック以外にデフォルトコンテンツ幅を指定 */
/* .entry-content > *:not(.alignwide):not(.alignfull) {
	max-width: var(--wp--style--global--content-size);
} */

/* 幅広ブロックに幅広コンテンツ幅を指定 */
/* .entry-content > *.alignwide {
	max-width: var(--wp--style--global--wide-size);
} */

/* 全幅ブロックを除いて左右にオートマージンを付与する */
/* .entry-content > *:not(.alignfull) {
	margin-right: auto;
	margin-left: auto;
}

.entry-main > * + h1,
.entry-main > * + h2,
.entry-main > * + h3,
.entry-main > * + h4,
.entry-main > * + h5,
.entry-main > * + h6 {
	margin-top: 3rem;
} */


/* #endregion -------------------------------- */

