@charset "UTF-8";
/* ------------------------------------------------
                    共通css
--------------------------------------------------- */

/*---------- header ----------*/
header {
	width: 100%;
}
header .header-inn {
	width: 100%;
	max-width: 1440px;
	height: 106px;
	margin: 0 auto;
	padding: 20px 20px 20px 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/*ロゴ*/
header .header-logo {
	/*line-height: 1.2;
	white-space: 1.3em;
	font-size: 2.4rem;
	width: 12em;*/
	height:100%;
}
header .header-logo img{
	height:100%;
	width:auto
}
header .gnav-wrap {
	width: calc(100% - 12em);
	height: 100%;
}
header .gnav-wrap ul#gnav {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
header .gnav-wrap ul#gnav li {
	display: block;
}
header .gnav-wrap ul#gnav li:not(.btn) {
	margin-right: 2.5em;
}
header .gnav-wrap ul#gnav li a {
	display: flex;
	font-size: 1.8rem;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

@media (max-width: 1224px) {
	header .header-inn {
		padding: 1.6vw 2vw;
		height: 8.66vw;
	}
	/*ロゴ*/
	header .header-logo {
		font-size: 1.96vw;
	}
	header .gnav-wrap ul#gnav li:not(.btn) {
		margin-right: 1.5em;
	}
	header .gnav-wrap ul#gnav li a {
		font-size: 1.47vw;
	}
}

@media (max-width: 768px) {
	header {
		width: 100%;
		background: var(--color-light-gray);
		position: fixed;
		top: 0;
		left: 0;
		z-index: 999;
	}
	header .header-inn {
		width: 96%;
		max-width: inherit;
		height: 14vw;
		padding: 0;
		margin: 0 auto;
	}

	/*ロゴ*/
	header .header-logo {
		font-size: var(--fs-sp-24);
		height:70%;
		max-height: 60px
	}
	
	header .gnav-wrap {
		width: 100%;
		height: 100%;
		display: none;
		padding: 14vw 10% 4vw;
		background: var(--color-light-gray-o);
		position: fixed;
		top: 0;
		left: 0;
		z-index: 500;
	}
	header .gnav-wrap ul#gnav {
		width: 100%;
		padding: 0;
		display: block;
		position: relative;
		z-index: 999;
	}
	header .gnav-wrap ul#gnav li:not(.btn) {
		margin-right: 0;
	}
	header .gnav-wrap ul#gnav li a {
		padding: 3vw;
		font-size: 4.8vw;
		position: relative;
	}

	/* 開閉ボタン */
	.sp-menu-trigger {
		width: 12vw;
		max-width: 60px;
		height: 12vw;
		max-height: 60px;
		border-radius: 50%;
		z-index: 2001;
		background: #000;
		border: none;
	}
	.sp-menu-btn {
		width: 60%;
		height: 100%;
		margin: 0 auto;
		padding: 0;
		position: relative;
	}
	.sp-menu-btn span {
		display: block;
		height: 2px;
		background: #fff;
		position: absolute;
		width: 100%;
		left: 0;
		transition: 0.5s ease-in-out;
	}
	.sp-menu-btn span:nth-child(1) {
		top: calc(50% - 15%);
	}
	.sp-menu-btn span:nth-child(2) {
		top: calc(50%);
	}
	.sp-menu-btn span:nth-child(3) {
		top: calc(50% + 15%);
	}

	/*開閉ボタンopen時*/
	.is-open .sp-menu-btn span:nth-child(1) {
		top: 50%;
		transform: rotate(45deg);
		background: #fff;
	}
	.is-open .sp-menu-btn span:nth-child(2) {
		opacity: 0;
	}
	.is-open .sp-menu-btn span:nth-child(3) {
		top: 50%;
		transform: rotate(-45deg);
		background: #fff;
	}
}

/*---------- footer ----------*/

