@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');
/***************************************************************/
/*  CSS custom properties 
/***************************************************************/ :root {
	--textcolor: #000;
	--acolor: #d2691e; /* 青緑 */
	--ahover: #008c69; /* 橙 */
	--myorange: #FFB745; /* rgb(237,30,121) */
	--myblue: #5cc5EF; /* light green */
	--myred: #FF2323; /* light green */
	--mylightgreen: rgba(0, 178, 133, 0.25); /* light green */
}
/***************************************************************/
/*   public style 
/***************************************************************/
html {
	height: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 62.5%; /*  -> 10px; */
}
body {
	margin: 0;
	padding: 0;
	height: 100%;
	color: #000;
	color: var(--textcolor);
	/*  font-size:1.4em;*/ /* em = for chrome */
	/* gochic */
	font-family: "gaiji", "Meiryo", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", sans-serif;
	/*font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;*/
	/* mincho */
	/*font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;*/
	/*  font-family: 'Noto Sans JP', "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;*/
	line-height: 1.618;
	background: #fff;
	-webkit-text-size-adjust: 100%;
	background-size: contain;
	background-position: left top;
	/* --- ↓ optonal -----------------------------------*/
}
header {
	width: 100%;
	/* --- ↓ optonal -----------------------------------*/
}
main {
	width: 100%;
	position: relative;
	z-index: 1;
	/* --- ↓ optonal -----------------------------------*/
}
footer {
	position: sticky;
	top: 100vh;
	width: 100%;
	/* --- ↓ optonal -----------------------------------*/
}
a {
	text-decoration: none;
	color: var(--acolor);
}
a:hover {
	color: var(--ahover);
}
h1 {
	font-size: 1.4rem;
}
.t-white {
	color: #fff;
}
.t-red {
	color: var(--myred);
}
.t-blue {
	color: var(--myblue);
}
.t-dblue {
	color: #191970;
}
.t-left {
	text-align: left;
}

