:root {
	--font-family-base: Noto Sans JP, sans-serif;
	--font-weight-base: 400;
	--lineheight-base: 1.5;
	--font-size-base: 1.4rem;
	--color-primary: #45B2C2;
	--color-warning: #f00;
	--input-border-color: #e6e6e6;
	--input-border-width: 0.1rem;
	--input-font-size: 14px;
	--input-font-weight: 400;
	--input-background: #fff;
}

* {
	box-sizing: border-box;
}

html {
	font-size: 10px;
	overflow-x: hidden;
}

html.noscroll {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	overflow-y: scroll;
	overflow-x: hidden;
}

body {
	background-color: #fff;
	color: #1E1E1E;
	margin: 0;
	font-family: var(--font-family-base);
	font-weight: var(--font-weight-base);
	font-feature-settings: "palt" 1, "pkna" 1, "pwid" 1, "pkna" 1;
	font-size: var(--font-size-base);
	line-height: var(--lineheight-base);
	text-align: left;
	position: relative;
	overflow-x: hidden;
}

dl {
	list-style-type: none;
	margin: 0;
	padding-left: 0;
}

:is(dir,
menu,
ol,
ul) ul {
	list-style-type: disc;
}

b,
strong {
	font-weight: 700;
}

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

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

table {
	border-collapse: collapse;
}

