@charset "UTF-8";
/*--------------------------------------------------
【更新履歴】
2020.1.28 ：マニュアル作成にあたり内容整理。
2019.5.29 ：メインイメージ・ヘッダー・フッターの記述を整理、最適化。
2019.4.10 ：単位の混在を整理。
2018.11.29：不要な要素などを削除。
2018.05.24：	共通要素の色とBGの設定を分離せず一か所にまとめるようにしました。
2018.05.17：	更新履歴の項を追加。メディアクエリに印刷時の記述を追加。
			@media screen and ~~ -> @media print, screen and~~

目次
・基本ルール
・ベースレイアウト
	└ヘッダー・ナビゲーション・メインイメージ・コンテンツ・フッター
・コンテンツ部分の共通スタイル
・サイト全体で使う共通スタイル
・ページ個別のスタイル
	└index,about,contactなど

■normalize.cssについて
各ブラウザ特有のズレなどをリセットするためのCSSです。
こちらは編集しないで下さい。
全てのスタイルはstyle.cssで指定して下さい。

■メディアクエリについて
記述例：
ウィンドウサイズが600px以上（PC）のCSSを指定する場合
@media print, screen and (min-width: 600px) {
	header {
		font-size: 1.5rem;
	}
	header p {
		color: red;
	}
}

■本番公開前のクリーンアップ
下記のようなクリーンアップサービスなどを使用して
コメントや不要な改行を削除して下さい。
https://csscompressor.com/
--------------------------------------------------*/
/*--------------------------------------------------
	基本ルール
--------------------------------------------------*/
/*font-sizeはremで指定しています。15px=1.5rem。*/
html {
	font-size: 62.5%;
}
body {
	font-size: 14px;
	font-size: 1.4rem;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS P Gothic",sans-serif;
	font-weight: 500;/*細めのフォントを見やすくする。デザイン次第で不要なら削除。*/
	line-height: 1.6;
	color: #333;
}
table {
	table-layout: fixed;/*IE11*/
	border-collapse: collapse;
	border-spacing: 0;
}
p, h1, h2, h3, h4, h5, h6, ul, li, ol, dl, dt, dd, figure {
	margin: 0;
	padding: 0;
}
ul, li, ol, dl, dt, dd {
	list-style: none;
}
a {
	color: #315ff2;
}
a:hover {
	text-decoration: none;
}
strong {
	font-weight: bold;
}
img {
	margin: 0;
	vertical-align: middle;
	border: none;
	-webkit-backface-visibility: hidden;/*Chromeで画像がぼやける現象の対策ですが、線の細い画像はこれによってジャギが目立つ可能性があります。適宜ON・OFFして下さい。*/
}
/*--------------------------------------------------
	ベースレイアウト
--------------------------------------------------*/
header, .mainimg, .wrapper, footer {
	width: 100%;
}
/*ヘッダー*/
header {
	background: #2d3484;
}
header .hdr_box {
	position: relative;
	width: 100%;
}
header .hdr_box h1 {
	width: 60%;
	width: calc(100% - 144px);
}
header .hdr_box h1 a {
	position: relative;
	display: block;
	width: 100%;
	height: 72px;
}
header .hdr_box h1 img {
	display: block;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translate(0%, -50%);
	max-width: 75%;
	height: auto;
	max-height: 60px;
}
header .hdr_contact {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
}
header .hdr_contact li:hover {
	opacity: 0.7;
}
header .hdr_contact .tel,
header .hdr_contact .navbtn {
	width: 72px;
	height: 72px;
	margin-left: 1px;
	z-index: 1000;
}
header .hdr_contact .tel a,
header .hdr_contact .navbtn {
	text-indent: -7777px;
	overflow: hidden;
	background-color: #575d9d;
	background-position: center;
	background-size: 50%;
	background-repeat: no-repeat;
}
header .hdr_contact .tel a {
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../img/ico_hdrtel.png);
}
header .hdr_contact .remote {
	display: none;
}
header .hdr_contact .navbtn {
	background-image: url(../img/ico_navbtn.png);
}
header .hdr_contact .navbtn.navopen {
	background-image: url(../img/ico_navbtn-close.png);
}
@media print, screen and (min-width: 600px) {
	header {
		padding-bottom: 12px;
		background: inherit;
	}
	header .hdr_box {
		width: 1008px;
		margin: 0 auto;
	}
	header .hdr_box h1 {
		float: left;
		width: 30%;
		padding: 56px 0 20px;
		background: #2d3484;
	}
	header .hdr_box h1 a {
		height: inherit;
	}
	header .hdr_box h1 a img {
		position: relative;
		top: inherit;
		left: inherit;
		transform: none;
		max-width: 80%;
		margin: 0 auto;
	}
	header .hdr_contact {
		position: relative;
		float: right;
		width: 50%;
		margin-top: 14px;
		justify-content: flex-end;
	}
	header .hdr_contact .tel {
		width: 178px;
		height: auto;
		margin: 0 0 0 16px;
	}
	header .hdr_contact .tel a {
		text-indent: 0;
		background: none;
	}
	header .hdr_contact .remote {
		width: 190px;
		display: block;
	}
	header .hdr_contact .remote a {
		display: block;
		width: 100%;
		height: 100%;
	}
	header .hdr_contact .navbtn {
		display: none;
	}
	header .hdr_contact li a img {
		width: 100%;
		height: auto;
	}
}
.fixed .hdr_contact {/*一定距離スクロールすると電話・メニューボタンがページ右上に固定されるようにする*/
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999;
}
@media print, screen and (min-width: 600px) {
	.fixed .hdr_contact {
		position: relative;
	}
}
/*ナビゲーション*/
nav {
	position: fixed;
	width: 80vw;
	height: 100%;
	padding: 80px 0px 32px 10%;
	box-sizing: border-box;
	top: 0;
	right: 0;
	z-index: 900;
	overflow: hidden;
	transform: translateX(100vw);
	transition: all 0.4s cubic-bezier(0.38, 0, 0.25, 1);
	background: rgba(255,255,255,0.97);
}
/*メニューアイコンをタップした際のナビの動き*/
nav.navopen {
	overflow: scroll;
	transform: translateX(0);
	transition: all 0.4s cubic-bezier(0.38, 0, 0.25, 1);
	z-index: 900;
}
nav ul {
	margin-bottom: 24px;
}
nav li {
	border-bottom: 1px solid #e3e3ff;
}
nav li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 14px 0 12px;
	text-decoration: none;
	color: #2d3484;
}
nav ul li ul {
	margin-bottom: 0;
	margin-left: 10%;
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
}
nav ul li ul li {
	width: 50%;
	border-bottom: none;
	border-top: 1px solid #e3e3ff;
}
nav ul li ul li a {
	padding: 12px 0 10px;
	font-size: 1.3rem;
}
nav p.remote {
	width: 90%;
	margin-bottom: 16px;
	background: #e9ebff;
}
nav p.remote a {
	display: block;
	width: 100%;
	padding: 8px 14px 10px;
	box-sizing: border-box;
}
nav p.remote img {
	width: 100%;
	height: auto;
}
nav p.meetup {
	width: 90%;
}
@media print, screen and (min-width: 600px) {
	nav {
		position: relative;
		float: right;
		width: 60%;
		height: inherit;
		padding: 0;
		margin-top: 40px;
		top: inherit;
		right: inherit;
		overflow: inherit;
		transform: none;
		transition: none;
		background: none;
	}
	nav ul {
		display: flex;
		flex-flow: wrap;
		justify-content: flex-end;
		margin: 0;
		z-index: 10001;
	}
	nav ul li {
		position: relative;
		margin-left: 20px;
		border: none;
	}
	nav ul li a {
		padding: 0;
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg  xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='30px' height='30px'%3E%3Cpath fill-rule='evenodd'  fill='rgba(223, 223, 223, 1)' d='M-0.000,-0.000 L30.000,-0.000 L30.000,30.000 L-0.000,30.000 L-0.000,-0.000 Z'/%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-position: center bottom;
		background-size: 96% 1px;
	}
	nav ul li a:hover {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg  xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='30px' height='30px'%3E%3Cpath fill-rule='evenodd'  fill='rgba(73, 87, 213, 1)' d='M-0.000,-0.000 L30.000,-0.000 L30.000,30.000 L-0.000,30.000 L-0.000,-0.000 Z'/%3E%3C/svg%3E");
	}
	nav ul li ul {
		display: none;
		position: absolute;
		top: 20px;
		left: 0;
		width: 150%;
		margin: 0;
		padding-bottom: 24px;
		background: rgba(255,255,255,0.95);
	}
	nav ul li ul li {
		width: 100%;
		margin: 0;
		border: none;
	}
	nav ul li ul li a {
		display: block;
		padding: 10px 10px 10px;
		box-sizing: border-box;
		background-size: 86% 1px;
	}
	nav p.remote,
	nav p.meetup {
		display: none;
	}
}
/*メインイメージ*/
.mainimg {
	width: 100%;
}
.mainimg .mainimg_box {
}
.mainimg .mainimg_box img {
	width: 100%;
	height: auto;
}
.mainimg .mainimg_box .mainimg_box_slider {
	position: relative;
}
.mainimg .mainimg_box .mainimg_box_slider.slick-dotted.slick-slider {
	margin-bottom: 0;
}
.mainimg .mainimg_box .mainimg_box_slider .slick-dots {
	bottom: 0;
}
.mainimg .mainimg_box .mainimg_box_slider .slick-dots li {
	margin: 0;
}
.mainimg .mainimg_box .mainimg_box_slider .slick-arrow {
	z-index: 999;
}
.mainimg .mainimg_box .mainimg_box_slider .slick-prev.slick-arrow {
	left: 5px;
}
.mainimg .mainimg_box .mainimg_box_slider .slick-next.slick-arrow {
	right: 5px;
}
@media print, screen and (min-width: 600px) {
	.mainimg .mainimg_box {
		width: 100%;
		margin: 0 auto;
	}
	.mainimg .mainimg_box img {
		display: block;
		width: 1008px;
		margin: 0 auto;
	}
}
.meetup {
	background-color: #315ff2;
}
.meetup:hover {
	background-color: #4773ff;
}
.meetup a {
	display: block;
	width: 100%;
	padding: 14px 40px 14px 16px;
	box-sizing: border-box;
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
	text-decoration: none;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg  xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='15px' height='28px'%3E%3Cpath fill-rule='evenodd'  fill='rgba(255, 255, 255, 1)' d='M14.999,14.067 L2.062,27.999 L0.001,25.779 L10.939,14.000 L0.001,2.221 L2.062,0.001 L14.999,13.933 L14.936,14.000 L14.999,14.067 Z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: 96% center;
	background-size: 15px 28px;
}
.meetup a:hover {
	background-position: 97% center;
}
@media print, screen and (min-width: 600px) {
	.meetup {
		background-position: 25% center;
	}
	.meetup a {
		width: 1008px;
		margin: 0 auto;
		text-align: center;
		background-position: 99.5% center;
	}
	.meetup a:hover {
		background-position: 99.9% center;
	}
}
/*コンテンツ部分*/
/*ここではコンテンツ部分のベースレイアウトのみ決める。本文のスタイル設定は「コンテンツ部分の共通スタイル」の項で行う*/
.wrapper {
	box-sizing: border-box;
}
.wrapper .content {
}
.wrapper .content main {
	padding: 14px 14px 32px;
}
.wrapper .content .side {
	padding: 0 0 16px;
}
.wrapper .content .side .side_nav {
	display: none;
}
.wrapper .content .side ul.side_ban {
	margin: 0 16px 16px;
}
.wrapper .content .side ul.side_ban li {
	margin-bottom: 14px;
}
.wrapper .content .side ul.side_ban li img {
	width: 100%;
	height: auto;
}
.wrapper .content .side .facebook {
	padding: 0 16px;
}
@media print, screen and (min-width: 600px) {
	.wrapper {
		padding: 16px 0 24px;
	}
	.wrapper .content {
		width: 1008px;
		margin: 0 auto;
		display: flex;
		flex-flow: wrap;
		justify-content: space-between;
	}
	.wrapper .content main {
		order: 2;
		/*order:2;を右に置きたい要素に設定する*/
		width: 744px;
		padding: 14px 0 32px;
		box-sizing: border-box;
	}
	.wrapper .content .side {
		position: sticky;
		top: 0;
		width: 232px;
		padding: 0;
		box-sizing: border-box;
		background: #fff;
		z-index: 1;
		align-self: baseline;
	}
	.wrapper .content .side ul.side_nav {
		display: block;
		padding-top: 4px;
		margin-bottom: 24px;
	}
	.wrapper .content .side ul.side_nav li {
		position: relative;
		margin: 0 0 8px;
		background: linear-gradient(90deg, rgba(225,243,255,1) 0%, rgba(242,249,255,1) 100%);
	}
	.wrapper .content .side ul.side_nav li:hover {
		opacity: 0.8;
	}
	.wrapper .content .side ul.side_nav li a {
		display: block;
		width: 100%;
		padding: 13px 0 12px 96px;
		box-sizing: border-box;
		color: #339;
		text-decoration: none;
	}
	.wrapper .content .side ul.side_nav li a:before {
		content: " ";
		display: block;
		width: 94px;
		height: 125%;
		position: absolute;
		bottom: 0;
		left: 0;
		background-repeat: no-repeat;
		background-position: 0 0;
		background-size: 94px auto;
	}
		.wrapper .content .side ul.side_nav li a[href*="mfp"]:before {
			background-image: url(../img/ico_s_mfp.png);
		}
		.wrapper .content .side ul.side_nav li a[href*="nas"]:before {
			background-image: url(../img/ico_s_nas.png);
		}
		.wrapper .content .side ul.side_nav li a[href*="phone"]:before {
			background-image: url(../img/ico_s_phone.png);
		}
		.wrapper .content .side ul.side_nav li a[href*="security"]:before {
			background-image: url(../img/ico_s_security.png);
		}
		.wrapper .content .side ul.side_nav li a[href*="router"]:before {
			background-image: url(../img/ico_s_router.png);
		}
		.wrapper .content .side ul.side_nav li a[href*="camera"]:before {
			background-image: url(../img/ico_s_camera.png);
		}
		.wrapper .content .side ul.side_nav li a[href*="website"]:before {
			background-image: url(../img/ico_s_website.png);
		}
		.wrapper .content .side ul.side_nav li a[href*="network"]:before {
			background-image: url(../img/ico_s_network.png);
		}
		.wrapper .content .side ul.side_nav li a[href*="hosting"]:before {
			background-image: url(../img/ico_s_hosting.png);
		}
		.wrapper .content .side ul.side_nav li a[href*="pc"]:before {
			background-image: url(../img/ico_s_pc.png);
		}
		.wrapper .content .side ul.side_nav li a[href*="hishodaiko"]:before {
			background-image: url(../img/ico_s_hishodaiko.png);
		}
		.wrapper .content .side ul.side_nav li a[href*="grant"]:before {
			background-image: url(../img/ico_s_grant.png);
			bottom: -22px;
		}
		.wrapper .content .side ul.side_nav li a[href*="led"]:before {
			background-image: url(../img/ico_s_led.png);
		}
		.wrapper .content .side ul.side_nav li a[href*="board"]:before {
			background-image: url(../img/ico_s_board.png);
		}
		.wrapper .content .side ul.side_nav li a[href*="office"]:before {
			background-image: url(../img/ico_s_office.png);
		}
	.wrapper .content .side ul.side_ban {
		margin: 0;
	}
	.wrapper .content .side ul.side_ban li:hover {
		opacity: 0.7;
	}
	.wrapper .content .side .facebook {
		width: 232px;
		padding: 0;
	}
}
/*フッター*/
footer {
	border-top: 4px solid #2d3484;
}
footer .ftr_box {
	padding: 20px 16px;
}
footer .ftr_box .ftr_box_info {
	margin-bottom: 16px;
}
footer .ftr_box .ftr_box_info .logo {
	width: 60%;
	margin: 0 0 16px;
}
footer .ftr_box .ftr_box_info .logo img {
	width: 100%;
	height: auto;
}
footer .ftr_box .ftr_box_info address {
	width: 80%;
	margin: 0 0 12px;
	font-size: 1.3rem;
	font-style: normal;
}
footer .ftr_box .ftr_box_info address img[title*="LINE"] {
	width: 60px;
	height: auto;
}
footer .ftr_box .ftr_box_info ul.banner {
	font-size: 0;
}
footer .ftr_box .ftr_box_info ul.banner li {
	display: inline-block;
	padding-right: 8px;
}
footer .ftr_box .ftr_box_link {
	margin-bottom: 16px;
}
footer .ftr_box .ftr_box_link ul {
	display: flex;
	flex-flow: wrap;
	justify-content: flex-start;
}
footer .ftr_box .ftr_box_link ul li {
	width: 48.5%;
	width: calc(calc(100% - 8px) / 2);
	margin: 0 8px 8px 0;
	border: 1px solid #e3e3ff;
	box-sizing: border-box;
}
footer .ftr_box .ftr_box_link ul li:nth-of-type(2n) {
	margin-right: 0;
}
footer .ftr_box .ftr_box_link ul li img {
	width: 100%;
	height: auto;
}
footer .ftr_box .copy {
	font-size: 1.4rem;
	font-weight: normal;
}
@media print, screen and (min-width: 600px) {
	footer .ftr_box {
		width: 1008px;
		padding: 26px 0;
		margin: 0 auto;
		display: flex;
		flex-flow: wrap;
		justify-content: space-between;
	}
	footer .ftr_box .ftr_box_info {
		width: 40%;
		margin: 0;
	}
	footer .ftr_box .ftr_box_info .logo {
		width: 40%;
	}
	footer .ftr_box .ftr_box_info .logo img {
		height: auto;
	}
	footer .ftr_box .ftr_box_info address {
	width: 100%;
	padding-left: 4px;
	box-sizing: border-box;
	}
	footer .ftr_box .ftr_box_link {
		width: 58%;
		margin: 0;
	}
	footer .ftr_box .ftr_box_link ul li {
		width: 32%;
		width: calc(calc(100% - 16px) / 3);
	}
	footer .ftr_box .ftr_box_link ul li:nth-of-type(2n) {
		margin-right: 8px;
	}
	footer .ftr_box .ftr_box_link ul li:nth-of-type(3n) {
		margin-right: 0;
	}
	footer .ftr_box .copy {
		width: 100%;
		margin-top: 16px;
	}
}
/*--------------------------------------------------
	コンテンツ部分の共通スタイル
--------------------------------------------------*/
section {
	margin: 0 0 40px;
}
section h2 {
	position: relative;
	padding: 12px 18px 12px 38px;
	margin-bottom: 24px;
	box-sizing: border-box;
	font-size: 1.8rem;
	font-weight: normal;
	border: 1px solid #d8d8d8;
	border-top: 4px solid #2d3484;
	background: linear-gradient(#fff 0%, #efefef 100%);
	box-shadow: 0 -1px 0 rgba(255, 255, 255, 1);
}
section h2::before {
	content: " ";
	display: block;
	width: 18px;
	height: 18px;
	position: absolute;
	top: 30%;
	left: 16px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg  xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='18px' height='18px'%3E%3Cpath fill-rule='evenodd'  fill='rgba(34, 51, 153, 1)' d='M9.000,18.000 C4.029,18.000 -0.000,13.970 -0.000,9.000 C-0.000,4.029 4.029,-0.000 9.000,-0.000 C13.971,-0.000 18.000,4.029 18.000,9.000 C18.000,13.970 13.971,18.000 9.000,18.000 ZM9.000,4.000 C6.239,4.000 4.000,6.238 4.000,9.000 C4.000,11.761 6.239,14.000 9.000,14.000 C11.761,14.000 14.000,11.761 14.000,9.000 C14.000,6.238 11.761,4.000 9.000,4.000 Z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 100% auto;
}
section h3 {
	color: #2d3484;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg  xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='2px' height='2px'%3E%3Cpath fill-rule='evenodd'  fill='rgba(51, 186, 233, 1)' d='M-0.000,1.000 L-0.000,-0.000 L1.000,-0.000 L1.000,1.000 L-0.000,1.000 Z'/%3E%3C/svg%3E");
	background-repeat: repeat-x;
	background-position: bottom left;
	background-size: 2px 2px;
}
section h3::first-letter {
	font-size: 2.4rem;
}
section h4 {
	padding-left: 12px;
	margin-bottom: 14px;
	box-sizing: border-box;
	font-size: 1.5rem;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1" preserveAspectRatio="none"><path fill="%232d3484" d="M0.000,0.000 L32.000,0.000 L32.000,32.000 L0.000,32.000 L0.000,0.000 Z" /></svg>');
	background-repeat: no-repeat;
	background-position: 0 0.2em;
	background-size: 3px 1em;
}
section h4 span {
	color: #2d3484;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg  xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='30px' height='30px'%3E%3Cpath fill-rule='evenodd'  fill='rgba(255, 255, 0, 1)' d='M-0.000,-0.000 L30.000,-0.000 L30.000,30.000 L-0.000,30.000 L-0.000,-0.000 Z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: 0 0.8em;
	background-size: 100% 0.6em;
}
section .sec_content {
}
section .sec_content::after {
	/* content: " "; */
	display: block;
	clear: both;
}
section .sec_content h3 {
	margin: 0 0 24px;
}
section .sec_content p {
	margin: 0 0 16px;
}
section .sec_content table {
	width: 100%;
	margin: 0 0 16px;
}
section .sec_content table caption {
	padding: 12px 0 10px;
	font-size: 1.6rem;
	font-weight: bold;
	border-bottom: 2px solid #fff;
	background-color: #cfd2f8;
}
section .sec_content table th,
section .sec_content table td {
	padding: 10px 15px;
	border-width: 1px;
	border-style: solid;
	border-color: #e9edf5;
}
section .sec_content table th {
	border-bottom-color: #fff;
	background-color: #e9eafd;
}
section .sec_content table td {
}
section .sec_content table thead th {
	background: #cfd0ed;
}
section .sec_content table thead td {
	font-weight: bold;
	text-align: center;
	border-bottom-color: #fff;
	background: #cfd0ed;
}
@media print, screen and (min-width: 600px) {
	section h2 {
	}
	section .sec_content {
		padding: 0;
	}
}
/*--------------------------------------------------
	サイト全体で使う共通スタイル
--------------------------------------------------*/
/*floatした子要素を内包する親要素にclass="clear"を
付与することでfloatを解除します。*/
.clear::after {
	content: " ";
	display: block;
	clear: both;
}
.pagetop {
	text-align: right;
}
.list1 li,
.list1 dd {
	margin-left: 0.5em;
	padding-left: 1em;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10" preserveAspectRatio="none"><path fill="%23333" d="M5.0,0.0 C7.761,0.0 10.0,2.238 10.0,5.0 C10.0,7.761 7.761,10.0 5.0,10.0 C2.238,10.0 0.0,7.761 0.0,5.0 C0.0,2.238 2.238,0.0 5.0,0.0 Z" /></svg>');
	background-repeat: no-repeat;
	background-position: 0 0.6em;
	background-size: 0.2em 0.2em;
}
/*リモサポプラン*/
ul.remoteplan {
}
ul.remoteplan li {
	padding: 24px 16px;
	margin-bottom: 16px;
	box-sizing: border-box;
	border: 1px solid #9da7ed;
}
ul.remoteplan li h4 {
	padding-left: 16px;
	margin-bottom: 14px;
	font-size: 2.2rem;
	font-weight: normal;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg  xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='30px' height='30px'%3E%3Cpath fill-rule='evenodd'  fill='rgba(157, 167, 237, 1)' d='M-0.000,-0.000 L30.000,-0.000 L30.000,30.000 L-0.000,30.000 L-0.000,-0.000 Z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 10px 1em;
}
ul.remoteplan li p.price {
	margin-bottom: 5px;
	font-size: 3.0rem;
	font-weight: bold;
	line-height: 1.4;
	border-bottom: 1px solid #e9eafd;
}
ul.remoteplan li:nth-of-type(2) p.price {
	font-size: 2.6rem;
}
ul.remoteplan li p.price span {
	font-size: 66%;
}
ul.remoteplan li small {
	font-size: 1.4rem;
}
ul.remoteplan li small::before {
	content: "※";
	color: #9da7ed;
}
@media print, screen and (min-width: 600px) {
	ul.remoteplan {
		display: flex;
		flex-flow: wrap;
		justify-content: space-between;
	}
	ul.remoteplan li {
		width: 48.5%;
		width: calc(calc(100% - 16px) / 2);
		padding: 24px;
	}
	ul.remoteplan li h4 {
		font-size: 1.8rem;
	}
}
/*パンくずリスト*/
.breadcrumbs_list {
	margin-bottom: 16px;
}
.breadcrumbs_list li {
	display: inline-block;
	margin-left: 12px;
	padding-left: 16px;
	background: url(../img/support/ico_pankuzu.png) left center/6px auto no-repeat;
}
.breadcrumbs_list li:first-child {
	margin-left: 0;
	padding-left: 0;
	background: none;
}
/*送信フォーム（contact, mailstopで使用）*/
.form form th,
.form form td {
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.form form th {
	position: relative;
	padding: 7px 10px;
	text-align: left;
	border-bottom-width: 0px;
}
.form form td {
	padding: 12px 10px;
}
.form form th span.require {
	display: block;
	width: 58px;
	height: 24px;
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	text-indent: -7777px;
	overflow: hidden;
	background: url(../img/contact/ico_require.png) 0 0/100% auto no-repeat;
}
.form form td input[type="text"],
.form form td input[type="email"],
.form form td textarea {
	padding: 6px;
	box-sizing: border-box;
}
.form form td input[type="text"],
.form form td input[type="email"] {
	width: 70%;
}
.form form td textarea {
	width: 100%;
}
.form form td input[type="checkbox"] {
	margin-right: 3px;
}
.form form td .form-check-label {
	display: inline-block;
	margin-right: 5px;
}
.form form td input::placeholder {
	color: #b9bac9;
}
.form form td input:-ms-input-placeholder {
	color: #b9bac9;
}
.form form td img#captcha_image {
	margin-bottom: 8px;
}
.form form .agreement {
	padding: 20px 0 0;
	margin-bottom: 6px;
	line-height: 1.4;
	text-align: center;
}
.form form .agreement label {
	font-size: 1.8rem;
}
.form form .agreement input[type="checkbox"] {
	margin-right: 4px;
}
.form form input[type="submit"] {
	width: 100%;
	padding: 16px 0;
	box-sizing: border-box;
	font-size: 2.4rem;
	font-weight: bold;
	color: #fff;
	border: none;
	background: #2d3484;
}
.form form input[type="submit"]:hover {
	cursor: pointer;
	background: #4149a7;
}
.form #powered_by_me {
	padding: 24px 0 0;
}
.form #error_message,
.form form .alert-danger {
	font-weight: bold;
	font-size: 110%;
	color: #d98f34;
}
.form #error_message::before,
.form form .alert-danger::before {
	content: "※";
}
.form form #agreement_error {
	padding-top: 4px;
}
@media print, screen and (min-width: 600px) {
	.form form th,
	.form form td {
		display: table-cell;
	}
	.form form th {
		width: 40%;
		border-bottom-width: 1px;
	}
}
/*--------------------------------------------------
	ページ個別のスタイル
--------------------------------------------------*/
/*--------------------------------------------news*/
#news .s1 .sec_content {
	margin-bottom: 24px;
}
#news .s1 .sec_content h3::first-letter {
	font-size: inherit;
}
#news .s1 p,
#news .s1 ul,
#news .s1 ol,
#news .s1 dl,
#news .s1 table {
	margin-bottom: 16px;
}
#news .s1 table.newsholidays th {
	width: 20%;
	text-align: left;
}
#news .s1 table.newsholidays tr td:last-of-type {
	width: 24%;
}
@media print, screen and (min-width: 600px) {
	#news .s1 table.newsholidays th {
		width: 30%;
	}
	#news .s1 table.newsholidays tr td:last-of-type {
		width: 40%;
	}
}
/*-------------------------------------------index*/
#index .mainimg .mainimg_box img {
}
@media print, screen and (min-width: 600px) {
	#index .mainimg .mainimg_box img {
		width: 1008px;
		height: auto;
	}
}
#index .s1 h2 {
	padding: 0;
	font-size: 2.2rem;
	font-weight: normal;
	color: #002dbe;
	border: 0;
	background: none;
	box-shadow: none;
}
#index .s1 h2::before {
	content: none;
}
#index .s1 .sec_content {
	background: url(../img/index/bg_lead.png) left -27%/260px auto no-repeat;
}
@media print, screen and (min-width: 600px) {
	#index .s1 .sec_content {
		padding: 10px 0 16px 0;
		background: url(../img/index/bg_lead.png) right top/260px auto no-repeat;
	}
	#index .s1 p {
		width: 63%;
	}
}
#index .s2 h2 {
	padding: 8px 12px 6px;
	margin: 0;
	font-size: 1.7rem;
	font-weight: normal;
	color: #fff;
	border: none;
	box-shadow: none;
	background: #2d3484;
}
#index .s2 h2::before {
	content: none;
}
#index .s2 dl {
	display: flex;
	flex-flow: wrap;
	max-height: 260px;
	overflow: auto;
	padding: 8px 16px;
	margin-bottom: 16px;
	border: 1px solid #e3e3ff;
	border-top: none;
}
#index .s2 dt,
#index .s2 dd {
	padding: 5px 0 6px;
	box-sizing: border-box;
	border-bottom: 1px solid #efefef;
	border-top: none;
}
#index .s2 dt {
	width: 30%;
	color: #0099ff;
}
#index .s2 dd {
	width: 70%;
}
#index .s2 ul li {
	margin-bottom: 16px;
}
#index .s2 ul li img {
	width: 100%;
	height: auto;
}
#index .s2 ul li:hover img {
	opacity: 0.7;
}
@media print, screen and (min-width: 600px) {
	#index .s2 dl {
		max-height: 200px;
	}
	#index .s2 dt {
		width: 17%;
	}
	#index .s2 dd {
		width: 83%;
	}
	#index .s2 ul {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"ban1 ban2"
			"ban3 ban3";
		margin-top: 24px;
	}
	#index .s2 ul li {
		margin-bottom: 0;
	}
	#index .s2 ul li.ban1 { grid-area: ban1; }
	#index .s2 ul li.ban2 { grid-area: ban2; }
	#index .s2 ul li.ban3 { grid-area: ban3; }
}
#index .s3 ul {
	display: flex;
	flex-flow: wrap;
	justify-content: flex-start;
}
#index .s3 ul li {
	width: 48.5%;
	width: calc(calc(100% - 8px) / 2);
	padding: 4px 4px 0;
	margin-bottom: 8px;
	margin-right: 8px;
	box-sizing: border-box;
	border: 1px solid #e3e3ff;
	box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.1);
}
#index .s3 ul li:nth-of-type(2n) {
	margin-right: 0;
}
#index .s3 ul li figure img {
	width: 100%;
	height: auto;
	margin-bottom: 8px;
}
#index .s3 ul li figure figcaption {
	font-size: 1.4rem;
	text-align: center;
}
#index .s3 ul li figure figcaption p {
	margin: 0;
}
#index .s3 ul li figure figcaption a {
	display: block;
	width: 90%;
	padding: 6px 0;
	margin: 0 auto 13px;
	box-sizing: border-box;
	color: #fff;
	text-decoration: none;
	background: #5656d8;
	border-radius: 6px;
}
#index .s3 ul li figure figcaption a:hover {
	background: #6c6ce8;
}
@media print, screen and (min-width: 600px) {
	#index .s3 ul li {
		width: 32.5%;
		width: calc(calc(100% - 16px) / 3);
	}
	#index .s3 ul li:nth-of-type(2n) {
		margin-right: 8px;
	}
	#index .s3 ul li:nth-of-type(3n) {
		margin-right: 0px;
	}
}
#index .s4 img {
	width: 100%;
	height: auto;
	margin-bottom: 16px;
}
#index .s4 h3 {
	position: relative;
	font-size: 1.8rem;
	font-weight: normal;
	color: #2d3484;
}
@media print, screen and (min-width: 600px) {
	#index .s4 img {
		float: left;
		display: block;
		width: 40%;
		margin-bottom: 0;
	}
	#index .s4 h4,
	#index .s4 p {
		float: right;
		width: 58%;
	}
}
#index .s5 img {
	width: 100%;
	height: auto;
	margin-bottom: 16px;
}
@media print, screen and (min-width: 600px) {
	#index .s5 img {
		float: left;
		display: block;
		width: 40%;
		margin-bottom: 0;
	}
	#index .s5 img + p,
	#index .s5 h3,
	#index .s5 h3 + p {
		float: right;
		width: 58%;
	}
	#index .s5 h3:nth-of-type(2),
	#index .s5 ul,
	#index .s5 p.link {
		clear: both;
		width: 100%;
	}
}
/*------------------------------------------servie*/
#service .s2 .sec_content {
	margin-bottom: 32px;
}
#service .s2 h3 {
	margin-bottom: 20px;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1" preserveAspectRatio="none"><path fill="%232d3484" d="M0.000,0.000 L32.000,0.000 L32.000,32.000 L0.000,32.000 L0.000,0.000 Z" /></svg>');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% 3px;
}
#service .s2 ul.item>li {
	padding-top: 4px;
	margin-bottom: 16px;
}
#service .s2 ul.item>li figure {
	width: 160px;
	margin: 0 auto;
	margin-bottom: 12px;
}
#service .s2 ul.item>li figure img {
	width: 100%;
	height: auto;
	margin-bottom: 4px;
	box-sizing: border-box;
	border: 1px solid #e9eafd;
	background: #fff;
}
#service .s2 ul.item>li figure figcaption {
	text-align: center;
	color: #a9a9b0;
	line-height: 1.3;
}
#service .s2 ul.item>li .itemdetail {
	margin-bottom: 16px;
}
#service .s2 ul.item>li .itemdetail .makersite {
	text-align: right;
}
#service .s2 ul.item>li .itemdetail .makersite a {
	display: block;
	width: 100%;
	height: 100%;
}
#service .s2 h3 + h4,
#service .s2 ul.item + h4 {
	padding-left: 1.3em;
	font-size: 1.7rem;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1" preserveAspectRatio="none"><path fill="%232d3484" d="M0.000,0.000 L32.000,0.000 L32.000,32.000 L0.000,32.000 L0.000,0.000 Z" /></svg>');
	background-position: top 0.2em left 0;
	background-size: 1em 1em;
	background-repeat: no-repeat;
}
#service .s2 ul.item + h4.other,
#service .s2 h5 {
	padding-left: 12px;
	margin-bottom: 20px;
	box-sizing: border-box;
	font-size: 1.5rem;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1" preserveAspectRatio="none"><path fill="%232d3484" d="M0.000,0.000 L32.000,0.000 L32.000,32.000 L0.000,32.000 L0.000,0.000 Z" /></svg>');
	background-repeat: no-repeat;
	background-position: 0 0.2em;
	background-size: 3px 1em;
}
@media print, screen and (min-width: 600px) {
	#service .s2 ul.item>li {
		display: flex;
		flex-flow: wrap;
		justify-content: space-between;
	}
	#service .s2 ul.item>li figure {
		margin: 0 0 16px;
	}
	#service .s2 ul.item>li .itemdetail {
		width: calc(100% - 176px);
	}
	#service .s2 ul.maker {
		font-size: 0;
	}
	#service .s2 ul.maker li {
		display: inline-block;
		margin-right: 16px;
		font-size: 1.4rem;
	}
	#service .s2 ul.item>li .itemdetail .makersite a {
		display: inline;
	}
}
/*-----------------------------------------recruit*/
#recruit .s1 {
	margin-bottom: 24px;
}
#recruit .recruit_common ul.mokuji {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 8px;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1" preserveAspectRatio="none"><path fill="%23315ff2" d="M0.000,0.000 L32.000,0.000 L32.000,32.000 L0.000,32.000 L0.000,0.000 Z" /></svg>');
	background-position: bottom 0px left 0;
	background-size: 100% 1px;
	background-repeat: no-repeat;
}
#recruit .recruit_common ul.mokuji li {
	margin: 3px 0 1px;
	box-sizing: border-box;
	font-weight: bold;
	border-color: #bbc9e7;
	border-style: solid;
	border-width: 1px 1px 0;
	border-radius: 4px 4px 0 0;
}
#recruit .recruit_common ul.mokuji li:hover {
	border-color: #315ff2;
}
#recruit .recruit_common ul.mokuji li.current {
	margin: 0;
	border-color: #315ff2;
	background: #fff;
}
#recruit .recruit_common ul.mokuji li a {
	display: block;
	width: 100%;
	padding: 14px 0 10px;
	box-sizing: border-box;
	font-size: 3vw;
	text-align: center;
}
@media print, screen and (min-width: 600px) {
	#recruit .recruit_common ul.mokuji li a {
		font-size: 1.5rem;
	}
}
#recruit.recruit-yoko .s2 ul.jobmokuji {
	margin-bottom: 32px;
}
#recruit.recruit-yoko .s2 ul.jobmokuji li {
	padding-left: 20px;
	margin-bottom: 8px;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1" preserveAspectRatio="none"><path fill="%23bbc9e7" d="M0.000,0.000 L32.000,0.000 L32.000,32.000 L0.000,32.000 L0.000,0.000 Z" /></svg>');
	background-repeat: no-repeat;
	background-position: 0 0.2em;
	background-size: 6px 18px;
}
#recruit.recruit-yoko .s2 ul.jobmokuji li.current {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1" preserveAspectRatio="none"><path fill="%23315ff2" d="M0.000,0.000 L32.000,0.000 L32.000,32.000 L0.000,32.000 L0.000,0.000 Z" /></svg>');
}
#recruit.recruit-yoko .s2 ul.jobmokuji li.current a {
	font-weight: bold;
}
#recruit.recruit-yoko .s2 ul.jobmokuji li.current a::after {
	content: "＜現在のページ＞";
	font-size: 85%;
}
#recruit.recruit-yoko .s2 ul.jobmokuji li small {
	margin-left: 8px;
	font-size: 1em;
	color: #d98f34;
}
#recruit.recruit-yoko .s2 table caption {
	padding-left: 18px;
	text-align: left;
}
#recruit.recruit-yoko .s2 table caption span {
	display: inline-block;
	padding: 5px 12px 4px;
	color: #fff;
	font-size: 1.4rem;
	background: #d98f34;
}
#recruit.recruit-yoko .s2 table th {
	width: 25%;
}
#recruit.recruit-yoko .s2 table td {
	font-size: 1.3rem;
}
#recruit.recruit-yoko .s2 table td ul.list1 {
	margin-bottom: 1em;
}
#recruit.recruit-yoko .s2 table td ul.list2 {
	margin-bottom: 1em;
	color: #a2a3b9;
}
#recruit.recruit-yoko .s2 table td ul.list2 li {
	margin-left: 1.0em;
	font-size: 1.2rem;
	text-indent: -1.0em;
}
#recruit.recruit-yoko .s2 table td dl.flow {
	margin-bottom: 1em;
}
#recruit.recruit-yoko .s2 table td dl.flow dt {
	font-weight: bold;
}
#recruit.recruit-office .s2 dl {
	padding: 16px;
	margin-bottom: 16px;
	border-width: 1px;
	border-style: solid;
	border-color: #e9edf5;
}
#recruit.recruit-office .s2 dl dt {
	font-weight: bold;
}
#recruit.recruit-office .s2 dl dd {
	margin-left: 1em;
}
#recruit.recruit-office .s3 dl {
	margin-bottom: 16px;
}
#recruit.recruit-office .s3 ul.list1 {
	margin-bottom: 16px;
}
#recruit.recruit-office .s3 ul.officeimage {
	margin-bottom: 24px;
}
#recruit.recruit-office .s3 ul.officeimage li {
	margin-bottom: 16px;
	line-height: 1.5;
}
#recruit.recruit-office .s3 ul.officeimage figure {
	margin-bottom: 6px;
}
#recruit.recruit-office .s3 ul.officeimage figure img {
	width: 100%;
	height: auto;
}
#recruit .s4 .media.engage {
	margin-bottom: 32px;
}
#engage-contributions-widget-wrapper {
	width: 100%;
	height: 302px;
}
@media print, screen and (min-width: 600px) {
	#recruit.recruit-office .s3 ul.officeimage {
		display: flex;
		flex-flow: wrap;
		justify-content: flex-start;
	}
	#recruit.recruit-office .s3 ul.officeimage li {
		width: 32%;
		width: calc(calc(100% - 32px) / 3);
		margin-right: 16px;
	}
	#recruit.recruit-office .s3 ul.officeimage li:nth-of-type(3n) {
		margin-right: 0;
	}
}
#recruit.recruit-message .s2 .message {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	margin-bottom: 40px;
}
#recruit.recruit-message .s2 .message .message_icon {
	width: 25%;
	margin-bottom: 8px;
}
#recruit.recruit-message .s2 .message .message_icon figure {
	margin-bottom: 16px;
}
#recruit.recruit-message .s2 .message .message_icon p {
	padding-left: 6px;
}
#recruit.recruit-message .s2 .message .message_icon figure img {
	width: 100%;
	height: auto;
}
#recruit.recruit-message .s2 .message dl {
	width: 70%;
}
#recruit.recruit-message .s2 .message dl dt {
	padding-left: 32px;
	margin-top: 28px;
	margin-bottom: 6px;
	font-size: 1.5rem;
	font-weight: bold;
	background: url(../img/recruit/ico_que.png) 0 0/26px 22px no-repeat;
}
#recruit.recruit-message .s2 .message dl dt:first-of-type {
	margin-top: 0;
}
#recruit.recruit-message .s2 .message dl dd {
	padding-left: 12px;
}
@media print, screen and (min-width: 600px) {
	#recruit.recruit-message .s2 .message .message_icon {
		width: 16%;
	}
	#recruit.recruit-message .s2 .message dl {
		width: 80%;
	}
}
/*-----------------------------------------company*/
#company .s2 table th,
#company .s2 table td {
	font-size: 1.3rem;
}
#company .s2 table th {
	width: 30%;
}
#company .s3 .map {
	height: 0;
	overflow: hidden;
	padding-bottom: 65%;
	position: relative;
}
#company .s3 .map iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
#company .s4 .linedetail ul {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	margin-bottom: 16px;
}
#company .s4 .linedetail ul li {
	width: 48.5%;
}
#company .s4 .linedetail ul li img {
	width: 100%;
	height: auto;
}
#company .s4 .linedetail figure {
	padding: 12px 0 20px;
	box-sizing: border-box;
	font-size: 1.6rem;
	font-weight: bold;
	color: #00b900;
	text-align: center;
	border: 3px solid #00b900;
}
#company .s4 .linedetail figure p {
	margin-bottom: 8px;
}
#company .s4 .linedetail figure img {
	display: block;
	width: 148px;
	height: auto;
	margin: 0 auto;
}
#company .s4 .linedetail figure img[src*=qr] {
	margin-bottom: 16px;
}
@media print, screen and (min-width: 600px) {
	#company .s3 .map {
		padding-bottom: 50%;
	}
	#company .s4 .linedetail {
		display: flex;
		flex-flow: wrap;
		justify-content: space-between;
	}
	#company .s4 .linedetail::after {
		content: none;
	}
	#company .s4 .linedetail ul {
		width: 62%;
		margin-bottom: 0;
	}
	#company .s4 .linedetail figure {
		width: 32%;
	}
}
/*-----------------------------------------support*/
#support ul.supportcontent li,
#supportdetail ul.supportcontent li {
	margin-bottom: 16px;
}
#support ul.supportcontent li a,
#supportdetail ul.supportcontent li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 12px 0 12px 5%;
	box-sizing: border-box;
	color: #FFFFFF;
	font-size: 2.0rem;
	font-weight: bold;
	text-decoration: none;
	text-shadow: 0 1px 1px #ADADAD;
	background: #686FF5;
	border: 1px solid #686FF5;
	border-radius: 14px;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	box-shadow: 0 0 2px 1px #FFFFFF inset;
	transition: all 0.2s ease;
}
#support ul.supportcontent li a:hover {
	background: #2B3CFF;
	color: #FFFFFF;
	margin-left: 0;
	margin-top: 0px;
	border: 1px solid #FFFFFF;
	box-shadow: none;
}
#supportdetail ul.supportcontent li a:hover {
	background: #2B3CFF;
	color: #FFFFFF;
	margin-left: 0;
	margin-top: 0px;
	border: 1px solid #FFFFFF;
	box-shadow: none;
}
#support ul.supportcontent li a img,
#supportdetail ul.supportcontent li a img {
	padding-right: 20px;
}
#supportdetail .s2 {
	border-top: 1px dashed #4169e1;
}
#supportdetail .s2 .sec_content {
	padding-bottom: 40px;
	margin-bottom: 38px;
	border-bottom: 1px dashed #4169e1;
}
#supportdetail .sec_content h2.supportdetailtitle {
	padding: 12px 0 10px 5%;
	box-sizing: border-box;
	color: #FFFFFF;
	font-size: 2.0rem;
	font-weight: bold;
	text-decoration: none;
	text-shadow: 0 1px 1px #ADADAD;
	background: #686FF5;
	border: 1px solid #686FF5;
	border-radius: 14px;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	box-shadow: 0 0 2px 1px #FFFFFF inset;
	transition: all 0.2s ease;
}
#supportdetail .sec_content h2.supportdetailtitle::before {
	content: none;
}
#supportdetail .sec_content h3 {
	margin-top: 24px;
	margin-bottom: 16px;
	padding-bottom: 4px;
	line-height: 1.2;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1" preserveAspectRatio="none"><path fill="%232d3484" d="M0.000,0.000 L32.000,0.000 L32.000,32.000 L0.000,32.000 L0.000,0.000 Z" /></svg>');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% 2px;
}
#supportdetail ul.supportdetailcontent {
	margin-left: 0.2em;
}
#supportdetail ul.supportdetailcontent li {
	margin-bottom: 2px;
}
#supportdetail ul.supportdetailcontent li::before {
	content: "▶";
}
#supportdetail ul.supportdetailcontent li ul li {
	margin-left: 1em;
}
#supportdetail ul.supportdetailcontent li ul li::before {
	content: none;
}
#supportdetail ol.supportdetailbox li {
	margin-bottom: 24px;
}
#supportdetail ol.supportdetailbox li>ul {
	margin-bottom: 32px;
}
#supportdetail ol.supportdetailbox li>ul li {
	margin-left: 1em;
}
#supportdetail ol.supportdetailbox li figure img {
	box-sizing: border-box;
	box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.2);
	border: 1px solid #8f8f8f;
}
#supportdetail ol.supportdetailbox li table {
	width: 97%;
	margin: 0 auto;
}
#supportdetail ol.supportdetailbox li strong {
	font-weight: normal;
	color: #f00;
}
#supportdetail .sec_content strong {
	font-weight: normal;
	color: #f00;
}
#supportdetail dl.mailsetup {
	margin-bottom: 32px;
}
#supportdetail dl.mailsetup dd {
	margin-left: 1em;
	padding-left: 1em;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10" preserveAspectRatio="none"><path fill="%23000" d="M5.0,0.0 C7.761,0.0 10.0,2.238 10.0,5.0 C10.0,7.761 7.761,10.0 5.0,10.0 C2.238,10.0 0.0,7.761 0.0,5.0 C0.0,2.238 2.238,0.0 5.0,0.0 Z" /></svg>');
	background-position: top 0.5em left 0;
	background-size: 4px 4px;
	background-repeat: no-repeat;
}
#supportdetail .mailtrouble {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	padding: 24px;
	margin-top: 56px;
	box-sizing: border-box;
	border: 2px solid #333;
}
#supportdetail .mailtrouble p {
	margin-bottom: 0;
}
#supportdetail .mailtrouble p.mailtrouble_text {
	width: 60%;
	padding-right: 24px;
	box-sizing: border-box;
	font-size: 1.3rem;
	border-right: 2px solid #e8e8e8;
}
#supportdetail .mailtrouble p.mailtrouble_link {
	width: 40%;
	padding-top: 0.4em;
	padding-left: 24px;
	box-sizing: border-box;
	font-size: 1.6rem;
	text-align: center;
}
@media print, screen and (max-width: 600px) {
	#supportdetail ol.supportdetailbox li figure img {
		width: 100%;
	}
}
/*-----------------------------------------contact*/
/*フォームの見た目は共通要素にしてあります*/
/*------------------------------------------meetup*/
#meetup .s1 h3 {
	position: relative;
	padding-top: 32px;
	margin-bottom: 4px;
	font-size: 2.6rem;
	text-align: center;
	background: none;
}
#meetup .s1 h3::after {
	content: " ";
	display: block;
	width: 102px;
	height: 62px;
	position: absolute;
	top: 22px;
	left: 0;
	opacity: 0.2;
	z-index: -1;
	background: url(../img/txt_meetup.png) 0 0/100% auto no-repeat;
}
#meetup .s1 h3 span {
	color: #ffa000;
}
#meetup .s1 .mi_connect_input {
	padding: 48px 32px 64px;
	background: #e9eafd;
}
#meetup .s1 .mi_connect_input > p {
	text-align: center;
	color: #315ff2;
	font-size: 2.2rem;
	font-weight: bold;
}
#meetup .s1 .mi_connect_input_action {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
}
#meetup .s1 .mi_connect_input_action p {
	width: 100%;
	color: #315ff2;
	margin-bottom: 8px;
}
#meetup .s1 .mi_connect_input_action input[type=text] {
	width: 67%;
	padding: 16px;
	box-sizing: border-box;
	font-size: 2.0rem;
	border: 1px solid #315ff2;
}
#meetup .s1 .mi_connect_input_action button {
	width: 30.5%;
	padding: 18px;
	border: 0;
	border-radius: 64px;
	box-sizing: border-box;
	font-size: 1.8rem;
	color: #fff;
	font-weight: bold;
	background: #315ff2;
}
@media print, screen and (min-width: 600px) {
	#meetup .s1 h3::after {
		opacity: 1;
	}
	#meetup .s1 .mi_connect_input {
		padding: 48px 82px 64px;
	}
}
/*------------------------------------------remote*/
#remote .s1 img {
	display: block;
	width: 190px;
	height: auto;
	margin: 0 auto 16px;
}
#remote .s1 ul {
	margin-bottom: 16px;
}
#remote .s1 p strong {
	color: #d98f34;
}
#remote .s2 .remotecontact p {
	margin-bottom: -8px;
	font-size: 3.6rem;
	font-weight: bold;
}
#remote .s2 .remotecontact p span {
	color: #9da7ed;
	font-weight: normal;
	font-size: 3.0rem;
}
#remote .s2 .remotecontact dl {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
}
#remote .s2 .remotecontact dl dt {
	width: 6em;
}
#remote .s2 .remotecontact dl dd {
	width: calc(100% - 7em);
	font-size: 1.25rem;
}
#remote .s3 ul {
	margin-bottom: 16px;
}
#remote .s3 ul li,
#remote .s3 dl.attention dd {
	margin-left: 1em;
	text-indent: -1em;
}
#remote .s3 ul li::before,
#remote .s3 dl.attention dd::before {
	content: "※";
	font-weight: bold;
}
#remote .s3 ul li::before {
	color: #d98f34;
}
#remote .s3 dl.attention {
	margin-bottom: 16px;
	color: #d98f34;
}
#remote .s3 a[href*="visitsupport"] {
	display: block;
	position: relative;
	border: 1px solid #bcc3f8;
}
#remote .s3 a[href*="visitsupport"]:hover img {
	opacity: 0.8;
}
#remote .s3 a[href*="visitsupport"] img {
	width: 100%;
	height: auto;
}
#remote .s3 a[href*="visitsupport"] span {
	display: block;
	width: 100%;
	padding: 3px 30px 2px 0;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	bottom: 0;
	text-align: right;
	color: #fff;
	font-weight: bold;
	z-index: 110;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg  xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='13px' height='14px'%3E%3Cpath fill-rule='evenodd'  fill='rgb(255, 255, 255)' d='M12.999,7.034 L6.100,13.999 L5.001,12.889 L10.834,7.000 L5.001,1.110 L6.100,0.001 L12.999,6.966 L12.966,7.000 L12.999,7.034 ZM7.966,7.000 L7.999,7.034 L1.100,13.999 L0.001,12.889 L5.834,7.000 L0.001,1.110 L1.100,0.001 L7.999,6.966 L7.966,7.000 Z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px top 50%;
	background-size: auto 50%;
}
#remote .s3 a[href*="visitsupport"]:hover span {
	background-position: right 9px top 50%;
}
#remote .s3 a[href*="visitsupport"]::before {
	display: block;
	content: " ";
	width: 100%;
	height: 18%;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	bottom: 0;
	background: rgba(188, 195, 248, 1);
	mix-blend-mode: multiply;
	z-index: 100;
}
#remote .s4 .remoteterms {
	max-height: 300px;
	padding: 16px;
	margin-bottom: 16px;
	box-sizing: border-box;
	overflow: auto;
	border: 2px solid #f3f4ff;
	background: #f6f6ff;
}
#remote .s4 .remoteterms dl {
	padding: 24px 4px;
	border-top: 1px solid #9d9db3;
}
#remote .s4 .remoteterms dl dt {
	margin-bottom: 8px;
	font-weight: bold;
}
#remote .s4 .remoteterms dl dd {
	margin-bottom: 16px;
}
#remote .s4 .remoteterms dl dd:last-of-type {
	margin-bottom: 0;
}
#remote .s4 p.remotetooldl {
	padding: 14px 0;
	margin: 40px 0 0;
	background: #315ff2;
	text-align: center;
}
#remote .s4 p.remotetooldl a {
	position: relative;
	display: inline-block;
	height: 100%;
	padding-left: 58px;
	box-sizing: border-box;
	color: #fff;
	text-shadow: -1px -1px 0px #1342d9;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.3;
	text-align: left;
	text-decoration: none;
	background: url(
	../img/remote/ico_remotetool-dl.png) 0 50%/51px 51px no-repeat;
}
#remote .s4 p.remotetooldl a span {
	font-size: 2.0rem;
}
@media print, screen and (min-width: 600px) {
	#remote .s1 {
		margin-bottom: 0;
	}
	#remote .s1 img {
		float: left;
	}
	#remote .s1 p,
	#remote .s1 h3,
	#remote .s1 ul {
		margin-left: 206px;
	}
	#remote .s3 a[href*="visitsupport"] span {
		padding: 3px 30px 4px 0;
		background-position: right 10px top 50%;
	}
	#remote .s4 p.remotetooldl:hover {
		background-color: #406dfc;
	}
}
/*------------------------------------visitsupport*/
#visitsupport .s1 img {
	width: 100%;
	height: auto;
}
#visitsupport .s2 .price {
	padding: 24px 20px;
	margin-bottom: 16px;
	border: 1px solid #9da7ed;
}
#visitsupport .s2 .price p {
	padding-bottom: 4px;
	font-size: 3.0rem;
	font-weight: bold;
	text-align: center;
	border-bottom: 1px solid #e9eafd;
}
#visitsupport .s2 .price p span {
	font-size: 2.0rem;
}
#visitsupport .s2 .price ul li {
	margin-left: 1em;
	text-indent: -1em;
	color: #d98f34;
}
/*-----------------------------------------privacy*/
#privacy .s1 dd {
	margin-left: 1.4em;
	margin-bottom: 10px;
}
/*----------------------------------------mailstop*/
#mailstop .s1 .form > p {
	margin-bottom: 36px;
}
#mailstop .s1 form table {
	margin-bottom: 6px;
}
#mailstop .s1 form td input[type=email] {
	width: 100%;
	margin-bottom: 8px;
}
#mailstop .s1 form td p.attention {
	margin-bottom: 0;
}
@media print, screen and (min-width: 600px) {
	#mailstop main {
		width: 100%;
	}
	#mailstop .s1 .form {
		width: 75%;
		margin: 0 auto;
	}
}
/* youtube埋め込み用スタイル */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9アスペクト比 */
    height: 0;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}