@charset "utf-8";
@import url(https://fonts.googleapis.com/icon?family=Material+Icons%7CMaterial+Icons+Outlined);
/*@font-face {*/
/*	font-family: 'Noto Sans';*/
/*	src: url("../../fonts/NotoSans-VariableFont_wdth,wght.woff2");*/
/*	font-weight: 400;*/
/*	font-style: normal;*/
/*	!*font-display: swap;*!*/
/*}*/
/*@font-face {*/
/*	font-family: 'Noto Sans JP';*/
/*	src: url("../../fonts/NotoSansJP-VariableFont_wght.woff2");*/
/*	font-weight: 400;*/
/*	font-style: normal;*/
/*	!*font-display: swap;*!*/
/*}*/
/*@font-face {*/
/*	font-family: 'Roboto';*/
/*	src: url("../../fonts/Roboto-VariableFont_wdth,wght.woff2");*/
/*	font-weight: 400;*/
/*	font-style: normal;*/
/*	!*font-display: swap;*!*/
/*}*/
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

:root {
	--brand-orange: #FA7300;
	--brand-orange-dark: #FA7300;
	--brand-orange-light: #fff7ed;
	--text-main: #1f2937;
	--text-sub: #64748b;
	--bg-body: #f8fafc;
	--border-light: #e2e8f0;
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--font-medium: 500;
	--font-semibold: 600;
	--font-bold: 700;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
	color: var(--text-main);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: 'Noto Sans', sans-serif;
	overflow-x: hidden;
	width: 100%;
	line-height: 1.5;
	background: #F6F8FA
}

a { text-decoration: none; color: inherit; transition: 0.2s; }
button { cursor: pointer; border: none; background: none; font-family: inherit; outline: none; }
ul { list-style: none; }

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/* --- Common --- */
.layout-container {
	/*width: 76.39vw;*/
	width: 81.39vw;
	margin: 0 auto;
	padding: 0 2.08vw;
}

/* --- Header --- */
.site-header {
	background: transparent;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}

.site-header .layout-container {
	display: flex;
	align-items: center;
	width: 90.28vw;
	height: 4.44vw;
	gap: 0;
}

.header-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	margin-right: 2.08vw;
}

.header-logo img {
	height: 1.81vw;
	width: auto;
}

.header-nav {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 1.94vw;
	margin-right: auto;
}

.header-nav a {
	font-size: 0.97vw;
	color: #333;
	white-space: nowrap;
	transition: color 0.2s;
	position: relative;
}

.header-nav a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 25%;
	width: 50%;
	height: 3px;
	background: #FA7300;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.25s ease;
}

.header-nav a:hover {
	color: #FA7300;
}

.header-nav a:hover::after {
	transform: scaleX(1);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 1vw;
	margin-left: 1.39vw;
	height: 100%;
}

.header-action-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.21vw;
	font-size: 0.97vw;
	font-weight: bold;
	color: #333;
	transition: color 0.2s;
	white-space: nowrap;
	height: 100%;
	padding: 0 10px;
	position: relative;
}

.header-action-item:hover {
	color: #FA7300;
}

.header-action-item img {
	width: 1.66vw;
	height: 1.66vw;
}

.img-search-white {
	position: absolute;
	top: 0.49vw;
	opacity: 0;
}

.header-action-item-search:hover .img-search-white {
	opacity: 1;
}

.header-action-item-search.is-active {
	color: #FFF;
	background-color: #FA7300;
}

.header-action-item-search.is-active .img-search-white {
	opacity: 1;
}

.img-login-white {
	position: absolute;
	top: 0.49vw;
	opacity: 0;
}

.header-action-item-login:hover .img-login-white {
	opacity: 1;
}

.img-logout-white {
	position: absolute;
	top: 0.49vw;
	opacity: 0;
}

.header-action-item-logout:hover .img-logout-white {
	opacity: 1;
}

.img-company-site-white {
	position: absolute;
	top: 0.49vw;
	opacity: 0;
}

.header-action-item-company-site:hover .img-company-site-white {
	opacity: 1;
}

.header-action-item:hover {
	color: #FFF;
	background-color: #FA7300;
}

.btn-mypage {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0.14vw solid #FA7300;
	color: #FA7300;
	padding: 0.35vw 2.36vw;
	border-radius: 3.42vw;
	font-family: 'Roboto', sans-serif;
	font-size: 0.97vw;
	font-weight: bold;
	transition: background 0.2s, color 0.2s;
	white-space: nowrap;
	margin-left: 0.56vw;
	max-width: 8.89vw;
	max-height: 2.43vw;
}

.btn-mypage:hover {
	background: #FA7300;
	color: #fff;
}

.search-dropdown-wrapper {
	position: absolute;
	top: 4.4444vw;
	left: 0;
	right: auto;
	z-index: 400;

	/* 表示・非表示アニメーション */
	pointer-events: none;
	opacity: 0;
	transform: translateY(-0.5556vw);
	transition: opacity 0.22s ease, transform 0.22s ease;
}

