:root {
	/* メインカラー */
	--color-primary: #171c61;
	--color-accent: #ffd32e;
	--color-text: #000000;
	--color-text-dark: #000000;
	--color-white: #ffffff;
	--color-black: #000000;

	/* 背景カラー */
	--color-bg-light: #f7f7f7;
	--color-bg-white: #ffffff;

	/* ボーダーカラー */
	--color-border-dark: #000000;
	--color-border-light: #e0e0e0;
	--color-border-medium: #cccccc;

	/* ホバーカラー */
	--color-hover-primary: #171c61;
	--color-hover-accent: #ffd32e;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
html {
	scroll-behavior: smooth;
}
body {
	line-height: 1;
}
a {
	text-decoration-skip-ink: auto;
}
button {
	outline: 0;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}
q {
	display: inline;
	font-style: italic;
}
q:before {
	content: '"';
	font-style: normal;
}
q:after {
	content: '"';
	font-style: normal;
}
textarea,
input[type="text"],
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="search"],
input[type="password"] {
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
th,
td {
	padding: 2px;
}
big {
	font-size: 120%;
}
small,
sup,
sub {
	font-size: 80%;
}
sup {
	vertical-align: super;
}
sub {
	vertical-align: sub;
}
dd {
	margin-left: 20px;
}
kbd,
tt {
	font-family: courier;
	font-size: 12px;
}
ins {
	text-decoration: underline;
}
del,
strike,
s {
	text-decoration: line-through;
}
dt {
	font-weight: bold;
}
address,
cite,
var {
	font-style: italic;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
* {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
	transition: all 0.5s ease;
}
.sticky {
}
.bypostauthor {
}
.wp-caption {
}
.wp-caption-text {
}
.gallery-caption {
}
.alignright {
}
.alignleft {
}
.aligncenter {
}
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}

body {
	font-family: "source-han-sans-japanese", sans-serif;
	font-style: normal;
	font-size: 16px;
	color: var(--color-text);
	line-height: 1.8;
	letter-spacing: 1px;
	font-weight: 500;
	-webkit-text-size-adjust: 100%;
}
body a {
	text-decoration: none;
	color: var(--color-text);
}
body img {
	vertical-align: bottom;
}
div#wrapper {
	width: 100%;
	overflow: hidden;
	position: relative;
}

/* ========= FLEX ========== */
.flex {
	display: flex;
	flex-wrap: wrap;
}
.al_center {
	align-items: center;
}
/* ========= 2カラムレイアウト ========== */
.flex_2col {
	width: 48%;
	margin-right: 4%;
	padding: 0;
}
.flex_2col:nth-child(2n) {
	margin-right: 0%;
}
/* ========= 2カラム - 比率指定版 ========== */
.flex_2col_65 {
	width: 61%;
}
.flex_2col_65:nth-child(2) {
	margin-left: 4%;
}
.flex_2col_65 img {
	width: 100%;
}
.flex_2col_35 {
	width: 35%;
}
.flex_2col_35:nth-child(2) {
	margin-left: 4%;
}
.flex_2col_35 img {
	width: 100%;
}
.flex_2col_70 {
	width: 66%;
}
.flex_2col_70:nth-child(2) {
	margin-left: 4%;
}
.flex_2col_70 img {
	width: 100%;
}
.flex_2col_30 {
	width: 30%;
}
.flex_2col_30:nth-child(2) {
	margin-left: 4%;
}
.flex_2col_30 img {
	width: 100%;
}
/* ========= 3カラムレイアウト ========== */
.flex_3col {
	width: 32%;
	margin-right: 2%;
	padding: 0;
}
.flex_3col_sp4:nth-child(4) {
	display: none;
}
.flex_3col:nth-child(3n) {
	margin-right: 0%;
}
.flex_3col_nopadding {
	margin: 0;
	width: 33.333%;
}
/* ========= 4カラムレイアウト ========== */
.flex_4col {
	width: 23.5%;
	margin-right: 2%;
	padding: 0;
}
.flex_4col:nth-child(4n) {
	margin-right: 0%;
}
/* ========= 5カラムレイアウト ========== */
.flex_5col {
	width: 19.5%;
	margin-right: 2%;
	padding: 0;
}
.flex_5col:nth-child(5n) {
	margin-right: 0%;
}

/* ========= WRAP ========== */
.wrap {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}
.wrap_1500 {
	max-width: 1540px;
	margin: 0 auto;
	padding: 0 20px;
}
.wrap_1000 {
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 20px;
}
.wrap_800 {
	max-width: 840px;
	margin: 0 auto;
	padding: 0 20px;
}
.wrap .wrap_1500 {
	padding: 0 0px;
}
.wrap .wrap_1000 {
	padding: 0 0px;
}
.wrap .wrap_800 {
	padding: 0 0px;
}