/*フォントサイズ*/
.fs06 {
	font-size: 0.6rem;
}
.fs08 {
	font-size: 0.8rem;
}
.fs10 {
	font-size: 1.0rem;
}
.fs11 {
	font-size: 1.1rem;
}
.fs12 {
	font-size: 1.2rem;
}
.fs13 {
	font-size: 1.3rem;
}
.fs14 {
	font-size: 1.4rem;
}
.fs15 {
	font-size: 1.5rem;
}
.fs16 {
	font-size: 1.6rem;
}
.fs18 {
	font-size: 1.8rem;
}
.fs20 {
	font-size: 2.0rem;
}
.fs22 {
	font-size: 2.2rem;
}
.markerpen {
	background: linear-gradient(transparent 60%, #ffbc7a 60%);
	padding: 3px 5px;
}

/*パディングを調整*/
.pl-4{padding-left: 1.5rem;}

/*マージンを調整*/
.mb-3{margin-bottom: 1rem;}
.mb-4{margin-bottom: 1.5rem;}
.mb-5{margin-bottom: 3rem;}

/*中央配置*/
.img-center {
	margin-left: auto;
	margin-right: auto;
}

/***************************************************************/
/*   header 
/***************************************************************/
header {
	background-color: rgba(255, 255, 255, 0.9);
	position: fixed;
	z-index: 10000;
	min-height: 40px;
}
header p {
	text-indent: 1rem;
}
header.invert {
	background-color: rgba(255, 255, 255, 0.8);
	transition: 0.5s;
}
.glovalNav {
	position: absolute;
	top: 5px;
	right: 10px;
	text-align: center;
	list-style: none;
}
.glovalNav li {
	display: inline-block;
}
.glovalNav li a {
	color: #795548;
	text-align: center;
	text-decoration: none;
	width: 150px;
	height: 50px;
	padding: 15px 15px 50px 15px;
	background-color: #fff;
	border: 2px solid var(--myorange);
	border-radius: 10px;
	box-sizing: border-box;
	position: relative;
	transition-duration: 0.3s;
	font-size: 1.6rem;
	margin-right: 10px;
}
.glovalNav li a:hover {
	color: #ffffff;
	background-color: #a0522d;
}
.glovalNav li a.btn_mail:after, .glovalNav li a.btn_pen:after {
	content: '';
	width: 32px;
	height: 32px;
	position: absolute;
	top: 80%;
	left: 40%;
	margin-top: -30px;
}
.glovalNav li a.btn_mail:after {
	background-image: url(../img/icon_voice.svg);
	background-size: contain;
	background-repeat: no-repeat;
}
.glovalNav li a.btn_pen:after {
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url(../img/icon_pen.png);
}
.glovalNav li a.btn_tel {
	border: 2px solid #4169E1;
}
.glovalNav li a.btn_tel:hover {
	color: #ffffff;
	background-color: #87cefa;
}
.glovalNav li a.btn_tel:after {
	content: '　0742-53-0030';
	width: 100%;
	height: 32px;
	position: absolute;
	top: 80%;
	left: 3%;
	margin-top: -30px;
	color: #00f;
	font-size: 1.6rem;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url(../img/icon_tel.png);
}
/***************************************************************/
/*   contents共通 
/***************************************************************/
.contents {
	text-align: center;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}
.grid {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(auto-fit, minmax(29rem, 1fr));
}
.grid .item {
	padding: 10px;
	max-width: 450px;
}
.fbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	width: 100%;
	max-width: 1280px;
}
.fbox .fox-item {
	border: 1px solid #f00;
	width: 50%;
}
/***************************************************************/
/*   footer 
/***************************************************************/
footer {
	height: 110px;
	background-color: #FFF;
	z-index: 0;
	color: #000;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 10px;
}
footer table {
	width: 100%;
}
footer table td {
	vertical-align: top;
	text-align: center;
}
footer table td.footer_campany {
	font-size: 1.8rem;
	color: #FFF;
	text-align: right;
	vertical-align: middle;
}
footer table td.footer_menu {
	color: #FFF;
	font-size: 1.4rem;
	text-align: left;
	padding-left: 40px;
}
footer p {
	text-align: center;
	font-size: 1.4rem;
	margin: 10 0 20 0;
}
/***************************************************************/
/*   only to --- index 
/***************************************************************/
/*変更部分ここから*/
#index-top {
	background-image: url(../img/top_main.jpg);
	background-position: center left;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 0;
	padding-top: 66.6666666667%;
	margin-bottom: 60px;
}
#index-top .catch {
	position: absolute;
	top: 150px;
	margin-left: 2rem;
}

#index-top .catch .catch-box{
	padding: 1rem 0 1rem 2rem;
	background: rgba(18,138,185,0.3);
	margin-bottom: 2rem;
}

#index-top .catch .copy{
color: var(--myorange);
font-weight: bold;
text-shadow: 0 1px 3px #000000;
}

#index-top .catch .number{
	font-weight: bold;
	text-shadow: 0 1px 1px #ffffff;
}

#index-top .catch .badge-box{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

#index-top .catch .badge-box .badge{
	padding: 1rem 2rem;
	background: rgba(18,138,185,1);
	font-weight: bold;
	color: #ffffff;
	border: 4px solid #ffffff;
	border-radius: 20px;
}
.con-text {
	font-size: 2rem;
	line-height: 5rem;
height: 25rem;
	background: url("../img/item_drone.png");
	background-repeat: no-repeat;
	background-size:auto 23rem;
	background-position: right 20% bottom 5rem;
}
/*   PC          */
@media all and (min-width: 1025px) {
	#index-top .catch {
			margin-left: 4rem;
	}
	#index-top .catch .copy{
font-size: 5rem;
line-height: 7rem;
	}
	#index-top .catch .number{
	font-size: 2rem;
	}
	#index-top .catch .badge-box .badge{
			font-size: 2rem;
	}
	
}
/*   tablet 横   */
@media all and (min-width: 768px) and (max-width: 1024px)  {
	#index-top .catch {
			top: 100px;
	}
		#index-top .catch .copy{
font-size: 3.5rem;
line-height: 4.5rem;
	}
	#index-top .catch .number{
	font-size: 1.5rem;
	}
		#index-top .catch .badge-box .badge{
			font-size: 1.5rem;
	}
}
/*   tablet 縦   */
@media all and (min-width: 492px) and (max-width: 767px) {
	#index-top {
			padding-bottom: 30%;
	}
	#index-top .catch {
			top: 120px;
	}
	#index-top .catch .catch-box{
	padding: 1rem 0 1rem 1rem;
	margin-bottom: 1rem;
}
	#index-top .catch .copy{