th {
	font-weight: 400;
	text-align: inherit;
	text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

select {
	word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
	-webkit-appearance: button;
}

textarea {
	overflow: auto;
	resize: vertical;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto;
}

[type=search] {
	outline-offset: -2px;
	-webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

[hidden] {
	display: none !important;
}

.aligncenter {
	text-align: center;
}

.alignright {
	text-align: right;
}

.alignleft {
	text-align: left;
}

img.aligncenter {
	display: block;
	margin: auto;
}

img.alignright {
	display: block;
	margin-left: auto;
}

img.alignleft {
	display: block;
	margin-right: auto;
}

.container {
	margin: auto;
	max-width: 123rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	width: 100%;
}

.inner {
	margin: auto;
	max-width: 103rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	width: 100%;
}

.d-none {
	display: none !important;
}

.d-block {
	display: block !important;
}

.d-flex {
	display: flex !important;
}

.text-justify {
	text-align: justify !important;
}

.text-wrap {
	white-space: normal !important;
}

.text-nowrap {
	white-space: nowrap !important;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.text-center {
	text-align: center !important;
}

.text-lowercase {
	text-transform: lowercase !important;
}

.text-uppercase {
	text-transform: uppercase !important;
}

.text-capitalize {
	text-transform: capitalize !important;
}

.text-underline {
	text-decoration: underline;
}

.c-breadcrumb {
	list-style-type: none;
	padding-left: 0;
	display: flex;
	font-size: 13px;
	margin-bottom: 30px;
}

.c-breadcrumb li:not(:first-child)::before {
	content: ">";
	margin: 0 6px;
}

.c-breadcrumb a {
	color: #1F73B7;
}

.p-header {
	border-bottom: 1px solid #ccc;
	padding: 10px 0;
	margin-bottom: 20px;
}

.p-header .container {
	display: flex;
	justify-content: space-between;
}

.p-header .logo img {
	max-height: 37px;
}

.p-footer {
	border-top: 1px solid #ccc;
	margin-top: 50px;
	padding: 20px 0;
}

.form-control {
	background-color: var(--input-background);
	background-clip: padding-box;
	border: var(--input-border-width) solid var(--input-border-color);
	color: #000;
	display: block;
	font-family: var(--font-family-base);
	font-size: var(--input-font-size);
	font-weight: var(--input-font-weight);
	line-height: 1.5;
	padding: 0.5rem 1rem;
	width: 100%;
	height: 6rem;
}

.form-control::-ms-expand {
	background-color: transparent;
	border: 0;
}

.form-control:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #000;
}

.form-control::-moz-placeholder {
	color: #e6e6e6;
	opacity: 1;
}

.form-control::placeholder {
	color: #e6e6e6;
	opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
	background-color: #1E1E1E;
	opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.table {
	width: 100%;
}

.c-h1 {
	margin-top: 0;
	margin-bottom: 30px;
}

.c-h2 {
	margin-top: 0;
	margin-bottom: 20px;
}

.c-h3 {
	margin-top: 0;
	margin-bottom: 20px;
}

a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.no-list-style {
	list-style-type: none !important;
}

.l-wrapper {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.l-sidebar .post-list {
	font-size: 14px;
}

.category-grid {
	display: grid;
	gap: 4rem;
}

.post-list {
	list-style-type: none;
	padding-left: 0;
}

.post-list li {
	margin-bottom: 20px;
}

.post-list li:last-child {
	margin-bottom: 0;
}

.single-footer {
	border-top: 1px solid #ccc;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-top: 50px;
	padding-top: 20px;
}

.single-footer .post-list {
	font-size: 14px;
}

.article-body code,
.article-body pre {
	background: #f7f7f7;
	border: 1px solid #ddd;
	border-radius: 3px;
	display: block;
	margin-block: 1em;
	padding: 1rem 1.5rem;
	overflow: auto;
	white-space: pre;
	width: 100%;
}

.article-body :not(pre) > code {
	display: inline-block;
	margin: 0;
	padding: 0 1rem;
	vertical-align: middle;
	width: auto;
}

.article-body .box-menu,
.article-body kbd {
	box-sizing: border-box;
	background-color: #333;
	color: #fff;
	display: block;
	padding: 1rem;
}

.article-body .box-menu table,
.article-body kbd table {
	border: 0;
}

.article-body .box-menu table td,
.article-body .box-menu table th,
.article-body kbd table td,
.article-body kbd table th {
	border: 0;
	padding: 0;
}

.article-body p {
	min-height: 1em;
}

.article-body a {
	color: #1F73B7;
	text-decoration: underline;
}

.article-body a:hover {
	text-decoration: none;
}

.article-body .wp-block-list > li {
	margin-bottom: 1rem;
}

.article-body .wp-block-list > li:last-child {
	margin-bottom: 0;
}

.article-body .wp-block-list .wp-block-list {
	margin-top: 1rem;
}

.article-body .group-item {
	counter-reset: groupNum;
	margin-left: 2rem;
	padding-left: 2rem;
}

.article-body .group-item h4::before {
	content: counter(groupNum) ".";
	counter-increment: groupNum;
	margin-left: -2rem;
	margin-right: 0.5rem;
}

@media (min-width: 576px) {

.d-sm-none {
	display: none !important;
}

.d-sm-block {
	display: block !important;
}

.d-sm-flex {
	display: flex !important;
}

.text-sm-left {
	text-align: left !important;
}

.text-sm-right {
	text-align: right !important;
}

.text-sm-center {
	text-align: center !important;
}

}

@media (min-width: 768px) {

:root {
	--font-size-base: 1.5rem;
}

.d-md-none {
	display: none !important;
}

.d-md-block {
	display: block !important;
}

.d-md-flex {
	display: flex !important;
}

.text-md-left {
	text-align: left !important;
}

.text-md-right {
	text-align: right !important;
}

.text-md-center {
	text-align: center !important;
}

.c-h1 {
	margin-bottom: 50px;
}

.l-wrapper {
	flex-direction: row;
}

.l-sidebar {
	flex-shrink: 0;
	width: 25rem;
}

.l-main {
	width: calc(100% - 28rem);
}

.category-grid {
	grid-template-columns: repeat(2, 1fr);
}

}

@media (min-width: 992px) {

.d-lg-none {
	display: none !important;
}

.d-lg-block {
	display: block !important;
}

.d-lg-flex {
	display: flex !important;
}

.text-lg-left {
	text-align: left !important;
}

.text-lg-right {
	text-align: right !important;
}

.text-lg-center {
	text-align: center !important;
}

}

@media (min-width: 1200px) {

.d-xl-none {
	display: none !important;
}

.d-xl-block {
	display: block !important;
}

.d-xl-flex {
	display: flex !important;
}

.text-xl-left {
	text-align: left !important;
}

.text-xl-right {
	text-align: right !important;
}

.text-xl-center {
	text-align: center !important;
}

}