/* ========= IMAGE ========== */
.img_res img {
	width: 100%;
	height: auto;
}
.img_wide {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: fit-content;
}
.img_wide:before {
	content: "";
	display: block;
	padding-top: 65%;
}
.img_wide img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
}
a:hover .img_wide img {
	transform: translate(-50%, -50%) scale(1.1);
}
.img_sq {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: fit-content;
}
.img_sq:before {
	content: "";
	display: block;
	padding-top: 100%;
}
.img_sq img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
}
a:hover .img_sq img {
	transform: translate(-50%, -50%) scale(1.1);
}

/* ========= TEXT SIZE ========== */
.text_xl {
	font-size: 1.25em; /* 20px → 1.25em */
}
.text_lg {
	font-size: 1.125em; /* 18px → 1.125em */
}
.text_md {
	font-size: 1em; /* 16px → 1em */
}
.text_sm {
	font-size: 0.875em; /* 14px → 0.875em */
}
.text_xs {
	font-size: 0.75em; /* 12px → 0.75em */
}

/* ========= TEXT ALIGN ========== */
.text_center {
	text-align: center;
}
.text_right {
	text-align: right;
}
.text_left {
	text-align: left;
}

/* ========= FONT WEIGHT ========== */
.text_bold {
	font-weight: 600;
}
.text_normal {
	font-weight: 400;
}
.text_light {
	font-weight: 300;
}

/* ========= PAGE_TOP ========== */
.page_top {
	position: fixed;
	bottom: 70px;
	right: 20px;
	z-index: 1000;
	cursor: pointer;
	transition: opacity 0.3s ease;
}
.page_top img {
	width: 50px;
	height: auto;
	display: block;
}
.page_top:hover {
	opacity: 0.7;
}

/* ========= HAMBURGER ========== */
.hamburger,
#menu-toggle {
	display: none;
}
.sp_only {
	display: none;
}
/* ========= RESPONSIVE ========== */
@media only screen and (max-width: 780px) {
	/* ========= HAMBURGER ========== */
	.hamburger {
		display: block;
		width: 25px;
		height: 18px;
		position: absolute;
		top: 18px;
		right: 17px;
		cursor: pointer;
		z-index: 1001;
	}
	.hamburger::before,
	.hamburger::after,
	.hamburger span {
		content: "";
		display: block;
		width: 100%;
		height: 2px;
		background: var(--color-text);
		transition: 0.3s;
		position: absolute;
		left: 0;
		transform-origin: center; /* ★ 回転の基準を中央に */
	}

	.hamburger span {
		top: 50%;
		transform: translateY(-50%);
	}

	.hamburger::before {
		top: 0;
	}

	.hamburger::after {
		bottom: 0;
	}
	.header__nav--list {
		position: absolute;
		top: 0;
		right: 0;
		height: 100vh;
		background: var(--color-white);
		width: 60%;
		flex-direction: column;
		display: none;
		padding: 60px 1em;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
		z-index: 1000;
		gap: 0 !important;
	}
	.header__nav--list li {
		display: block;
		width: 100%;
	}
	.header__nav--list li a {
		display: block;
		width: 100%;
		padding: 1em 0.5em;
		font-size: 13px;
		font-weight: 600;
		border-top: solid 1px var(--color-border-light);
	}
	.header__nav--list li:last-child a {
		border-bottom: solid 1px var(--color-border-light);
	}
	#menu-toggle {
		display: none;
	}
	#menu-toggle:checked ~ .header__nav--list {
		display: flex;
	}
	/* ハンバーガー → × に変形 */
	#menu-toggle:checked + .hamburger::before {
		transform: rotate(45deg);
		top: 50%;
	}
	#menu-toggle:checked + .hamburger::after {
		transform: rotate(-45deg);
		bottom: auto;
		top: 50%;
	}
	#menu-toggle:checked + .hamburger span {
		opacity: 0;
	}

	/* ========= PAGE_TOP ========== */
	.page_top {
		bottom: 20px;
		right: 20px;
	}
	.page_top img {
		width: 40px;
	}

	.sp_only {
		display: block;
	}
	.pc_only {
		display: none;
	}
	/* FLEX レスポンシブ */
	/* 2カラム系は案件によって調整するためコメントアウト */
	/*
    .flex_2col,
    .flex_2col_65,
    .flex_2col_35,
    .flex_2col_70,
    .flex_2col_30 {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 20px;
    }
    .flex_2col:last-child,
    .flex_2col_65:last-child,
    .flex_2col_35:last-child,
    .flex_2col_70:last-child,
    .flex_2col_30:last-child {
        margin-bottom: 0;
    }
    */

	.flex_3col,
	.flex_3col_sp4:nth-child(4) {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
		display: block;
	}

	.flex_4col {
		width: 48%;
		margin-right: 4%;
		margin-bottom: 20px;
	}
	.flex_4col:nth-child(2n) {
		margin-right: 0;
	}
	.flex_4col:nth-child(3),
	.flex_4col:nth-child(4) {
		margin-bottom: 0;
	}
	.flex_5col {
		width: 32%;
		margin-right: 4%;
		margin-bottom: 20px;
	}
	.flex_5col:nth-child(5n) {
		margin-right: 4%;
	}
	.flex_5col:nth-child(3) {
		margin-right: 0;
	}
	/* WRAP レスポンシブ */
	.wrap,
	.wrap_1500,
	.wrap_1000,
	.wrap_800 {
		padding: 0 15px;
	}

	/* TEXT SIZE レスポンシブ */
	.text_xl {
		font-size: 1.125em; /* 18px → 1.125em */
	}
	.text_lg {
		font-size: 1em; /* 16px → 1em */
	}
	.text_md {
		font-size: 0.875em; /* 14px → 0.875em */
	}
	.text_sm {
		font-size: 0.8125em; /* 13px → 0.8125em */
	}
	.text_xs {
		font-size: 0.6875em; /* 11px → 0.6875em */
	}

	/* IMAGE レスポンシブ */
	.img_wide:before {
		padding-top: 75%; /* スマホでは少し縦長に */
	}

	/* UTILITY レスポンシブ */
	.sp_text_center {
		text-align: center;
	}
	.sp_text_left {
		text-align: left;
	}
	.sp_flex_col {
		flex-direction: column;
	}
	.sp_w_full {
		width: 100%;
	}
	.sp_mb_10 {
		margin-bottom: 10px;
	}
	.sp_mb_20 {
		margin-bottom: 20px;
	}
	.sp_mt_10 {
		margin-top: 10px;
	}
	.sp_mt_20 {
		margin-top: 20px;
	}
}

