@charset "UTF-8";

/*********************
ROOT
**********************/
:root {
	--base: #F8F9F9;
	--bg-1: #F8F9F9;
	--bg-2: #F8FAFA;

	--text-main: #151515;;
	--text-sub: #444;
	--text-light: #707071;

	--gradient: linear-gradient(to right, #E63BCB, #199CC5);
	--main-color-1: #4072B3;
	--main-color-2: #7B96B4;
	--main-color-3: #B1BDC6;
	--main-color-4: #EDF0F2;
	--sub-color-1: #C4C4C4;
	--sub-color-2: #E2E2E2;
	--sub-color-3: #EBEBEB;
	--accent-color-1: #FF496B;
	--accent-color-2: #CF1531;

	--font-jp: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--font-en: futura-pt, 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--regular: 300;
	--light: 300;
	--normal: 400;
	--medium: 500;
	--bold: 700;
	--heavy: 900;

	--container: calc(1920px + 7%);
	--container-side: 3.5%;
	--container-ll: calc(1100px + 7%);
	--container-l: calc(1000px + 7%);
	--container-m: calc(900px + 7%);
	--container-s: calc(800px + 7%);
	--container-ss: calc(700px + 7%);

	--radius: 5px;
	--shadow: 0 4px 4px rgb(0 0 0 / 1%), 0 12px 36px rgb(0 0 0 / 4%);
}


/*********************
BASE
*********************/
html {
	font-size: 62.5%;
}

body {
	background-color: var(--base);
	color: var(--text-main);
	font-family: var(--font-jp);
	font-weight: var(--normal);
	font-size: 1.6rem;
	letter-spacing: .1em;
	line-height: 1.7;
}

section {
	position: relative;
	width: 100%;
}

h1,
h2,
h3 {
	font-weight: var(--normal);
}

p {
	margin: 0 0 1em;
}

a {
	color: var(--text-main);
	transition: all 0.3s;
}

a:hover {
	opacity: 0.7;
}

img {
	height: auto;
	border: none;
	line-height: 0;
	vertical-align: bottom;
}

ol,
ul {
	padding: 0;
}

ol li {
	margin: 0 0 .5em 1.5em;
}

ul li {
	margin: 0 0 .5em 1.2em;
}

dl,
dt,
dd {
	margin: 0;
}


@media only screen and (max-width: 560px) {
	body {
		font-size: 1.5rem;
	}

}


/*********************
GENERAL
*********************/

/*FONT*/
.font-en {
	font-family: var(--font-en);
}

.small {
	font-size: .85em;
}

.large {
	font-size: 1.2em;
}

.strong {
	color: var(--text-main);
}

.uppercase {
	text-transform: uppercase;
}

.line-heighter,
.line-heighter * {
	line-height: 2;
}

.p-sub {
	color: var(--text-light);
}


/*ALIGN*/
.center {
	text-align: center;
}

.center > * {
	margin-left: auto;
	margin-right: auto;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}


/*IMAGE*/
.img-circle {
	border-radius: 50%;
}

.img-radius {
	border-radius: 30px;
}

.img-object {
	padding-top: 66%;
	position: relative;
	overflow: hidden;
}

.img-object>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}


/*FLEX*/
.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.flex-reverse {
	flex-direction: row-reverse;
}

.nowrap {
	flex-wrap: nowrap;
}

.space-around {
	justify-content: space-around;
}

.justify-start {
	justify-content: flex-start;
}

.justify-center {
	justify-content: center;
}

.justify-end {
	justify-content: flex-end;
}

.items-center {
	align-items: center;
}

.cell {
	position: relative;
}

.cell img {
	display: block;
	width: 100%;
}

.cell > *:last-child {
	margin-bottom: 0;
}

.cell--1-2-l {
	width: 50%;
}

.cell--1-2-m {
	width: 48.5%;
}

.cell--1-2-s {
	width: 41%;
}

.cell--1-3-l {
	width: 32%;
}

.cell--1-3-m {
	width: 30%;
}

.cell--1-3-s {
	width: 28%;
}

.cell--1-4 {
	width: 23%;
}

.cell--2-3 {
	width: 60%;
}

.cell--3-4 {
	width: 73%;
}


@media only screen and (max-width: 560px) {

	.cell--1-2-l,
	.cell--1-2-m,
	.cell--1-2-s,
	.cell--1-3-l,
	.cell--1-3-m,
	.cell--1-3-s,
	.cell--2-3,
	.cell--3-4{
		width: 100%;
	}

	.cell--1-4 {
		width: 48%;
	}

	.order0 {
		order: 0;
	}

	.order1 {
		order: 1;
	}
}


/*LIST*/
.list-none {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.list-dot li {
	list-style: none;
	padding-left: 1em;
	text-indent: -1em;
	margin: 0 0 1em;
}

.list-dot li::before {
	content: '';
	background-color: var(--main-color-2);
	border-radius: 50%;
	display: inline-block;
	width: 9px;
	height: 9px;
	margin-right: .5em;
}


/*OTHER*/
.relative {
	position: relative;
}

.block {
	display: block;
}

.shadow {
	box-shadow: 0 0 1.8rem -1rem rgb(0 0 0 / 27%);
}

.marker {
	background:linear-gradient(transparent 60%, var(--sub-color-2) 60%);
}

.radius {
	border-radius: var(--radius);
}

.box-section {
	background-color: #FFF;
	border-radius: var(--radius);
	padding: 70px 50px 60px;
}

.box-point {
	background-color: var(--bg-1);
	border-radius: var(--radius);
}

.box-border {
	border: solid 2px var(--sub-color-3);
	border-radius: var(--radius-s);
	padding: 30px;
}

.box-section>*:last-child,
.box-point>*:last-child,
.box-border>*:last-child {
	margin-bottom: 0;
}

.box-card {
	border-radius: var(--radius);
	padding: 40px 30px 30px;
	margin-bottom: 30px;
}

.box-card img {
	display: block;
	width: auto;
	height: 120px;
	object-fit: contain;
	margin: auto;
}

.box-card .title-card {
	text-align: center;
	line-height: 1.5;
	margin: 1.5em 0 0;
}


@media only screen and (max-width: 1080px) {
	.box-section {
		padding: 60px 40px 50px;
	}

	.box-card {
		padding: 40px 20px 30px;
	}

	.box-card .title-card {
		font-size: 1.6rem;
	}
}

@media only screen and (max-width: 560px) {  
	.box-section {
		padding: 50px 4% 40px;
	}

	.box-card {
		padding: 30px 10px 20px;
		margin-bottom: 20px;
	}

	.box-card img {
		height: 85px;
	}

}


/*********************
HEADER
*********************/
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--container);
	padding: 15px var(--container-side);
	margin: 0 auto;
}