font-size: 3rem;
line-height: 4rem;
	}
	#index-top .catch .number{
	font-size: 1.2rem;
	}
		#index-top .catch .badge-box .badge{
			font-size: 1.2rem;
				border: 2px solid #ffffff;
				border-radius: 10px;
				padding: 0.5rem 1rem;
	}
}
/*   smartphone   */
@media all and (max-width: 491px) {
	main{
		padding-top: 130px;
	}
	#index-top {
	background-image: url("../img/top_main_sma_03.jpg");	}/*トップページの画像*/
	#index-top {
			background-position: center center;
	}
	#index-top .catch {
			top: 180px;
		margin-right: 2rem;
	}
	#index-top .catch .catch-box{
	margin-bottom: 1rem;
}
	#index-top .catch .copy{
font-size: 3.5rem;
line-height: 5rem;
	}
	#index-top .catch .number{
	font-size: 1.8rem;
		color: #ffffff;
			text-shadow: 0 1px 1px #000000;
	}
		#index-top .catch .badge-box .badge{
			font-size: 1.8rem;
				border-radius: 10px;
				padding: 0.5rem 1rem;
	}
}
@media all and (max-width: 377px) {
	.glovalNav li a span {
		display: none;
	}
	#index-top .catch {
			top: 150px;
	}
		#index-top .catch .copy{
font-size: 2.8rem;
line-height: 3.5rem;
	}
		#index-top .catch .number{
	font-size: 1.5rem;
	}
			#index-top .catch .badge-box .badge{
			font-size: 1.5rem;
	}
}

/*変更部分ここまで*/

/*  midashi  -------------------------------------------*/

