/*
Theme Name:lexa-theme-child
Template:lexa-theme
Theme URI: https://lexa.co.jp
Author: Lexa inc.
Author URI: https://lexa.co.jp
Version: 1.0.0
*/
/**********************
- ROOT
- BASE
- GENERAL
-- FONT
-- ALIGN
-- FLEX
-- LIST
-- OTHER
- HEADER
- BREADCRUMB
- CONTAINER
- HEADING
- BUTTON
- FOOTER
- FV
- ARCHIVE
- SINGLE
- CONTACT
- HOME
- PAGE PARTS
- LOADING
- COLOR
- MARGIN
- ANIMATION
- RESPONSIVE
***********************/

/**********************
* ブレイクポイント
* 560px/1080px
**********************/


/*********************
ROOT
**********************/
:root {
	--base: #F5F5F7;

	--text-main: #86868B;
	--text-strong: #1D1D1F;

	--gradient: linear-gradient(to right, #E63BCB, #199CC5);

	--font-jp: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--font-en: "Montserrat", sans-serif;
	--normal: 400;
	--bold: 600;
	--exbold: 900;

	--container: calc(1920px + 7%);
	--container-side: 3.5%;
	--container-ll: calc(1300px + 7%);
	--container-l: calc(1100px + 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: .05em;
	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 {
	font-weight: var(--bold);
}

.marker {
	position: relative;
	z-index: 1;
}

.marker::before {
	content: "";
	background: var(--gradient);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 80%;
	z-index: -1;
}

.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-column {
	flex-direction: column;
}

.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: 29%;
}

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

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

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


@media only screen and (max-width: 560px) {
	.flex {
		row-gap: 30px;
	}

	.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: var(--text-strong);
		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: var(--text-strong);
		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: var(--text-strong);
		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;
	}
}


/*********************
CONTAINER
*********************/
.section-wrap {
	padding-top: 150px;
	padding-bottom: 150px;
	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: 960px) {
	.section-wrap {
		padding-top: 90px;
		padding-bottom: 90px;
	}
}


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

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


/*********************
HEADING
*********************/
.heading-en {
	color: #BABABA;
	display: inline-block;
	font-family: var(--font-en);
	font-weight: var(--normal);
	font-variant-caps: small-caps; 
	font-size: 1.6rem;
	letter-spacing: .15em;
	margin-bottom: 10px;
}

.h2-home,
.h3-home,
.h1-page,
.h3-page {
	color: #232323;
	font-family: var(--font-jp);
	font-weight: var(--bold);
	letter-spacing: .12em;
	line-height: 1.5;
}

.h2-home-wrap .heading-en {
	font-size: 1.8rem;
}

.h2-home { 
	font-size: 2.4rem; 
}

.h3-home {
	font-size: 2.7rem;
}

.header-page {
	background-color: #fff;
	height: 490px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
}

.h1-page {
	font-size: 3rem;
}

.h2-page-wrap .heading-en {
	color: #232323;
	font-family: var(--font-en);
	font-weight: var(--exbold);
	font-variant-caps: small-caps;
	font-size: 2.8rem;
	letter-spacing: .12em;
	line-height: 1;
}

.h2-page {
	color: #BABABA;
	font-family: var(--font-en);
	font-weight: var(--normal);
	font-variant-caps: small-caps; 
	font-size: 1.6rem;
	letter-spacing: .15em;
}

.h3-page-wrap .heading-en {
	color: var(--text-main);
	font-size: 1.4rem;
	line-height: 1;
}

.h3-page {
	font-size: 2.6rem;
	font-weight: var(--bold);
}

.h3-lp {
	color: #fff;
	font-size: 3.2rem;
	font-weight: var(--bold);
	line-height: 1.4;
	letter-spacing: 0;
}

.h3-lp .child {
	color: var(--text-main);
	font-size: 2rem;
	display: block;
	letter-spacing: .1em;
}

.p-catch {
	font-size: clamp(100px, 10vw, 135px);
	font-weight: var(--exbold);
	letter-spacing: .13em;
	line-height: 1;
	color: #fff;
	margin-bottom: 5rem;
}

.dot {
	background-image: radial-gradient(circle at center, #fff 15%, transparent 15%);
	background-position: top left;
	background-repeat: repeat-x;
	background-size: 1.05em 0.25em;
	padding-top: .1em;
}

.h2-catch {
	color: #D5D5D5;
	font-size: 3.6rem; 
	font-family: var(--font-jp);
	font-weight: var(--bold);
	letter-spacing: .1em;
	line-height: 1.5;
}

.h2-catch .strong {
	color: #fff;
	background: var(--gradient);
	padding: 0 5px;
}


@media only screen and (max-width: 960px) {
	.heading-en {
		font-size: 1.2rem;
		margin-bottom: 5px;
	}

	.h2-home-wrap .heading-en {
		font-size: 1.2rem;
	}

	.header-page {
		height: 300px;
	}

	.h1-page,
	.h3-page {
		font-size: 2rem;
	}

	.h2-home,
	.h2-page-wrap .heading-en,
	.h3-home {
		font-size: 1.8rem;
		letter-spacing: .07em;
	}

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

	.h2-catch {
		font-size: 2.5rem;
	}

	.h3-lp {
		font-size: 1.95rem;
	}

	.h3-lp .child {
		font-size: 1.6rem;
		margin-bottom: 5px;
	}
}

@media only screen and (max-width: 560px) {
	.p-catch {
		font-size: 7rem;
		margin-bottom: 3rem;
	}

	.p-catch--02 {
		font-size: 4.2rem;
	}

	.p-catch--03 {
		font-size: 4.8rem;
	}

	.h2-catch--02 {
		font-size: 2.1rem;
	}

	.h2-catch--03 {
		font-size: 2.2rem;
	}
}


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

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

.btn-main,
.btn-cv {
	font-size: 1.5rem;
	letter-spacing: .1em;
	border-radius: 35px;
	padding: .9em 4em .9em 2.5em;
	line-height: 1;
	position: relative;
}

.btn-main {
	border: 1px solid var(--text-strong);
	color: var(--text-strong);
}

.btn-cv {
	background: var(--gradient);
	color: #fff;
}

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

.btn-main::before,
.btn-cv::before {
	height: 9px;
	width: 9px;
	right: calc(1.5em + 5.5px); 
	z-index: 1;
}

.btn-main::after,
.btn-cv::after {
	height: 21px;
	width: 21px;
	right: 1.5em;
	border-radius: 50%;
}

.btn-main::before {background: center / contain no-repeat url(../../uploads/icon-arrow-bk.svg);}
.btn-cv::before {background: center / contain no-repeat url(../../uploads/icon-arrow.svg);}
.btn-main::after {border: solid 1px var(--text-strong);}
.btn-cv::after {border: solid 1px #fff;}


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

.btn-line {
	background-color: #2DAE37;
	color: #fff;
	border-radius: 35px;
	padding: 1rem 2rem 1rem 5rem;
	line-height: 1;
	letter-spacing: .1em;
	text-decoration: none;
	display: inline-block;
	position: relative;
}

.btn-line::before {
	content: "";
	background: center / contain no-repeat url(../../uploads/icon-comment.svg);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 2rem;
	height: 20px;
	width: 20px;
}

.btn-banner {
	background-color: #fff;
	border-radius: 8px;
	height: 120px;
}

.btn-banner img {
	height: 30px;
}

.banner-note img {
	height: 27px;
}

.btn:hover,
.btn-cv:hover,
.btn-cv a:hover,
.btn-banner:hover {
	opacity: 1;
}


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

	.btn-cv-wrap a {
		background: var(--gradient);
		color: #fff;
		font-size: min(1.4vw, 16px);
		letter-spacing: .1em;
		border-radius: 35px;
		padding: .7em 3.5em .7em 1.5em;
		line-height: 1;
		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: 9px;
		width: 9px;
		right: calc(1.5em + 5.5px); 
		z-index: 1;
	}

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

	.btn-main:hover::before,
	.btn-cv:hover::before,
	.btn-cv-wrap a:hover::before {
		right: calc(1em + 5.5px); 
	}

	.btn-main:hover::after,
	.btn-cv:hover::after,
	.btn-cv-wrap a:hover::after {
		right: 1em;
	}

	.btn-main:hover {
		background-color: var(--text-strong);
		color: #fff;
	}

	.btn-main:hover::before {
		background: center / contain no-repeat url(../../uploads/icon-arrow.svg);
	}

	.btn-main:hover::after {
		border: solid 1px #fff;
	}

	.btn-line:hover,
	.btn-banner:hover {
		transform: translateY(-10px);
	}
}


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

	.btn-main::before,
	.btn-cv::before {
		height: 8px;
		width: 8px;
		right: calc(1.2em + 5.5px);
	}

	.btn-main::after,
	.btn-cv::after {
		height: 19px;
		width: 19px;
		right: 1.2em;
	}

	.btn-banner {
		height: 70px;
		width: 30%;
	}

	.btn-banner img {
		height: 22px;
	}

	.banner-note img {
		height: 12px;
	}
}


/*********************
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;
}

.home .footer-cta,
.page-id-190 .footer-cta {
	background-color: var(--base);
}

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

.footer-cta--inner {
	background: center /  cover no-repeat url(../../uploads/mv_webdesign.jpg);
	color: #ADADAD;
	position: relative;
	z-index: 1;
	height: 460px;
	padding: 30px;
}

.footer-cta--inner::before {
	content: "";
	border-radius: var(--radius);
	background-color: rgba(0, 0, 0, .5);
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
}

.footer-cta .h2-home {
	color: #fff;
}

.footer-cta .btn-wrap {
	column-gap: 40px;
	justify-content: center;
}

.footer-cta .btn-cv {
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
	width: 215px;
}

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

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

.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 {
	position: fixed;
	bottom: 10px;
	right: 10px;
	transform: translate3d(0, 0, 0);
	z-index: 99;
	width: 350px;
}

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

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


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

	.footer-cta--inner {
		background: center /  cover no-repeat url(../../uploads/cv_01-sp.jpg)
	}

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

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

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

@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;
	}

	#btn-cv-fix {
		width: 65%;
	}

}

/*********************
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__coming::before {
	content: "";
	background-color: rgba(0, 0, 0, .5);
	position:absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.image-archive__coming::after {
	content: "準備中です！";
	color: #fff;
	font-size: 2rem;
	font-weight: var(--bold);
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
	z-index: 2;
}

.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: #4072B3;
	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;
}


/*------------------------- INTERVIEW -------------------------*/
.archive-wrap-result .archive-card {
	padding: 1em 1em 4em;
}

.archive-wrap-result .image-archive {
	overflow: hidden;
}

.archive-wrap-result .text-archive {
	padding: 1.2em 0;
	position: relative;
}

.archive-wrap-result .title-archive {
	color: var(--text-strong);
	font-size: 2.6rem;
	font-weight: var(--bold);
}

.archive-wrap-result .title-archive .strong {
	color: #fff;
	background: #222;
	padding: 0px 5px;
}

.main-webcreative .title-archive .strong {
	background: var(--gradient);
}

.archive-wrap-result .meta-post {
	position: absolute;
	margin: 0;
	left: 1em;
	bottom: 1.5em;
	letter-spacing: .1em;
}

.archive-wrap-result .link-movie {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
}
/*------------------------- INTERVIEW END -------------------------*/


@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;
	}
}