.header-title {
	margin: 0;
}

#drawer-input {
	display: none;
}

.header-nav-item {
	list-style: none;
	position: relative;
}

.header-nav-link {
	display: block;
	font-family: var(--font-en);
	position: relative;
	text-decoration: none;
}


@media only screen and (min-width: 1081px) {
	.header-nav-list {
		display: flex;
		margin: 0;
		padding: 0;
		column-gap: 28px;
	}

	.header-nav-item {
		margin: 0;
	}

	.header-nav-link {
		color: #1D1D1F;
		font-size: min(1.4vw, 16px);
	}

	.page-id-188 .header-nav-link {
		color: #fff;
	}

	.current-menu-item::after {
		content: "";
		height: 2px;
		width: 97%;
		background: var(--gradient);
		position: absolute;
		left: 50%;
		bottom: -7px;
		transform: translateX(-50%);
	}

	#menu-item-203.current-menu-item::after {
		content: none;
	}
}


@media only screen and (max-width: 1080px) {

	.header {
		padding: 10px;
	}

	#drawer-content {
		background: #1D1D1F;
		opacity: 0;
		visibility: hidden;
		overflow: auto;
		position: fixed;
		top: 0;
		left: 0;
		transition: 0.3s ease-in-out;
		height: 100%;
		width: 100%;
		z-index: -1;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}

	#drawer-open {
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 50%;
		right: 10px;
		height: 25px;
		width: 25px;
		outline: none;
		z-index: 1000;
		transform: translateY(-50%);
	}

	#drawer-open span {
		content: '';
		background-color: #1D1D1F;
		display: block;
		height: 1px;
		width: 25px;
		position: absolute;
		transition: 0.3s ease-in-out;
		transform-origin: right;
	}

	.page-id-188 #drawer-open span,
	#drawer-input:checked ~ #drawer-open span {
		background-color: #fff;
	}

	#drawer-open span.top {
		top: 8px;
	}

	#drawer-open span.bottom {
		bottom: 8px;
	}

	#drawer-input:checked ~ #drawer-open span.top {
		top: 3px;
		transform: rotate(-45deg);
	}

	#drawer-input:checked ~ #drawer-open span.bottom {
		bottom: 3px;
		transform: rotate(45deg);
	}

	#drawer-input:checked ~ #drawer-content {
		opacity: 1;
		visibility: visible;
		z-index: 999;
	}

	.header-nav-list {
		margin: 0;
	}

	.header-nav-item {
		text-align: right;
		margin: 0;
	}

	.header-nav-link {
		font-size: 1.6rem;
		color: #BABABA;
		width: 100%;
		padding: 1rem 2rem;
	}

	.header-nav-link img {
		margin-left: auto;
	}

	.header-sns {
		justify-content: flex-end;
		margin-top: 4em;
	}
}

@media only screen and (max-width: 560px) {
	.header-nav-link {
		font-size: 1.4rem;
	}
}


/*********************
BREADCRUMBS
*********************/
#breadcrumb {
	padding: 1.5em 0;
}

.breadcrumb-list {
	margin: 0;
}

.breadcrumb-item {
	color: #666A6F;
	line-height: 1;
	list-style: none;
	display: inline-block;
	margin: 0;
	text-transform: uppercase;
	font-family: var(--font-en);
	letter-spacing: .1em;
}

.breadcrumb-item:not(:last-of-type)::after {
	content: '/';
	padding: 0 0.5em;
}

.breadcrumb-item a {
	color: inherit;
	font-weight: var(--normal);
	text-decoration: none;
}



/*********************
CONTAINER
*********************/
.section-wrap {
	padding-top: 110px;
	padding-bottom: 110px;
	position: relative;
}

.container {
	max-width: var(--container);
	padding-right: var(--container-side);
	padding-left:  var(--container-side);
	position: relative;
	margin: 0 auto;
	width: 100%;
}

.container-ll {
	max-width: var(--container-ll);
	margin: 0 auto;
}

.container-l {
	max-width: var(--container-l);
	margin: 0 auto;
}

.container-m {
	max-width: var(--container-m);
	margin: 0 auto;
}

.container-s {
	max-width: var(--container-s);
	margin: 0 auto;
}

.container-ss {
	max-width: var(--container-ss);
	margin: 0 auto;
}

.iframe-wrap {
	position: relative;
}

.iframe-wrap::before {
	content: "";
	display: block;
	padding-top: 53%;
}

.iframe-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}


@media only screen and (max-width: 560px) {
	.section-wrap {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.container {
		padding-right: 5%;
		padding-left: 5%;
	}
}


/*********************
CONTACT
*********************/
input[type=email],
input[type=text],
input[type=tel],
input[type=file],
input[type=url],
input[type=number],
input[type=date],
select,
textarea {
	color: inherit;
	font-size: 1.6rem;
	display: inline-block;
	width:100%;
}

input[type=email],
input[type=text],
input[type=tel],
input[type=url],
input[type=number],
input[type=date],
select,
textarea {
	border: 1px solid #DBDBDB;
	border-radius: 0;
	background-color: #FFF;
	line-height: 1.7;
	padding: 1rem .9rem;
}

input[type=number] {
	margin-right: .5rem;
	padding: .5rem 1rem;
	width: calc(4em + 2rem);
}

input[type=checkbox],
input[type=radio],
.wpcf7-list-item-label {
	vertical-align: middle;
}

input[type=submit] {
	background-color: var(--main-color-1);
	border: 1px solid var(--main-color-1);
	border-radius: 0;
	color: #fff;
	display: inline-block;
	font-size: 2rem;
	font-weight: 900;
	padding: 1em 0;
	text-align: center;
	text-decoration: none;
	transition: all .3s;
	width: 100%;
	max-width: 400px;
	letter-spacing: .2em;
}

input[type=submit]:hover{
	color: #fff;
}

.number-month,
.number-date {
	margin-left: 1em;
}

.wpcf7-list-item {
	margin: 0 1em 0 0;
}

.wpcf7-list-item:last-child {
	margin: 0;
}

.item-form-contact {
}

.heading-form-contact {
	font-size: 1em;
	font-weight: var(--bold);
}

.detail-form-contact {
	padding-top: 8px;
	padding-bottom: 30px;
}

.contact-label {
	background-color: var(--main-color-1);
	border-radius: 0;
	color: #fff;
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	margin-left: 10px;
	padding: 5px 8px;
	line-height: 1;
	vertical-align: text-bottom;
}

::placeholder {
	color: #ddd;
	font-size: 1.6rem;
	letter-spacing: .15rem;
	line-height: 1.5;
}

.wpcf7-checkbox .wpcf7-list-item {
	display: block;
	margin-bottom: .5em;
}

.wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
}

