@charset "utf-8";

/*------------------------------
 リセット＆ベース
------------------------------*/
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
/*
	scroll-behavior: smooth;
*/
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}
body {
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #000000;
	line-height: 1.95;
	letter-spacing: 0.1em;
	background-color: #EFF1F5;
	font-weight: 400;
}
p {
	text-align: justify;
}
a {
	color: inherit;
	text-decoration: none;
}
ul, ol, li {
	list-style: none;
}
img {
	vertical-align:middle;
}
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
.br_none {
	display: none;
}

/*------------------------------
 ページ全体
------------------------------*/
.page-wrapper {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0;
}

/*------------------------------
 リンクボタン
------------------------------*/
.black-btn {
	display: block;
	background-color: #000000;
	background-image: url(images/btn_arrow.svg);
	background-repeat: no-repeat;
	background-position:right 35px center;
	color: #ffffff;
	text-align: center;
	padding: 23px 60px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.3rem;
	line-height: 1.3em;
	transition: 0.5s;
}
.black-btn:hover {
	opacity:0.7;
	transform: translateY(-5px);
}
.black-btn span {
	font-size: 0.9rem;
}

/*------------------------------
 1. HERO SECTION
------------------------------*/
header {
	height: 600px;
	margin-bottom: 100px;
	border-radius: 0 0 50px 50px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	border-right: 4px solid #000000;
	border-bottom: 4px solid #000000;
	border-left: 4px solid #000000;
	background-image: url(images/main_visual.jpg);
	background-size: cover;
	background-position: right;
}
.hero-container {
	position: relative;
	top: calc(50% - 150px);
}
header h1 {
	font-size: 5.3rem;
	font-weight: 700;
	color: #000000;
	letter-spacing: 0;
	line-height: 1.03;
	text-align: center;
	margin-bottom: 80px;
}
.hero-recruit {
	width: 100%;
	font-size: 1.8rem;
	text-align: center;
	position:absolute;
	top: calc(50% - 240px);
	/* 募集中 */
/*	
	display: block;
*/
	/* 募集前 */
	
	display: none;
	
}
.hero-recruit span {
	display: inline-block;
	background-color: #FFF;
	border: 5px solid #F00;
	padding: 8px 15px 11px 15px;
	color: #F00;
	font-weight: 700;
	line-height: 1;
}
.hero-catch {
	max-width: 380px;
	background-color: #000000;
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 0.25em;
	text-align:center;
	padding: 3px 0 5px;
	margin: 0 auto 0 auto;
	border-radius: 30px;
	position: relative;
	top: 20px;
}
.hero-catch::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50px;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 10px solid #000000;
}
.hero-badge {
	font-size: 2.9rem;
}
.hero-desc {
	font-size: 1.3rem;
	line-height: 1.5;
	text-align: center;
}

/*------------------------------
 ハンバーガーメニュー
------------------------------*/
#header .hamburger {
	width: 60px;
	height: 60px;
	background-color: #000;
	border-radius: 50%;
	cursor: pointer;
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 9999;
}
#header .hamburger span {
	width: 30px;
	height: 2px;
	background-color: #fff;
	display: inline-block;
	position: absolute;
	left: 15px;
	transition: all 0.6s;
}
#header .hamburger span:nth-of-type(1) {
	top: 20px; 
}
#header .hamburger span:nth-of-type(2) {
	top: 30px;
}
#header .hamburger span:nth-of-type(3) {
	top: 40px;
}
#header .hamburger.active span:nth-of-type(1) {
	top: 30px;
	transform: rotate(-225deg);
}
#header .hamburger.active span:nth-of-type(2) {
	top: 30px;
	transform: scale(0);
}
#header .hamburger.active span:nth-of-type(3) {
	top: 30px;
	transform: rotate(225deg);
}
#header .navi {
	width: 100%;
	height: 100vh;
	background-color: #EFF1F5;
	padding: 10px 20px 80px 20px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 8888;
	transition: all 0.6s;
	opacity: 0;
	visibility: hidden;
}
#header .navi.active {
	opacity: 1;
	visibility: visible;
}
#header .navi .logo-area {
	max-width: 640px;
	margin: 0 auto 15px auto;
	text-align: center;
}
#header .navi .menu-area {
	width: 100%;
	height: 100vh;
	overflow: auto;
}
#header .navi .menu-area .menu {
	max-width: 640px;
	display: flex;
	flex-wrap: wrap;
	background-color: #fff;
	border-radius: 30px;
	padding: 50px;
	margin: 0 auto;
}
#header .navi .menu-area .menu li {
	width: 46%;
	border-bottom: dotted 2px #999999;
	margin: 0 2%;
	position: relative;
}
#header .navi .menu-area .menu li::after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: solid 1px #000000;
	border-right: solid 1px #000000;
	transform: rotate(45deg);
	position: absolute;
	top: 32px;
	right: 10px;
}
#header .navi .menu-area .menu li:nth-child(-n+2) {
	border-top: dotted 2px #999999;
}
#header .navi .menu-area .menu li a {
	display: block;
	padding: 20px 0;
}