/*********************
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: #4072B3;
	border: 1px solid #4072B3;
	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: #4072B3;
	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;
	}
}



/*********************
HOME
*********************/
.home {
	background-color: #fff;
}

.main-home {
	font-size: 1.4rem;
}

.firstv {
	background-color: var(--base);
	height: calc(100vh - 160px);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 80px;
	padding-bottom: 45vh;
	position: relative;
}

.firstv::before {
	content: "";
	background: center /  contain no-repeat url(../../uploads/mv_01-min.png);
	position: absolute;
	height: 55%;
	width: 100%;
	z-index: 2;
	bottom: -40px;
}

.firstv-content {
	font-family: var(--font-jp);
	letter-spacing: .15em;
	line-height: 1.5;
}

.firstv-content .heading-en {
	font-family: var(--font-en);
	font-variant-caps: small-caps;
	font-size: 1.8rem;
}

.firstv-content .h2-home {
	font-size: 2.4rem;
}

.firstv-content .firstv-text {
	color: var(--text-strong);
	font-size: 1.4rem;  
}


/*PV*/
.link-movie--pv {
	display: block;
}

.link-movie--pv::before {
	content: "";
	display: block;
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
	background-color: rgba(0, 0, 0, .5);
	z-index: 1;
	border-radius: var(--radius);
	transition: background .5s;
}