/*送信完了メッセージ*/
.wpcf7 form.sent .wpcf7-response-output {
	background-color: #fff;
	border-color: #4a84af;
	margin-top: 3em;
	padding: 2em; 
}

/*Google reCAPCHA*/
.reCAPTCHA {
	font-size: 10px;
}


@media only screen and (max-width: 560px) {
	input[type=submit] {
		width: 100%;
	}

	.heading-form-contact {
		padding: 10px 0 0;
	}

	.detail-form-contact {
		padding: 10px 0 30px;
	}

	.contact-label {
		font-size: 1.1rem;
	}

	::placeholder {
		font-size: 1em;
	}

	.wpcf7-list-item-label {
		font-size: 1.3rem;
	}

	.wpcf7-text,
	.wpcf7-textarea {
		font-size: 1.6rem;
	}
}


/*********************
FOOTER
*********************/

/*breadcrumb*/
#breadcrumb {
	background-color: #171717;
	padding: 1.5em 0;
}

.breadcrumb-list {
	margin: 0;
}

.breadcrumb-item {
	font-size: 1.2rem;
	color: #A6A6A6;
	line-height: 1;
	list-style: none;
	display: inline-block;
	margin: 0;
	text-transform: uppercase;
	font-family: var(--font-en);
	letter-spacing: .1em;
}

.breadcrumb-item:not(:last-of-type)::after {
	content: '/';
	padding: 0 0.5em;
}

.breadcrumb-item a {
	color: inherit;
	font-weight: var(--normal);
	text-decoration: none;
}

/*cta*/
#footer {
	position: relative;
}

.footer-cta {
	background-color: #fff;
}

.footer-cta .container-ll {
	max-width: calc(1300px + 7%);
}

.footer-cta .container {
	padding-top: 80px;
	padding-bottom: 80px;
}

.footer-cta--inner {
	background-color: #1D1D1F;
	border-radius: var(--radius);
	color: #ADADAD;
	z-index: 1;
	position: relative;
	text-align: center;
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 50px;
	padding-right: calc(50% + 50px);
	height: 500px;
}

.footer-cta--inner::before {
	content: "";
	background: center /  contain no-repeat url(../../uploads/mv_01-min.png);
	position: absolute;
	height: 100%;
	width: min(50vw, 700px);
	z-index: 2;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.footer-cta--inner .heading-en {
	display: inline-block;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 15px;
	font-weight: var(--normal);
} 

.footer-cta--inner .h2-home {
	color: #fff;
	font-size: 2.4rem;
	font-family: var(--font-jp);
	font-weight: var(--bold);
	letter-spacing: .12em;
	line-height: 1.5; 
}

.footer-cta--inner h2 {
	font-size: 1.4rem;
}



/*footer*/
.footer-logo {
	margin-bottom: 43px;
}

.footer-logo img {
	width: 180px;
}

.footer-main {
	background-color: #282828;
	padding-top: 120px;
	padding-bottom: 120px;
	position: relative;
}

.footer-menu-main {
	column-gap: 35px;
}

.footer-foot-list {
	column-gap: 35px;
	list-style: none;
	margin: 0;
}

.footer-foot-list li {
	font-size: 1.25rem;
	margin: 0;
	position: relative;
}

.footer-foot-link {
	color: #CBCFD4;
	text-decoration: none;
}

.copyright {
	background-color: #171717;
	padding: 2em 0;
	color: #CBCFD4;
	font-size: 1rem;
	font-weight: 300;
}

.copyright p {
	margin: 0;
}

#btn-cv-fix {
	display: none;
}

/*#btn-cv-fix {
	font-size: clamp(13px, 3.8vw, 18px);
	width: clamp(150px, 80vw, 370px);
	position: fixed;
	bottom: 10px;
	left: 50%;
	transform: translate3d(-50%, 0, 0);
	z-index: 99;
	box-shadow: 1px 1px 12px -5px rgba(0, 0, 0, .25);
	padding: 1.2rem 5rem 1.2rem 2rem;
}

#btn-cv-fix.DownMove {
	opacity: 0;
	transform: translate3d(-50%, 20px, 0);
}

#btn-cv-fix.UpMove {
	opacity: 1;
	transform: translate3d(-50%, 0, 0);
	}*/


	@media only screen and (max-width:960px) {
		.footer-menu-main {
			flex-direction: column;
			row-gap: 35px;
		}

		.footer-foot-list {
			flex-direction: column;
			row-gap: 16px;
		}

		.current-menu-item::after {
			content: none;
		}
		.footer-cta--inner {
			height: auto;
		}

		.footer-cta--inner img {
			width: 85%;
			margin-left: auto;
			margin-right: auto;
		}
	}

	@media only screen and (max-width:560px) {

		.footer-cta .h-main p {
			font-size: 2rem;
			letter-spacing: .1em;
		}

		.footer-cta .btn-wrap {
			row-gap: 20px;
		}

		.footer-cta--inner {
			padding: 80px 30px 200px;
		}

		.footer-cta--inner::before {
			height: 160px;
			width: 100%;
			left: 0;
			right: auto;
			top: auto;
			bottom: -9px;
			transform: none;
		}
	}



