@charset "UTF-8";

:root {
	--color-body: #000;
	--color-theme-1: #46C22E;
    --color-theme-1-1: #D9EED5;
	--color-theme-2: #FFFBF3;
	--color-theme-3: #C2AB7B;
	--color-gray-1: #F5F5F5;
	--color-gray-2: #ACACAC;

	--font-family: "Noto sans JP", serif;
    --zen-maru: "Zen Maru Gothic", serif;
    --heebo: "Heebo", sans-serif;

	--container: 1130px;
	--padding: 20px;
	--margin: 90px;
	--stack: 100px;
}

::after,
::before,
* {
	--font-size: calc((var(--fs)/16) * 1rem);
	font-size: var(--font-size);
}

@media(max-width: 767px) {
	::after,
	::before,
	* {
		--fs: 15;
	}
}

.editor-styles-wrapper {
	--fs: 16;
	font-family: var(--font-family) !important;
	font-weight: 400;
}

@media(max-width: 767px) {
	.editor-styles-wrapper {
		--fs: 15;
	}
}

:where(.editor-styles-wrapper [class*="is-style-group"]) {
	border: 1px dashed #ccc;
}

.wp-embed-aspect-1-1 iframe {
	aspect-ratio: 1 / 1;
	height: auto;
	width: 100%;
}

.wp-embed-aspect-1-2 iframe {
	aspect-ratio: 1 / 2;
	height: auto;
	width: 100%;
}

.wp-embed-aspect-4-3 iframe {
	aspect-ratio: 4 / 3;
	height: auto;
	width: 100%;
}

.wp-embed-aspect-16-9 iframe {
	aspect-ratio: 16 / 9;
	height: auto;
	width: 100%;
}

.wp-embed-aspect-18-9 iframe {
	aspect-ratio: 18 / 9;
	height: auto;
	width: 100%;
}

.wp-embed-aspect-21-9 iframe {
	aspect-ratio: 21 / 9;
	height: auto;
	width: 100%;
}

.color-body {
	color: var(--color-body);
}

.color-theme-1 {
	color: var(--color-theme-1);
}

.color-theme-2 {
	color: var(--color-theme-2);
}

.color-theme-3 {
	color: var(--color-theme-3);
}

.color-theme-4 {
	color: var(--color-theme-4);
}

.bg-theme-1 {
	background-color: var(--color-theme-1);
}

.bg-theme-2 {
	background-color: var(--color-theme-2);
}

.bg-theme-3 {
	background-color: var(--color-theme-3);
}

.bg-theme-4 {
	background-color: var(--color-theme-4);
}


h2:where(.wp-block-heading):where(.is-style-default, :not([class*="is-style"])),
.is-style-h-2 {
	--fs: 28;
	font-size: var(--font-size);
	font-family: var(--zen-maru);
	line-height: calc(48 / 32);
	font-weight: 500;
	color: var(--color-theme-1);
}

* + h2:where(.wp-block-heading):where(.is-style-default, :not([class*="is-style"])),
* + .is-style-h-2 {
	margin-top: 80px;
}

@media(max-width: 767px) {
	h2:where(.wp-block-heading):where(.is-style-default, :not([class*="is-style"])),
	.is-style-h-2 {
		--fs: 25;
	}
	* + h2:where(.wp-block-heading):where(.is-style-default, :not([class*="is-style"])),
	* + .is-style-h-2 {
		margin-top: 50px;
	}
}

h3:where(.wp-block-heading):where(.is-style-default, :not([class*="is-style"])),
.is-style-h-3 {
	--fs: 24;
    font-size: var(--font-size);
    font-family: var(--zen-maru);
    font-weight: 500;
    color: #FFF;
    background: var(--color-theme-1);
    padding: 5px 15px;
	margin-bottom: 30px;
}

* + h3:where(.wp-block-heading):where(.is-style-default, :not([class*="is-style"])),
* + .is-style-h-3 {
	margin-top: 30px;
}

@media(max-width: 767px) {
	h3:where(.wp-block-heading):where(.is-style-default, :not([class*="is-style"])),
	.is-style-h-3 {
		--fs: 20;
		margin-bottom: 20px;
	}
	* + h3:where(.wp-block-heading):where(.is-style-default, :not([class*="is-style"])),
	* + .is-style-h-3 {
		margin-top: 20px;
	}
}

h4:where(.wp-block-heading):where(.is-style-default, :not([class*="is-style"])),
.is-style-h-4 {
	gap: 10px;
	--fs: 27;
	font-size: var(--font-size);
	font-family: var(--zen-maru);
	margin-bottom: 20px;
}

h4:where(.wp-block-heading):where(.is-style-default, :not([class*="is-style"]))::before,
.is-style-h-4::before {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	background: var(--color-theme-1);
	border-radius: 50%;
	margin-right: 10px;
	margin-bottom: 3px;
}

h4:where(.wp-block-heading):where(.is-style-default, :not([class*="is-style"])) span,
.is-style-h-4 span {
	--fs: 16;
}

* + h4:where(.wp-block-heading):where(.is-style-default, :not([class*="is-style"])),
* + .is-style-h-4 {
	margin-top: 50px;
}