/* タブレット用 */
@media only screen and (max-width: 1024px) and (min-width: 781px) {
	.wrap,
	.wrap_1500,
	.wrap_1000,
	.wrap_800 {
		padding: 0 30px;
	}

	.flex_4col {
		width: 48%;
		margin-right: 4%;
	}
	.flex_4col:nth-child(2n) {
		margin-right: 0;
	}
	.flex_4col:nth-child(4n) {
		margin-right: 4%;
	}
}

/* PAGE & POST DEFAULT CSS */
.low_header {
	position: relative;
	overflow: hidden;
	height: auto;
}
.low_header:before {
	content: "";
	display: block;
	padding-top: 30%;
}
@media (min-width: 1400px) {
	.low_header:before {
		padding-top: 25%;
	}
}
@media (min-width: 1800px) {
	.low_header:before {
		padding-top: 20%;
	}
}
@media (max-width: 768px) {
	.low_header:before {
		padding-top: 60%;
	}
}
.low_header__main {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	top: 0;
	display: flex;
	background: rgb(0 0 0 / 45%);
}
.low_header__bk {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}
.low_header__bk--img {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.low_header__bk--img img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
}
.low_header__ttl {
	position: relative;
	z-index: 1;
	justify-content: center;
	width: 100%;
}
.mainh1 {
	line-height: 1.7;
	font-size: clamp(1rem, 0.956rem + 0.17vw, 1.125rem);
	color: #fff;
	margin-top: 30px;
}
.mainh1 span {
	display: block;
	margin-bottom: 0px;
	font-family: var(--font-en);
	font-size: clamp(2rem, 1.387rem + 2.36vw, 3.75rem);
	font-weight: bold;
	letter-spacing: 0.05em;
	color: #fff;
}
@media (max-width: 768px) {
	.low_header__ttl {
		padding-top: 0em;
		width: 100%;
		min-width: 0;
		justify-content: center;
		padding-left: 20px;
		padding-right: 20px;
	}
}
.breadcrumbs {
	padding: 5px 60px;
	font-size: 11px;
	color: #333;
	z-index: 1;
}
@media (max-width: 1200px) {
	.breadcrumbs {
		padding: 5px 20px;
	}
}
.breadcrumbs a {
	color: #333;
}
.page_content {
	margin: 80px auto 80px;
}
.low_post__ttl {
	margin-bottom: 25px;
	border-bottom: solid 2px var(--color-primary);
	padding-bottom: 15px;
}
.low_post__detail.blog__archive--detail {
	justify-content: unset;
}
.low_blog__maincontent .low_post__detail.blog__archive--detail {
	margin: 0.5em 0 1.5em;
}
.work__archive--category {
	font-size: 11px;
	letter-spacing: 0;
}
.work__archive--detail {
    margin: 0px 0px 10px;
}
.work_category {
    background: var(--color-primary);
    display: inline-block;
    color: #fff;
    padding: 0.3em 0.5em;
    line-height: 1.5;
    margin-right: 0.5em;
    font-size: 12px;
    font-weight: 500;
    white-space: noWrap;
    min-width: 7em;
    text-align: center;
    margin-right: 1em;
}
.low_post__maincontent h1 {
	position: relative;
	font-size: 24px;
	padding-bottom: 0.5em;
	margin-bottom: 1em;
	border-bottom: solid 2px #dcdcdc;
	font-weight: 500;
}
.low_post__maincontent h1:before {
	content: "";
	position: absolute;
	width: 2.5em;
	height: 2px;
	bottom: -2px;
	left: 0;
	background: #333;
}
.low_post__maincontent h2 {
	position: relative;
	font-size: 22px;
	padding-bottom: 0.5em;
	margin-bottom: 1em;
	border-bottom: solid 2px #dcdcdc;
	font-weight: 500;
}
.low_post__maincontent h2:before {
	content: "";
	position: absolute;
	width: 2.5em;
	height: 2px;
	bottom: -2px;
	left: 0;
	background: #171c61;
}
.low_post__maincontent h3 {
	position: relative;
	font-size: 20px;
	padding-bottom: 0.5em;
	margin-bottom: 1em;
	border-bottom: solid 2px #dcdcdc;
	font-weight: 500;
}
.low_post__maincontent h3:before {
	content: "";
	position: absolute;
	width: 2.5em;
	height: 2px;
	bottom: -2px;
	left: 0;
	background: #171c61;
}
.low_post__maincontent h4 {
	position: relative;
	font-size: 18px;
	padding-bottom: 0.5em;
	margin-bottom: 1em;
	border-bottom: solid 2px #dcdcdc;
	font-weight: 500;
}
.low_post__maincontent h4:before {
	content: "";
	position: absolute;
	width: 2.5em;
	height: 2px;
	bottom: -2px;
	left: 0;
	background: #171c61;
}
.low_post__maincontent h5 {
	position: relative;
	font-size: 16px;
	padding-bottom: 0.5em;
	margin-bottom: 1em;
	border-bottom: solid 2px #dcdcdc;
	font-weight: 500;
}
.low_post__maincontent h5:before {
	content: "";
	position: absolute;
	width: 2.5em;
	height: 2px;
	bottom: -2px;
	left: 0;
	background: #171c61;
}
.low_post__maincontent h6 {
	position: relative;
	font-size: 14px;
	padding-bottom: 0.5em;
	margin-bottom: 1em;
	border-bottom: solid 2px #dcdcdc;
	font-weight: 500;
}
.low_post__maincontent h6:before {
	content: "";
	position: absolute;
	width: 2.5em;
	height: 2px;
	bottom: -2px;
	left: 0;
	background: #171c61;
}
.low_page__maincontent img {
	max-width: 100%;
	height: auto;
}
.low_post__maincontent p {
	margin: 0px 0 50px;
	line-height: 2;
	font-size: 15px;
}
.low_post__maincontent p strong {
	font-weight: 700;
}
.low_post__maincontent img {
	max-width: 100%;
	height: auto;
}
.low_post__maincontent p a {
	color: var(--color-primary);
	border-bottom: solid 1px var(--color-primary);
}
.low_post__maincontent ul {
	counter-reset: item;
	list-style-type: none;
	margin: 0px 0 50px;
}
.low_post__maincontent ul li {
	counter-increment: item;
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.low_post__maincontent ul li:before {
	content: "";
	background: #000;
	color: #fff;
	border-radius: 100%;
	width: 0.3em;
	height: 0.3em;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 0.5em;
}
.low_post__maincontent ol {
	counter-reset: item;
	list-style-type: none;
	margin: 0px 0 50px;
}
.low_post__maincontent ol li {
	counter-increment: item;
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.low_post__maincontent ol li:before {
	content: counter(item);
	background: #3babc6;
	color: #fff;
	border-radius: 100%;
	width: 1.5em;
	height: 1.5em;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 0.5em;
}
@media (max-width: 850px) {
	.low_post__maincontent ul {
		font-size: 14px;
	}
	.low_post__maincontent ol {
		font-size: 14px;
	}
}
.low_post__ttl h1 {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0.2em;
	font-size: 22px;
	line-height: 1.6;
}
.low_post__thumbnail {
	margin-bottom: 3em;
}
.low_post__backbutton {
	margin: 50px 0 0;
	text-align: center;
}
.low_post__backbutton a {
	display: inline-block;
}
.low_blog__maincontent {
	width: 65%;
	margin-right: 5%;
}
@media (max-width: 850px) {
	.page_content {
		margin: 50px auto;
	}
	.low_post__maincontent h1 {
		font-size: 22px;
		letter-spacing: 0;
	}
	.low_post__maincontent h2 {
		font-size: 20px;
		letter-spacing: 0;
	}
	.low_post__maincontent h3 {
		font-size: 17px;
		letter-spacing: 0;
	}
	.low_post__maincontent h4 {
		font-size: 15px;
		letter-spacing: 0;
	}
	.low_post__maincontent h5 {
		font-size: 13px;
		letter-spacing: 0;
	}
	.low_post__maincontent h6 {
		font-size: 11px;
		letter-spacing: 0;
	}
	.low_post__maincontent p {
		margin: 0px 0 2.5em;
		letter-spacing: 0px;
		font-size: 13px;
	}
}
@media (max-width: 850px) {
	.low_blog__maincontent {
		width: 100%;
		margin-right: 0;
	}
}
.low_post__slider {
	margin-bottom: 2em;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}
.low_post__slider--sub .slick-track {
	margin: 0;
}
.low_post__slider--sub .slick-slide {
	padding: 8px 8px 0em 0em;
	cursor: pointer;
}
.sidebar {
	width: 30%;
	height: fit-content;
	padding: 1.5em 1.5em;
	background: #fff;
}
.slick-slider div {
	transition: none;
	vertical-align: middle;
}
.slider-works_arrow {
    position: absolute;
    background: var(--color-primary);
    display: flex !important;
    width: fit-content;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    cursor: pointer;
    transform: rotate(180deg);
    z-index: 1;
    top: calc(50% - 24px);
    left: -1.5em;
}
.slider-works_arrow:before {
	content: "";
	opacity: 1;
	width: 15px;
	height: 15px;
	content: "";
	display: inline-block;
	vertical-align: middle;
	background: no-repeat center/contain;
	background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210px%22%20height%3D%2213px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M9.488%2C6.130%20C9.925%2C6.440%2010.31%2C7.51%209.725%2C7.494%20C9.660%2C7.587%209.580%2C7.668%209.488%2C7.734%20L2.481%2C12.709%20C2.44%2C13.19%201.442%2C12.911%201.137%2C12.468%20C1.23%2C12.303%200.962%2C12.106%200.963%2C11.905%20L0.963%2C1.958%20C0.962%2C1.418%201.394%2C0.979%201.927%2C0.978%20C2.125%2C0.978%202.319%2C1.39%202.481%2C1.154%20L9.488%2C6.130%20Z%22%2F%3E%3C%2Fsvg%3E);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.slider-works_next {
	position: absolute;
    background: var(--color-primary);
	display: flex !important;
	width: fit-content;
    width: 50px;
    height: 50px;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	cursor: pointer;
	top: calc(50% - 25px);
	right: 25%;
}
.slider-works_next:before {
	content: "";
	opacity: 1;
	width: 15px;
	height: 15px;
	content: "";
	display: inline-block;
	vertical-align: middle;
	background: no-repeat center/contain;
	background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210px%22%20height%3D%2213px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M9.488%2C6.130%20C9.925%2C6.440%2010.31%2C7.51%209.725%2C7.494%20C9.660%2C7.587%209.580%2C7.668%209.488%2C7.734%20L2.481%2C12.709%20C2.44%2C13.19%201.442%2C12.911%201.137%2C12.468%20C1.23%2C12.303%200.962%2C12.106%200.963%2C11.905%20L0.963%2C1.958%20C0.962%2C1.418%201.394%2C0.979%201.927%2C0.978%20C2.125%2C0.978%202.319%2C1.39%202.481%2C1.154%20L9.488%2C6.130%20Z%22%2F%3E%3C%2Fsvg%3E);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.low_post__slider .slider-works_next {
    right: -1.5em;
}
.low_post__slider--sub .slick-track {
	margin: 0;
}
.low_post__slider--sub .slick-slide {
	padding: 8px 8px 0em 0em;
	cursor: pointer;
}
.sidebar__work_archive {
	margin-top: 1.5em;
}
@media (max-width: 850px) {
	.slider-works_arrow {
		width: 40px;
		height: 40px;
		top: calc(50% - 20px);
		left: -1em;
	}
	.slider-works_next {
		width: 40px;
		height: 40px;
		top: calc(50% - 20px);
		right: -1em;
	}
	.low_post__slider .slider-works_next {
		right: -1em;
	}
}
.low_work__data {
	margin-bottom: 2em;
	border-left: solid 1px #cacaca;
	border-right: solid 1px #cacaca;
}
.low_work__data--content {
	border-top: solid 1px #cacaca;
	display: flex;
	font-size: 14px;
	letter-spacing: 1px;
}
.low_work__data--content:last-child {
	border-bottom: solid 1px #cacaca;
}
.low_work__data--ttl {
	width: 25%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5em;
	background: unset;
	color: #333;
	border-right: solid 1px #cacaca;
	font-weight: 500;
}
.low_work__data--text {
	width: 75%;
	padding: 2em;
}
.low_blog__maincontent .low_post__ttl h1 {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0.2em;
	font-size: 22px;
}
@media (max-width: 850px) {
	.low_work__data--content {
		font-size: 12px;
		letter-spacing: 0px;
	}
	.low_work__data--ttl {
		width: 25%;
		padding: 1em 0;
	}
	.low_work__data--text {
		width: 75%;
		padding: 1em 0.5em 1em 1.5em;
	}
	.low_blog__maincontent .low_post__ttl h1 {
		font-size: 22px;
		line-height: 1.6;
	}
}
.low_blog__maincontent .low_post__detail.blog__archive--detail {
	margin: 0.5em 0 1.5em;
}
.sidebar {
    width: 30%;
    height: fit-content;
    padding: 1.5em 1.5em;
    background: var(--color-primary);
}
@media (max-width: 850px) {
	.sidebar {
		width: 100%;
		padding: 1.5em;
		margin-top: 2em;
		background: #f5f5f5;
	}
}
.sidebar__content {
	margin-bottom: 2em;
}
.sidebar__content:last-child {
	margin-bottom: 0em;
}
.sidebar__content ul {
	padding: 0 0.2em;
}
.sidebar__content h3 {
	margin-bottom: 0.3em;
	padding: 0.8em 1em 0.8em 1.5em;
	font-weight: 700;
	font-size: 15px;
	position: relative;
	line-height: 1;
	background: #efefef;
}
.sidebar__content h3:before {
	content: "";
	width: 3px;
	height: calc(100% - 10px);
	position: absolute;
	background: linear-gradient(265deg, var(--color-pi) 6.33%, var(--color-pr) 97.56%);
	top: 5px;
	left: 6px;
}
.sidebar__content ul li a {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 0.7em 2em 0.7em 0.5em;
	padding-right: 2em;
	border-bottom: solid 1px #dcdcdd;
	position: relative;
	font-size: 13px;
	letter-spacing: 1px;
}
.sidebar__content ul li a:after {
	content: "";
	position: absolute;
	background: #0968aa;
	width: 0.4em;
	height: 0.6em;
	clip-path: polygon(0 0, 0% 100%, 100% 49%);
	right: 0.5em;
}
.sidebar__content .blog__archive--ttl {
	font-size: 14px;
	line-height: 1.6;
}
.sidebar__blog_archive {
	margin-top: 1.5em;
}
.sidebar__blog_archive .blog__archive--content {
	display: block;
	margin-bottom: 1.5em;
}
.sidebar__blog_archive .blog__archive--content:last-child {
	margin-bottom: 0;
}
.low_post__maincontent table {
	width: 100%;
	border-collapse: collapse;
	margin: 0px 0 50px;
}
.low_post__maincontent tr {
	border-top: solid 1px #b5b5b5;
	font-size: 15px;
	font-weight: 400;
}
.low_post__maincontent tr:last-child {
	border-bottom: solid 1px #b5b5b5;
}
.low_post__maincontent td {
	padding: 32px 2em;
	border: unset;
	border-right: solid 1px #b5b5b5;
}
.low_post__maincontent td:first-child {
	border-left: solid 1px #b5b5b5;
}
@media (max-width: 850px) {
	.low_post__maincontent tr {
		font-size: 12px;
	}
	.low_post__maincontent td {
		padding: 1em;
		font-size: 12px;
	}
}
/* archive */
.taxonomy__archive {
	margin: 50px 0 calc(50px - 1%);
	padding: 0 0em;
	justify-content: unset;
}
.low_blog__maincontent .taxonomy__archive {
	margin-top: 0;
}
.taxonomy__archive a {
	text-align: center;
	font-size: 14px;
	padding: 0.5em;
	margin: 0 1% 1% 0%;
	border: solid 2px var(--color-primary);
	color: var(--color-primary);
	font-weight: 600;
	width: 24%;
}
.low_blog__maincontent .taxonomy__archive a {
	width: 24%;
}
.taxonomy__archive a:hover {
	background: var(--color-primary);
	color: #fff;
}
.taxonomy__archive a.active {
	background: var(--color-primary);
	color: #fff;
}
.low_news .taxonomy__archive a:nth-child(5n) {
	margin-right: 0;
}
.low_news {
	margin: 80px auto 100px;
}
.blog__archive--content {
	margin-bottom: 35px;
}
.blog__archive--detail {
	justify-content: space-between;
	margin: 10px 0 5px;
}
.blog__archive--category {
	font-size: 11px;
	letter-spacing: 0;
}
.blog_category {
	background: var(--color-primary);
	display: inline-block;
	color: #fff;
	padding: 0em 1em;
	margin-right: 0.5em;
	font-size: 12px;
	font-weight: 500;
}
.blog_category:last-child {
	margin-right: 0;
}

.news__archive--category {
	font-size: 11px;
	letter-spacing: 0;
}
.news_category {
	background: var(--color-primary);
	display: inline-block;
	color: #fff;
	padding: 0.3em 0.5em;
	line-height: 1.5;
	margin-right: 0.5em;
	font-size: 12px;
	font-weight: 500;
	white-space: noWrap;
	min-width: 7em;
	text-align: center;
}
.news_category:last-child {
	margin-right: 0;
}
.low_post__backbutton.news {
	padding: 0;
	background: unset;
	text-align: left;
	margin: 0px 0 50px;
}
.low_post__backbutton.news a {
	margin: 0 auto;
}
.low_post__detail .blog_category {
	margin-right: 1em;
}
.low_post__detail .news_category {
	margin-right: 1em;
}
.blog__archive--date {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 1px;
}
.work_page {
	margin: 80px auto 80px;
}
@media (max-width: 850px) {
	.work_page {
		margin: 50px auto;
	}
	.low_news {
		margin: 50px auto 80px;
	}
}
.work__archive--content {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 4%;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    background: #fff;
}
.work__archive--description {
	padding: 20px;
	background: #fff;
}
.work__archive--ttl {
    font-size: 16px;
    font-weight: 500;
    margin-top: 0.5em;
}
.sidebar__work_archive .work__archive--content {
	background: #efefef;
	display: block;
	width: 100%;
	margin-right: 0;
	margin-bottom: 1.5em;
}
.sidebar__work_archive .work__archive--content .work__archive--description {
    padding: 15px 15px 15px;
}
.sidebar__work_archive .blog_category {
    font-size: 10px;
}
.sidebar__work_archive .work__archive--content .work__archive--description .work__archive--ttl {
	font-size: 14px;
}
@media (max-width: 768px) {
	.taxonomy__archive {
		margin: 2em 0 2em;
		padding: 0 0em;
		justify-content: flex-start;
	}
	.taxonomy__archive a {
		font-size: 11px;
		padding: 0.3em 0;
		border: solid 1px var(--color-primary);
		font-weight: 500;
		width: 49%;
		letter-spacing: 0;
		margin-right: 2%;
		margin-bottom: 2%;
	}
	.low_blog__maincontent .taxonomy__archive a {
		width: 49%;
	}
	.taxonomy__archive a:nth-child(4n) {
		margin-right: 0%;
		margin-bottom: 2%;
	}
	.taxonomy__archive a:nth-child(2n) {
		margin-right: 0;
	}
	.work__archive--content {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.work__archive--description {
		padding: 0.5em 0.5em 0.8em;
	}
	.work__archive--ttl {
		font-size: 14px;
	}
	.sidebar__blog_archive .blog__archive--content {
		width: 100%;
	}
}
.wp-pagenavi {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
}
.wp-pagenavi span {
	display: flex;
	width: 2.5em;
	height: 2.5em;
	background: #0768aa;
	text-align: center;
	justify-content: center;
	align-items: center;
	color: #fff;
	margin: 0 0.5em;
}
.wp-pagenavi span.extend {
	background: unset;
}
.wp-pagenavi span.extend:before {
	background: no-repeat;
	content: "...";
	display: block;
}
.wp-pagenavi a {
	display: flex;
	width: 2.5em;
	height: 2.5em;
	background: #b9b9b9;
	text-align: center;
	justify-content: center;
	align-items: center;
	color: #fff;
	margin: 0 0.5em;
}
.wp-pagenavi a:hover {
	background: #0768aa;
}
.no_post {
	border: solid 1px #cccccc;
	padding: 7em 0;
	margin: 0;
	text-align: center;
	font-size: 14px;
	margin-bottom: 4%;
}
.company__main {
	margin-bottom: 100px;
	margin-top: 80px;
}
.company__main table {
	width: 100%;
	border-collapse: collapse;
}
.company__main tr {
	display: flex;
	border-bottom: solid 1px #e4e4e4;
	font-size: 15px;
	font-weight: 400;
}
.company__main tr:first-child {
	border-top: solid 1px #e4e4e4;
}
.company__main td {
	width: 250px;
	text-align: center;
	padding: 42px 0;
	border: unset;
}
.company__main td:nth-child(2) {
	width: calc(100% - 250px);
	padding: 42px 2em;
	border-left: solid 1px #e4e4e4;
	text-align: left;
}
.company__map {
	background: #f6f6f6;
	padding: 100px 0;
}
.company__map--iframe iframe {
	width: 100%;
	height: 30em;
	border: none;
}
.mainh2 {
	line-height: 1.7;
	font-size: 16px;
	text-align: center;
	margin: 0 0 50px;
}
.mainh2 span {
	display: block;
	margin-bottom: 0px;
	font-family: var(--font-en);
	font-size: 40px;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.3;
	color: var(--color-dpi-2);
}
@media only screen and (max-width: 768px) {
	.low_company {
		padding: 50px 0 0px;
	}
	.company__main {
		margin-bottom: 60px;
	}
	.company__map {
		padding: 50px 0 40px;
	}
	.company__map iframe {
		height: 20em;
	}
	.company__main tr {
		font-size: 12px;
	}
	.company__main td {
		width: 30%;
		padding: 1.5em 0;
	}
	.company__main td:nth-child(2) {
		width: 70%;
		padding: 1.5em;
	}
	.company__map iframe {
		height: 20em;
	}
	.mainh2 {
		font-size: 13px;
		margin: 0 0 40px;
	}
	.mainh2 span {
		font-size: 35px;
	}
}
.low_page__contact--description {
	margin: 2em 0;
}
.contact_form__content {
	width: 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	border-top: solid 1px #b9b9b9;
	padding: 2em 0;
}
.contact_form__content label {
	width: 30%;
	height: fit-content;
	font-size: 15px;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1em;
}
.contact_form__content label span {
	background: #f44336;
	color: #fff;
	display: inline-block;
	padding: 0.1em 1em;
	font-size: 11px;
	border-radius: 2px;
	text-align: center;
	width: fit-content;
}
.contact_form__content--input {
	width: 70%;
}
.contact_form__content--input input[type="text"] {
	width: 100%;
	margin: 0;
	height: 3em;
	max-width: unset;
	border-radius: 0;
	border: none;
	background: rgb(158 158 158 / 15%);
}
.contact_form__content--input input[type="email"] {
	width: 100%;
	margin: 0;
	height: 3em;
	max-width: unset;
	border-radius: 0;
	border: none;
	background: rgb(158 158 158 / 15%);
}
.contact_form__content--input textarea {
	width: 100%;
	margin: 0;
	height: 14em;
	max-width: unset;
	border-radius: 0;
	border: none;
	background: rgb(158 158 158 / 15%);
}
.contact_form__check {
	margin: 30px 0;
	font-size: 14px;
}
.contact_form__policy h4 {
	border: none;
}
.g-recaptcha {
	margin: 0 auto 40px;
	width: fit-content;
}
.contact_form__content--submit input[type="submit"] {
	background: #0968aa;
	color: #fff;
	padding: 1em 7em;
	display: flex;
	position: relative;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 600;
	justify-content: center;
	width: fit-content;
	align-items: center;
	border: none;
	margin: 0 auto;
	cursor: pointer;
}
.low_post__maincontent .contact_form__policy a {
	border-bottom: none;
}
@media only screen and (max-width: 768px) {
	.low_page__contact--description {
		margin: 2em 0;
		font-size: 13px;
	}
	.contact_form__content label {
		width: 100%;
		font-size: 13px;
		letter-spacing: 1px;
		padding: 0em;
		justify-content: flex-start;
	}
	.contact_form__content label span {
		padding: 0em 1em;
		font-size: 11px;
		margin-left: 1em;
	}
	.contact_form__content--input {
		width: 100%;
		margin-top: 1em;
	}
}
.policy__main--content h2 {
	font-size: 20px;
	font-weight: 500;
	display: flex;
	align-items: center;
	letter-spacing: 3px;
	position: relative;
	margin-bottom: 0.5em;
}
.scroll_animation01,
.scroll_animation02,
.scroll_animation03 {
	opacity: 0;
	transform: translateY(40px);
	transition:
		opacity 2s ease-out,
		transform 2s ease-out;
}
.scroll_animation01.visible,
.scroll_animation02.visible,
.scroll_animation03.visible {
	opacity: 1;
	transform: translateY(0);
}
.scroll_animation01.visible {
	transition-duration: 1s;
}
.scroll_animation02.visible {
	transition-duration: 2s;
}
.scroll_animation03.visible {
	transition-duration: 3s;
}
/* 遅延アニメーション */
.delay01 {
	transition-delay: 0.2s;
}
.delay02 {
	transition-delay: 0.4s;
}
.delay03 {
	transition-delay: 0.6s;
}
.delay04 {
	transition-delay: 0.8s;
}

.scroll_animation__bottom {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}
.scroll_animation__bottom.is-show {
	opacity: 1;
	transform: translateY(0);
}
.scroll_animation__fade {
	opacity: 0;
	transition: opacity 1s ease;
}
.scroll_animation__fade.is-show {
	opacity: 1;
}
/* 左から */
.scroll_animation__left {
	opacity: 0;
	transform: translateX(-50px);
	transition: all 0.8s ease;
}
.scroll_animation__left.is-show {
	opacity: 1;
	transform: translateX(0);
}
/* 右から */
.scroll_animation__right {
	opacity: 0;
	transform: translateX(50px);
	transition: all 0.8s ease;
}
.scroll_animation__right.is-show {
	opacity: 1;
	transform: translateX(0);
}
/* ズーム */
.scroll_animation__zoom {
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.8s ease;
}
.scroll_animation__zoom.is-show {
	opacity: 1;
	transform: scale(1);
}
.sp_only {
	display: none;
}
.mobile-menu {
	display: none;
}
@media only screen and (max-width: 768px) {
	.sp_only {
		display: inline-block;
	}
	.pc_only {
		display: none;
	}
}