/*********************
ARCHIVE
*********************/

/*card*/
.archive-wrap {
	column-gap: 3%;
	row-gap: 40px;
}

.archive-wrap a {
	text-decoration: none;
}

.archive-wrap a:hover {
	opacity: 1;
}

.archive-card {
	background-color: #FFFFFF;
	border-radius: var(--radius);
}

.main-archive-blog .archive-card:nth-of-type(3n) {
	margin-right: 0;
}

.archive-card>a {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: var(--radius);
	overflow: hidden;
}

.archive-card>a:hover {
	box-shadow: var(--shadow);
}

.image-archive {
	width: 100%;
	padding-top: 56%;
	background-color: #F5F5F5;
	position: relative;
	overflow: hidden;
}

.image-archive>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	transition: all .3s;
}

.archive-card:hover .image-archive>img {
	transform: scale(1.05);
}

.text-archive {
	padding: 1.5em 1em 3.5em;
}

.title-archive {
	color: var(--text-main);
	font-size: 1.7rem;
	line-height: 1.6;
}


/*PAGENATION*/

/* リンクの枠 */
.navigation.pagination {
	margin-top: 4em;
}

.pagination .nav-links {

}

/* 数字のリンク */
.pagination .page-numbers {
	color: var(--main-color-1);
	font-family: var(--font-en);
	font-weight: var(--normal);
	display: flex;
	justify-content: center;
	margin: 0;
}

.pagination .page-numbers li {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 1.2em;
}

.pagination .page-numbers li:first-of-type {
	margin-left: 0;
}

.pagination .page-numbers li:last-of-type {
	margin-right: 0;
}

.pagination .page-numbers a {
	text-decoration: none;
}

/* 前へ、次へボタン */
.pagination .nav-links .prev,
.pagination .nav-links .next {
	width: 1em;
	height: 1em;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.pagination .nav-links .prev {
	background-image: url(../../uploads/arrow-left.svg);
}

.pagination .nav-links .next {
	background-image: url(../../uploads/arrow-right.svg);
}

/* ドット */
.pagination .nav-links .dots {

}

/* 現在のページ */
.pagination .nav-links .current {
	text-decoration: underline;
}


@media only screen and (max-width: 560px) {
	.archive-list:last-child {
		margin-bottom: 1.5em;
	}

	.archive-list .time-archive {
		margin-right: 0;
		margin-bottom: .5em;
	}

	.archive-list .time-archive,
	.archive-list .title-archive {
		width: 100%;
	}
}


/*********************
SINGLE
*********************/
.header-single {
	position: relative;
	padding-top: 120px;
}

.time-single {
	display: inline-block;
	margin-bottom: .5em;
}

.title-single {
	font-size: 2.2rem;
	font-weight: 400;
	margin-bottom: 0;
}

.main-single-post h2 {
	font-size: 1.8em;
}

.main-single-post h3 {
	font-size: 1.5em;
}

.main-single-post h4 {
	font-size: 1.2em;
}

.main-single-post h2,
.main-single-post h3,
.main-single-post h4 {
	margin: 1em 0;
}

.main-single-post p+h2,
.main-single-post img+h2,
.main-single-post figure+h2,
.main-single-post table+h2 {
	margin-top: 3em;
}

.main-single-post p+h3,
.main-single-post img+h3,
.main-single-post figure+h3,
.main-single-post table+h3 {
	margin-top: 2em;
}

.main-single-post ul,
.main-single-post ol {
	margin: 2em 0;
}

.main-single-post figure,
.main-single-post img {
	display: block;
	max-width: 100%;
	margin: auto;
}

.main-single-post figure {
	margin-bottom: 2em;
}

.main-single-post figcaption {
	font-size: .8em;
	line-height: 1.7;
	margin-top: .5em;
}

.main-single-post table{
	border: solid 1px #DDD;
	border-collapse: collapse;
}

.main-single-post tr{
	border-bottom: solid 1px #DDD;
}

.main-single-post th,
.main-single-post td{
	padding: 1em;
	border-right: solid 1px #DDD;
}


@media only screen and (max-width: 560px) {
	.title-news {
		font-size: 1.9rem;
	}
}


/*********************
PAGE PARTS
*********************/

/*-------------------------heading-------------------------*/
.main-page-form h1 {
	font-size: 3rem;
	font-weight: var(--bold);
	margin-bottom: 1em;
}

.heading-en {
	color: var(--sub-color-1);
	font-family: var(--font-en);
	font-weight: var(--bold);
	text-transform: uppercase;
	font-size: 1.4rem;
	letter-spacing: .2em;
	line-height: 1;
	margin-bottom: .5em;
	display: block;
}

.h1-page {
	color: var(--text-main);
	font-size: 1.2rem;
	letter-spacing: .2em;
	line-height: 1.4;
	margin: 0;
}

.h1-page-inner {
	color: var(--text-main);
	font-size: 1.2rem;
}

.h1-page .heading-en {
	font-size: 1.6rem;
	text-transform: inherit;
	font-variant-caps: small-caps;
	font-weight: var(--normal);
}

.h1-page p {
	font-size: 2.4rem;
	font-weight: var(--bold);
	margin-bottom: .5em;
}

.h2-top {
	color: var(--text-main);
	font-size: 1.4rem;
	font-weight: var(--bold);
	letter-spacing: .1em;
	line-height: 1;
	margin-bottom: 1.5em;
}

.h2-top-inner {
	color: var(--text-main);
	font-size: 1.4rem;
	font-weight: var(--bold);
}

.h2-page {
	color: var(--text-main);
	font-size: 2.4rem;
	font-weight: var(--bold);
	letter-spacing: .1em;
	line-height: 1.6;
	margin-bottom: 1.3em;
}

.h2-page-inner {
	color: var(--text-main);
	font-size: 2.4rem;
	font-weight: var(--bold);
}

.h3-page {
	color: var(--text-main);
	font-size: 2rem;
	font-weight: var(--normal);
	line-height: 1.6;
	margin: 0;
}

.header-page-noimg {
	padding-top: 140px;
	padding-bottom: 140px;
	background-color: #FFF;
}

.container-text {
	font-weight: var(--light);
	max-width: 550px;
	letter-spacing: .12em;
	line-height: 1.8;
	color: #3A3A3A;
}



@media only screen and (max-width: 1080px) {
	.header-page-noimg {
		padding-top: 120px;
		padding-bottom: 120px;
	}
}

@media only screen and (max-width: 560px) {

	.h2-page {
		font-size: 2rem;
	}

	.h2-page-inner {
		font-size: 2rem;
	}

	.h3-page {
		font-size: 1.8rem;
	}

	.header-page-noimg {
		padding-bottom: 100px;
	}
}
/*-------------------------heading end-------------------------*/

/*-------------------------button-------------------------*/
.btn-wrap {
	margin-top: 3em;
	width: 100%;
}

.btn {
	color: var(--text-main);
	text-decoration: none;
	display: inline-block;
	font-size: 1em;
	font-weight: normal;
	line-height: 1.2;
	position: relative;
	z-index: 1;
}

.btn-main,
.btn-exlink {
	font-family: var(--font-en);
	text-align: center;
	letter-spacing: .2em;
	padding: .7em 1em .6em;
	min-width: 180px;
}

.btn-main {
	color: #FFF;
	background-color: var(--text-light);
	border: solid 1px var(--text-light);
}

.btn-exlink {
	color: var(--text-main);
	background-color: #FFF;
	border: solid 1px var(--text-main);
}

.btn-main::before,
.btn-exlink::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transform: scaleX(0);
	transform-origin: left;
	z-index: -1;
	transition: all .3s;
}