.search-dropdown-wrapper.is-open {
	pointer-events: auto;
	opacity: 1;
	transform: translateY(0);
}

/* ── 検索フォーム本体 ──────────────────────────── */
.search-dropdown-form {
	display: flex;
	align-items: stretch;
	width: 100%;
	height: 3.6111vw;
	box-shadow: 0 0.2778vw 1.1111vw rgba(0, 0, 0, 0.14);
}

.search-dropdown-input {
	flex: 1;
	height: 100%;
	padding: 0 1.25vw;
	font-size: 0.9722vw;
	font-family: inherit;
	color: #222222;
	background: #fff;
	border: 0.14vw solid #FA7300;
	outline: none;
}

.search-dropdown-input::placeholder {
	color: #888888;
}

.search-dropdown-btn {
	width: 3.8889vw;
	height: 100%;
	background: #FA7300;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.2s;
}

/*.search-dropdown-btn:hover {*/
/*	background: #FA7300;*/
/*}*/

.search-dropdown-btn img {
	width: 1.5278vw;
	height: 1.5278vw;
	stroke: #fff;
}

/* ── オーバーレイ（外クリックで閉じる） ──────────── */
.search-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 10;
	background: transparent;
}

.search-overlay.is-open { display: block; }

/* Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 6px;
	margin-left: auto;
	z-index: 110;
}

/*.hamburger {*/
/*	display: none;*/
/*	flex-direction: column;*/
/*	gap: 0.42vw;*/
/*	cursor: pointer;*/
/*	background: none;*/
/*	border: none;*/
/*	padding: 0.42vw;*/
/*	margin-left: auto;*/
/*	z-index: 110;*/
/*}*/

.hamburger span {
	display: block;
	width: 26px;
	height: 2px;
	background: #333;
	border-radius: 1px;
	transition: 0.3s;
}

.hamburger.is-open {
	visibility: hidden;
	pointer-events: none;
}

.hamburger img {
	display: block;
	width: 5vw;
	transition: 0.3s;
}

/* Mobile Menu Overlay */
.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #FA7300;
	z-index: 200;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
	overflow-y: auto;
}

.mobile-menu.is-open {
	opacity: 1;
	visibility: visible;
}

.mobile-menu-inner {
	padding: 10px 24px 40px;
}

/* Menu header */
.mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 28px;
}

.mobile-menu-logo {
	height: 32px;
	width: auto;
}

.mobile-menu-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 50px;
	border: 2px solid #fff;
	border-radius: 50px;
	background: #FA7300;
	cursor: pointer;
	transition: opacity 0.2s;
}

.mobile-menu-close:hover {
	opacity: 0.85;
}

.mobile-menu-close svg {
	width: 42px;
	height: 42px;
	stroke: #fff;
}

/* Pill buttons */
.mobile-menu-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 28px;
}

.mobile-menu-pill {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #fff;
	border-radius: 50px;
	padding: 10px 20px;
	color: #fff;
	font-size: 22px;
	font-weight: 900;
	text-align: center;
	transition: background 0.2s;
}

.mobile-menu-pill:hover {
	background: rgba(255, 255, 255, 0.15);
}

/* Course search section */
.mobile-menu-search {
	margin-bottom: 8px;
}

.mobile-menu-search > .mobile-menu-link-item {
	border-bottom: none;
	padding-bottom: 8px;
}

.mobile-menu-link-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
	border-bottom: 2px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	transition: opacity 0.2s;
	position: relative;
}

.mobile-menu-link-item:hover {
	opacity: 0.8;
}

.mobile-menu-link-item::after {
	content: "";
	display: inline-block;
	background-image: url(../../img/common/button_white.webp);
	background-position: center;
	background-size: contain;
	width: 24px;
	height: 24px;
	position: absolute;
	right: 7px;
	top: 21px;
}

.mobile-menu-search-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.mobile-menu-grid-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	transition: opacity 0.2s;
	position: relative;
}

.mobile-menu-grid-item:nth-child(odd) {
	margin-right: 12px;
}

.mobile-menu-grid-item:nth-child(even) {
	margin-left: 12px;
}

/* 上から1,2番目(最初の行)の上線を消す */
.mobile-menu-grid-item:nth-child(1),
.mobile-menu-grid-item:nth-child(2) {
	border-top: none;
}

.mobile-menu-grid-item:hover {
	opacity: 0.8;
}

.mobile-menu-grid-item::after {
	content: "";
	display: inline-block;
	background-image: url(../../img/common/button_white.webp);
	background-position: center;
	background-size: contain;
	width: 24px;
	height: 24px;
	position: absolute;
	right: 7px;
	top: 13px;
}

/* Nav links */
.mobile-menu-nav {
	display: flex;
	flex-direction: column;
	margin-bottom: 28px;
}