.midashi, .midashi-orange {
	background-color: var(--myblue);
	width: 100%;
	padding: 25px 20px 25px 65px;
	font-size: 2.8rem;
	color: #FFF;
	text-align: left;
}
.midashi-orange {
	background-color: var(--myorange);
}
.arrowtext {
	position: absolute;
	text-align: right;
	transform: rotate(-90deg);
	transform-origin: bottom right;
	font-size: 1.1rem;
	color: #FFFFFF;
	border-top: 1px solid;
	width: 55px;
}
.arrowtext::after {
	content: "";
	display: block;
	position: absolute;
	top: -1px;
	left: 0px;
	width: 15px;
	border-top: solid 1px;
	transform: rotate(-45deg);
	transform-origin: left top;
}
.itembox {
	margin-top: 60px;
	margin-margin: 60px;
	width: 100%;
	max-width: 1280px;
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.itembox .item {
	width: 90%;
	background-color: var(--myorange);
	padding: 15px;
	font-size: 1.8rem;
	margin: -20px 5 50px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.itembox .item .item-ico {
	margin: -60px 0 0 -15px;
}
.itembox .item .item-title {
	left: 150px;
	color: #FFF;
	font-size: 3.8rem;
	font-weight: bold;
}
.itembox .item .item-text {
	max-width: 380px;
}
.item-text {
	margin-bottom: 20px;
}
.itembox .item .item-img {
	max-width: 520px
}
.itembox .licence {
	background-color: #FFF;
}
.itembox .item .licence {
	max-width: 540px;
}
.schedule {
	background-image: url(../img/top_schedule.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.6);
	padding: 20px;
}
.schedule .schedule-area {
	background-color: rgba(255, 255, 255, 0.8);
	width: 80%;
	margin: 2rem auto;
	padding: 20px;
}
.schedule .schedule-title {
	background-color: #F2F59C;
	width: 100%;
	margin: 0 0 10px 0;
	font-size: 2.4rem;
	text-align: left;
	padding-left: 1.5rem;
}
.schedule-subtitle {
	font-size: 1.5rem;
	text-align: left;
}
.schedule span {
	margin: 0 5px 0 10px;
}
.schedule-item-title1 {
	background-image: url(../img/lineno1.png);
}
.schedule-item-title2 {
	background-image: url(../img/lineno2.png);
}
.schedule-item-title1, .schedule-item-title2 {
	background-repeat: no-repeat;
	background-size: auto 100%;
	font-size: 1.8rem;
	text-align: left;
	margin-top: 10px;
	padding-left: 60px;
	padding-bottom: 5px;
}
.schedule dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	width: 100%;
	margin: 10px 0;
}
.schedule dt {
	width: 32%;
}
.schedule dd {
	width: 68%;
	text-align: left;
	padding-left: 15px;
}
.schedule .attention0 {
	position: relative;
	top: 10;
	color: var(--myred);
	font-size: 1.8rem;
}
.schedule ul {
	list-style: none;
	text-align: left;
	margin-top: 10px;
}
.schedule li {
	position: relative;
	line-height: 4rem;
}
.schedule li::after {
	content: '▼';
	color: var(--myorange);
	position: absolute;
	top: 1.9rem;
	left: 2rem;
}
.schedule li:last-child::after {
	content: '';
}
.schedule li .attention1, .schedule li .attention2 {
	position: relative;
	margin-left: 50px;
	padding: 2px 10px;
	font-size: 1.3rem;
}
.schedule li .attention1 {
	background-color: #ffb6c1;
	color: #b22222;
}
.schedule li .attention2 {
	background-color: #b0e0e6;
	color: #191970;
}
.schedule li .attention1::before {
	content: '';
	position: absolute;
	width: 30px;
	height: 8px;
	bottom: 40%;
	left: -27px;
	border-bottom: 2px solid var(--myred);
	border-left: 3px solid var(--myred);
	transform: skew(-45deg);
}
.schedule li .attention2::before {
	content: '';
	position: absolute;
	width: 30px;
	height: 8px;
	bottom: 40%;
	left: -27px;
	border-bottom: 2px solid #4682b4;
	border-left: 3px solid #4682b4;
	transform: skew(-45deg);
}
.schedule table {
	width: 100%;
	border: none;
	border-collapse: collapse;
}
.schedule table tr:nth-child(4n+1), .schedule table tr:nth-child(4n+2) {
	background-color: var(--myblue);
}
.schedule table tr:nth-child(4n+3), .schedule table tr:nth-child(4n+4) {
	background-color: var(--myorange)
}

/*追加*/
.schedule-teble-color2 tr {
		background-color: transparent !important;
}
.schedule-teble-color2:nth-child(even){
	background-color: var(--myorange);
}
.schedule-teble-color2:nth-child(odd){
	background-color: var(--myblue);
}
/*追加ここまで*/

.schedule table th {
	width: 65px;
	padding: 5px 5px;
}
.schedule table td {
	padding: 5px 5px;
}
.schedule .attention3 .faceicon {
	float: left;
	width: 60px;
	margin-top: 10px;
}
.schedule .attention3 .faceicon img {
	border-radius: 50%;
	border: 1px solid #666;
}
.schedule .attention3 .chat {
	display: inline-block;
	position: relative;
	width: 70%;
	left: 10px;
	margin: 20px 0 0 0px;
	padding: 10px;
	max-width: 310px;
	border-radius: 12px;
	background: #edf1ee;
}
.schedule .attention3 .chat:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 3px;
	left: -19px;
	border: 8px solid transparent;
	border-right: 18px solid #edf1ee;
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg);
}
.schedule .attention4 {
	position: relative;
	font-size: 1.3rem;
	text-align: right;
}
.contact {
	position: relative;
	background-color: var(--myorange);
	width: 100%;
	padding: 25px 20px;
	font-size: 1.6rem;
}
.contact .btn-area {
	max-width: 800px;
	margin: 0 auto;
	padding-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}



/*ここから変更*/
.contact a.btn_contact, .contact a.btn_request {
	color: #795548;
	text-align: center;
	text-decoration: none;
	width: 45%;
	height: 100px;
	padding: 20px 20px 20px 75px;
	background-color: #ffffff;
	border-radius: 10px;
	box-sizing: border-box;
	position: relative;
	transition-duration: 0.3s;
}
a.btn_contact::before, a.btn_request::before {
	content: '';
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	left: 20px;
	margin-top: -30px;
	background-size: contain;
	background-repeat: no-repeat;
}
a.btn_contact::before {
	background-image: url(../img/icon_voice.svg);
}
a.btn_request::before {
	background-image: url(../img/icon_pen.png);
}
a.btn_contact , a.btn_request {
display: flex;
align-items: center;
justify-content: space-around;
font-size: 2.5rem;
font-weight: bold;
}
a.btn_contact:hover, a.btn_request:hover {
	color: #ffffff;
	background-color: #a0522d;
}