.btn-main::before {
	background-color: #FFF;
}

.btn-exlink::before {
	background-color: var(--text-light);;
}

.btn-exlink::after {
	content: "\e14d";
	font-family: 'Material Symbols Rounded';
	font-weight: normal;
	font-style: normal;
	display: inline-block;
	margin-left: 5px;
	transform: translateY(1px);
}

.btn-cv {
	font-size: 1.5rem;
	background: var(--gradient);
	color: #fff;
	border-radius: 35px;
	padding: .7em 3.5em .7em 1.5em;
	line-height: 1;
	letter-spacing: .1em;
	text-decoration: none;
	display: inline-block;
	position: relative;
}

.btn-cv::before,
.btn-cv::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: all .3s ease-out;
}

.btn-cv::before {
	background: center / contain no-repeat url(../../uploads/icon-arrow.svg);
	height: 12px;
	width: 12px;
	right: calc(1em + 5.5px); 
	z-index: 1;
}

.btn-cv::after {
	content: "";
	height: 23px;
	width: 23px;
	right: 1em;
	border: solid 1px #fff;
	border-radius: 50%;
}

.btn-cv-transparent {
	background: transparent;
	border: 1px solid #fff;
}


@media only screen and (min-width: 1081px) {
	.btn:hover,
	.btn-cv:hover {
		opacity: 1;
	}

	.btn-main:hover {
		color: var(--text-light);
	}

	.btn-exlink:hover {
		color: #FFF;
	}

	.btn-main:hover::before,
	.btn-exlink:hover::before {
		transform: scaleX(1);
	}

	.btn-cv-wrap a {
		background: var(--gradient);
		color: #fff;
		border-radius: 35px;
		padding: 1rem 6rem 1rem 3rem;
		line-height: 1;
		letter-spacing: .1em;
		text-decoration: none;
		display: inline-block;
		position: relative;
	}

	.btn-cv-wrap a::before,
	.btn-cv-wrap a::after {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		transition: all .3s ease-out;
	}

	.btn-cv-wrap a::before {
		background: center / contain no-repeat url(../../uploads/icon-arrow.svg);
		height: 12px;
		width: 12px;
		right: calc(1em + 5.5px); 
		z-index: 1;
	}

	.btn-cv-wrap a::after {
		content: "";
		height: 23px;
		width: 23px;
		right: 1em;
		border: solid 1px #fff;
		border-radius: 50%;
	}

	.btn-cv:hover::after,
	.btn-cv a:hover::after {
		right: 1.5rem;
	}
}
/*-------------------------button end-------------------------*/

/*-------------------------flow-top-------------------------*/
.page-template-page-flow,
.parent-pageid-36 {
	background-color: var(--bg-1);
}

.text-flow-feature {
	display: flex;
	align-items: center;
	padding: 70px 70px 60px;
}

.img-flow-feature {
	position: relative;
}

.img-flow-feature img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
}

.img-flow-feature-1 {
	padding-top: 48%;
	margin-bottom: 20px;
}

.img-flow-feature-inner {
	display: flex;
	justify-content: space-between;
}

.img-flow-feature-2 {
	width: 48%;
	padding-top: 48%;
}

.case-flow-item {
	padding: 20px 25px;
	margin-bottom: 50px;
	position: relative;
}

.case-flow-item.medium {
	justify-content: center;
	column-gap: 2%;
}

.case-flow-item:last-of-type {
	margin-bottom: 0;
}

.case-flow-item:not(:last-of-type)::after {
	content: '';
	display: block;
	width: 24px;
	height: 20px;
	background-image: url(../../uploads/icon-down-flow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 35px);
}

.case-flow-item .box-card {
	padding-right: 15px;
	padding-left: 15px;
	margin-bottom: 0;
}

.flex-case-flow-item {
	display: flex;
}

.case-flow-item .box-card img {
	margin-bottom: 2rem;
}

.img-case-flow {
	width: 130px;
}

.text-case-flow {
	max-width: calc(100% - 130px);
	padding-left: 50px;
}

.num-case-flow {
	color: var(--main-color-2);
	font-family: var(--font-en);
	font-weight: var(--bold);
	font-size: 2rem;
	line-height: 1;
	display: inline-block;
	padding-bottom: .2em;
	position: relative;
}

.num-case-flow::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background-color: currentColor;
	position: absolute;
	left: 0;
	bottom: 0;
}

.title-case-flow {
	color: var(--text-main);
	font-weight: var(--normal);
	margin: .5em 0 0;
}

.text-case-flow .btn-wrap,
.text-case-flow-card .btn-wrap {
	margin-top: .7em;
}

.case-flow-wrap .p-sub {
	margin-top: 1em;
}