/* Bottom button */
.mobile-menu-bottom {
	margin-top: 8px;
}

.mobile-menu-bottom .mobile-menu-pill {
	border-color: #fff;
	width: 100%;
}

/* --- Main --- */
.ls_main {
	background: #f8f8f8;
	padding: 8.61vw 0 4.86vw;
	position: relative;
	overflow: hidden;
}

.ls_main .main-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.main-content {
	position: relative;
	z-index: 2;
}

.main-label {
	display: inline-block;
	border: 0.07vw solid #FA7300;
	color: #FA7300;
	font-size: 1.11vw;
	padding: 0.56vw 1.67vw;
	border-radius: 0.4vw;
	margin-bottom: 1.67vw;
	font-weight: var(--font-semibold);
}

.main-title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 2.64vw;
	font-weight: bold;
	color: #FA7300;
	line-height: 1.45;
	margin-bottom: 2.5vw;
	letter-spacing: 0.02em;
}

.main-title.top {
	margin-left: 1.39vw;
}

.btn-contact {
	display: inline-flex;
	align-items: center;
	gap: 0.97vw;
	background: #fff;
	padding: 1.47vw 6.11vw 1.47vw 3.08vw;
	border-radius: 3.47vw;
	font-size: 1.25vw;
	font-weight: var(--font-semibold);
	color: #333;
	transition: background 0.2s, box-shadow 0.2s;
	cursor: pointer;
	position: relative;
}

.btn-contact:hover {
	background: #eee;
	box-shadow: 0 0.14vw 0.69vw rgba(0, 0, 0, 0.08);
}

.btn-contact strong {
	color: #FA7300;
	font-weight: bold;
}

.btn-contact::after {
	content: "";
	display: inline-block;
	background-image: url(../../img/common/button_orange.webp);
	background-position: center;
	background-size: contain;
	width: 2.78vw;
	height: 2.78vw;
	position: absolute;
	right: 1vw;
	top: 1vw;
}

.sp-contact {
	display: none;
}

#main-no-side {
	padding: 0 0 4.17vw;
}

#main-no-side.top {
	padding: 4.17vw 0;
}

#main {
	padding: 0 0 4.17vw;
	display: flex;
	gap: 2.78vw;
	align-items: flex-start;
}

#conts {
	flex: 1;
	min-width: 0;
}

#sideBar {
	width: 18.75vw;
	flex-shrink: 0;
}

.sidemenu1 {
	overflow: hidden;
	margin-bottom: 1.39vw;
	border: 1px solid transparent;
	border-image: linear-gradient(to bottom, #EB5A00, #FA7300);
	border-image-slice: 1;
}

.sidemenu1 .title {
	background: #FA7300;
	color: #fff;
	padding: 0.69vw 1.11vw;
	font-size: 0.97vw;
	font-weight: bold;
	text-align: center;
}

#pagePath.ls {
	/*width: 83vw;*/
	margin: 0 auto 24px;
}

#pagePath li {
	margin-right: 2px;
	display: inline;
	font-size: 0.8125rem;
}

#pagePath li:not(:last-child):after {
	font-size: 11px;
}
#pagePath li:not(:last-child):after {
	content: "-";
	position: relative;
	margin-left: 6px;
}

.rev_headLine02 {
	color: #535353;
	font-size: 1.25rem;
	font-weight: normal;
	margin-bottom: 0.8em;
	margin-top: 1.2em;
	padding-top: 0.9em;
	padding-bottom: 0.8em;
	text-align: left;
	border-top: 1px solid #E0E2E5;
	border-bottom: 1px solid #E0E2E5;
}

.rev_headLine02.ls::before {
	background: #FA7300;
}

.rev_headLine02::before {
	background: #FF7922;
	border-radius: 3px;
	content: "";
	display: inline-block;
	height: 1.8em;
	margin-right: 0.5em;
	position: relative;
	top: -2px;
	vertical-align: middle;
	width: 6px;
}

.rev_headLine02.no-border {
	padding: 0;
	border: none;
}

.rev_headLine03 {
	color: #535353;
	font-size: 16px;
	font-size: 1.0rem;
	font-weight: normal;
	margin-top: 1.2em;
	text-align: left;
}

.rev_headLine03::before {
	background: #FF7922;
	border-radius: 50px;
	content: "";
	display: inline-block;
	height: 1.8em;
	margin-right: 0.5em;
	position: relative;
	top: -2px;
	vertical-align: middle;
	width: 3px;
}

.rev_headLine03.ls::before {
	background: #EF8340;
}

.notice-mypage {
	padding-bottom: 20px;
	padding-top: 20px;
}

.apply-list table {
	border-bottom: 1px solid #E0E2E5;
	border-top: 1px solid #E0E2E5;
	margin-top: 10px;
	width: 100%;
	border-collapse: collapse;
}