/*ここまで変更*/

a.btn_tell {
	font-size: 2.8rem;
	color: #3661c4;
}
a.btn_tell:hover {
	color: var(--myblue);
}
a.btn_tell::before {
	content: '';
	width: 36px;
	height: 26px;
	display: inline-block;
	background-image: url(../img/icon_tel.png);
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
}
.tell-area {
	margin-top: 30px;
	line-height: 4rem;
}
.tell-area span {
	font-size: 1.8rem;
	margin-right: 15px;
}
/***************************************************************/
/*   only to --- privacy 
/***************************************************************/
#privacy {
	text-align: left;
	margin: 10px 0 50px 0;
}
#privacy .title {
	text-align: center;
	font-size: 2rem;
	margin: 20px auto;
}
#privacy .subtitle {
	font-size: 1.8rem;
	margin: 25px 0 10px 0;
	color: #191970;
}
#privacy .subsubtitle {
	font-size: 1.6rem;
	margin: 25px 0 10px 0;
	text-indent: 1rem;
	color: #191970;
}
#privacy p.sub {
	margin-left: 25px;
}
/***************************************************************/
/* animetion
/***************************************************************/
/* ↓fadein -------------------------------------------*/
/* アニメーション前 */
.u-fade-type-up {
	transform: translateY(50px);
	opacity: 0;
}
/* トリガー発火でis-activeを付与 */
.u-fade-type-up.is-active {
	transition: .5s;
	transform: translateY(0);
	opacity: 1;
}
.u-fade-type-up:nth-child(2).is-active {
	transition-delay: 0.1s;
}
.u-fade-type-up:nth-child(3).is-active {
	transition-delay: 0.2s;
}
.u-fade-type-up:nth-child(4).is-active {
	transition-delay: 0.3s;
}
.u-fade-type-up:nth-child(5).is-active {
	transition-delay: 0.4s;
}
.u-fade-type-up:nth-child(6).is-active {
	transition-delay: 0.5s;
}
/* ↑fadein -------------------------------------------*/
/* ↓anime marker -----------------------------------*/
.anime-marker {
	position: relative;
}
.anime-marker span {
	position: relative;
	z-index: 2;
}
.anime-marker:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0%;
	height: 12px;
	background: #ffaf60;
	background: rgba(255, 175, 96, .6);
	z-index: 1;
	transition: all 1.4s;
}
.anime-marker.isActive:after {
	width: 100%;
}
/* ↑anime marker -----------------------------------*/
/* ↓wave -------------------------------------------*/
.wave {
	position: relative;
	height: 220px; /*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
}
canvas {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
/* ↑wave -------------------------------------------*/
/**************************************************************/
/* media query 
/**************************************************************/

/*変更ここから*/

/*****************/
/*   PC          */
@media all and (min-width: 1025px) {}
/*****************/
/*   tablet 横   */
@media all and (min-width: 768px) and (max-width: 1024px) {
	.logo img {
		width: 42%;
	}
	header p {
		font-size: 1.1rem;
	}
	.glovalNav li a {
		margin: 0;
		font-size: 1.5rem;
	}
}
/*****************/
/*   tablet 縦   */
@media all and (min-width: 492px) and (max-width: 767px) {
/*	@media all and (min-width: 480px) and (max-width: 767px) {*/
	.glovalNav li a {
		margin: 0;
		font-size: 1.5rem;
	}
	.con-text {
height: 30rem;
}
.contact a.btn_contact, .contact a.btn_request {
    width: 70%;
    justify-content: flex-start;
    padding-left: 10rem;
}
.contact a.btn_contact {
    margin-bottom: 4rem;
}
}
/******************/
/*   smartphone   */
@media all and (max-width: 491px) {
/*@media all and (max-width: 479px) {*/
	html {
		font-size: 55.5%;
	}
	header p {
		font-size: 1.0rem;
	}
	.glovalNav {
		position: relative;
		top: 0px;
		left: 0px;
		margin: 0 auto;
		width: 100%;
		padding: 0;
	}
	.glovalNav li {
		width: 32%;
		font-size: 1.6rem;
		margin: 0;
	}
	.glovalNav li a {
		display: inline-block;
		width: 100%;
		height: 57px;
		font-size: 1.2rem;
		padding: 5px 10px 30px 10px;
		margin: 0px;
	}
	.glovalNav li a.btn_mail:after, .glovalNav li a.btn_pen:after, .glovalNav li a.btn_tel:after {
		content: '';
		width: 24px;
		height: 24px;
		position: absolute;
		top: 100%;
		left: 40%;
		margin-top: -30px;
	}
	.grid .item {
		padding: 0 10px 35px 10px;
	}
	#index-top {
		width: 100%;
		padding-bottom: 80%;
	}
	.svg_container {
		position: absolute;
		width: 100%;
		height: 700px;
		top: 80px;
	}
	.con-text {
		font-size: 2rem;
		text-align: left;
		padding: 0 30px;
height: 40rem;
}

	.schedule {
		padding: 7px;
	}
	.schedule .schedule-title {
		font-size: 2.0rem;
	}
	.schedule .schedule-area {
		width: 100%;
		padding: 7px;
	}
	.contact .btn-area {
display: flex;
align-items: center;
flex-direction: column;
	}
.contact a.btn_contact, .contact a.btn_request {
    width: 90%;
}
.contact a.btn_contact {
    margin-bottom: 4rem;
}	
}
/******************/
/*   smartphone   */
@media all and (max-width: 360px) {
	.con-text {
height: 50rem;
}
}