@media(max-width: 767px) {
	h4:where(.wp-block-heading):where(.is-style-default, :not([class*="is-style"])),
	.is-style-h-4 {
		--fs: 22;
	}
	h4:where(.wp-block-heading):where(.is-style-default, :not([class*="is-style"]))::before,
	.is-style-h-4::before {
		width: 10px;
		height: 10px;
		margin-right: 8px;
		margin-bottom: 2px;
	}
	h4:where(.wp-block-heading):where(.is-style-default, :not([class*="is-style"])) span,
	.is-style-h-4 span {
		--fs: 15;
	}
}

/*		table		*/
figure:where(.wp-block-table):where(.is-style-default, :not([class*="is-style"])) table,
.is-style-table-1 table {
	width: 100%;
	border-collapse: separate!important;
	border-spacing: 3px;
	margin-left: -3px;
	margin-right: -3px;
}

figure:where(.wp-block-table):where(.is-style-default, :not([class*="is-style"])) thead,
.is-style-table-1 thead {
	border-bottom: 0!important;
}

figure:where(.wp-block-table):where(.is-style-default, :not([class*="is-style"])) tr th,
.is-style-table-1 tr th {
	--fs: 16;
	font-weight: 600;
	color: #FFF;
	background: var(--color-theme-1);
	text-align: center;
	border-radius: 3px;
	padding: 10px 15px;
}

figure:where(.wp-block-table):where(.is-style-default, :not([class*="is-style"])) tr td,
.is-style-table-1 tr td {
	--fs: 16;
	font-weight: 400;
	background: var(--color-gray-1);
	border: none!important;
	border-radius: 3px;
	padding: 15px 20px!important;
}

figure:where(.wp-block-table):where(.is-style-default, :not([class*="is-style"])):not(:has(thead)) td:first-child,
.is-style-table-1:not(:has(thead)) td:first-child {
	--fs: 16;
	font-weight: 600;
	color: #FFF;
	background: var(--color-theme-1);
	text-align: center;
	border-radius: 3px;
	padding: 10px 15px;
}

figure:where(.wp-block-table):where(.is-style-default, :not([class*="is-style"])) tr:has(th) td,
figure:where(.wp-block-table):where(.is-style-default, :not([class*="is-style"])) table:has(thead) tr td,
.is-style-table-1 tr:has(th) td,
.is-style-table-1 table:has(thead) tr td {
	border-color: #D6D6D6!important;
}

figure:where(.wp-block-table):where(.is-style-default, :not([class*="is-style"])) .wp-element-caption,
.is-style-table-1 .wp-element-caption {
	--fs: 14;
	margin-top: 10px;
}

@media(max-width: 767px) {
	figure:where(.wp-block-table):where(.is-style-default, :not([class*="is-style"])) tr th,
	.is-style-table-1 tr th {
		--fs: 15;
		padding: 5px 10px;
	}
	figure:where(.wp-block-table):where(.is-style-default, :not([class*="is-style"])) tr td,
	.is-style-table-1 tr td {
		--fs: 14;
		padding: 10px!important;
	}
}

.is-style-table-2 table {
	font-family: var(--zen-maru);
	border-collapse: separate;
	border-spacing: 15px 0;
	margin-right: -15px;
	margin-left: -15px;
}

.is-style-table-2 tr th {
	--fs: 18;
	font-weight: 500;
	border-bottom: 2px solid var(--color-theme-1);
	white-space: nowrap;
	padding: 35px 15px;
}

.is-style-table-2 tr td {
	--fs: 16;
	font-weight: 400;
	line-height: calc(28 / 16);
	border-bottom: 1px dashed #767474;
	padding: 35px 30px;
}

.is-style-table-2 .wp-element-caption {
	--fs: 14;
	margin-top: 10px;
}

@media(max-width: 767px) {
	.is-style-table-2 table {
		border-spacing: 5px 0;
		margin-right: -5px;
		margin-left: -5px;
	}
	.is-style-table-2 tr th {
		--fs: 16;
		padding: 15px 0;
	}
	.is-style-table-2 tr td {
		--fs: 15;
		padding: 15px 10px;
	}
}

/*		button		*/
.wp-block-button:not([class*=is-style]) .wp-block-button__link,
.is-style-button-1 .wp-block-button__link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	--fs: 15;
	color: #FFF;
	text-decoration: none;
	font-size: var(--font-size);
	font-weight: 500;
	font-family: var(--zen-maru);
	max-inline-size: max-content;
	min-width: 320px;
	min-height: 77px;
	background: var(--color-theme-1);
	border-radius: 50px;
	padding: 5px 45px;
}

.wp-block-button:not([class*=is-style]) .wp-block-button__link::after,
.is-style-button-1 .wp-block-button__link::after {
	content: "";
	width: 13px;
	height: 12px;
	-webkit-mask: no-repeat center center / contain;
    mask: no-repeat center center / contain;
    -webkit-mask-image: url(img/icon-arrow.svg);
    mask-image: url(img/icon-arrow.svg);
	background: #FFF;
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
}

.wp-block-button:not([class*=is-style]) .wp-block-button__link:hover,
.is-style-button-1 .wp-block-button__link:hover {
	opacity: 0.7;
}
 
@media(max-width: 767px) {
	.wp-block-button:not([class*=is-style]) .wp-block-button__link,
	.is-style-button-1 .wp-block-button__link {
		min-width: 280px;
		min-height: 60px;
		padding: 5px 35px;
	}
	.wp-block-button:not([class*=is-style]) .wp-block-button__link::after,
	.is-style-button-1 .wp-block-button__link::after {
		right: 15px;
		width: 12px;
		height: 11px;
	}
}