.apply-list th,
.apply-list thead td {
	border-bottom: 1px solid #E0E2E5;
	box-sizing: border-box;
	color: #535353;
	font-size: 12px ;
	font-size: 0.75rem ;
	font-weight: bold;
	padding: 16px 12px;
	text-align: center;
}

.apply-list th:not(:first-of-type),
.apply-list thead td:not(:first-of-type) {
	border-left: 1px solid #E0E2E5;
}

.apply-list tbody td {
	box-sizing: border-box;
	font-size: 13px ;
	font-size: 0.8125rem ;
	padding: 16px 12px;
	text-align: center;
	width: 12em;
}

.apply-list tbody td:not(:first-of-type) {
	border-left: 1px solid #E0E2E5;
}

.apply-list tbody tr td {
	border-bottom: 1px solid #EDF1F8;
}

.apply-list tbody tr:hover {
	background: #F4F6FA;
	color: #535353;
}

.apply-list .cource_apply-list {
	text-align: left;
	width: auto;
}

.apply-list .date_apply-list {
	text-align: left;
}

.apply-list .nop_apply-list {
	text-align: right;
	width: 8em;
}

.apply-list .status_apply-list {
	width: 8em;
}

#learner-list table {
	border-bottom: 1px solid #E0E2E5;
	border-top: 1px solid #E0E2E5;
	margin-top: 10px;
	width: 100%;
	border-collapse: collapse;
}

#learner-list th,
#learner-list thead td {
	border-bottom: 1px solid #E0E2E5;
	box-sizing: border-box;
	color: #535353;
	font-size: 12px ;
	font-size: 0.75rem ;
	font-weight: bold;
	padding: 16px 12px;
	text-align: center;
}

#learner-list th:not(:first-of-type),
#learner-list thead td:not(:first-of-type) {
	border-left: 1px solid #E0E2E5;
}

#learner-list tbody td {
	box-sizing: border-box;
	font-size: 13px ;
	font-size: 0.8125rem ;
	padding: 16px 12px;
	text-align: center;
	width: 16em;
}

#learner-list tbody td:not(:first-of-type) {
	border-left: 1px solid #E0E2E5;
}

#learner-list tbody tr td {
	border-bottom: 1px solid #EDF1F8;
}

#learner-list tbody tr:hover {
	background: #F4F6FA;
	color: #535353;
}

#learner-list .mail_learner-list {
	text-align: left;
	width: auto;
}

.caption {
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	margin-top: 1.5rem;
	text-align: center;
}

#main a, #main a:link {
	color: #565656;
	text-decoration: underline;
}

.pccenter {
	text-align: center;
}

/* --- Side --- */
.sNavi .parent-category {
	position: relative;
	/*padding-left: 2vw;*/
	padding-left: 1.81vw;
	font-size: 0.9vw;
	font-weight: bold;
	margin: 0.69vw;
	cursor: pointer;
}

.sNavi .parent-category::before {
	background: url(../../img/common/plus.webp) no-repeat 50% 0 transparent;
	background-size: 1.25vw 1.25vw;
	display: block;
	content: "";
	height: 1.25vw;
	position: absolute;
	width: 1.25vw;
	top: 0.07vw;
	left: 0;
	border-radius: 50%;
}

.sNavi .parent-category.open::before {
	background: url(../../img/common/minus.webp) no-repeat 50% 0 transparent;
	background-size: 1.25vw 1.25vw;
}

.sNavi .child-category {
	position: relative;
	padding-left: 1.39vw;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.83vw;
	font-weight: 500;
	margin-left: -0.69vw;
	margin-bottom: 0.14vw;
}

.sNavi .child-category::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.35vw;
	width: 0.69vw;
	height: 0.69vw;
	border: 0.07vw solid #FA7300;
	border-radius: 50%;
}

.sNavi .child-category a {
	color: #074EE8 !important;
}

.sNavi .parent-category-child {
	margin-top: 0.69vw;
	max-height: 0;
	overflow: hidden;
}

.sNavi .parent-category-child.open {
	max-height: 1000px;
	overflow: visible;
}

.link_saturday {
	display: block;
	width: 100%;
	padding: 10px 33px 10px 13px;
	color: #fff !important;
	border-radius: 15px;
	text-decoration: none !important;
	position: relative;
	text-align: center;
	/*margin: 20px 0 0;*/
	background: linear-gradient(135deg, #FAA814 0%, #FA5D01 100%);
	margin-bottom: 1.39vw;
}

.link_saturday .title2 {
	font-family: 'Roboto', sans-serif;
	font-size: 1.67vw;
	font-weight: bold;
}

.link_saturday .link {
	font-size: 1.11vw;
	font-weight: 600;
}

.link_saturday::after {
	content: "";
	display: inline-block;
	background-image: url(../../img/common/button_white.webp);
	background-position: center;
	background-size: contain;
	width: 2.22vw;
	height: 2.22vw;
	position: absolute;
	right: 1.11vw;
	top: 1.81vw;
}

.side_download {
	background-color: #fff;
	border-radius: 10px;
}

.doc_download_msg {
	border-bottom: 0.07vw solid #FA7300;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.04vw;
	font-weight: bold;
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	justify-content: center;
	height: 7.92vw;
}

.doc_download_msg p {
	width: 100%;
}

.doc_download_msg .orange {
	color: #FA7300;
}

.doc_download {
	padding: 1.25vw;;
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	justify-content: center;
	height: 7.92vw;
}

#main a.link_text {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.69vw;
	background: #FA7300;
	color: #fff;
	padding: 0.83vw 1.39vw;
	border-radius: 3.47vw;
	font-size: 1.04vw;
	font-weight: bold;
	transition: opacity 0.2s;
	width: 100%;
	cursor: pointer;
	text-decoration: none;
	position: relative;
}