/*   hover        */
@media (hover: hover) and (pointer: fine) {
	a:hover {
		color: var(--ahover);
	}
}
/******************/
/*追加分*/
.text-left {
	text-align: left;
}
.font-small9 {
	font-size: 0.9rem;
}
/*改行　PCでは無効（改行しない）*/
.sma {
	display: none;
}
/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:767px) {
	.sma {
		display: block;
	}
}

/* PCでは改行、スマートフォンでは改行を消す */
@media screen and (max-width:767px){
.sma-wrap{
  display: none;
}
}

/* スマートフォンでは消す */
@media screen and (max-width:491px){
.sma-wrap{
  display: none;
}/* 改行を消す */
	.sma-hidden{
	display: none;
	}	
}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}





/*こんな方におすすめ*/
.cases {
	margin: 60px auto;
	width: 80%;
	max-width: 1280px;
}
.cases ul {
	list-style: none;
	font-size: 2rem;
	line-height: 4rem;
	border: 2px solid var(--myorange);
	border-radius: 10px;
	padding: 2rem;
}
.cases li + li {
	margin-top: 5px;
}
.cases li {
	position: relative;
	padding-left: 3rem;
	text-align: left;
}
.cases li:before {
	content: "";
	position: absolute;
	top: 1rem;
	left: 0;
	width: 20px;
	height: 20px;
	border: 2px solid var(--myorange);
	border-radius: 2px;
}
.cases li:after {
	content: "";
	position: absolute;
	top: 0.5rem;
	left: 3px;
	-webkit-transform: rotate(50deg);
	-ms-transform: rotate(50deg);
	transform: rotate(50deg);
	width: 15px;
	height: 25px;
	border-right: 5px solid var(--myred);
	border-bottom: 5px solid var(--myred);
}
.lead {
	color: var(--myred);
	font-size: 3rem;
	font-weight: bold;
	margin-top: 2rem;
}
.dli-arrow-right {
	display: inline-block;
	vertical-align: middle;
	color: var(--myred);
	line-height: 1;
	position: relative;
	width: 1.5em;
	height: 0.3em;
	background: currentColor;
	margin-right: 2rem;
}
.dli-arrow-right::before {
	content: '';
	width: 0.9em;
	height: 0.9em;
	border: 0.3em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	transform: rotate(45deg);
	transform-origin: top right;
	position: absolute;
	top: 50%;
	right: -0.3em;
	box-sizing: border-box;
}
/*ドローンスクールの特徴*/
.advantage {
	background-image: url(../img/top_advantage.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.6);
	padding: 20px;
}
#cardlayout-wrap {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	margin: 2rem auto;
	max-width: 1280px;
	width: 80%;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