.main-archive-blog .flex-case-flow-item {
	column-gap: 50px;
	padding: 30px;
}

.main-archive-blog .text-case-flow {
	padding-left: 0;
}

.main-archive-blog .flex-case-flow-item .h2-page {
	font-size: 2rem;
}

.box-comparison {
	padding: 30px 20px;
}

.box-comparison .h3-page {
	font-size: 1.8rem;
	margin-bottom: 1em;
}

.list-comparison {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}

.list-comparison li {
	font-size: 1.3rem;
	list-style: none;
	display: inline-block;
	border-radius: 30px;
	padding: .5em 1em;
	margin: 0 10px 10px 0;
}

.list-comparison.lexa li {
	background-color: #FFF;
}

.list-comparison.client li {
	color: #FFF;
	background-color: var(--main-color-2);
}

.flow-detail {
	align-items: flex-start;
}

.cell-left-flow {
	width: 27%;
	position: sticky;
	top: 140px;
}

.li-service-flow {
	margin-bottom: 1.5em;
}

.li-service-flow a {
	color: var(--sub-color-1);
	font-weight: var(--normal);
	text-decoration: none;
	padding-left: 20px;
	position: relative;
}

.li-service-flow a.current {
	color: var(--text-main);
	font-weight: var(--bold);
	font-size: 2rem;
}

