@charset "utf-8";

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

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リセットCSS
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
* {
	box-shadow: initial;
	outline: initial;
	-webkit-tap-highlight-color: rgb(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, i, img, picture, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, tr, th, td, hr, input, textarea, select, button,
main, article, aside, details, figure, figcaption, header, footer, hgroup, menu, nav, section, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	color: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

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

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

iframe {
	max-width: 100%;
}

a {
	display: inline-block;
	text-decoration: initial;
}

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

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

ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: initial;
}

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

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

input[type="button"],
input[type="submit"],
button {
	cursor: pointer;
}

input[type="file"] {
	font-size: initial;
}

input[type="file"]::-webkit-file-upload-button {
	font-family: inherit;
}

textarea {
	overflow: auto;
	field-sizing: content;
	resize: vertical;
}

time {
	display: inline-block;
}

video {
	max-width: 100%;
	cursor: pointer;
	object-fit: cover;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ベース
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@font-face {
	font-weight: 400;
	font-family: "Yu Gothic";
	src: local("YuGothic-Medium");
}

@font-face {
	font-weight: 500;
	font-family: "Yu Gothic";
	src: local("YuGothic-Medium");
}

@font-face {
	font-weight: 600;
	font-family: "Yu Gothic";
	src: local("YuGothic-Bold");
}

@font-face {
	font-weight: 700;
	font-family: "Yu Gothic";
	src: local("YuGothic-Bold");
}

@font-face {
	font-weight: 400;
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W3");
}

@font-face {
	font-weight: 500;
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W4");
}

@font-face {
	font-weight: 600;
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W5");
}

@font-face {
	font-weight: 700;
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W6");
}

:root {
	--color_gray:              #b3b3b3;
	--color_gray_light:        #f2f2f2;
	--color_gray_dark:         #808080;
	--color_page:              var(--color_gray_dark);

	--font_main:               "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", Meiryo, sans-serif;
	--font_en:                 Montserrat, "Helvetica Neue", Arial, Roboto, var(--font_main);

	--opacity:                 0.7;
	--content-width:           1200px;
	--content-width_medium:    1000px;
	--content-width_large:     1200px;
	--padding-inline:          5.4vw;
	--padding-inline_negative: calc(var(--padding-inline) * -1);
	--padding-block:           50px;
	--padding-block_negative:  calc(var(--padding-block) * -1);
	--padding-block_half:      calc(var(--padding-block) / 2);
	--border-radius:           10px;
	--transition:              0.3s ease-in-out;
	--transition_img:          0.4s ease-in-out;
	--brightness:              brightness(1.2);
}

@media (min-width: 768px) {
:root {
	--padding-inline:          30px;
	--padding-block:           80px;
}
}

body {
	overflow: hidden scroll;
	font-size: 16px;
	font-family: var(--font_main);
	line-height: 1.8;
}

article {
	overflow: clip;
}

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

section.remove_pt {
  padding-top: initial;
	padding-bottom: var(--padding-block);
}
.section.remove_pb {
	padding-bottom: initial;
}

section.remove_padding_block {
  padding-block: initial;
}

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

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

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

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

a,
input[type="button"],
input[type="submit"],
button {
	transition: visibility var(--transition), opacity var(--transition), border var(--transition), background var(--transition), color var(--transition), text-decoration var(--transition), filter var(--transition);
}

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

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

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="search"],
input[type="password"] {
	width: 100%;
}

input[type="file"],
select {
	max-width: 100%;
}

input[type="file"]::-webkit-file-upload-button {
	margin-right: 0.6em;
}

input[type="checkbox"],
input[type="radio"] {
	width: 1em;
	height: 1em;
}

textarea {
	width: 100%;
}

@media (min-width: 768px) {
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-in-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);
}

body._load .animation.fade {
	animation-name: fade;
}

body._load .animation.fade-up {
	animation-name: fade-up;
}

body._load .animation.fade-down {
	animation-name: fade-down;
}

body._load .animation.fade-right {
	animation-name: fade-right;
}

body._load .animation.fade-left {
	animation-name: fade-left;
}

body._load .animation.fade-zoom-in {
	animation-name: fade-zoom-in;
}

body._load .animation.fade-zoom-out {
	animation-name: fade-zoom-out;
}

body._load .animation.show-bottom {
	animation-name: show-bottom;
}

body._load .animation.show-left {
	animation-name: show-left;
}

.delay04 {
	animation-delay: 0.4s;
}

.delay05 {
	animation-delay: 0.5s;
}