a.link_text::after {
	content: "";
	display: inline-block;
	background-image: url(../../img/common/button_white.webp);
	background-position: center;
	background-size: contain;
	width: 1.67vw;
	height: 1.67vw;
	position: absolute;
	right: 0.69vw;
	top: 0.76vw;
}


/* --- Footer --- */
.footer {
	background: #fff;
	padding: 4.17vw 0 0;
}

.footer-top {
	display: flex;
	align-items: center;
	gap: 1.67vw;
	margin-bottom: 2.78vw;
}

.footer-logo {
	flex-shrink: 0;
}

.footer-logo img {
	height: 2.08vw;
	width: auto;
}

.footer-company-info {
	font-size: 0.9vw;
	font-weight: bold;
	color: #1E232D;
	line-height: 1.8;
}

.footer-company-info .company-name {
	font-size: 1.04vw;
}

.footer-nav {
	display: flex;
	align-items: flex-start;
	gap: 2.78vw;
	padding: 1.94vw 0 2.22vw;
	border-top: 1px solid #ddd;
	border-bottom: none;
	margin-bottom: 2.22vw;
}

.footer-links {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.83vw 1.39vw;
}

.footer-link-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.69vw;
	font-size: 0.97vw;
	font-weight: bold;
	color: #333;
	transition: color 0.2s;
	white-space: nowrap;
	padding-bottom: 0.69vw;
	border-bottom: 1px solid #ddd;
	position: relative;
}

.footer-link-item:hover {
	color: #FA7300;
}

.footer-link-item::after {
	background: url(../../img/common/button_orange.webp) no-repeat 50% 0 transparent;
	background-size: 1.81vw 1.81vw;
	display: block;
	content: "";
	height: 1.81vw;
	margin-top: -1.31vw;
	position: absolute;
	right: 0;
	top: 50%;
	width: 1.81vw;
}

.footer-contact {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.footer-contact-button {
	display: inline-flex;
	align-items: center;
	gap: 1.11vw;
	border: 1px solid #B4C3D2;
	border-radius: 3.47vw;
	padding: 0.97vw 4.25vw 0.97vw 2.22vw;
	font-size: 1.04vw;
	font-weight: bold;
	color: #1E232D;
	transition: border-color 0.2s, color 0.2s;
	white-space: nowrap;
	position: relative;
}

.footer-contact-button:hover {
	border-color: #FA7300;
	color: #FA7300;
}

.footer-contact-button::after {
	background: url(../../img/common/button_orange.webp) no-repeat 50% 0 transparent;
	background-size: 2.36vw 2.36vw;
	display: block;
	content: "";
	height: 2.36vw;;
	margin-top: -1.2vw;
	position: absolute;
	right: 10px;
	top: 50%;
	width: 2.36vw;
}

.footer-social {
	display: grid;
	/*grid-template-columns: repeat(4, 1fr);*/
	grid-template-columns: repeat(3, 1fr);
	gap: 1.11vw;
	margin-bottom: 2.22vw;
}

.footer-social a {
	display: flex;
	align-items: center;
	gap: 0.69vw;
	border: 1px solid #1E232D;
	border-radius: 2.78vw;
	padding: 0.77vw 1.11vw;
	font-size: 0.97vw;
	font-weight: bold;
	color: #1E232D;
	background: #fff;
	transition: border-color 0.2s, color 0.2s;
	white-space: nowrap;
}

.footer-social a:hover {
	border-color: #FA7300;
	color: #FA7300;
}

.footer-social a img {
	width: 2.78vw;
	height: 2.78vw;
	flex-shrink: 0;
}

.footer-social a span {
	width: 100%;
	text-align: center;
}

.footer-legal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.39vw 0;
	border-top: 1px solid #ddd;
	font-size: 0.9vw;
	color: #1E232D;
}

.footer-legal-links {
	display: flex;
	gap: 2.22vw;
	font-weight: bold;
}

.footer-legal-links a:hover {
	color: #FA7300;
}

.input_caption {
	color: #898989;
	font-size: 0.75rem;
	margin-bottom: 0.5em;
	margin-top: 0.5em;
}