.link-movie--pv::after {
	content: "";
	background: center / contain no-repeat url(../../uploads/icon-play.svg);
	height: 40px;
	width: 158px;
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	transition: background .2s;
}

.link-movie--pv video {
	border-radius: var(--radius);
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.link-movie--pv:hover {
	opacity: 1;
}

.firstv-content .heading-en,
#section-pv .heading-en,
.banner-cv .heading-en {
	background: var(--gradient); 
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


/*COURSE*/
.grid-item--webdesign {
	border-radius: var(--radius);
	overflow: hidden;
	position: relative;
	text-align: center;
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 50px;
	padding-right: calc(50% + 50px);
	height: 500px;
}

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


.grid-item--webdesign .h2-home {
	color: #fff;
}

.grid-item--webdesign h2 {
	color: #fff;
	font-size: 1.4rem;
}

.course-card {
	padding: 100px 50px 350px;
}

.course-card::before {
	content: "";
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	height: 230px;
	width: 350px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.course-card--free::before {
	background-image: url(../../uploads/mv_03.svg);
}

.course-card--personal::before {
	background-image: url(../../uploads/mv_04.svg);
	bottom: -2px;
}

.course-card h2 {
	color: var(--text-strong);
	font-size: 1.4rem;
}


@media only screen and (min-width: 961px) {
	.page-id-188 {
		width: 100%;
		height: 100vh;
		background-attachment:fixed;
		background-color: rgba(8, 17, 28, 1);
		background-image: radial-gradient(circle at 0% 91%, rgba(44, 110, 191, 0.7), rgba(255, 255, 255, 0)), radial-gradient(circle at 100% 0%, rgba(169, 61, 67, 1), rgba(255, 255, 255, 0));
		background-size: 200% 200%;
		animation: bggradient 20s ease infinite;
	}

	@keyframes bggradient{
		0% {
			background-position: 0% 50%;
		}
		50% {
			background-position: 100% 50%;
		}
		100% {
			background-position: 0% 50%;
		}
	}

	.link-movie--pv:hover::before {
		background-color: rgba(0, 0, 0, .7);
	}

	.link-movie--pv:hover::after {
		background: center / contain no-repeat url(../../uploads/icon-play-hover.svg);
	}

	#section-home-company {
		padding-top: 180px;
		padding-bottom: 180px;
	}


	.grid-contents .grid-item.grid-item--wide,
	.grid-contents .grid-item {
		padding: 70px 30px 320px;
	}

	.grid-contents .grid-item::before {
		height: 300px;
		bottom: -13px;
	}

	.grid-contents .grid-item.grid-item--wide::before {
		width: 100%;
		left: 0;
		right: auto;
		top: auto;
		bottom: -15px;
		transform: none;
		height: 300px;
	}
}

@media only screen and (max-width: 960px) {
	.home .section-wrap {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.page-id-188::before {
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-1;
		width: 100%;
		height: 1400px;
		background-attachment:fixed;
		background-size:cover;
		background-position: top center;
		background-image: url(../../uploads/bg_sp-scaled.jpg);
	}

	.firstv {
		height: 650px;
		margin: 70px 5%;
		padding: 65px 40px 300px;
	}

	.firstv::before {
		bottom: -17px;
		height: 44%;
	}

	.grid-item--webdesign {
		height: auto;
	}

	.grid-item--webdesign img {
		width: 85%;
		margin-left: auto;
		margin-right: auto;
	}

	.course-card {
		padding: 50px 50px 195px;
	}

	.course-card::before {
		height: 140px;
	}

}

@media only screen and (max-width:560px) {
	.page-id-188::before {
		height: 1000px;
	}

	.firstv {
		height: 575px;
		padding: 78px 40px 300px;
	}

	.firstv::before {
		bottom: -26px;
	}

	.firstv-content .h2-home {
		font-size: 2rem;
	}

	.link-movie--pv::after {
		width: 115px;
		bottom: 12px;
	}

	.grid-item--webdesign {
		padding: 50px 30px 215px;
	}

	.grid-item--webdesign::before {
		height: 160px;
		width: 100%;
		left: 0;
		right: auto;
		top: auto;
		bottom: -9px;
		transform: none;
	}

	.course-card h2,
	.course-card h3 {
		font-size: 1.3rem;
		letter-spacing: .01em;
	}
}


/*********************
PAGE PARTS
*********************/
.flex-border {
	display: flex;
	position: relative;
	padding-top: 20px;
	padding-bottom: 20px;
}

.flex-border::after {
	content: "";
	background-color: #B9B9B9;
	height: 1px;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}

.flex-border:first-of-type::before {
	content: "";
	background-color: #B9B9B9;
	height: 1px;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.flex-border dt {
	color: var(--text-strong);
	font-weight: var(--bold);
}

.flex-border-margin {
	padding-top: 80px;
	padding-bottom: 80px;
}

.flex-border-margin:first-of-type::before,
.flex-border-margin:last-of-type::after {
	content: none;
}

.flex-border-margin .heading-en {
	background-color: var(--text-strong);
	color: #fff;
}

.flex-faq {
	row-gap: 18px;
	padding-top: 43px;
	padding-bottom: 43px;
}

.flex-faq dt {
	color: var(--text-strong);
	font-size: 2.3rem;
	font-weight: var(--bold);
	letter-spacing: .1em;
	position: relative;
	padding-left: 2em;
	width: 100%;
}

.flex-faq dt::before {
	content: "Q.";
	font-weight: var(--normal);
	position: absolute;
	left: 0;
	top: -5px;
	font-size: 1.2em;
}

#section-flow .cell img {
	display: block;
	width: max(55%, 290px);
	margin-left: auto;
	margin-right: auto;
}


@media only screen and (max-width: 960px) {
	.flex-border {
		row-gap: 5px;
	}

	.flex-border-margin {
		row-gap: 20px;
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.flex-border-margin .cell,
	#section-profile .flex > .cell {
		width: 100%;
	}

	.flex-faq {
		row-gap: 15px;
	}

	.flex-faq dt {
		font-size: 1.9rem;
		letter-spacing: .05em;
		line-height: 1.5;
	}
}

@media only screen and (max-width: 560px) {
	.flex-faq dt::before {
		top: 0;
		font-size: 1em;
	}

	#section-flow .cell img {
		width: 230px;
	}
}


/*------------------------- WEB CREATIVE -------------------------*/

.main-webcreative {
	color: #ceced7;
}

.main-webcreative .h2-home,
.main-webcreative .h3-home,
.main-webcreative .h1-page,
.main-webcreative .archive-wrap-result .title-archive,
.main-webcreative .flex-faq dt {
	color: #fff;
}

.page-id-188 .footer-cta,
.page-id-196 .footer-cta {
	display: none;
}

.header-page--webcreative::before {
	content: "";
	background: center /  cover no-repeat url(../../uploads/mv_webdesign.jpg);
	position: absolute;
	height: 100%;
	width: 100%;
	top:  0;
	left: 0;
	z-index: 0;
}

.header-page--webcreative::after {
	content: "";
	background-color: rgba(0, 0, 0, .5);
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.header-page--webcreative .h1-page-wrap {
	position: relative;
	z-index: 2;
}

.header-page--webcreative .heading-en {
	color: #fff;
	font-weight: var(--bold);
	position: relative;
	padding-bottom: 5px;
}

.header-page--webcreative .heading-en::before {
	content: "";
	background-color: #fff;
	height: 1px;
	width: 90%;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}

.header-page--webcreative .h1-page {
	font-size: 1.4rem;
}

.container-text {
	font-size: 1.7rem;
	letter-spacing: .12em;
	line-height: 2.5;
	max-width: 425px;
	margin-top: 70px;
}

.img-practical {
	width: 95vw;
	margin-left: auto;
	align-items: flex-end;
}

#section-catch-onlyone {
	overflow: hidden;
	padding-bottom: 400px;
}

.img-onlyone {
	right: -85px;
	position: absolute;
	bottom: 100px;
	width: 50vw;
	max-width: 850px;
}

.slider {
	margin: 0;
}

.slick-track {
	display: flex !important;
}

.slick-slide {
	height: auto !important;
	margin: 5px;
}

.grid-contents {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr 1.1fr 1fr 1.1fr;
	grid-column-gap: 15px;
	grid-row-gap: 15px;
	padding-left: 15px;
	padding-right: 15px;
	max-width: 1680px;
	margin-left: auto;
	margin-right: auto;
}

.grid-contents .heading-en {
	background: var(--gradient); 
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 25px;
}

.grid-contents .grid-item {
	border-radius: var(--radius);
	overflow: hidden;
	padding: 90px 50px 300px;
	position: relative;
	text-align: center;
}

@media only screen and (min-width: 961px) {
	.grid-contents .grid-item:first-child { grid-area: 1 / 1 / 2 / 3; }
	.grid-contents .grid-item:nth-child(2) { grid-area: 2 / 1 / 3 / 2; }
	.grid-contents .grid-item:nth-child(3) { grid-area: 2 / 2 / 3 / 3; }
	.grid-contents .grid-item:nth-child(4) { grid-area: 3 / 1 / 4 / 3; }
	.grid-contents .grid-item:nth-child(5) { grid-area: 4 / 1 / 5 / 2; }
	.grid-contents .grid-item:last-child { grid-area: 4 / 2 / 5 / 3; }
}

.grid-contents .grid-item::before {
	content: "";
	position: absolute;
	height: 300px;
	width: 100%;
	z-index: 2;
	bottom: -27px;
	left: 0;
}

.grid-contents .grid-item.grid-item--wide {
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 50px;
	padding-right: calc(50% + 50px);
}

.grid-contents .grid-item.grid-item--wide::before {
	content: "";
	position: absolute;
	height: 100%;
	width: min(50vw, 795px);
	z-index: 2;
	top: 50%;
	left: auto;
	right: 0;
	transform: translateY(-50%);
}

.grid-contents .grid-item:first-child::before { background: center /  contain no-repeat url(../../uploads/unique_01-min.png); }
.grid-contents .grid-item:nth-child(2)::before { background: center /  contain no-repeat url(../../uploads/unique_02-min.png); }
.grid-contents .grid-item:nth-child(3)::before { background: center /  contain no-repeat url(../../uploads/unique_03-min.png); }
.grid-contents .grid-item:nth-child(4)::before { background: center /  contain no-repeat url(../../uploads/unique_04-min.png); }
.grid-contents .grid-item:nth-child(5)::before { background: center /  contain no-repeat url(../../uploads/unique_05-min.png); }
.grid-contents .grid-item:last-child::before { background: center /  contain no-repeat url(../../uploads/unique_06-min.png); }

.grid-item--inner {
	max-width: 450px;
	margin-left: auto;
	margin-right: auto;
}

.flex-media {
	border-radius: var(--radius);
	padding: 80px 50px;
}

.flex-media .heading-en {
	font-family: var(--font-jp);
}

.flex-media .h3-home {
	color: var(--text-strong);
	margin-bottom: 0;
}

.grid-reasons {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(3, 1fr);
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}

.grid-reasons .grid-item {
	border-radius: var(--radius);
	background-color: var(--text-strong);
	padding: 70px 70px 430px;
	position: relative;
	text-align: center;
}

.grid-reasons .grid-item::before {
	content: "";
	border-radius: 0 0 var(--radius) var(--radius);
	position: absolute;
	height: 360px;
	width: 100%;
	z-index: 0;
	bottom: 0;
	left: 0;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
}

.grid-item--01::before { background-image: url(../../uploads/reason_01-min.jpg); }
.grid-item--02::before { background-image: url(../../uploads/reason_02-min.jpg); }
.grid-item--03::before { background-image: url(../../uploads/reason_03-min.jpg); }
.grid-item--04::before { background-image: url(../../uploads/reason_04-min.jpg); }
.grid-item--05::before { background-image: url(../../uploads/reason_05-min.jpg); }
.grid-item--06::before { background-image: url(../../uploads/reason_06-min.jpg); }

.grid-reasons .heading-en {
	color: #fff;
	background: var(--gradient);
	margin-bottom: 20px;
}

.company-card {
	background-color: var(--text-strong);
	border-radius: var(--radius);
	padding: 3em;
}

.company-card ul {
	display: inline-block;
	text-align: left;
}

.company-card li {
	font-weight: 300;
	margin: .5em 0 0 1.2em;
}

.main-webcreative .archive-card {
	background-color: var(--text-strong);
}

.banner-cv {
	background-color: #fff;
	color: var(--text-main);
	border-radius: var(--radius);
	display: block;
	position: relative;
	text-decoration: none;
	padding-top: 70px;
	padding-bottom: 70px;
	padding-left: 20px;
	padding-right: calc(47% + 20px);
}

.banner-cv::before {
	border-radius: 0 var(--radius) var(--radius) 0;
	content: "";
	background: center /  cover no-repeat url(../../uploads/cv_02.jpg);
	position: absolute;
	height: 100%;
	width: 47%;
	bottom: 0;
	right: 0;
}

.banner-cv .h3-lp {
	color: var(--text-strong);
}

.banner-cv:hover {
	opacity: 1;
}

.scroll-wrap {
	display: flex;
	justify-content: flex-start;
	margin-top: 1em;
	overflow-x: scroll;
	overflow-y: auto;
	margin-left: var(--container-side);
	padding-bottom: 50px;
}

.scroll-wrap .cell {
	width: 33vw;
	margin-right: 4%;
	flex: 0 0 auto;
}

.scroll-wrap span {
	font-size: 1.4rem;
	color: var(--text-main);
}

.scroll-wrap p {
	color: #fff;
	font-size: 2.3rem;
	margin-top: .25em;
}

#section-message .line-heighter p {
	margin: 0 0 2.5em;
}

#section-message .strong {
	background: transparent;
	color: #fff;
	font-weight: var(--bold);
}