/*------------------------------
 セクション共通
------------------------------*/
.section-card {
	background: #ffffff;
	border-radius: 50px;
	margin-bottom: 100px;
	padding: 60px 96px 80px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	border: 4px solid #000000;
}
.section-header {
	margin-bottom: 70px;
	text-align: center;
}
.section-title {
	font-size: 2.4rem;
	font-weight: 800;
	color: #000000;
	display: inline-block;
	position: relative;
	padding-bottom: 60px;
}
.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 5px;
	border-bottom: 5px dotted #000000;
}
.item-card {
	background: #EFF1F5;
	border-radius: 30px;
	padding: 0;
}

/*------------------------------
 2. 当訓練について
------------------------------*/
.about-lead {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	padding-bottom: 18px;
}
.about-text {
	padding-bottom: 18px;
}
.about-content .item-card {
	margin-top: 60px;
	padding: 65px 50px 40px 50px;
	position: relative;
}
h3.recommend-title, h3.target-title {
	width: 273px;
	height: 86px;
	background: url(images/h3_fukidashi.svg) 0 0 no-repeat;
	color: #FFFFFF;
	font-size: 1.45rem;
	line-height:1;
	text-align: center;
	padding-top: 19px;
	position: absolute;
	left: 0px;
	top: -35px;
}
.about-left {
	float: left;
}
.about-right {
	float: right;
}
.check-list li {
	background: url(images/list_check.svg) 0 3px no-repeat;
	margin-bottom: 15px;
	padding: 0 0 0 35px;
	line-height: 1.4;
}
.check-list li:last-child {
	margin-bottom: 0;
}
.target-list {
	line-height: 1.2;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.target-list li {
	margin-left: 27px;
	text-indent: -27px;
}
.target-list li:nth-child(1), .target-list li:nth-child(2), .target-list li:nth-child(3), .target-list li:nth-child(4) {
	margin-bottom: 5px;
}
.target-list li::before {
	display: inline-block;
	margin: 0 14px 0 0;
	width: 13px;
	height: 13px;
	content: '';
	border-radius: 100%;
	background:#F59A9A;
}

/*------------------------------
 3. 当訓練の特徴
------------------------------*/
.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.feature-card {
	background: #EFF1F5;
	border-radius: 30px;
	padding: 38px 30px;
	text-align: center;
}
.feature-icon {
	font-size: 3rem;
	margin-bottom: 20px;
	display: block;
}
.feature-name {
	font-size: 1.5rem;
	font-weight: 700;
	color: #000000;
	margin-bottom: 16px;
	line-height: 1.2;
}

/*------------------------------
 4. カリキュラム
------------------------------*/
.card-box {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	padding-bottom: 17px;
}
.card {
	height: 160px;
	position: relative;
	transition: transform 0.6s;
	transform-style: preserve-3d;
	cursor: pointer;
}
/* クラスがついたら180度回転 */
.card.is-flipped {
	transform: rotateY(180deg);
}
.card__face {
	padding-top: 20px;
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden; /* 裏面を隠す */
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	transition: 1s;
}
.card__face:hover {
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
}
.card__face .curriculum-name, .card__face img {
	transition: 1s;
}
.card__face:hover img {
	transform: scale(1.2);
}
.card__face--front {
	background: #EFF1F5;
	border-radius: 30px;
	text-align: center;
}
.card__face--back {
	font-size: 1rem;
	padding: 0 30px;
	background: #EFF1F5;
	border-radius: 30px;
	transform: rotateY(180deg); /* 裏面はあらかじめ反転させておく */
}
.curriculum-icon {
	font-size: 1.8rem;
	margin-bottom: 12px;
}
.curriculum-name {
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	margin-bottom: 17px;
}
#curriculum .item-card {
	margin-top: 60px;
	padding: 65px 50px 40px 50px;
	position: relative;
}
h3.license-title {
	width: 273px;
	height: 86px;
	background: url(images/h3_fukidashi.svg) 0 0 no-repeat;
	color: #FFFFFF;
	font-size: 1.45rem;
	line-height:1;
	text-align: center;
	padding-top: 19px;
	position: absolute;
	left: 0px;
	top: -35px;
}
.license-list {
	line-height: 1.2;
}
.license-list li {
	margin-bottom: 15px;
	margin-left: 27px;
	text-indent: -27px;
}
.license-list li:last-child {
	margin-bottom: 0;
}
.license-list li::before {
	display: inline-block;
	margin: 0 14px 0 0;
	width: 13px;
	height: 13px;
	content: '';
	border-radius: 100%;
	background:#F59A9A;
}