.grecaptcha-badge {
	z-index: 3;
}

/*------------------------------------------------------------
  エラーメッセージ
------------------------------------------------------------*/
.validation-errors {
	color: #f00;
	box-sizing: border-box;
	font-size: 0.875rem;
	text-align: center;
	border: 2px solid #f00;
	margin: 2em auto 1em;
	padding: 0.5em 0.5em 0.4em;
	max-width: 540px;
}

.validation-errors::before {
	color: #f00;
	content: "notification_important";
	font-feature-settings: 'liga';
	font-family: 'Material Icons Outlined';
	font-weight: normal;
	font-style: normal;
	font-size: 1.25rem;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
	margin-right: 0.2em;
	position: relative;
	top: -2px;
	vertical-align: middle;
}

@media screen and (max-width: 768px) {
	.validation-errors {
		margin-left: 12px;
		margin-right: 12px;
		max-width: inherit;
	}
}

.validation-tip {
	color: #f00;
	font-size: 0.75rem;
	font-weight: normal;
	display: block;
}
#main form td.half .validation-tip,
#main-no-side form td.half .validation-tip {
	width: 260px;
}

.complete-message {
	box-sizing: border-box;
	font-size: 0.875rem;
	font-weight: bold;
	text-align: center;
	border: 1px solid #2ecc71;
	margin: 2em auto 1em;
	padding: 0.5em 0.5em 0.4em;
	max-width: 540px;
}

.complete-message::before {
	color: #2ecc71;
	content: "notification_important";
	font-feature-settings: 'liga';
	font-family: 'Material Icons Outlined';
	font-weight: normal;
	font-style: normal;
	font-size: 1.25rem;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
	margin-right: 0.2em;
	position: relative;
	top: -2px;
	vertical-align: middle;
}

@media screen and (max-width: 768px) {
	.complete-message {
		margin-left: 12px;
		margin-right: 12px;
		max-width: inherit;
	}
}

.rev_submit {
	margin-bottom: 1.5rem;
	margin-top: 1.5rem;
	text-align: center;
}

div.rev_submit {
	display: block;
}

.error_contents {
	/*margin-top: 100px;*/
	font-size: 20px;
	font-size: 1.25rem;
	color: red;
}

@media (max-width: 1024px) {
	.layout-container {
		width: 100%;
		padding: 0 30px;
	}

	.site-header .layout-container {
		height: 64px;
	}

	.header-logo {
		margin-right: 0;
	}

	.header-logo img {
		height: 26px;
	}

	.header-nav {
		display: none;
	}

	.header-actions {
		display: flex;
		gap: 16px;
		margin-left: auto;
		margin-right: 12px;
	}

	.header-action-item {
		font-size: 10px;
		gap: 2px;
	}

	.header-action-item img {
		width: 22px;
		height: 22px;
	}

	.img-search-white {
		top: 10px;
	}

	.img-login-white {
		top: 10px;
	}

	.img-logout-white {
		top: 10px;
	}

	.img-company-site-white {
		top: 10px;
	}

	.btn-mypage {
		border-width: 2px;
		font-size: 13px;
		padding: 6px 16px;
		border-radius: 18px;
		margin-left: 4px;
		max-width: none;
		max-height: none;
	}

	.hamburger {
		display: flex;
		margin-left: 0;
	}

	.hamburger img {
		width: 71px;
		height: 35.5px;
	}

	/* Mobile menu: show on tablet */
	.mobile-menu {
		display: block;
	}

	.ls_main {
		padding: 110px 0 60px;
	}

	.main-label {
		border-width: 2px;
		font-size: 14px;
		padding: 8px 24px;
		border-radius: 30px;
		margin-bottom: 20px;
	}

	.main-title {
		font-size: 36px;
		margin-bottom: 30px;
	}

	.btn-contact {
		font-size: 15px;
		padding: 12px 56px 12px 28px;
		gap: 12px;
		border-radius: 50px;
	}

	.btn-contact::after {
		width: 28px;
		height: 28px;
		right: 10px;
		top: 10px;
	}

	#main-no-side {
		padding: 0 0 50px;
	}

	#main-no-side.top {
		padding: 50px 0;
	}

	/* --- Side --- */
	#sideBar {
		width: 240px;
	}

	.sidemenu1 .title {
		padding: 10px 14px;
		font-size: 14px;
	}

	.sNavi .parent-category {
		padding-left: 18px;
		font-size: 13px;
		margin: 7px;
	}

	.sNavi .parent-category::before {
		background-size: 12px 12px;
		height: 12px;
		width: 12px;
		top: 3px;
	}

	.sNavi .parent-category.open::before {
		background-size: 12px 12px;
	}

	.sNavi .child-category {
		padding-left: 14px;
		font-family: 'Noto Sans JP', sans-serif;
		font-size: 12px;
		margin-left: -7px;
		margin-bottom: 1px;
	}

	.sNavi .child-category::before {
		top: 6px;
		width: 7px;
		height: 7px;
		border: 1px solid #FA7300;
	}

	.sNavi .parent-category-child {
		margin-top: 7px;
	}

	.link_saturday .title2 {
		font-size: 22px;
	}

	.link_saturday .link {
		font-size: 11px;
	}

	.link_saturday::after {
		width: 30px;
		height: 30px;
		right: 11px;
		top: 24px;
	}

	.doc_download_msg {
		border-bottom: 1px solid #FA7300;
		font-size: 14px;
		height: 81px;
	}

	.doc_download {
		padding: 12px;
		height: 81px;
	}

	#main a.link_text {
		gap: 10px;
		padding: 10px 16px;
		border-radius: 50px;
		font-size: 14px;
	}

	a.link_text::after {
		width: 24px;
		height: 24px;
		right: 7px;
		top: 8px;
	}

	/* --- Footer --- */
	.footer {
		padding: 50px 0 0;
	}

	.footer-top {
		gap: 20px;
		margin-bottom: 36px;
	}

	.footer-logo img {
		height: 28px;
	}

	.footer-company-info {
		font-size: 13px;
	}

	.footer-company-info .company-name {
		font-size: 15px;
	}

	.footer-nav {
		gap: 30px;
		padding: 24px 0 28px;
		margin-bottom: 28px;
	}

	.footer-links {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px 20px;
	}

	.footer-link-item {
		font-size: 14px;
		gap: 10px;
	}

	.footer-link-item::after {
		background-size: 26px 26px;
		margin-top: -16px;
		width: 26px;
		height: 26px;
	}

	.footer-contact-button {
		/*border-width: 2px;*/
		border-radius: 50px;
		padding: 12px 58px 12px 18px;
		font-size: 15px;
		gap: 14px;
	}

	.footer-contact-button::after {
		background-size: 32px 32px;
		margin-top: -16px;
		width: 32px;
		height: 32px;
	}

	.footer-social {
		grid-template-columns: repeat(4, 1fr);
		gap: 12px;
		margin-bottom: 28px;
	}

	.footer-social a {
		font-size: 14px;
		padding: 10px 8px;
		gap: 8px;
		border-radius: 30px;
		max-height: 40px;
	}

	.footer-social a img {
		width: 30px;
		height: 30px;
	}

	.footer-legal {
		padding: 16px 0;
		font-size: 12px;
	}

	.footer-legal-links {
		gap: 24px;
	}
}