.delay06 {
	animation-delay: 0.6s;
}

.delay07 {
	animation-delay: 0.7s;
}

.delay08 {
	animation-delay: 0.8s;
}

.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);
}
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
見出し
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.page-header {
	background: var(--color_page);
}

.page-heading {
	display: grid;
	height: 3.7em;
	color: #fff;
	font-weight: 500;
	font-size: 28px;
	font-family: var(--font_en);
	line-height: 1.5;
	text-transform: uppercase;
	align-items: center;
}

.heading_large {
	margin-bottom: 2em;
	font-weight: 500;
	font-size: 24px;
	font-family: var(--font_en);
	line-height: 1.3;
	text-align: center;
}

@media (min-width: 768px) {
.page-heading {
	font-size: 40px;
}

.heading_large {
	font-size: 36px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リンク
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.link_underline {
	text-decoration: underline;
}

.link_underline:hover {
	opacity: var(--opacity);
	text-decoration-color: transparent;
}

.button {
	display: flex;
	position: relative;
	width: fit-content;
	min-width: 13em;
	height: 4em;
	margin-top: var(--padding-block_half);
	padding-inline: 1em;
	border-radius: var(--border-radius);
	font-weight: 500;
	font-family: var(--font_en);
	line-height: 1.5;
	text-align: center;
	transition: var(--transition);
	column-gap: 0.6em;
	justify-content: center;
	align-items: center;
}

.button:first-child {
	margin-top: initial;
}

.button._default {
	margin-inline: auto;
	border: 1px solid #000;
}

.button._default:hover {
	background: #000;
	color: #fff;
}

.button._contact::before {
	display: inline-block;
	width: 1.2em;
	height: 1.2em;
	background: currentColor;
	content: "";
	-webkit-mask: url("../img/common/contact.svg") center center / contain no-repeat;
	mask: url("../img/common/contact.svg") center center / contain no-repeat;
}

.button._arrow::after {
	position: absolute;
	inset: 0 2em 0 auto;
	width: 0.5em;
	height: 0.5em;
	margin-block: auto;
	border-top: 1.5px solid;
	border-right: 1.5px solid;
	content: "";
	transform: rotate(45deg);
	transition: transform var(--transition);
}

a:hover .button._arrow::after,
.button._arrow:hover::after {
	transform: translateX(4px) rotate(45deg);
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リスト
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.ol,
.ul {
	margin-block: 1em;
	line-height: 1.5;
}

.ol {
	counter-reset: number;
}

.ol:first-child,
.ul:first-child {
	margin-top: initial;
}

.ol:last-child,
.ul:last-child {
	margin-bottom: initial;
}

.ol > li,
.ul > li {
	position: relative;
	margin-bottom: 0.5em;
	padding-left: 1.2em;
}

.ol > li {
	counter-increment: number;
}

.ol > li:last-child,
.ul > li:last-child {
	margin-bottom: initial;
}

.ol > li::before,
.ul > li::before {
	position: absolute;
	inset: 0 auto auto 0;
}

.ol > li::before {
	content: counter(number) ".";
}

.ul > li::before {
	content: "・";
}

li._spacer {
	visibility: hidden;
	height: initial;
	min-height: initial;
	margin-block: initial;
}

li._spacer::before,
li._spacer::after {
	content: initial;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
テーブル
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@media (max-width: 767.9px) {
.table th {
	display: block;
}

.table td {
	display: block;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
コンポーネント
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.bold {
	font-weight: 700;
}

.align_center {
	text-align: center;
}

.align_left {
	text-align: left;
}

.align_right {
	text-align: right;
}

.block_center {
	width: fit-content;
	margin-inline: auto;
}

.word_break {
	word-break: break-all;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
タブ
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.tab-headers {
	display: flex;
	padding-top: var(--padding-block_half);
	flex-flow: wrap;
	justify-content: center;
}

.tab-header {
	display: grid;
	position: relative;
	max-width: 11em;
	padding: 0.7em;
	border-bottom: 1px solid var(--color_gray);
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	cursor: pointer;
	transition: var(--transition);
	flex-grow: 1;
	place-content: center;
}

.tab-header._active {
	pointer-events: none;
}

.tab-header:hover {
	color: var(--color_page);
}

.tab-header::after {
	position: absolute;
	inset: auto 0 -3px;
	border-bottom: 5px solid transparent;
	content: "";
	transition: var(--transition);
}

.tab-header._active::after {
	border-color: var(--color_page);
}

.tab-content {
	animation: fade 0.6s ease-in-out both;
}

.tab-content:not(._active) {
	display: none;
}

@media (max-width: 767.9px) {
.tab-headers {
	font-size: 14px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ローダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.loader {
	display: flex;
	position: fixed;
	inset: 0;
	z-index: 10;
	background: #fff;
	transition: 0.5s ease-in-out;
	justify-content: center;
	align-items: center;
}

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

@keyframes loader {
0% {
	transform: scaleX(0);
}

100% {
	transform: scaleX(1);
}
}

.loader-bar {
	width: 100%;
	border-top: 1px solid rgb(0, 0, 0, 0.3);
	transform: scaleX(0);
	transform-origin: left center;
	animation: loader 3s ease-in-out both;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ヘッダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
header {
	--header-height: 60px;
	position: sticky;
	top: 0;
	z-index: 3;
	background: #000;
	color: #fff;
	font-weight: 500;
	font-family: var(--font_en);
}

.header-inner {
	display: grid;
	position: relative;
	z-index: 1;
	max-width: initial;
	height: var(--header-height);
	grid-template-columns: 1fr auto auto;
	align-items: center;
}

.header-logo {
	width: fit-content;
	margin-right: 10%;
}

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

.header-nav {
	align-self: stretch
}

.header-menu-link {
	display: block;
	padding-block: 0.8em;
}

.header-menu-li._current .header-menu-link,
.header-menu-link:hover {
	opacity: var(--opacity);
}

.header-submenu-ul {
	padding-left: 1em;
	font-size: 0.9em;
}

.header-submenu-li:not(:last-child) {
	margin-bottom: 0.3em;
}

.header-submenu-link {
	display: flex;
	width: fit-content;
	column-gap: 0.5em;
	align-items: center;
}

.header-submenu-li._current .header-submenu-link,
.header-submenu-link:hover {
	opacity: var(--opacity);
}

.header-submenu-link::before {
	width: 0.5em;
	border-top: 1px solid;
	content: "";
	transform-origin: right center;
}

.header-submenu-link:hover::before {
	transform: scaleX(0);
}

.header-sns-ul {
	display: flex;
	column-gap: 1em;
}

.header-sns-li a {
	display: block;
}

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

.header-lang {
	display: grid;
	width: 2.4em;
	border: 1px solid #fff;
	border-radius: 5px;
	text-transform: uppercase;
	aspect-ratio: 1;
	place-content: center;
}

.header-lang:hover {
	background: #fff;
	color: #000;
}

@media (min-width: 768px) {
header {
	--header-height: 80px;
}
}

@media (min-width: 1200px) {
header {
	--header-height: 120px;
}

.header-nav {
	display: flex;
	margin-right: 2em;
	column-gap: 2em;
	align-items: center;
}

.header-menu-ul {
	display: flex;
	align-self: stretch;
	column-gap: 1.8em;
}

.header-menu-li {
	display: flex;
	position: relative;
	align-items: center;
}

.header-menu-link {
	position: relative;
	padding-block: 0.5em;
}

.header-menu-link:has(+ .header-submenu-ul)::after {
	position: absolute;
	inset: auto 0 0;
	width: 0.4em;
	height: 0.4em;
	margin-inline: auto;
	border-right: 1.5px solid;
	border-bottom: 1.5px solid;
	content: "";
	transform: rotate(45deg);
}

.header-submenu-ul {
	position: absolute;
	inset: 100% auto auto 50%;
	padding: 0 1.5em 1.5em;
	background: #000;
	white-space: nowrap;
	transform: translateX(-50%);
	transition: var(--transition);
}

.header-menu-li:not(:hover) .header-submenu-ul {
	visibility: hidden;
	opacity: 0;
}

.header-toggle {
	display: none;
}
}

@media (max-width: 1199.9px) {
.header-overlay {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	inset: 0;
	background: #000;
	transition: var(--transition);
}

header._open .header-overlay {
	visibility: visible;
	opacity: 0.3;
}

.header-inner {
	padding-inline: 20px 0;
}

.header-nav {
	overflow-y: auto;
	position: fixed;
	inset: var(--header-height) 0 0 auto;
	width: 100%;
	max-width: 480px;
	padding: 1px var(--padding-inline) var(--padding-block);
	background: #000;
	transition: transform var(--transition);
	overscroll-behavior: contain;
}

header:not(._open) .header-nav {
	transform: translateX(100%);
}

.header-menu-li {
	border-bottom: 1px solid;
}

.header-menu-li:first-child {
	border-top: 1px solid;
}

.header-menu-li:has(.header-submenu-ul) {
	padding-bottom: 1em;
}

.header-sns-ul {
	margin-top: 3em;
	justify-content: center;
}

.header-toggle {
	position: relative;
	width: 60px;
	cursor: pointer;
	aspect-ratio: 1;
	transition: var(--transition);
}

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

.header-toggle-bar {
	position: absolute;
	inset-inline: 28%;
	border-top: 1.5px solid;
	transition: var(--transition);
}

.header-toggle-bar:nth-child(1) {
	top: 36%;
}

.header-toggle-bar:nth-child(2) {
	top: 49%;
}

.header-toggle-bar:nth-child(3) {
	top: 62%;
}

header._open .header-toggle-bar:nth-child(1) {
	top: 49%;
	transform: rotate(-45deg);
}

header._open .header-toggle-bar:nth-child(2) {
	transform: scaleX(0);
}

header._open .header-toggle-bar:nth-child(3) {
	top: 49%;
	transform: rotate(45deg);
}
}

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

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
フッター
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
footer {
	padding-block: 60px;
	background: #000;
	color: #fff;
}

footer .inner {
	display: grid;
	gap: 2em 3em;
}

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

.footer-logo {
	margin-bottom: 3em;
}

.footer-nav {
	font-weight: 500;
	font-family: var(--font_en);
	flex: 1;
}

.footer-menu-ul {
	display: grid;
	margin-bottom: 1.8em;
	gap: 0.2em 1.8em;
}

.footer-menu-li._current a,
.footer-menu-li a:hover {
	opacity: var(--opacity);
}

.footer-nav .wrapper {
	display: grid;
	grid-template-columns: auto auto;
	column-gap: 2em;
	justify-content: center;
	align-items: center;
}

.footer-sns-ul {
	display: flex;
	column-gap: 1em;
}

.footer-sns-li a {
	display: block;
}

.footer-sns-li a:hover {
	opacity: var(--opacity);
}

.footer-lang {
	display: grid;
	width: 2.4em;
	border: 1px solid;
	border-radius: 5px;
	text-transform: uppercase;
	aspect-ratio: 1;
	place-content: center;
}

.footer-lang:hover {
	background: #fff;
	color: #000;
}

.footer-copyright {
	display: block;
	margin-top: var(--padding-block_half);
	font-size: 0.9em;
	font-family: var(--font_en);
	text-align: center;
}

@media (min-width: 768px) {
footer .inner {
	grid-template-columns: minmax(auto, 510px) auto;
}

.footer-menu-ul {
	display: flex;
	flex-flow: wrap;
	justify-content: end;
}

.footer-nav .wrapper {
	justify-content: end;
}

.footer-copyright {
	text-align: right;
}
}

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

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
パンくずリスト
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.breadcrumb {
	position: relative;
	z-index: 1;
	margin-bottom: calc(var(--padding-block_half) * -1);
	font-size: 0.9em;
}

.breadcrumb .inner {
	overflow: auto;
	padding: 2.5em 0 1.2em;
}

.breadcrumb-ul {
	display: flex;
	width: max-content;
	padding-inline: var(--padding-inline);
}

.breadcrumb-li {
	display: flex;
	align-items: center;
}

.breadcrumb-li:not(:last-child)::after {
	width: 0.5em;
	height: 0.5em;
	margin-inline: 0.4em 0.6em;
	border-top: 1px solid;
	border-right: 1px solid;
	content: "";
	transform: rotate(45deg);
}

.breadcrumb-li a:hover {
	opacity: var(--opacity);
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
投稿
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.post-image {
	overflow: hidden;
	border-radius: var(--border-radius);
	background: #fff;
}

.post-image .wp-post-image {
	width: 100%;
	height: 100%;
	height: 232px;
	background: rgb(0, 0, 0, 0.3);
	object-fit: cover;
	aspect-ratio: 380 / 309;
	aspect-ratio: 1;
	transition: var(--transition_img);
	object-position: top;
}

.post-info {
	display: flex;
	gap: 0.6em 1em;
	flex-flow: wrap;
	align-items: start;
}

.post-time {
	font-size: 0.9em;
}

.post-category-ul {
	display: flex;
	gap: 0.6em;
	flex-flow: wrap;
}

.post-category {
	display: block;
	position: relative;
	z-index: 1;
	width: fit-content;
	padding-inline: 0.8em;
	background: #000;
	color: #fff;
	font-size: 0.9em;
	line-height: 1.5;
}

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

.post-tag-ul {
	display: flex;
	margin-top: var(--padding-block_half);
	font-size: 0.9em;
	gap: 0.6em;
	flex-flow: wrap;
}

.post-tag {
	opacity: 0.5;
	position: relative;
	z-index: 1;
}

.post-tag:hover {
	opacity: 1;
}

.post-tag::before {
	content: "#";
}

.post-li {
	position: relative;
}

.post-ul .post-li {
	display: grid;
	padding-block: 1em;
	border-bottom: 1px solid var(--color_gray);
	row-gap: 0.2em;
}

.post-ul .post-li:first-child {
	border-top: 1px solid var(--color_gray);
}

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

.post-li .post-text {
	margin-top: 1em;
}

.post-li .post-heading {
	transition: var(--transition);
}

.post-ul .post-li:hover .post-heading {
	color: var(--color_page);
}

.post-li .post-link {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.post-li .post-link::before {
	position: absolute;
	inset: 0;
	content: "";
}

.post-li .post-content {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.archive-main {
	--content-width: var(--content-width_medium);
}

.single-main {
	--content-width: var(--content-width_medium);
}

.single-main .post-info {
	margin-bottom: var(--padding-block_half);
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ページネーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.post-page-ul {
	display: flex;
	margin-top: var(--padding-block);
	font-size: 1.1em;
	font-family: var(--font_en);
	column-gap: 0.5em;
	justify-content: center;
}

.post-page-prev {
	transform: scaleX(-1);
}

.post-page-li a {
	display: flex;
	min-width: 2em;
	height: 2em;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
}

.post-page-li._current a {
	background: var(--color_page);
	color: #fff;
	pointer-events: none;
}

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

.post-page-prev a::before,
.post-page-next a::before {
	width: 0.6em;
	height: 0.6em;
	border-top: 1.5px solid;
	border-right: 1.5px solid;
	content: "";
	transform: rotate(45deg);
}

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

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ナビゲーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.post-nav-ul {
	display: flex;
	margin-top: var(--padding-block_half);
	column-gap: 9%;
	justify-content: center;
	align-items: center;
}

.post-nav-li._disabled {
	visibility: hidden;
}

.post-nav-li a {
	display: grid;
	grid-template-columns: auto auto;
	column-gap: 0.5em;
	align-items: center;
}

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

.post-nav-prev a::before,
.post-nav-next a::after {
	width: 0.6em;
	height: 0.6em;
	border-top: 1.5px solid;
	border-right: 1.5px solid;
	content: "";
}

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

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

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

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

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
フォーム
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.form-description {
	max-width: 650px;
	margin: 0 auto var(--padding-block);
}

.form-content {
	padding: 60px 5.4%;
	border-radius: var(--border-radius);
	background: var(--color_page_light);
}

.form-table tr {
	border-bottom: 1px solid #fff;
}

.form-table th {
	padding-block: 1.6em 1em;
	font-weight: 500;
	text-align: left;
	vertical-align: top;
}

.form-table tr:first-child th {
	padding-top: initial;
}

.form-required::after {
	color: #eb2f00;
	font-size: 1.2em;
	line-height: 1;
	content: "*";
}

.form-annotation {
	margin-top: 1.5em;
	font-weight: 400;
	font-size: 0.9em;
}

.form-table td {
	padding-bottom: 1.6em;
	text-align: left;
	vertical-align: top;
}

.form-name {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 3%;
}

.form-table input[type="text"],
.form-table input[type="email"],
.form-table input[type="tel"],
.form-table input[type="url"],
.form-table input[type="date"],
.form-table select {
	height: 3em;
	padding-inline: 0.8em;
	background: #fff;
}

.form-table textarea {
	height: 13em;
	min-height: 3em;
	padding: 0.8em;
	background: #fff;
}

.form-google {
	width: fit-content;
	margin: 3em auto 0;
}

.wpcf7 {
	position: relative;
}

.wpcf7-checkbox,
.wpcf7-radio {
	display: flex;
	gap: 0.5em 2em;
	flex-flow: wrap;
}

.wpcf7-list-item {
	margin: initial;
}

.wpcf7-list-item label {
	display: grid;
	grid-template-columns: auto auto;
	column-gap: 0.5em;
}

.wpcf7-list-item input {
	transform: translateY(0.3em);
}

.wpcf7-submit {
	margin-inline: auto;
	background: var(--color_page);
	color: #fff;
}

.wpcf7-submit:hover {
	background: #fff;
	color: var(--color_page);
}

.wpcf7-not-valid-tip {
	margin-top: 0.5em;
	font-weight: inherit;
	font-size: 0.9em;
}

.wpcf7-spinner {
	position: absolute;
	inset: auto 0 -40px;
	margin-inline: auto;
}

.wpcf7-response-output {
	width: fit-content;
	margin: 1.5em auto 0 !important;
	padding: initial !important;
	border: initial !important;
	color: #eb2f00;
	font-size: 0.9em;
}

@media (min-width: 768px) {
.form-table th {
	width: 260px;
	padding-right: 2em;
	padding-bottom: 1.6em;
}

.form-table tr:not(:first-child) td {
	padding-top: 1.6em;
}
}

@media (max-width: 767.9px) {
.form-table th {
	display: block;
}

.form-table td {
	display: block;
}
}


.d-break-post,
.d-break-report-post,
.vc-desk-post,
.vc-brushup-post,
.professionals-post,
.startup-visa-post,
.startup-visa-en-post {
  --color_page: #e36f9f;
}


.border_wrap_primary {
  border: 1px solid #cdcdcd;
  border-radius: 10px;
  overflow: hidden;
}

.border_wrap_primary.support_border {
  border: 1px solid #e36f9f;
}
.border_wrap_primary.ecosystem_border {
  border: 1px solid #6f7bd9;
}

.border_inner_primary {
	padding-block: 60px;
	padding-inline: 4vw;
	background-color: #fff;
}
.border_inner_primary.reduce_pt {
	padding-block: 30px 60px;
}

.border_head_primary {
  background-color: #f6f6f6;
  padding: 25px 25px 25px 50px;
  font-size: 32px;
  line-height: 1.5;
	font-weight: 600;
}

.border_head_primary.support_head {
	background-color: #fadfea;
}
.border_head_primary.ecosystem_head {
	background-color: #e1e4f5;
}

.heading_border_primary {
	color: var(--color_page);
	font-weight: 600;
	border-bottom: solid 2px var(--color_page);
	margin-bottom: 1em;
	font-size: 28px;
	padding: 16px 8px;
}

.heading_simple {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 1em;
}

.indent_block {
	padding-left: 33px;
  padding-right: 33px;
}

.indent_1em {
	text-indent: -1em;
	padding-left: 1em;
}

.bg_wrap_primary {
    /* padding-left: 30px;
    padding-right: 30px; */
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #f7f7f7;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.border_wrap_primary p {
	font-size: 16px;
	line-height: 1.875;
	padding-left: 33px;
	padding-right: 33px;
}
.border_wrap_primary p {
	margin-block: 2em;
}
.border_wrap_primary p a {
	text-decoration: underline;
}

.border_wrap_primary table p {
  margin-block: 0;
}

.grid_block {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}


[class*="amelia-app-booking"] .am-spinner svg {
  width: 40px !important;
  max-width: none !important;
}

.number_ol {
	padding-left: 33px;
}
.number_heading {
    font-size: 20px;
    position: relative;
    padding-left: 3em;
}
.number_heading span {
    margin-right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background-color: #4d4d4d;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

.spacer_m {
	margin-bottom: 40px;
}
.spacer_l {
	margin-bottom: 60px;
}
.spacer_xl {
	margin-bottom: 80px;
}
.fz_120 {
	font-size: 120% !important;
}

@media (max-width: 767.9px) {
	.grid_block {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.border_head_primary {
		padding: 16px 20px;
		font-size: clamp(18px, calc((100vw * 24) / 768), 24px);
		line-height: 1.5;
	}
	.border_inner_primary {
		padding-block: 30px;
		padding-inline: 4vw;
	}
	.border_inner_primary.reduce_pt {
		padding-block: 15px 30px;
	}
	.heading_border_primary {
		font-size: 18px;
		padding: 8px 8px;
	}
	.bg_wrap_primary {
    padding-left: initial;
    padding-right: initial;
    padding-top: 60px;
    padding-bottom: 60px;
	}

	.border_wrap_primary p {
		padding-left: 0.5em;
		padding-right: initial;
	}

	.number_ol {
		padding-left: 0.5em;
	}

	.number_heading {
    font-size: 16px;
		padding-left: 2.5em;
	}

	.number_heading span {
    margin-right: 15px;
    width: 30px;
    height: 30px;
	}
	.spacer_xl {
		margin-bottom: 60px;
	}

	.indent_block {
		padding-left: 0.5em;
    padding-right: initial;
	}

}