/*------------------------------
 5. 募集要項
------------------------------*/
.rec-box {
	margin-bottom: 50px;
}
.rec-box .item-card {
	overflow: hidden;
	padding: 20px 50px 20px 50px;
	margin-bottom: 20px;
}
.rec-box .item-card:last-child {
	margin-bottom: 0;
}
.rec-box .item-card h3 {
	font-size: 1rem;
	font-weight: 800;
	width: 170px;
	float: left;
}
.rec-box .item-card p {
	margin: 0 0 0 170px;
}
.rec-box .item-card p br {
	display: none;
}

/*------------------------------
 6. 受講申込の流れ
------------------------------*/
.flow-block {
	margin: 0 0 20px 0;
	padding: 0 0 0 93px;
	position: relative;
}
.flow-block:last-of-type {
	margin-bottom: 0;
}
.flow-block:first-of-type:before {
	content: "1";
}
.flow-block:nth-of-type(2):before {
	content: "2";
}
.flow-block:nth-of-type(3):before {
	content: "3";
}
.flow-block:nth-of-type(4):before {
	content: "4";
}
.flow-block:nth-of-type(5):before {
	content: "5";
}
.flow-block:before {
	width: 63px;
	height: 63px;
	color: #FFFFFF;
	font-weight: 800;
	font-size: 2rem;
	text-align: center;
	line-height: 3.4rem;
	letter-spacing: 0;
	border-radius: 50%;
	border: 3px solid #000000;
	background: #F59A9A;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 200;
}
.flow-block:after {
	content: "";
	display: inline-block;
	width: 5px;
	height: calc(100% + 80px);
	background: #F59A9A;
	position: absolute;
	left: 29px;
	top: 0;
	z-index: 100;
}
.flow-block:last-of-type:after {
	height: 0;
/*
	height: calc(50%);
	bottom: 90%;
	top: auto;
*/
}
.flow-block p {
	background: #EFF1F5;
	padding: 28px 50px;
	border-radius: 30px;
}