/* pagetop */
.pagetop {
	width: 80px;
	height: 80px;
	margin: 0 auto;
}
.pagetop a {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-black);
	border-radius: 8px;
	background: var(--color-black);
	color: var(--color-white);
	padding: 0 10px;
	cursor: pointer;
	text-align: center;
	font-size: 1rem;
	line-height: 1;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.pagetop a span {
	width: 100%;
	height: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pagetop a span.arrow {
	border-bottom: 1px solid var(--color-white);
	position: relative;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.pagetop a span.arrow::before,
.pagetop a span.arrow::after {
	content: '';
	position: absolute;
	top: calc(50% - 5px);
	left: calc(50% - 0.5px);
	width: 1px;
	height: 10px;
	background-color: var(--color-white);
	transform-origin: 50% 0.5px;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.pagetop a span.arrow::before {
	transform: rotate(40deg);
}
.pagetop a span.arrow::after {
	transform: rotate(-40deg);
}
@media (hover: hover) and (pointer: fine) {
	.pagetop a:hover {
		background: var(--color-white);
		color: var(--color-black);
	}
	.pagetop a:hover span.arrow {
		border-bottom: 1px solid var(--color-black);
	}
	.pagetop a:hover span.arrow::before,
	.pagetop a:hover span.arrow::after {
		background-color: var(--color-black);
	}
}

@media (max-width: 768px) {
	.pagetop {
		width: 16vw;
		height: 16vw;
	}
	.pagetop a span.arrow::before,
	.pagetop a span.arrow::after {
		content: '';
		position: absolute;
		top: calc(50% - 0);
		left: calc(50% - 0.5px);
		width: 1px;
		height: 2vw;
		background-color: var(--color-white);
		transform-origin: 50% 0.5px;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
		-o-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
	}
	.pagetop a span.arrow::before {
		transform: rotate(40deg);
	}
	.pagetop a span.arrow::after {
		transform: rotate(-40deg);
	}
}

footer {
	width: 100%;
}
footer .footer-navi {
	padding: 80px 0 120px;
}
footer .footer-navi > div {
	width: 50%;
}
footer .footer-navi .txt-box {
	padding-right: 50px;
}
footer .footer-navi .txt-box .top {
	border-bottom: 1px solid var(--color-black);
}
footer .footer-navi .txt-box .top .navi-item {
	margin-bottom: 40px;
}
footer .footer-navi .txt-box .bottom .navi-item {
	margin-top: 40px;
}
footer .footer-navi .txt-box .name {
	font-size: 1.8rem;
}
footer .footer-navi .txt-box .sub {
	font-size: 1.3rem;
	font-weight: 400;
	color: var(--color-gray);
}

footer .footer-navi .btn-box .navi-item {
	padding: 30px;
	font-size: 1.4rem;
	font-weight: 400;
	border-radius: 16px;
	color: var(--color-white);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}
footer .footer-navi .btn-box .navi-item.seminar {
	margin-bottom: 20px;
	background-image: url('../../img/common/footer_seminar.jpg');
	display: block
}
footer .footer-navi .btn-box .navi-item.contact {
	background-image: url('../../img/common/footer_contact.jpg');
	display: block
}

footer .footer-navi .btn-box .navi-item .name {
	font-size: 2.6rem;
	font-weight: 600;
}
footer .footer-navi .btn-box .navi-item .sub {
	padding-bottom: 1em;
	margin-bottom: 1em;
	border-bottom: 1px solid var(--color-white);
}

footer .footer-navi .btn-box .navi-item .btn-arrow {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 30px;
	right: 30px;
	margin: auto;
	z-index: 3;
}
footer .footer-navi .btn-box .navi-item .btn-arrow .arrow {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	background-image: url('../../img/common/arrow_w.svg');
	background-size: 12px;
	background-repeat: no-repeat;
	background-position: center;
}
footer .footer-navi .btn-box .navi-item.seminar .btn-arrow .arrow {
	background-color: var(--color-orange-o);
}
footer .footer-navi .btn-box .navi-item.contact .btn-arrow .arrow {
	background-color: var(--color-blue-o);
}

footer .navi-children {
	padding-left: 20px;
}
footer .navi-children li::before {
	content: '└';
	display: inline-block;
	margin-right: 5px;
}
footer .navi-children li a {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1;
}

footer .copyright {
	width: 100%;
	padding: 40px 0 30px;
	text-align: center;
	color: var(--color-white);
	background: var(--color-gray);
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1;
}
footer .copyright .copyright-inner {
	justify-content: space-between;
	align-items: center;
}
footer .copyright .copyright-inner .en {
	font-size: 2.8rem;
	font-weight: 600;
}
@media (max-width: 768px) {
	footer .footer-navi {
		flex-direction: column;
		padding: 6vw 0 12vw;
		gap: 4vw;
	}
	footer .footer-navi > div {
		width: 100%;
	}
	footer .footer-navi .txt-box {
		padding-right: 0;
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}
	footer .footer-navi .txt-box .top {
		width: 48%;
		border-bottom: none;
		border-right: 1px solid var(--color-black);
	}
	footer .footer-navi .txt-box .bottom {
		width: 48%;
	}

	footer .footer-navi .txt-box .top .navi-item,
	footer .footer-navi .txt-box .bottom .navi-item {
		margin: 4vw 0;
	}
	footer .footer-navi .txt-box .name {
		font-size: 4.8vw;
		line-height: 1;
	}
	footer .footer-navi .txt-box .sub {
		font-size: 2.8vw;
	}

	footer .footer-navi .btn-box .navi-item {
		padding: 4vw;
		font-size: 3.2vw;
		border-radius: 2vw;
	}
	footer .footer-navi .btn-box .navi-item.seminar {
		margin-bottom: 4vw;
	}
	footer .footer-navi .btn-box .navi-item .name {
		font-size: 4.8vw;
	}
	footer .footer-navi .btn-box .navi-item .btn-arrow {
		width: 10vw;
		height: 10vw;
		top: 4vw;
		right: 4vw;
	}
	footer .footer-navi .btn-box .navi-item .btn-arrow .arrow {
		border-radius: 1vw;
		background-size: 2vw;
	}

	footer .navi-children {
		padding-left: 1em;
	}
	footer .navi-children li::before {
		content: '└';
		display: inline-block;
		margin-right: 1vw;
	}
	footer .navi-children li a {
		font-size: var(--fs-sp-12);
	}

	footer .copyright {
		width: 100%;
		padding: 4vw 0 3vw;
		font-size: 2.4vw;
	}
	footer .copyright .copyright-inner {
		flex-direction: column;
		gap: 2vw;
	}
	footer .copyright .copyright-inner .en {
		font-size: 4.6vw;
	}
}

/*---------- コンテンツ レイアウト ----------*/
.main {
	overflow: hidden;
}
.cont-inn {
	width: 85%;
	max-width: 1224px;
	margin: 0 auto;
	position: relative;
}

@media (max-width: 768px) {
	.cont-inn {
		width: 92%;
		max-width: initial;
		margin: 0 auto;
		position: relative;
	}
}

/*---------- ttl ----------*/
.h-ttl-s {
	font-size: 5.6rem;
}
@media (max-width: 768px) {
	.h-ttl-s {
		font-size: 10vw;
	}
}

/*---------- ボタン ----------*/
.btn {
	width: 280px;
	height: 58px;
}
.btn a {
	background: var(--color-black);
	border: 2px solid var(--color-black);
	color: var(--color-white);
	font-size: 1.5rem;
	width: 100%;
	height: 100%;
	padding: 10px 58px 10px 30px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	position: relative;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.btn a .arrow {
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	border-left: 1px solid var(--color-white);
	width: 38px;
	height: 38px;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.btn a span {
	display: block;
}
.btn a .arrow::before,
.btn a .arrow::after {
	content: '';
	position: absolute;
	top: 50%;
	right: calc(50% - 10px);
	width: 10px;
	height: 1px;
	background-color: var(--color-white);
	transform-origin: calc(100% - 0.5px) 50%;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.btn a .arrow::before {
	transform: rotate(40deg);
}
.btn a .arrow::after {
	transform: rotate(-40deg);
	top: calc(50% + 0.5px);
}
@media (hover: hover) and (pointer: fine) {
	.btn a:hover {
		background: var(--color-white);
		color: var(--color-black);
	}
	.btn a:hover .arrow {
		border-left: 1px solid var(--color-black);
	}
	.btn a:hover .arrow::before,
	.btn a:hover .arrow::after {
		background-color: var(--color-black);
	}
}

@media (max-width: 768px) {
	.btn {
		width: 50vw;
		height: 10vw;
	}
	.btn a {
		padding: 1vw 6vw 1vw 3vw;
		border-radius: 1vw;
	}
	.btn a .arrow {
		position: absolute;
		right: 1vw;
		top: 0;
		bottom: 0;
		margin: auto;
		width: 6vw;
		height: 6vw;
	}
	.btn a .arrow::before,
	.btn a .arrow::after {
		content: '';
		position: absolute;
		top: calc(50% - 0.5vw);
		right: calc(50% - 1.5vw);
		width: 2vw;
		height: 1px;
		background-color: var(--color-white);
		transform-origin: calc(100% - 1vw) 50%;
	}
	.btn a .arrow::before {
		transform: rotate(40deg);
	}
	.btn a .arrow::after {
		transform: rotate(-40deg);
		top: calc(50% + 0.5vw);
	}
}

/*--header用--*/
.gnav-wrap .btn {
	width: 226px;
	height: 100%;
}
.gnav-wrap .btn a {
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	line-height: 1.4;
}
.gnav-wrap .btn .arrow {
	width: 42px;
	height: 42px;
}
.gnav-wrap .btn a .jp-txt {
	font-size: 0.55em;
}
.gnav-wrap .btn.seminar {
	margin-right: 1em;
}
.gnav-wrap .btn.seminar a {
	background: var(--color-orange);
	border: 2px solid var(--color-orange);
}
.gnav-wrap .btn.contact a {
	background: var(--color-blue);
	border: 2px solid var(--color-blue);
}

@media (hover: hover) and (pointer: fine) {
	.gnav-wrap .btn.seminar a:hover {
		background: var(--color-white);
		color: var(--color-orange);
	}
	.gnav-wrap .btn.seminar a:hover .arrow {
		border-left: 1px solid var(--color-orange);
	}
	.gnav-wrap .btn.seminar a:hover .arrow::before,
	.gnav-wrap .btn.seminar a:hover .arrow::after {
		background-color: var(--color-orange);
	}

	.gnav-wrap .btn.contact a:hover {
		background: var(--color-white);
		color: var(--color-blue);
	}
	.gnav-wrap .btn.contact a:hover .arrow {
		border-left: 1px solid var(--color-blue);
	}
	.gnav-wrap .btn.contact a:hover .arrow::before,
	.gnav-wrap .btn.contact a:hover .arrow::after {
		background-color: var(--color-blue);
	}
}

@media (max-width: 1224px) {
	.gnav-wrap .btn {
		width: 18.46vw;
	}
	.gnav-wrap .btn a {
		padding: 1vw 4.8vw 1vw 2vw;
	}
	.gnav-wrap .btn .arrow {
		width: 3.43vw;
		height: 3.43vw;
	}
	.gnav-wrap .btn a .jp-txt {
		font-size: 0.7em;
	}
}

@media (max-width: 768px) {
	.gnav-wrap .btn {
		width: 80%;
		height: 14vw;
		margin-top: 4vw;
	}
	.gnav-wrap .btn a {
		padding-left: 10vw;
	}
	.gnav-wrap .btn .arrow {
		width: 8vw;
		height: 8vw;
	}
	.gnav-wrap .btn a .jp-txt {
		font-size: 0.55em;
	}
}

/* ------------------------------------------------
    CTA box (seminar / online)
--------------------------------------------------- */
section.cta-box.seminar {
	padding: 100px 0;
}
section.cta-box.online {
	padding: 50px 0 160px;
}

.cta-box .cta-box-inner {
	min-height: 380px;
	color: var(--color-white);
	padding: 45px 45px 45px 70px;
	border-radius: 16px;
	justify-content: space-between;
	background-color: var(--color-orange);
	background-size: auto 118%;
	background-position: right bottom;
	background-repeat: no-repeat;
	overflow: hidden;
	flex-wrap: wrap;
}
section.cta-box.seminar .cta-box-inner {
	background-image: url('../../img/top/seminar_01.jpg');
}
section.cta-box.online .cta-box-inner {
	background-image: url('../../img/top/online_01.jpg');
}

section.cta-box .cta-box-inner::before {
	width: 100%;
	height: 100%;
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	background: linear-gradient(to right, var(--color-orange) 0%, var(--color-orange) 50%, rgba(0, 0, 0, 0) 74%, rgba(0, 0, 0, 0) 100%);
}
.cta-box .cta-box-txt {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 80%;
	max-width: 430px;
	position: relative;
	z-index: 3;
}
.cta-box .cta-box-btn {
	display: flex;
	align-items: flex-end;
	margin: 10px 0 0 auto;
}
.cta-box .h-ttl-s {
	line-height: 1.1;
}
.cta-box .h-sub {
	margin-bottom: 2em;
}
@media (max-width: 1224px) {
	.cta-box .cta-box-inner {
		min-height: inherit;
		padding: 3.6vw;
	}
	.cta-box .h-lead {
		font-size: 1.5rem;
	}
	.cta-box .h-sub {
		margin-bottom: 1em;
	}
}
@media (max-width: 768px) {
	section.cta-box.seminar {
		padding: 12vw 0;
	}
	section.cta-box.online {
		padding: 6vw 0 18vw;
	}

	.cta-box .cta-box-inner {
		min-height: inherit;
		padding: 4vw;
		border-radius: 2vw;
		background-size: contain;
		background-position: right bottom -10vw;
	}

	section.cta-box .cta-box-inner::before {
		background: linear-gradient(to bottom, var(--color-orange) 0%, var(--color-orange) 50%, rgba(0, 0, 0, 0) 74%, rgba(0, 0, 0, 0) 100%);
	}
	.cta-box .cta-box-txt {
		width: 100%;
	}
	.cta-box .cta-box-btn {
		margin: 16vw 0 4vw auto;
	}
}