/* カードレイアウトのタイトル部分 */
.card-title {
	margin: 1rem 2rem 0;
	color: #149BD0;
	text-align: left;
	font-size: 2rem;
}
/* カードレイアウトの説明文部分 */
.card-text {
	margin: 0 2rem 1rem;
	padding: 1rem 0 0;
	text-align: left;
	border-top: 1px solid #149BD0;
	font-size: 1.8rem;
}
/* カードレイアウトを1カラムで配置 */
.card-list {
	margin: 1.5rem auto;
	padding: 0;
	width: 96%;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 20px;
}
/* 画面幅768px以上の場合カードレイアウトを2カラムで配置 */
@media all and (min-width: 768px) {
	.card-list {
		margin: 1.5em 0;
		width: calc(96% / 2); /* 96%幅を2で割るという指定 */
	}
}
/* 画面幅992px以上の場合カードレイアウトを3カラムで配置 */
@media all and (min-width: 992px) {
	.card-list {
		width: calc(96% / 3); /* 96%幅を3で割るという指定 */
	}
	/* 最後の行が3列より少ない場合左寄せにレイアウトさせる */
	#cardlayout-wrap::after {
		content: "";
		display: block;
		width: calc(96% / 3);
	}
}

/*講習までの流れ*/
.process {
	background-image: url(../img/top_process.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.6);
	padding: 20px;
}
#process-wrap {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	margin: 2rem auto;
	max-width: 1280px;
	width: 80%;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
/* カードレイアウトの画像部分 */
.process-card-title-icon {
		margin: 1rem auto 0;
}

/* カードレイアウトのタイトル部分 */
.process-card-title {
	margin: 1rem 2rem 0;
	color: #149BD0;
	text-align: center;
	font-size: 2rem;
}
/* カードレイアウトの説明文部分 */
.process-card-text {
	margin: 0 2rem 1rem;
	padding: 1rem 0 0;
	text-align: left;
	border-top: 1px solid #149BD0;
	font-size: 1.8rem;
}
/* カードレイアウトを1カラムで配置 */
.process-card-list {
	margin: 1.5rem auto;
	padding: 0;
	width: 96%;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 20px;
}
/* 画面幅768px以上の場合カードレイアウトを2カラムで配置 */
@media all and (min-width: 768px) {
	.process-card-list {
		margin: 1.5em 0;
		width: calc(96% / 2); /* 96%幅を2で割るという指定 */
	}
}
/* 画面幅992px以上の場合カードレイアウトを4カラムで配置 */
@media all and (min-width: 992px) {
	.process-card-list {
		width: calc(96% / 4); /* 96%幅を3で割るという指定 */
	}
	/* 最後の行が4列より少ない場合左寄せにレイアウトさせる */
	#cardlayout-wrap::after {
		content: "";
		display: block;
		width: calc(96% / 4);
	}
}


/*Q&A*/
.qa {
	margin: 0 auto 60px;
	width: 80%;
	max-width: 1280px;
	padding: 20px;
	font-size: 1.8rem;
}
.qa dt, .qa dd {
	display: flex;
	position: relative;
	margin: 0;
	padding: 2rem 2rem 2rem 6rem;
	color: #333333;
}
.qa dt {
	font-weight: 600;
	align-items: center;
	background-color: rgba(176, 224, 230, 0.3);
}
.qa dd {
	margin-bottom: 2rem;
}
.qa dd + dt {
	margin-top: 1em;
}
.qa dt::before, .qa dd::before {
	display: inline-block;
	position: absolute;
	width: 40px;
	height: 40px;
	left: 1rem;
	border-radius: 7px;
	color: #fff;
	font-weight: 600;
	font-size: 1.3em;
	line-height: 40px;
	text-align: center;
}
.qa dt::before {
	background-color: #75bbff;
	content: 'Q';
}
.qa dd::before {
	background-color: #ff8d8d;
	content: 'A';
}
@media screen and (max-width: 767px) {
	.qa {
		width: 100%;
		padding: 20px;
	}
}