/*------------------------------
 7. よくある質問
------------------------------*/
.faq-list {
	margin-top: -10px;
}
.faq-item {
	margin-bottom: 30px;
}
.faq-item:last-of-type {
	margin-bottom: 0;
}
.faq-q {
	display: flex;
	align-items: flex-end;
	margin-bottom:10px;
}
.faq-q .item-card{
	font-weight: 600;
	width: 100%;
	padding: 20px 30px 20px 90px;
	position: relative;
}
.faq-q .item-card:before {
	content: "Q";
	width: 41px;
	height: 41px;
	color: #FFFFFF;
	font-weight: 900;
	font-size: 1.3rem;
	text-align: center;
	line-height: 1.9rem;
	letter-spacing: 0;
	border-radius: 50%;
	border: 3px solid #000000;
	background: #F59A9A;
	display: block;
	position: absolute;
	left: 30px;
	top: 15px;
}
.faq-a {
	display: flex;
	align-items: flex-start;
}
.faq-a .item-card {
	width: 100%;
	padding: 20px 30px 20px 90px;
	position: relative;
}
.faq-a .item-card:before {
	content: "A";
	width: 41px;
	height: 41px;
	color: #F59A9A;
	font-weight: 900;
	font-size: 1.3rem;
	text-align: center;
	line-height: 1.9rem;
	letter-spacing: 0;
	border-radius: 50%;
	border: 3px solid #000000;
	background: #FFFFFF;
	display: block;
	position: absolute;
	left: 30px;
	top: 15px;
}

/*------------------------------
 8. 雇用保険受給延長について
------------------------------*/
.ins-box {
	overflow: hidden;
}
.ins-lead {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	padding-bottom: 18px;
}
.ins-text {
	margin-bottom: 40px;
}
.ins-box dl {
	padding: 28px 50px;
	margin-bottom: 40px;
	font-weight: 600;
}
.ins-box dl dt {
	width: 160px;
	float: left;
	line-height:1.5;
}
.ins-box dl dt::before {
	display: inline-block;
	margin: 0 14px 0 0;
	width: 13px;
	height: 13px;
	content: '';
	border-radius: 100%;
	background:#F59A9A;
}
.ins-box dl dd {
	margin: 0 0 20px 160px;
	line-height:1.5;
}
.ins-box dl dd:last-of-type {
	margin-bottom: 0;
}
.ins-left {
	width: calc(100% - 215px);
	float: left;
}
.ins-right {
	float: right;
}
.ins-right img {
	position: relative;
	top: -20px;
}
.ins-box ul {
	margin-bottom: 50px;
}
.ins-box ul li {
	line-height: 1.5;
	padding: 0 0 0 25px;
	margin-bottom: 20px;
	position: relative;
}
.ins-box ul li:before {
	content: "※";
	position: absolute;
	left: 0;
}

/*------------------------------
 9. アクセス
------------------------------*/
.access-text {
	margin-bottom: 40px;
}
.access-text p {
	text-align: center;
}
.access-text p:first-child {
	margin-bottom:15px;
}
.access-text em {
	font-style: normal;
}
.access-text br {
	display: none;
}
.map-box {
	height: 500px;
	overflow: hidden;
	border-radius: 30px;
}

/*------------------------------
 10. お問い合わせ
------------------------------*/
.contact-text {
	margin-bottom: 30px;
}
.contact-text p {
	text-align: center;
}
#contact .item-card {
	margin-bottom: 60px;
	padding: 30px 15px;
	transition: 1s;
}
#contact .item-card:hover {
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
}
.tel-num {
	text-align: center;
	font-size: 3rem;
	font-weight: 700;
	line-height: 53px;
	margin-bottom: 25px;
}
.tel-num img {
	vertical-align: top;
	margin-right: 20px;
}
.tel-time {
	text-align: center;
	line-height: 1;
}