.li-service-flow a::before {
	content: '';
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 10px;
	background-color: var(--main-color-3);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.li-service-flow a.current::before {
	background-color: var(--main-color-1);
}

.cell-right-flow {
	width: 68%;
}

.cell-right-flow .flow-wrap {
	padding-bottom: 100px;
}

.cell-right-flow .flow-wrap:last-of-type {
	padding-bottom: 0;
}

.wrap-number-0 {
	counter-reset: count -1;
}

.wrap-number-1 {
	counter-reset: count 0;
}

.h2-flow {
	font-size: 2.6rem;
}

.h2-flow-number {
	padding-left: 2em;
	position: relative;
}

.h2-flow-number::before {
	color: var(--main-color-2);
	content: counter(count, decimal-leading-zero);
	counter-increment: count;
	font-family: var(--font-en);
	font-size: 2.8rem;
	border-bottom: solid 2px currentColor;
	position: absolute;
	left: 0;
	top: 0;
	letter-spacing: .1em;
}

.flow-detail .img-case-flow {
	width: 100px;
}

.flow-detail .text-case-flow {
	width: calc(100% - 150px);
	padding: 0;
}

.box-title {
	margin-bottom: 1em;
}

.img-flow-content {
	border-radius: var(--radius);
	margin: 40px 0;
}

.data-service-flow {
	padding: 20px 30px;
}

.title-data {
	color: var(--main-color-3);
	font-family: var(--font-en);
	font-weight: var(--bold);
	font-size: 1.8rem;
	text-transform: uppercase;
	letter-spacing: .1em;
	line-height: 1;
	margin-bottom: 1em;
}

.item-table-data {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.item-table-data:not(:last-of-type) {
	margin-bottom: 15px;
}

.item-table-data dt {
	width: 100px;
	color: var(--text-main);
	font-weight: var(--bold);
	font-size: 1.4rem;
	margin-top: .5rem;
}

.item-table-data:first-of-type dt {
	margin-top: .2rem;
}

.item-table-data dd {
	width: calc(100% - 120px);
	line-height: 1.5;
	margin-top: .4rem;
}

.list-job-data,
.list-tool-data {
	row-gap: 15px;
	margin: 0;
}

.item-job-data {
	color: #FFF;
	font-size: 1.4rem;
	list-style: none;
	padding: .25em 1.2em;
	border-radius: 30px;
	margin: 0 10px 0 0;
}

.item-job-data.director {
	background-color: #7DAFBE;
}

.item-job-data.designer {
	background-color: #D09696;
}

.item-job-data.writer {
	background-color: #89BF84;
}

.item-job-data.engineer {
	background-color: #D6B26C;
}

.item-tool-data {
	color: var(--text-main);
	font-family: var(--font-en);
	font-weight: var(--normal);
	line-height: 1.3;
	list-style: none;
	padding-left: 32px;
	margin: 0 20px 0 0;
	position: relative;
}

.item-tool-data::before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.item-tool-data.xd::before {
	background-image: url(../../uploads/icon-xd.svg);
}

.item-tool-data.figma::before {
	background-image: url(../../uploads/icon-figma.svg);
}

.item-tool-data.dreamweaver::before {
	background-image: url(../../uploads/icon-dreamweaver.svg);
}

.item-tool-data.notion::before {
	background-image: url(../../uploads/icon-notion.svg);
}

.item-tool-data.dropbox::before {
	background-image: url(../../uploads/icon-dropbox.svg);
}

.large-data {
	color: var(--text-main);
	font-family: var(--font-en);
	font-weight: var(--bold);
	font-size: 2rem;
	letter-spacing: .1em;
	display: inline-block;
	margin-right: .2em;
}

.box-scope {
	position: relative;
}

.box-scope::before {
	content: '';
	display: block;
	width: 2px;
	height: 100%;
	background-color: var(--sub-color-3);
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	z-index: -1;
}

.flex-title-flow {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1em;
}

.cell-scope {
	width: calc(50% - 20px);
}

.item-scope-wrap {
	margin-bottom: 36px;
	position: relative;
}

.item-scope-wrap:last-of-type {
	margin-bottom: 0;
}

.item-scope-wrap::after {
	content: '';
	display: block;
	width: 14px;
	height: 8px;
	background-image: url(../../uploads/icon-down.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	left: 22%;
	bottom: -22px;
}

.item-scope-wrap:last-of-type::after {
	display: none;
}

.item-scope {
	font-size: 1.5rem;
	font-weight: var(--normal);
	text-align: center;
	border-radius: var(--radius);
	padding: .7em 1.2em;
}

.item-scope.lexa {
	width: calc(50% - 20px);
	background-color: var(--sub-color-3);
}

.item-scope.both {
	color: var(--main-color-2);
	background-color: #FFF;
	border: solid 2px currentColor;
}

.container-flow {
	max-width: var(--container);
	padding-right: var(--container-side);
	padding-left: var(--container-side);
	position: relative;
	margin: 0 auto;
	width: 100%;
}

.box-flow-support:first-of-type,
.box-flow-support:nth-of-type(2) {
	margin-bottom: 30px;
}

.box-flow-support img {
	height: 120px;
	margin-bottom: 30px;
}

.box-flow-support .h3-page {
	margin-bottom: .5em;
}

@media only screen and (max-width: 1080px) {
	.page-template-page-flow,
	.parent-pageid-36 {
		background-color: #FFF;
	}

	.flow-feature {
		padding: 0 5%;
	}

	.container-flow {
		padding: 0;
	}

	.cell-left-flow {
		display: none;
	}

	.cell-right-flow {
		width: 100%;
		padding: 100px 5%;
		border-radius: 0;
	}

	.cell-right-flow .flow-wrap {
		padding-left: 30px;
	}

	.cell-right-flow .flow-wrap::before {
		content: '';
		display: block;
		width: 2px;
		height: 100%;
		background-color: var(--sub-color-2);
		position: absolute;
		left: -5px;
		bottom: -12px;
	}

	.cell-right-flow .flow-wrap::after {
		content: '';
		display: block;
		width: 20px;
		height: 20px;
		border-radius: 50%;
		background-color: var(--main-color-3);
		position: absolute;
		left: -14px;
		top: 1em;
		transform: translateY(-4px);
	}

	.box-comparison {
		padding: 30px 15px;
		margin-bottom: 15px;
	}

	.list-comparison li {
		font-size: 1.1rem;
	}
}

@media only screen and (max-width: 560px) {
	.text-flow-feature {
		padding: 50px 40px 40px;
	}

	.case-flow-item {
		padding: 20px 15px;
	}

	.img-case-flow {
		width: 100px;
	}

	.text-case-flow {
		max-width: calc(100% - 100px);
		padding-left: 30px;
	}

	.main-archive-blog .flex-case-flow-item {
		flex-direction: column;
		row-gap: 15px;
	}

	.main-archive-blog .text-case-flow {
		padding-left: 0;
		width: 90%;
		max-width: none;
	}

	.case-flow-item .box-card {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.case-flow-item .box-card:not(:last-of-type) {
		margin-bottom: 15px;
	}

	.case-flow-item .box-card img {
		width: 80px;
		margin: 0;
	}

	.text-case-flow-card {
		text-align: left;
		width: min(240px, calc(100% - 80px));
		padding-left: 25px;
		margin: 0;
	}

	.text-case-flow-card .btn-wrap {
		text-align: left;
	}

	.text-case-flow .btn,
	.text-case-flow-card .btn {
		width: 100%;
	}

	.h2-flow {
		font-size: 2rem;
	}

	.h2-flow-number::before {
		font-size: 2.2rem;
	}

	.flow-detail .img-case-flow {
		margin: auto;
	}

	.flow-detail .text-case-flow {
		width: 100%;
		max-width: unset;
	}

	.flow-detail .title-case-flow {
		text-align: center;
	}

	.data-service-flow {
		padding: 20px;
	}

	.list-job-data,
	.list-tool-data {
		row-gap: 8px;
	}

	.item-tool-data {
		padding-left: 28px;
	}

	.item-tool-data::before {
		width: 20px;
		height: 20px;
	}

	.item-table-data {
		align-items: flex-start;
	}

	.box-scope {
		padding: 30px 10px;
	}

	.item-scope {
		font-size: 1.2rem;
		padding: .5em 1em;
	}

	.item-scope.lexa {
		width: calc(50% - 10px); 
	}

	.text-flow-feature {
		padding: 40px 30px 40px;
	}

	.cell-right-flow .flow-wrap {
		padding-left: 24px;
	}

	.cell-right-flow .flow-wrap::before {
		left: 0;
	}

	.cell-right-flow .flow-wrap::after {
		width: 15px;
		height: 15px;
		left: -7px;
		top: 1em;
	}
}
/*-------------------------flow-top end-------------------------*/


/*-------------------------flow-single-------------------------*/
.single-wrap {
	margin-top: 140px;
}

.flex-single-blog {
	align-items: flex-start;
}

.content-single-blog {
	width: calc(100% - 340px);
}

.index-single {
	width: 280px;
	position: sticky;
	top: 140px;
}

.index-single-inner {
	background-color: #FFF;
	padding: 2em 20px 30px;
	border: solid 2px var(--sub-color-3);
	border-radius: var(--radius);
	max-height: calc(100vh - 180px);
	overflow-y: scroll;
}

.title-index-single {
	margin: 0;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-60%);
}

.title-index-single::before {
	content: '';
	display: block;
	width: 140%;
	height: 2.2rem;
	background-color: #FFF;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	z-index: -1;
}

.title-index-single .heading-en {
	margin: 0;
}

.item-index-single {
	margin-bottom: 1rem;
	line-height: 1.6;
	padding-left: 2.4rem;
	position: relative;
}

.item-index-single.index-lvh2 {
	color: var(--text-main);
	font-weight: var(--normal);
}

.item-index-single.index-lvh2::before {
	content: '';
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	background-color: var(--main-color-3);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: .7rem;
}

.item-index-single.index-lvh3 {
	color: var(--text-sub);
	font-size: 1.4rem;
}

.item-index-single.index-lvh3::before {
	content: '';
	display: block;
	width: .8rem;
	height: 1px;
	background-color: currentColor;
	position: absolute;
	left: 1rem;
	top: 1rem;
}

.item-index-single.index-lvh3+.item-index-single.index-lvh2 {
	margin-top: 3rem;
}

.item-index-single a {
	color: inherit;
	text-decoration: none;
}

.h1-flow {
	font-size: 3.6rem;
	font-weight: var(--bold);
	letter-spacing: .1em;
	padding-bottom: 1em;
	margin-bottom: 1.5em;
	position: relative;
}

.h1-flow::after {
	content: '';
	display: block;
	width: 80px;
	height: 3px;
	background-color: var(--sub-color-2);
	position: absolute;
	left: 0;
	bottom: 0;
}

.h1-flow-inner {
	font-size: 3.6rem;
	font-weight: var(--bold);
}

.h1-flow .heading-en {
	margin: 0;
}

.abstract-flow-single {
	padding-bottom: 120px;
	margin-bottom: 120px;
	border-bottom: solid 3px var(--sub-color-2);
}

.data-abstract-flow .h2-page {
	margin-bottom: .8em;
}

.head-data-abstract-flow {
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: solid 2px var(--sub-color-3);
}

.head-data-abstract-flow.tool {
	padding-bottom: 20px;
}

.item-days-data {
	font-weight: var(--normal);
}

.item-days-data .large-data {
	font-size: 2.4rem;
	margin-left: .2em;
}

.point-flow-single {
	padding: 30px;
	margin-top: 20px;
}

.point-flow-single:first-of-type {
	margin-top: 40px;
}

.num-title-box {
	color: var(--main-color-2);
	font-family: var(--font-en);
	font-size: 2.4rem;
	font-weight: var(--bold);
	border-bottom: solid 2px currentColor;
	display: inline-block;
	margin-right: .6em;
}

.h4-flow-single {
	padding-bottom: .4em;
	margin-bottom: 1em;
	position: relative;
}

.h4-flow-single::after {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background-color: var(--sub-color-3);
	position: absolute;
	left: 0;
	bottom: 0;
}

.title-box-other {
	font-size: 2.2rem;
	padding-bottom: .5em;
	position: relative;
	margin-bottom: 2em;
}

.title-box-other::after {
	content: '';
	display: block;
	width: 70px;
	height: 2px;
	background-color: var(--main-color-2);
	position: absolute;
	left: 0;
	bottom: 0;
}

.relate-content {
	margin-bottom: 3em;
}

.other-single .archive-card {
	margin-right: 0;
}

.img-relate-flow {
	background-color: #EFEFEF;
}

.img-relate-flow img {
	object-fit: contain;
}

.text-relate-flow {
	padding-bottom: 2em;
}

.step-relate-flow {
	color: var(--main-color-2);
	font-weight: var(--normal);
	line-height: 1;
	display: inline-block;
	position: relative;
}

.step-relate-flow.prev {
	padding-left: 1.5em;
}

.step-relate-flow.next {
	padding-right: 1.5em;
}

.step-relate-flow::after {
	content: '';
	display: block;
	width: 1em;
	height: 1em;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: .05em;
}

.step-relate-flow.prev::after {
	background-image: url(../../uploads/icon-left-sky.svg);
	left: 0;
}

.step-relate-flow.next::after {
	background-image: url(../../uploads/icon-right-sky.svg);
	right: 0;
}

.text-relate-flow .title-archive {
	font-size: 2rem;
	font-weight: var(--normal);
	padding-left: 2em;
	position: relative;
}

.text-relate-flow .title-archive span {
	color: var(--text-light);
	font-family: var(--font-en);
	font-weight: var(--bold);
	border-bottom: solid 2px currentColor;
	position: absolute;
	left: 0;
	top: 0;
	letter-spacing: .1em;
}

@media only screen and (max-width: 1080px) {
	.content-single-blog {
		width: 100%;
	}

	.h1-flow,
	.h1-flow-inner {
		font-size: 3.2rem;
	}

	.index-single {
		display: none;
	}

	.point-flow-single {
		padding: 20px;
	}

	.num-title-box {
		font-size: 2rem;
	}

	.main-flow-single #content-single,
	.other-single {
		padding-right: var(--container-side);
		padding-left: var(--container-side);
	}

	.other-single .text-archive {
		background-color: var(--bg-1);
	}
}

@media only screen and (max-width: 560px) {
	.h1-flow,
	.h1-flow-inner {
		font-size: 2.8rem;
	}

	.other-single .archive-works-card:first-of-type {
		margin-bottom: 50px;
	}
}
/*-------------------------flow-single end-------------------------*/


/*********************
COLOR
**********************/
.bg-main-color-1 {
	background-color: var(--main-color-1);
}

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

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

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

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


/*********************
MARGIN
*********************/
.margin-1 {
	margin-bottom: 180px;
}
.margin-2 {
	margin-bottom: 140px;
}
.margin-3 {
	margin-bottom: 120px;
}
.margin-4 {
	margin-bottom: 100px;
}
.margin-5 {
	margin-bottom: 80px;
}
.margin-6 {
	margin-bottom: 60px;
}
.margin-h {
	margin-bottom: 20px;
}



@media only screen and (max-width: 1080px) {
	.margin-1{
		margin-bottom: 140px;
	}
	.margin-2 {
		margin-bottom: 120px;
	}
	.margin-3{
		margin-bottom: 100px;
	}
	.margin-4{
		margin-bottom: 80px;
	}
	.margin-5{
		margin-bottom: 60px;
	}
	.margin-6{
		margin-bottom: 50px;
	}
}

@media only screen and (max-width: 560px) {
	.margin-1{
		margin-bottom: 120px;
	}
	.margin-2 {
		margin-bottom: 90px;
	}
	.margin-3{
		margin-bottom: 80px;
	}
	.margin-4{
		margin-bottom: 60px;
	}
	.margin-5{
		margin-bottom: 50px;
	}
	.margin-6{
		margin-bottom: 40px;
	}
}


/*********************
ANIMATION
*********************/
.fadein {
	opacity: 0;
	transition-property: transform, opacity;
	transition-duration: 1.5s;
	transition-delay: 0s;
}

.fadein.is-active {
	opacity: 1;
}

.delay--2 {
	transition-delay: .3s;
}

.delay--3 {
	transition-delay: .6s;
}

.delay--4 {
	transition-delay: .9s;
}


@media only screen and (min-width: 561px) {

}


/*********************
RESPONSIVE
*********************/
@media only screen and (min-width: 1081px) {
	.tb_only { display: none !important; }
	.sp_only { display: none !important; }
	.sp_tb { display: none !important; }
}

@media only screen and (min-width: 561px) and (max-width: 1080px) {
	.pc_only { display: none !important; }
	.sp_only { display: none !important; }
	.sp_pc { display: none !important; }
}

@media only screen and (max-width: 560px) {
	.pc_only { display: none !important; }
	.tb_only { display: none !important; }
	.tb_pc { display:none!important; }
}

@media only screen and (max-width: 320px) {
	html { font-size: .58em; }
}