.flex-works {
	row-gap: 45px;
}

.flex-works .cell--1-2-m {
	width: 46.5%;
}

.flex-works span {
	font-size: 1.3rem;
	color: var(--text-main);
}

.flex-works p {
	font-size: 2rem;
	letter-spacing: .1em;
}


@media only screen and (min-width: 1681px) {
	.img-onlyone {
		right: 3%;
	}
}



@media only screen and (max-width: 960px) {
	.main-webcreative {
		overflow: hidden;
	}

	.header-page--webcreative::before {
		background: center /  cover no-repeat url(../../uploads/cv_01-sp.jpg);
	}

	.section-wrap#section-catch-onlyone {
		margin-bottom: 100px;
	}

	.img-onlyone {
		bottom: 0;
		width: 75vw;
	}

	.grid-contents,
	.grid-reasons {
		display: flex;
		flex-direction: column;
		row-gap: 25px;
	}

	.grid-contents .grid-item.grid-item--wide,
	.grid-contents .grid-item {
		padding: 70px 30px 320px;
	}

	.grid-contents .grid-item::before {
		height: 300px;
		bottom: -13px;
	}

	.grid-contents .grid-item.grid-item--wide::before {
		width: 100%;
		left: 0;
		right: auto;
		top: auto;
		bottom: -15px;
		transform: none;
		height: 300px;
	}

	.company-card li {
		margin-top: .8em;
	}

	.banner-cv {
		padding-bottom: 280px;
		padding-right: 20px;
		padding-top: 30px;
	}

	.banner-cv::before {
		border-radius: 0 0 var(--radius) var(--radius);
		left: 0;
		width: 100%;
		height: 250px;
	}

	.scroll-wrap .cell {
		margin-right: 6%;
		width: 65vw;
	}

	.scroll-wrap .cell img {
		margin-bottom: 10px;
	}

	.scroll-wrap span {
		font-size: 1.2rem;
	}

	.scroll-wrap p {
		font-size: 1.6rem;
	}

	.flex-media {
		padding: 45px 30px;
		text-align: center;
	}

	#section-profile>.flex {
		row-gap: 50px;
	}

	.archive-wrap-result .title-archive {
		font-size: 2rem;
	}

	.container-text {
		font-size: 1.4rem;
	}

	.container-img {
		margin-top: 35px;
		width: 100%;
		transform: none;
	}
	.flex-works .cell--1-2-m {
		width: 100%;
	}

}

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

	.section-wrap#section-catch-onlyone {
		padding-bottom: 250px;
	}

	.img-onlyone {
		bottom: 0;
		width: 90vw;
		right: -11vw;
	}

	.img-practical {
		margin-top: 50px;
	}

	.img-practical .cell--1-2-s {
		width: 85%;
	}

	.grid-contents .grid-item::before,
	.grid-contents .grid-item.grid-item--wide::before {
		height: 160px;
	}

	.grid-contents .grid-item.grid-item--wide,
	.grid-contents .grid-item {
		padding: 32px 30px 181px;
	}

	.grid-reasons .grid-item {
		padding: 50px 30px 250px;
	}

	.grid-reasons .grid-item::before {
		height: 200px;
	}
}

/*------------------------- WEB CREATIVE -------------------------*/



#section-free-contents .course-card {
	padding: 75px 50px 275px;
}

#section-free-contents .course-card::before {
	height: 197px;
}




/*feedback*/
.page-template-page-feedback {
	background-color: #f7fbff;
}

/*privacy*/
.main-privacy h2 {
	font-size: 1.5em;
	margin: 2em 0 .5em;
}

/*********************
LOADING
*********************/
#loading,
#loading_logo {
	display: none;
}

.home #loading {
	background-color: #fff;
	display: block;
	position: fixed;
	left: 0;
	text-align:center;
	width: 100%;
	height: 100%;
	z-index: 999;
}

.home #loading_logo {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
}

#loading_logo img {
	width:210px;
}


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

.bg-black {
	background-color: var(--text-strong);
}

.bg-white {
	background-color: #fff;
}

.bg-gradient-black {
	background: linear-gradient(to bottom, transparent 0%, #1f1f1f 78%, transparent 97%);
	padding-top: 200px;
	padding-bottom: 200px;
}


/*********************
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: 25px;
}



@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; }
}