/*------------------------------
 フッター
------------------------------*/
footer {
	background: #000000;
	color: #ffffff;
	font-size: 0.8rem;
	padding: 60px 96px 10px;
	border-radius: 50px 50px 0 0;
	margin-top: 24px;
}
.info-area {
	width: 435px;
	float: left;
}
.info-area a {
	display: inline-block;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0;
	margin-bottom:15px;
}
.info-area a span{
	font-size: 1.3rem;
	font-weight: 600;
}
.info-area p {
	line-height: 1.4;
	margin-bottom: 6px;
}
.info-area p span {
	padding-right: 0.8em;
}
.info-company {
	font-size: 1rem;
	font-weight: 700;
}
.link-area {
	width: 435px;
	float: right;
}
.link-area ul li {
	margin-bottom: 10px;
}
.link-area ul li a {
	display: block;
	border: 2px solid #ffffff;
	border-radius: 20px;
	text-align: center;
	position: relative;
	transition: all 0.8s;
}
.link-area ul li a::after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: solid 1px #ffffff;
	border-right: solid 1px #ffffff;
	transform: rotate(45deg);
	position: absolute;
	top: 8px;
	right: 10px;
}
.link-area ul li a:hover {
	color: #000000;
	background-color: #ffffff;
}
.link-area ul li a:hover::after {
	border-top: solid 1px #000000;
	border-right: solid 1px #000000;
}
.instagram {
	padding-top: 15px;
	text-align: center;
	width: 435px;
	float: right;
}
.copyright {
	font-size: 0.7rem;
	padding-top: 20px;
	text-align: center;
	clear: both;
}