/*お問い合わせ*/
.contact-copy {
	margin: 0 0 4rem 0;
	font-size: 2rem;
line-height: 4rem;
}
.contact-copy span {
	font-weight: bold;
	background: linear-gradient(transparent 60%, #5cc5EF 30%);
	padding: 3px 10px;
}
/*会社概要*/
.kaisha {
	font-size: 1.8rem;
	margin: 60px auto;
	width: 80%;
	max-width: 1280px;
	padding: 20px;
}
.kaisha dl {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
}
.kaisha dt {
	flex-basis: 25%;
	padding: 20px 1rem;
	background-color: #f1f1f1;
	border-bottom: 1px solid #ccc;
	font-weight: bold;
	white-space: nowrap;
}
.kaisha dd {
	flex-basis: 75%;
	padding: 20px;
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	text-align: left;
}
.kaisha dt:first-of-type {
	border-top: 1px solid #ccc;
}
.kaisha dd:first-of-type {
	border-top: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
	.kaisha {
		width: 100%;
		padding: 20px;
	}
	.kaisha dl {
		flex-flow: column;
	}
}
/*googleマップを可変対応する*/
.gmap {
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
}
.gmap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

/*Q&A内の地図*/
.map {
	width: 100%;
	padding-bottom: 3rem;
}


/*リスキリング*/
.reskilling-text{
		width: 90%;
	background: linear-gradient(45deg, rgba(144, 245, 154, 1), rgba(4, 202, 255, 1));
	padding: 1.5rem;
	font-size: 1.8rem;
	margin: 1rem auto 3rem;
}
.reskilling-text-body {
    padding: 1rem;
    border-radius: 1rem;
    background-color: white;
    color: #353535;
}


.reskilling-midashi {
position: relative;
margin:2rem;
padding: 1.5rem;
border: 2px solid #333;
background-color: #97d8f9;
background-image: linear-gradient(0deg, #97d8f9 35%, #b5ff7d 100%);


}

.reskilling-midashi:before,
.reskilling-midashi:after {
    position: absolute;
    left: 50%;
    content: "";
    height: 0;
    width: 0;
}

.reskilling-midashi:before {
    top: 100%;
    border: 9px solid;
    border-color: transparent;
    border-top-color: #333;
    margin-left: -9px;
}

.reskilling-midashi:after {
    top: 99%;
    border: 8px solid;
    border-color: transparent;
    border-top-color:#97d8f9;
    margin-left: -8px;
}

.reskilling-text-area{
margin:2rem;
	text-align: left;
	line-height: 3rem;
}
.reskilling-text-deco-1{
	font-size: 2.5rem;
	padding: 0 0.5rem;
}
.reskilling-text-deco-2{
	font-size: 4.5rem;
	font-weight: 600;
	padding: 0 0.5rem;
}

.reskilling-text-marker {
    background: linear-gradient(transparent 60%, #ffb7ff 60%);
}

.cases2 {
	margin: 3rem auto 1rem;
	width: 80%;
	max-width: 1280px;
border: 2px solid #44617b;
}

.cases2 ul {
	list-style: none;
	font-size: 2rem;
	line-height: 4rem;
	padding: 3rem;
}
.cases2 li + li {
	margin-top: 5px;
}
.cases2 li {
	position: relative;
	padding-left: 3rem;
	text-align: left;
}

.cases2 li:first-child {
	border-bottom: 2px dotted #a0d8ef;
	padding-bottom: 1rem;
	margin-bottom: 2rem;
}
.cases2 li:before {
	content: "";
	position: absolute;
	top: 1rem;
	left: 0;
	width: 20px;
	height: 20px;
	border: 2px solid #4682b4;
	border-radius: 2px;
}
.cases2 li:after {
	content: "";
	position: absolute;
	top: 0.5rem;
	left: 3px;
	-webkit-transform: rotate(50deg);
	-ms-transform: rotate(50deg);
	transform: rotate(50deg);
	width: 15px;
	height: 25px;
	border-right: 5px solid var(--myred);
	border-bottom: 5px solid var(--myred);
}


.reskilling-logo{
	max-width: 200px;
}