@media screen and (min-width: 769px) {
	.sp_none {
		display: block;
	}
	.pc_none {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.sp_none {
		display: none;
	}

	.pc_none {
		display: block;
	}

	.layout-container {
		width: 100%;
		padding: 0 20px;
	}

	.site-header .layout-container {
		height: 56px;
	}

	.header-logo {
		margin-right: 0;
	}

	.header-logo img {
		height: 24px;
	}

	.header-nav {
		display: none;
	}

	.header-actions {
		display: none;
	}

	.search-dropdown-wrapper {
		display: none;
	}

	.search-overlay {
		display: none;
	}

	.hamburger {
		display: flex;
		margin-left: auto;
	}

	#pagePath li {
		font-size: 0.75rem;
	}

	.ls_main {
		padding: 88px 0 101px;

		position: relative;
		z-index: 1;
	}

	.main-content {
		text-align: center;
	}

	.main-label {
		border-width: 1px;
		font-size: 16px;
		padding: 6px 16px;
		border-radius: 5px;
		margin-bottom: 16px;
	}

	.main-title {
		font-size: 38px;
		margin-bottom: 24px;
	}

	main-title.top {
		margin-left: 0;
	}

	.btn-contact {
		display: none;
		font-size: 18px;
		padding: 22px 85px 22px 35px;
		gap: 10px;
		border-radius: 50px;
	}

	.btn-contact::after {
		width: 40px;
		height: 40px;
		top: 15px;
	}

	.sp-contact {
		display: block;
		text-align: center;
		padding: 15px 0;
		background: linear-gradient(135deg, #FAA814 0%, #FA5D01 100%);
		position: absolute;
		left: 50%;
		transform: translate(-50%, -100%);
		z-index: 10;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.sp-contact .btn-contact {
		display: inline-flex;
	}

	.pccenter {
		text-align: left;
	}

	.layout-container.front {
		position: relative;
		z-index: 2;
		margin-top: -24px;
	}

	.pagePath-bg {
		position: relative;
		z-index: 1;
		width: 100%;
		height: 24px;
		background: #fff;
	}

	#main-no-side {
		padding: 0 0 32px;
	}

	#main-no-side.top {
		padding: 32px 0;
	}

	#main {
		gap: 24px;
		flex-direction: column;
	}

	#conts {
		width: 100%;
	}

	.notice-mypage {
		padding: 0px 12px;
	}

	.apply-list {
		overflow: auto;
		white-space: nowrap;
	}
	.apply-list::-webkit-scrollbar {
		height: 5px;
	}
	.apply-list::-webkit-scrollbar-track {
		background: #F1F1F1;
	}
	.apply-list::-webkit-scrollbar-thumb {
		background: #BCBCBC;
	}
	.apply-list table {
		margin-top: 20px;
	}
	.apply-list th,
	.apply-list thead td {
		font-size: 12px ;
		font-size: 0.75rem ;
		background-color: #F7F7F5;
		border-top: 1px solid #D9D9D9;
		border-bottom: none;
	}
	.apply-list td {
		box-sizing: border-box;
		font-size: 12px ;
		font-size: 0.75rem ;
		text-align: left;
		max-width: inherit;
	}

	#learner-list {
		overflow: auto;
		white-space: nowrap;
	}
	#learner-list::-webkit-scrollbar {
		height: 5px;
	}
	#learner-list::-webkit-scrollbar-track {
		background: #F1F1F1;
	}
	#learner-list::-webkit-scrollbar-thumb {
		background: #BCBCBC;
	}
	#learner-list table {
		margin-top: 20px;
	}
	#learner-list th,
	#learner-list thead td {
		font-size: 12px ;
		font-size: 0.75rem ;
		background-color: #F7F7F5;
		border-top: 1px solid #D9D9D9;
		border-bottom: none;
	}
	#learner-list td {
		box-sizing: border-box;
		font-size: 12px ;
		font-size: 0.75rem ;
		text-align: left;
		max-width: inherit;
	}

	.caption {
		margin-left: 12px;
		margin-right: 12px;
	}

	/* --- Side --- */
	#sideBar {
		display: none;
	}

	.footer {
		padding: 40px 0 0;
	}

	.footer-top {
		flex-direction: column;
		gap: 10px;
		margin-bottom: 48px;
	}

	.footer-logo img {
		height: 28px;
	}

	.footer-company-info {
		font-size: 13px;
		text-align: center;
	}

	.footer-company-info .company-name {
		font-size: 15px;
	}

	.footer-nav {
		flex-direction: column;
		gap: 24px;
		padding: 24px 0;
		margin-bottom: 0;
	}

	.footer-links {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px 16px;
		width: 100%;
	}

	.footer-link-item {
		display: flex;
		justify-content: space-between;
		width: 100%;
	}

	.footer-contact {
		width: 100%;
	}

	.footer-contact-button {
		width: 100%;
		/*border-width: 2px;*/
		border-radius: 50px;
		padding: 14px 20px;
		font-size: 15px;
		gap: 16px;
		position: relative;
		justify-content: center;
	}

	.footer-social {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		margin-bottom: 24px;
	}

	.footer-social a {
		font-size: 12px;
		padding: 10px 12px;
		gap: 8px;
		border-radius: 30px;
	}

	.footer-social a svg {
		width: 18px;
		height: 18px;
	}

	.footer-legal {
		flex-direction: column;
		gap: 12px;
		text-align: center;
		padding: 16px 0;
		font-size: 12px;
	}

	.footer-legal-links {
		flex-wrap: wrap;
		justify-content: center;
		gap: 16px;
	}

	.footer-legal p {
		font-size: 11px;
	}

	/*.rev_submit {*/
	/*	margin-left: 12px;*/
	/*	margin-right: 12px;*/
	/*}*/

	.validation-errors {
		margin-left: 12px;
		margin-right: 12px;
		max-width: inherit;
	}
}