/* ===================================
   レスポンシブ
=================================== */
@media (max-width: 1140px) {
	/*----- ページ全体 -----*/
	.page-wrapper {
		max-width: 94%;
		margin: 0 3%;
		padding: 0;
	}
	/*----- セクション共通 -----*/
	.section-card {
		padding: 30px 5% 40px;
	}
	/*----- 3.当訓練の特徴 -----*/
	.feature-icon img {
		width: 90%;
	}
	/*----- 11.フッター -----*/
	footer {
		padding: 40px 5% 10px;
	}
	.info-area {
		width: 52%;
	}
	.link-area, .instagram {
		width: 48%;
	}

}
@media (max-width: 1060px) {
	/*----- 1.HERO SECTION -----*/
	header {
		margin-bottom: 50px;
	}
	/*----- セクション共通 -----*/
	.section-card {
		margin-bottom: 50px;
	}
	/*----- 2.当訓練について -----*/
	.about-content .item-card:first-of-type {
		padding-bottom: 0;
	}
	.about-left {
		margin-bottom: 20px;
	}
	.about-right {
		float: none;
		text-align:center;
	}
}
@media (max-width: 1020px) {
	/*----- 3.当訓練の特徴 -----*/
	.feature-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.feature-icon img {
		width: 50%;
	}
	h3.feature-name br {
		display: none;
	}
}
@media (max-width: 970px) {
	/*----- 2.当訓練について -----*/
	.target-list {
		grid-template-columns: repeat(2, 1fr);
	}
	.target-list li:nth-child(1), 
	.target-list li:nth-child(2), 
	.target-list li:nth-child(3), 
	.target-list li:nth-child(4) {
		margin-bottom: 0;
	}
	/*----- 4.カリキュラム -----*/
	.card-box {
		grid-template-columns: repeat(2, 1fr);
	}
	/*----- 8.雇用保険受給延長について -----*/
	.ins-right img {
		top: 0;
	}
}
@media (max-width: 860px) {
	/*----- 11.フッター -----*/
	.info-area {
		width: 100%;
		float: none;
		text-align: center;
		margin-bottom: 30px;
	}
	.info-area p {
		display: block;
		text-align: center;
	}
	.link-area, .instagram {
		width: 100%;
		float: none;
	}
	/*----- 5.募集要項 -----*/
	.rec-box .item-card {
		padding: 20px 20px 20px 20px;
	}
	.rec-box .item-card h3 {
		width: 100%;
		float: none;
		text-align: center;
		margin-bottom: 10px;
	}
	.rec-box .item-card p {
		margin: 0 0 0 0;
		text-align: center;
	}
	.rec-box .item-card:last-child p {
		text-align: justify;
	}
	
}
@media (max-width: 650px) {
	/*----- ベース -----*/
	html {
		font-size: 0.875em;
	}
	body{
		line-height: 1.5;
	}
	/*----- リンクボタン -----*/
	.black-btn {
		background-position:right 20px center;
		padding: 23px 30px;
	}
	/*----- 1.HERO SECTION -----*/
	.section-header{
		margin-bottom: 0;
	}
	.hero-recruit {
		top: calc(50% - 210px);
	}
	.hero-catch {
    	max-width: 320px;
	}
	.hero-desc {
		font-size: 1.1rem;
	}
	#header .navi .logo-area {
		text-align: left;
	}
	#header .navi .menu-area .menu {
		flex-direction: column;
		padding: 30px 20px;
	}
	#header .navi .menu-area .menu li {
		width: 100%;
		margin: 0;
	}
	#header .navi .menu-area .menu li::after {
		top: 17px;	
	}
	#header .navi .menu-area .menu li:nth-child(-n+2) {
		border-top: none;
	}
	#header .navi .menu-area .menu li:first-child {
		border-top: dotted 2px #999999;
	}
	#header .navi .menu-area .menu li a {
		padding: 10px 0;
	}
	/*----- セクション共通 -----*/
	h2.section-title{
		font-size: 2.1rem;
		line-height: 1.2;
		padding-bottom: 40px;
		margin-bottom: 40px;
	}
	/*----- 2.当訓練について -----*/
	h3.recommend-title,
	h3.target-title,
	h3.license-title {
		transform: scale(0.8);
		left: -22px;
	}
	.about-content .item-card {
		padding: 55px 25px 30px 25px;
		position: relative;
	}
	.about-right img {
		max-width: 200px;
		width: 80%;
	}
	.check-list li {
		padding: 2px 0 0 30px;
	}
	.target-list {
		grid-template-columns: repeat(2, 1fr);
	}
	/*----- 3.当訓練の特徴 -----*/
	.feature-icon img {
		max-width:200px;
		width:100%;
	}
	/*----- 4.カリキュラム -----*/
	.card-box {
		grid-template-columns: repeat(1, 1fr);
	}
	#curriculum .item-card {
		padding: 55px 30px 25px 30px;
	}
	/*----- 5.募集要項 -----*/

	/*----- 6.受講申込の流れ -----*/
	.flow-box {
		padding-top: 10px;
	}
	.flow-block {
		margin-bottom: 20px;
		padding-left: 0;
	}
	.flow-block p {
		padding: 28px 30px 20px 30px;
	}
	.flow-block:before {
		width: 41px;
		height: 41px;
		font-size: 1.8rem;
		line-height: 2.5rem;
		left: 0;
		top: -15px;
	}
	.flow-block:after {
		display: none;
	}
	/*----- 7.よくある質問 -----*/
	.faq-item {
		padding-top: 10px;
		margin-bottom: 40px;
	}
	.faq-icon {
		display: none;
	}
	.faq-q .item-card:before,
	.faq-a .item-card:before {
		left: 0;
		top: -10px;
		line-height: 2.3rem;
	}
	.faq-q .item-card,
	.faq-a .item-card {
		padding: 20px 30px 20px 40px;
	}
	/*----- 8.雇用保険受給延長について -----*/
	.ins-box dl {
		padding: 20px 30px;
	}
	.ins-box dl dt {
		width: 115px;
		margin-left: 20px;
		text-indent: -20px;
	}
	.ins-box dl dt::before {
		margin-right: 7px;
	}
	.ins-box dl dd {
		margin-left: 135px;
	}
	.ins-left {
		float: none;
		width: 100%;
	}
	ul.ins-left {
		margin-bottom: 20px;
	}
	.ins-right {
		float: none;
		text-align:center;
		margin-bottom: 30px;
	}
    .ins-right img {
        max-width: 195px;
        width: 85%;
    }
	/*----- 9.アクセス -----*/
	.access-text em {
		font-weight: 700;
		text-decoration: underline;
	}
	.access-text br {
		display: inline;
	}
	.access-text span {
		display: none;
	}
	/*----- 11.フッター -----*/
	.link-area ul li a {
		padding: 3px 15px;
	}
}
@media (max-width: 500px) {
	/*----- 1.HERO SECTION -----*/
	#header .hamburger {
		transform: scale(0.75);
	}
	#header .hamburger span {
		height: 3px;
	}
	#header .hamburger span:nth-of-type(1) {
		top: 19px; 
	}
	#header .hamburger span:nth-of-type(2) {
	  top: 29px;
	}
	#header .hamburger span:nth-of-type(3) {
	  top: 39px;
	}
	#header .hamburger.active span:nth-of-type(1),
	#header .hamburger.active span:nth-of-type(2),
	#header .hamburger.active span:nth-of-type(3) {
	  top: 29px;
	}
	/*----- 3.当訓練の特徴 -----*/
	h3.feature-name br {
		display: inline;
	}
	/*----- 10.お問い合わせ -----*/
	.tel-num img {
		margin-right: 0;
		margin-bottom: 10px;
	}
	.tel-num span {
		display: block;
	}
}
@media (max-width: 450px) {
	/*----- 共通 -----*/
	.br_none {
		display: inline;
	}
	/*----- 1.HERO SECTION -----*/
	header {
		min-height:500px;
		height: 90vh;
        margin-bottom: 30px;
	}
	.hero-recruit {
		font-size: 1.5rem;
		top: calc(50% - 210px);
	}
	.hero-catch{
		font-size: 1.2rem;
		max-width: 220px;
	}
	header h1 {
		padding-top: 10px;
		font-size: 3.5rem;
	}
	.hero-badge {
		font-size: 1.8rem;
	}
	#header .navi .menu-area .menu {
		padding: 20px 20px;
	}
	/*----- セクション共通 -----*/
	.section-card {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}
	/*----- 2.当訓練について -----*/
	.about-content .item-card {
        padding: 55px 15px 25px 15px;
	}
	.target-list {
		grid-template-columns: repeat(1, 1fr);
	}
	/*----- 3.当訓練の特徴 -----*/
	.feature-card {
		padding: 25px 15px;
	}
	.card__face--back {
	    padding: 0 20px;
	}
	/*----- 4.カリキュラム -----*/
	#curriculum .item-card {
		padding: 55px 15px 25px 15px;
	}
	.license-list li {
		margin-left: 20px;
		text-indent: -20px;
	}
	.license-list li::before {
		margin-right: 7px;
	}
	/*----- 5.募集要項 -----*/
	.rec-box .item-card p br {
		display: inline;
	}
	.rec-box .item-card p span {
		display: none;
	}
	/*----- 6.受講申込の流れ -----*/
	.flow-block p {
        padding: 28px 15px 20px 25px;
    }
	/*----- 7.よくある質問 -----*/
	.faq-q .item-card,
	.faq-a .item-card {
		padding: 25px 15px 20px 30px;
	}
	/*----- 8.雇用保険受給延長について -----*/
	.ins-box dl {
		padding: 25px 15px 25px 15px;
	}
	.ins-box dl dt {
		float: none;
		width: 100%;
		margin-bottom: 5px;
		margin-left: 0;
		text-indent: 0;
		border-bottom: 1px solid #000000;
	}
	.ins-box dl dt span {
		display: none;
	}
	.ins-box dl dt::before {
		margin-right: 7px;
	}
	.ins-box dl dd {
		margin-left: 0;
	}
	/*----- 10.お問い合わせ -----*/
	.tel-num {
		font-size: 2rem;
		line-height: 1.5;
	}
	/*----- 11.フッター -----*/
	.info-area a span {
		display: block;
		font-size: 1.1rem;
		padding-bottom:2px;
	}
	.info-area p span {
		display: block;
		padding-right: 0;
	}

}

