@charset "utf-8";

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
共通
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リセットCSS
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
* {
	box-shadow: none;
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, address, cite, em, small, img, picture, dl, dt, dd, ol, ul, li, label, fieldset, legend, table, tr, th, td, hr, input, textarea, select, button,
main, article, aside, details, figure, figcaption, header, footer, hgroup, menu, nav, section, time { 
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	font-style: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

iframe, cite, main, article, aside, details, figure, figcaption, header, footer, hgroup, menu, nav, section, picture, audio, video { 
	display: block;
}

body {
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

a {
	display: inline-block;
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	image-rendering: -webkit-optimize-contrast;
}

svg {
	overflow: hidden;
	max-width: 100%;
	vertical-align: middle;
}

ol, ul {
	list-style: none;
	list-style-type: none;
}

table {
	border-spacing: 0;
}

input, textarea, select, button {
	border-radius: inherit;
	background: none;
	color: inherit;
	font-weight: inherit;
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	letter-spacing: inherit;
}

textarea {
	overflow: auto;
}

input:not([type="checkbox"]):not([type="radio"]), textarea, button {
	-webkit-appearance: none;
}

time {
	display: inline-block;
}

video {
	max-width: 100%;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ベース
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
:root {
	--color_gray:            #707070;
	--color_gray_light:      #959595;
	--color_gray_dark:       #5B7E96;
	--color_orange:          #d68a27;

	--font_main:             "Noto Sans CJK JP", "Noto Sans JP";
	/* --font_main:             "Noto Sans CJK JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", Meiryo, sans-serif; */
	--font_english:          "Roboto";
	/* --font_english:          "Helvetica Neue", Arial, Roboto, "Noto Sans CJK JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", Meiryo, sans-serif; */

	--opacity:               0.7;
	--content-width:         1120px;
	--padding-width:         5.4%;
	--padding-height:        70px;
	--text-underline-offset: 0.4em;
	--transition:            0.3s ease-in-out;
}

@media (min-width: 768px) {
:root {
	--padding-width:         30px;
	--padding-height:        100px;

	--header-width:          110px;
}
}

html {
	font-size: 62.5%;
}

body {
	overflow: hidden scroll;
	background: #000;
	color: #fff;
	font-weight: 500;
	font-size: 1.3em;
	font-family: var(--font_main);
	line-height: 2;
	letter-spacing: 0.02em;
}

main {
	overflow: hidden;
}

section,
.section {
	padding: var(--padding-height) 0;
}

.inner {
	max-width: calc(var(--content-width) + var(--padding-width) * 2);
	margin: 0 auto;
	padding: 0 var(--padding-width);
}

span:not([class]) {
	display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.5;
}

p:not([class]) + p:not([class]) {
	margin-top: 2em;
}

a {
	transition: var(--transition);
}

a::before,
a::after {
	transition: transform var(--transition);
}

a[href^="http"],
a[href^="mailto:"] {
	word-break: break-all;
}

iframe {
	max-width: 100%;
}

table {
	width: 100%;
	line-height: 1.5;
}

th {
	font-weight: inherit;
	text-align: left;
	vertical-align: top;
}

td {
	text-align: left;
	vertical-align: top;
}

video {
	cursor: pointer;
	object-fit: cover;
}

@media (min-width: 768px) {
body {
	font-size: 1.5em;
}

main {
	width: calc(100% - var(--header-width));
}

a[href^="tel:"] {
	pointer-events: none;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
アニメーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@keyframes fade {
0% {
	opacity: 0;
}

100% {
	opacity: 1;
}
}

@keyframes fade-up {
0% {
	opacity: 0;
	transform: translateY(30px);
}

100% {
	opacity: 1;
	transform: translateY(0);
}
}

@keyframes fade-down {
0% {
	opacity: 0;
	transform: translateY(-30px);
}

100% {
	opacity: 1;
	transform: translateY(0);
}
}

@keyframes fade-right {
0% {
	opacity: 0;
	transform: translateX(30px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}

@keyframes fade-left {
0% {
	opacity: 0;
	transform: translateX(-30px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}

@keyframes fade-zoom-in {
0% {
	opacity: 0;
	transform: scale(0.9);
}

100% {
	opacity: 1;
	transform: scale(1);
}
}

@keyframes fade-zoom-out {
0% {
	opacity: 0;
	transform: scale(1.1);
}

100% {
	opacity: 1;
	transform: scale(1);
}
}

@keyframes show-bottom {
0% {
	-webkit-clip-path: inset(100% 0 0 0);
	clip-path: inset(100% 0 0 0);
}

100% {
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
}
}

@keyframes show-left {
0% {
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
}

100% {
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
}
}

.animation {
	animation-duration: 0.6s;
	animation-timing-function: ease-out;
	animation-delay: 0.3s;
	animation-fill-mode: both;
}

.fade,
.fade-up,
.fade-down,
.fade-right,
.fade-left,
.fade-zoom-in,
.fade-zoom-out {
	opacity: 0;
}

.show-bottom {
	-webkit-clip-path: inset(100% 0 0 0);
	clip-path: inset(100% 0 0 0);
}

.show-left {
	animation-timing-function: cubic-bezier(0.5, 0.1, 0.5, 1);
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
}

.load .animation.fade {
	animation-name: fade;
}

.load .animation.fade-up {
	animation-name: fade-up;
}

.load .animation.fade-down {
	animation-name: fade-down;
}

.load .animation.fade-right {
	animation-name: fade-right;
}

.load .animation.fade-left {
	animation-name: fade-left;
}

.load .animation.fade-zoom-in {
	animation-name: fade-zoom-in;
}

.load .animation.fade-zoom-out {
	animation-name: fade-zoom-out;
}

.load .animation.show-bottom {
	animation-name: show-bottom;
}

.load .animation.show-left {
	animation-name: show-left;
}

.delay05 {
	animation-delay: 0.5s;
}

.delay06 {
	animation-delay: 0.6s;
}

.delay07 {
	animation-delay: 0.7s;
}

.delay09 {
	animation-delay: 0.9s;
}

.delay12 {
	animation-delay: 1.2s;
}

@media (min-width: 768px) {
@keyframes fade-right {
0% {
	opacity: 0;
	transform: translateX(40px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}

@keyframes fade-left {
0% {
	opacity: 0;
	transform: translateX(-40px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
見出し
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.section-heading {
	margin-bottom: 0.4em;
	font-weight: 700;
	font-size: 4.2rem;
	font-family: var(--font_english);
	line-height: 1.2;
}

.section-heading-english {
	margin-right: 20px;
}

.section-heading-japanese {
	font-size: 0.5em;
}

.section-header {
	margin-bottom: 30px;
}

.section-header .section-heading {
	margin-bottom: 0;
}

.page-header .section-heading {
	text-transform: uppercase;
}

.page-header + * {
	background: #fff;
	color: #000;
}

@media (min-width: 768px) {
.section-heading {
	font-size: 7rem;
}

.section-header .section-heading {
	display: inline-block;
	margin-right: 28px;
}

.section-header .section-description {
	display: inline-block;
	font-weight: 700;
	font-size: 1.8rem;
}
}


@media (min-width: 768px) {
	.pc {
		display: block;
	}	.sp {
		display: none;
	}
}
.pc {
	display: none;
	}

.sp {
	display: block;
}
/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リンク
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.link {
	display: table;
	margin: 30px auto 0;
	font-weight: 700;
	font-size: 1.4rem;
	font-family: var(--font_english);
	letter-spacing: 0.15em;
}

.link::after {
	display: inline-block;
	width: 2.6em;
	height: 2.6em;
	margin-left: 20px;
	border-radius: 50%;
	background: url("../img/common/arrow.svg") center center no-repeat #000;
	background-size: 30% auto;
	vertical-align: -1em;
	content: "";
	transition: background var(--transition), transform var(--transition);
}

.link:hover {
	color: var(--color_gray);
}

.link:hover::after {
	background-color: var(--color_gray);
	transform: translateX(4px);
}

@media (min-width: 768px) {
.link {
	font-size: 2rem;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
コンポーネント
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.align_center {
	text-align: center;
}

li.spacer {
	margin-bottom: 0;
}

.marquee {
	display: flex;
	overflow: hidden;
}

@keyframes marquee {
0% {
	transform: translateX(0);
}

100% {
	transform: translateX(-100%);
}
}

.marquee-content {
	padding-right: 0.5em;
	white-space: nowrap;
	animation: marquee 12s linear infinite;
}
 
@media (max-width: 767.9px) {
.table_block th {
	display: block;
}

.table_block td {
	display: block;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ローダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.loader {
	display: flex;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	background: #000;
	transition: 0.8s ease-in-out;
	justify-content: center;
	align-items: center;
}

.loader.hide {
	visibility: hidden;
	opacity: 0;
}

.loader-ul {
	display: flex;
}

@keyframes loader {
0%,
30%,
100% { 
	transform: scaleY(0.5);
}

15% { 
	transform: scaleY(1.0);
}
}

.loader-li {
	width: 6px;
	height: 60px;
	margin: 0 2px;
	background: #fff;
	animation: loader 1.5s ease-in-out infinite;
}

.loader-li:nth-child(2) {
	animation-delay: -1.4s;
}

.loader-li:nth-child(3) {
	animation-delay: -1.3s;
}

.loader-li:nth-child(4) {
	animation-delay: -1.2s;
}

.loader-li:nth-child(5) {
	animation-delay: -1.1s;
}

.loader-li:nth-child(6) {
	animation-delay: -1.0s;
}

.loader-li:nth-child(7) {
	animation-delay: -0.9s;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ヘッダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
header {
	position: relative;
}

.header-description {
	display: none;
}

.header-logo {
	position: fixed;
	top: 20px;
	left: var(--padding-width);
	z-index: 2;
	/* transition: opacity var(--transition);
	background: #FFF;
	padding: 4px; */
}

header.change .header-logo {
	/* mix-blend-mode: difference; */
}

.header-logo:hover {
	opacity: var(--opacity);
}

.header-overlay {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	background: #000;
	transition: var(--transition);
}

.header-overlay.show {
	visibility: visible;
	opacity: 0.5;
}

.header-inner {
	display: flex;
	position: fixed;
	top: 20px;
	right: var(--padding-width);
	z-index: 2;
	flex-flow: column;
}

.header-toggle {
	position: relative;
	width: 36px;
	height: 36px;
	margin-bottom: 26px;
	border-radius: 50%;
	background: var(--color_gray_light);
	cursor: pointer;
	transition: var(--transition);
	flex: none;
	align-self: center;
}

.header-toggle::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 10px;
	height: 10px;
	margin: auto;
	border-radius: 50%;
	background: #fff;
	content: "";
	transition: var(--transition);
}

.header-toggle:hover {
	background: #fff;
}

.header-toggle:hover::before {
	background: var(--color_gray_light);
}

.header-nav {
	position: fixed;
	overflow-y: auto;
	visibility: hidden;
	opacity: 0;
	z-index: 3;
	top: 50%;
	right: var(--padding-width);
	left: var(--padding-width);
	max-width: 765px;
	margin: auto;
	border: 2px solid;
	background: var(--color_gray_dark);
	transform: translateY(-50%) scale3d(0.9, 0.9, 0.9);
	overscroll-behavior: contain;
}

header.open .header-nav {
	visibility: visible;
	opacity: 1;
	transform: translateY(-50%) scale3d(1, 1, 1);
}

.header-close {
	padding: 10px 18px;
	cursor: pointer;
	transition: var(--transition);
}

.header-close:hover {
	background: #fff;
}

.header-close i {
	position: relative;
	display: block;
	width: 21px;
	height: 21px;
	margin-left: auto;
	border-radius: 50%;
	background: var(--color_gray_light);
}

.header-close i::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30%;
	border-top: 2px solid;
	content: "";
	transform: translate(-50%, -50%);
}

.header-menu-li {
	border-top: 2px solid;
}

.header-menu-li a {
	display: block;
	padding: 6px 35px;
	font-weight: 700;
	font-size: 1.8rem;
	font-family: var(--font_english);
}

.header-menu-li a:hover {
	background: #fff;
	color: #000;
}

.header-sns-dl {
	text-align: center;
}

.header-sns-dd {
	margin-bottom: 17px;
}

.header-sns-dd:last-child {
	margin-bottom: 0;
}

.header-sns-dd a:hover {
	opacity: var(--opacity);
}

.header-tel {
	display: flex;
	border: 2px solid;
	background: #fff;
	color: #000;
	line-height: 1.3;
	letter-spacing: 0.15em;
	text-align: center;
	flex: none;
	align-items: center;
}

.header-tel:hover {
	filter: brightness(90%);
}

@media (min-width: 768px) {
header {
	width: calc(100% - var(--header-width));
}

.header-description {
	display: flex;
	position: absolute;
	top: 35px;
	right: var(--padding-width);
	left: 340px;
	height: 2em;
	font-weight: 700;
	font-size: 1.3rem;
	line-height: 1.5;
	align-items: center;
}

.header-logo {
	top: 24px;
	max-width: 160px;
}

.header-inner {
	top: 0;
	right: 0;
	bottom: 0;
	width: var(--header-width);
	padding-top: 26px;
	background: var(--color_gray_dark);
}

.header-toggle {
	width: 40px;
	height: 40px;
}

.header-nav {
	display: flex;
	right: calc(var(--padding-width) + var(--header-width));
	flex-flow: row-reverse;
}

.header-close {
	padding: 18px 15px;
}

.header-close i {
	width: 30px;
	height: 30px;
}

.header-menu-ul {
	display: flex;
	flex: 1;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: center;
}

.header-menu-li {
	position: relative;
	width: calc(100% / 3);
	border-right: 2px solid;
}

.header-menu-li::after {
	display: block;
	padding-top: 100%;
	content: "";
}

.header-menu-li:nth-child(-n+3) {
	border-top: none;
}

.header-menu-li a {
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	padding: 0.5em;
	font-size: 2.2rem;
	font-size: min(calc(100vw * 19 / 768), 2.2rem);
	justify-content: center;
	align-items: center;
}

.header-scroll {
	overflow: hidden;
	position: relative;
	height: 182px;
	margin: auto 0 80px;
}

@keyframes scroll {
0% {
	opacity: 0;
	top: 0;
	height: 0;
}

20% {
	opacity: 1;
	height: 100%;
}

100% {
	opacity: 0;
	top: 100%;
	height: 0;
}
}

.header-scroll::before {
	position: absolute;
	top: 0;
	left: 50%;
	border-right: 2px solid;
	content: "";
	animation: scroll 1.5s ease-in-out infinite;
}

.header-sns-dl {
	margin-bottom: 45px;
}

.header-sns-dt {
	margin-bottom: 45px;
	font-weight: 700;
	font-size: 1.6rem;
	font-family: var(--font_english);
	line-height: 1.2;
}

.header-sns-dd {
	margin-bottom: 25px;
}

.header-tel {
	height: var(--header-width);
	flex-flow: column;
	justify-content: center;
}

.header-tel img {
	margin-bottom: 7px;
}
}

@media (max-width: 767.9px) {
.header-logo img {
	width: 120px;
}

.header-sns-dt {
	display: none;
}

.header-sns-dd img {
	width: 23px;
}

.header-tel {
	position: fixed;
	right: 0;
	bottom: 0;
	padding: 18px 33px;
	border-top-left-radius: 10px;
}

.header-tel img {
	width: 21px;
	margin-right: 7px;
}

.header-tel br {
	display: none;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
フッター
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
footer {
	text-align: center;
}

.footer-main {
	padding: 56px 0;
	background: url("../img/common/footer-background.jpg") center center no-repeat;
	background-size: cover;
}

.footer-logo:hover {
	opacity: var(--opacity);
}

.footer-copyright {
	padding: 10px 0 70px;
	background: var(--color_gray_dark);
	font-size: 1rem;
}

@media (min-width: 768px) {
footer {
	width: calc(100% - var(--header-width));
}

.footer-main {
	padding: 98px 0;
}

.footer-copyright {
	padding: 22px 0;
	font-size: 1.3rem;
}
}

@media (max-width: 767.9px) {
.footer-logo img {
	width: 114px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
投稿本文
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.post-content h1:not(:first-child),
.post-content h2:not(:first-child),
.post-content h3:not(:first-child),
.post-content h4:not(:first-child),
.post-content h5:not(:first-child),
.post-content h6:not(:first-child) {
	margin-top: 2em;
}

.post-content h1:not(:last-child),
.post-content h2:not(:last-child),
.post-content h3:not(:last-child),
.post-content h4:not(:last-child),
.post-content h5:not(:last-child),
.post-content h6:not(:last-child) {
	margin-bottom: 0.5em;
}

.post-content h1 {
	font-size: 2.3rem;
}

.post-content h2 {
	font-size: 2.1rem;
}

.post-content h3 {
	font-size: 1.9rem;
}

.post-content h4 {
	font-size: 1.7rem;
}

.post-content h5 {
	font-size: 1.6rem;
}

.post-content h6 {
	font-size: 1.5rem;
}

.post-content p:not([class]) + p:not([class]) {
	margin-top: 1.5em;
}

.post-content a {
	color: var(--color_gray_light);
	text-decoration: underline;
	text-underline-offset: var(--text-underline-offset);
}

.post-content a:hover {
	color: var(--color_gray);
}

.post-content img {
	display: block;
	width: auto;
	max-height: 640px;
	margin: 0 auto;
}

.post-content img + br {
	display: none;
}

.post-content ol:not([class]):not(:first-child),
.post-content ul:not([class]):not(:first-child) {
	margin-top: 1.5em;
}

.post-content ol:not([class]):not(:last-child),
.post-content ul:not([class]):not(:last-child) {
	margin-bottom: 1.5em;
}

.post-content ol:not([class]) > li {
	position: relative;
	padding-left: 1.2em;
	counter-increment: number;
}

.post-content ol:not([class]) > li::before {
	position: absolute;
	top: 0;
	left: 0;
	content: counter(number) ".";
}

.post-content ol:not([class]) > li:not(:last-child) {
	margin-bottom: 0.5em;
}

.post-content ul:not([class]) > li {
	position: relative;
	padding-left: 1.2em;
}

.post-content ul:not([class]) > li::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "・";
}

.post-content ul:not([class]) > li:not(:last-child) {
	margin-bottom: 0.5em;
}

.post-content th {
	padding: 0.4em 0.8em;
	border: 1px solid;
	background: #000;
	color: #fff;
	text-align: center;
}

.post-content td {
	padding: 0.4em 0.8em;
	border: 1px solid;
	text-align: center;
}

.wp-post-image:not(:first-child),
.wp-block-quote:not(:first-child),
.wp-block-image:not(:first-child),
.wp-block-gallery:not(:first-child),
.wp-block-media-text:not(:first-child),
.wp-block-table:not(:first-child),
.wp-block-audio:not(:first-child),
.wp-block-video:not(:first-child),
.wp-block-embed-youtube:not(:first-child) {
	margin-top: 2em;
}

.wp-post-image:not(:last-child),
.wp-block-quote:not(:last-child),
.wp-block-image:not(:last-child),
.wp-block-gallery:not(:last-child),
.wp-block-media-text:not(:last-child),
.wp-block-table:not(:last-child),
.wp-block-audio:not(:last-child),
.wp-block-video:not(:last-child),
.wp-block-embed-youtube:not(:last-child) {
	margin-bottom: 2em;
}

.wp-post-image {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

[class^="wp-block-"] figcaption {
	display: table !important;
	margin: 0.8em auto 0;
}

.wp-block-quote {
	padding: 30px 30px 20px;
	border-radius: 10px;
	background: url("../img/common/quote.svg") 10px 10px no-repeat rgba(0, 0, 0, 0.05);
	background-size: 40px 32px;
}

.wp-block-quote cite {
	opacity: 0.5;
	margin-top: 1em;
	font-size: 0.9em;
}

.wp-block-image {
	margin-bottom: 0;
}

.wp-block-image .alignright {
	display: block;
	float: none;
	margin: 0 auto 2em;
}

.wp-block-gallery {
	justify-content: center;
}

.blocks-gallery-grid img {
	height: auto;
}

.wp-block-media-text__media img,
.wp-block-media-text__media video {
	max-width: 100%;
}

.wp-block-media-text .wp-block-media-text__content {
	padding: 0;
}

.wp-block-audio {
	margin-right: auto;
	margin-left: auto;
}

.wp-block-audio audio {
	min-width: 0;
	margin: auto;
}

.wp-block-video {
	max-width: 640px;
	margin-right: auto;
	margin-left: auto;
}

.wp-block-embed-youtube {
	max-width: 640px;
	margin-right: auto;
	margin-left: auto;
}

.wp-block-embed-youtube .wp-block-embed__wrapper {
	position: relative;
	padding-top: 56.25%;
}

.wp-block-embed-youtube iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (min-width: 768px) {
.post-content h1 {
	font-size: 2.8rem;
}

.post-content h2 {
	font-size: 2.5rem;
}

.post-content h3 {
	font-size: 2.3rem;
}

.post-content h4 {
	font-size: 2.1rem;
}

.post-content h5 {
	font-size: 1.9rem;
}

.post-content h6 {
	font-size: 1.7rem;
}

.post-content th {
	padding: 0.8em;
}

.post-content td {
	padding: 0.8em;
}

.wp-block-quote {
	padding: 30px 50px;
	background-size: 50px 40px;
}

.wp-block-image .alignright {
	float: right;
	max-width: 45%;
	margin-left: 5%;
}

.wp-block-media-text {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.wp-block-media-text.has-media-on-the-right {
	flex-flow: row-reverse;
}

.wp-block-media-text > :first-child {
	margin-right: 30px;
}

.wp-block-media-text__media {
	max-width: 50%;
	flex: none;
}

.wp-block-media-text .wp-block-media-text__media,
.wp-block-media-text .wp-block-media-text__content {
	align-self: auto; 
}
}

@media (max-width: 767.9px) {
.wp-block-media-text {
	display: block;
}

.wp-block-media-text .wp-block-media-text__media {
	margin-bottom: 2em;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
投稿
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.post-info {
	display: flex;
	flex-flow: wrap;
	align-items: center;
}

.post-time {
	margin-right: 10px;
}

.post-category-ul {
	display: flex;
	margin: 0 -10px -10px 0;
	flex-flow: wrap;
}

.post-category-li {
	margin: 0 10px 10px 0;
}

.post-category {
	display: block;
	padding: 0 1em;
	border-radius: 4px;
	background: #000;
	color: #fff;
	font-size: 0.9em;
}

.post-ul {
	display: flex;
	margin-bottom: -40px;
	flex-flow: wrap;
	justify-content: space-between;
}

.post-li {
	width: 100%;
	margin-bottom: 40px;
}

.post-li .post-link {
	display: block;
}

.post-li .post-image {
	overflow: hidden;
	height: 230px;
	margin-bottom: 10px;
	background: var(--color_gray_light);
	transition: 0.4s ease-in-out;
}

.post-li .wp-post-image {
	width: 100%;
	height: 100%;
	transition: 0.4s ease-in-out;
	object-fit: cover;
}

.post-li .post-link:hover .post-image {
	filter: brightness(90%);
}

.post-li .post-link:hover .wp-post-image {
	transform: scale(1.1);
}

.post-li .post-info {
	margin-bottom: 5px;
}

.single .post-info {
	margin-bottom: 10px;
}

.single .post-category:hover {
	background: var(--color_gray_light);
}

.single .post-heading {
	margin-bottom: 1.5em;
	font-size: 2.3rem;
}

@media (min-width: 568px) {
.post-li {
	width: 47%;
}
}

@media (min-width: 768px) {
.single .post-heading {
	font-size: 2.8rem;
}
}

@media (min-width: 1024px) {
.post-li {
	width: 31%;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ページネーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.post-page-ul {
	display: flex;
	max-width: 100%;
	margin: 60px -0.3em 0;
	font-size: 1.1em;
	justify-content: center;
	align-items: center;
}

.post-page-li {
	position: relative;
	min-width: 1.5em;
	height: 2em;
	margin: 0 0.3em;
	text-align: center;
}

.post-page-current::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 1em;
	margin: auto;
	border-top: 1.5px solid;
	content: "";
}

.post-page-ellipsis {
	min-width: 0;
	margin: 0;
}

.post-page-li a {
	display: block;
	height: 100%;
}

.post-page-prev a::before,
.post-page-next a::before {
	display: inline-block;
	width: 0.6em;
	height: 0.6em;
	border-right: 1.5px solid;
	border-bottom: 1.5px solid;
	vertical-align: 1px;
	content: "";
}

.post-page-prev a::before {
	transform: rotate(135deg);
}

.post-page-next a::before {
	transform: rotate(-45deg);
}

.post-page-li a:hover {
	color: var(--color_gray);
}

.post-page-li a:hover::before {
	border-color: var(--color_gray);
}

.post-page-prev a:hover::before {
	transform: translateX(-4px) rotate(135deg);
}

.post-page-next a:hover::before {
	transform: translateX(4px) rotate(-45deg);
}

.post-nav-ul {
	display: flex;
	margin-top: 60px;
	justify-content: center;
	align-items: center;
}

.post-nav-archive {
	margin: 0 2em;
}

.post-nav-prev,
.post-nav-next {
	min-width: 3em;
}

.post-nav-prev a::before,
.post-nav-next a::after {
	display: inline-block;
	width: 0.5em;
	height: 0.5em;
	border-right: 1.5px solid;
	border-bottom: 1.5px solid;
	vertical-align: 2px;
	content: "";
}

.post-nav-prev a::before {
	margin-right: 0.5em;
	transform: rotate(135deg);
}

.post-nav-next a::after {
	margin-left: 0.5em;
	transform: rotate(-45deg);
}

.post-nav-li a:hover {
	color: var(--color_gray);
}

.post-nav-prev a:hover::before {
	border-color: var(--color_gray);
	transform: translateX(-4px) rotate(135deg);
}

.post-nav-next a:hover::after {
	border-color: var(--color_gray);
	transform: translateX(4px) rotate(-45deg);
}

/* button */
.contact-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #5B7E96; /* メインカラー */
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #4a6b7c; /* ホバー時の暗めの色 */
}

/* Contat Form */
.mwform {
    max-width: 600px;
    margin: 0 auto;
    padding: 15px;
}

.mwform .form-item {
    margin-bottom: 20px;
}

.mwform .form-item label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: black; /* ラベルのテキストは黒色 */
}

.mwform .form-item label .required {
    color: red; /* 必須のテキストは赤色 */
}

.mwform .form-item label .optional {
    color: blue; /* 任意のテキストは青色 */
}
span.mwform-tel-field {
    width: 100%;
}
.mwform .form-item-tel .tel-inputs {
    display: flex;
    gap: 10px; /* 項目間の間隔 */
    width: 100%;
    flex-direction: inherit;
}

.mwform .form-item-tel .tel-inputs input {
    flex: 1;
    width: 30%;
}

.mwform input[type="text"],
.mwform input[type="email"],
.mwform input[type="tel"],
.mwform textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}



@media (max-width: 768px) {
    .mwform .form-item-tel .tel-inputs {
        flex-direction: column;
    }

    .mwform .form-item-tel .tel-inputs input {
        width: 30%;
    }
}

.button {
    background-color: #5B7E96; /* メインカラー */
    color: white; /* テキストカラー */
    border: none; /* ボーダーなし */
    padding: 10px 20px; /* パディング */
    border-radius: 5px; /* 角丸 */
    font-size: 16px; /* フォントサイズ */
    cursor: pointer; /* カーソルスタイル */
    transition: background-color 0.3s; /* 背景色の変化を滑らかに */
    margin-right: 10px; /* 右のマージン */
}

.button:hover {
    background-color: #4a6b7c; /* ホバー時の色 */
}

.button_back {
    background-color: #ccc; /* 戻るボタンの背景色 */
    color: black; /* 戻るボタンのテキストカラー */
}

.button_back:hover {
    background-color: #bbb; /* 戻るボタンのホバー時の色 */
}
.mwform-complete-message {
    background-color: #f8f8f8; /* 背景色 */
    border: 1px solid #eaeaea; /* ボーダー */
    padding: 20px; /* パディング */
    border-radius: 5px; /* 角丸 */
    margin: 20px 0; /* 上下のマージン */
    text-align: center; /* テキストを中央揃え */
}

.mwform-complete-message p {
    color: #333; /* テキストカラー */
    font-size: 16px; /* フォントサイズ */
}