@media screen and (max-width: 480px) {
	/*------------------------------------------------------------
        共通
    ------------------------------------------------------------*/
	html, body {
		min-width: 320px;
	}

	.site-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-width: 320px;
		/*padding: 0 20px;*/
		box-sizing: border-box;
	}

	.footer-logo {
		flex-shrink: 0;
	}

	.hamburger {
		flex-shrink: 0;
		margin-left: auto;
	}

	.mobile-menu {
		min-width: 320px;
	}

	.mobile-menu-search-grid {
		grid-template-columns: none;
	}

	.mobile-menu-grid-item:nth-child(odd) {
		margin-left: 12px;
		margin-right: 0;
	}

	.mobile-menu-grid-item:nth-child(even) {
		margin-left: 12px;
		margin-right: 0;
	}

	.sp-contact {
		min-width: 320px;
		/*flex-shrink: 0;*/
	}

	.footer-links {
		grid-template-columns: none;
	}

	.footer-social {
		grid-template-columns: none;
	}

	.footer-legal-links {
		flex-direction: column;
	}
}

@media screen and (max-width: 320px) {
	/*#pagePath.ls {*/
	/*	width: 320px;*/
	/*	margin-left: 0;*/
	/*	margin-right: 0;*/
	/*}*/

	.sp-contact {
		left: 160px;
		width: 320px;
		margin-left: 0;
		margin-right: 0;
	}
}

