/*2陸特サイト作成時に陸特用として独立　１陸技に変更があった場合は、こちらと統合すること*/

@charset "utf-8";
@import url("temp.css");

/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #444;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 18px;	/*文字サイズ*/
	line-height: 1.8;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {margin:0; list-style-type: none;}
li{margin:0;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 95%;border-spacing: 0; margin: 20px auto;}
iframe {width: 100%;}
sup{font-size:0.75em}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #2a5097;	/*リンクテキストの色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
	font-weight:bold;
}
a:hover {
	color: #5fdaaa;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}



/*inner共通
---------------------------------------------------------------------------*/
.inner {
	max-width: 1000px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding: 0 2%;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
/*	border-top: 4px solid #5fdaaa;	/*上の線の幅、線種、色*/
}
header .inner {
	height: 100px;	/*高さ*/
}
/*ロゴ画像*/
header #logo {
	width: 400px;	/*ロゴ画像の幅*/
	float: left;	/*左に回り込み*/
/*	margin-top: 20px;	/*ロゴの上にあける余白。上下のバランスをここで調整して下さい。*/
	margin: 14px 10px 10px 0;
}

header #dsklogo {
	width: 200px;	/*ロゴ画像の幅*/
	float: left;	/*左に回り込み*/
	margin-top: 20px;	/*ロゴの上にあける余白。上下のバランスをここで調整して下さい。*/
    margin-top: 33px;
    margin-left: 10px;
}

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
#contact,#contact2 {
	float: right;		/*右に回り込み*/
	margin-top: 23px;	/*ブロックの上にあける余白。上下のバランスをここで調整して下さい。*/
	width: 200px;		/*ブロック幅*/
	border-radius: 6px;	/*角丸のサイズ*/
	padding: 5px;		/*ボックス内の余白*/
/*	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	text-align: center;	/*文字をセンタリング*/
	background-color: #6CC19D;
}
/*TEL*/
.tel {
/*	letter-spacing: 0.2em;	/*文字間隔を広くする設定。通常がいいならこの行削除。*/
	font-size: 20px;		/*文字サイズを大きく*/
	font-weight:bold;
	color:#fff;
}
/*TELの受付時間の小文字部分*/
.tel span {
	font-size: 24px;	/*文字サイズを小さく*/
padding-right:10px;
}

#contact a {
color:#fff;
font-weight: normal;
}

#contact2 {
	margin: 40px auto;	
	float: none;
    width: 82%;
	}

#contact2 a {
color:#fff;
}

.scont{
border-radius: 6px;
    padding: 5px;
    text-align: center;
    background-color: #6CC19D;	
}

.scont a {
color:#fff;
}

.scont a:hover {
color:#d9efef;
}


/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;
	overflow: hidden;
	position: relative;z-index: 1;
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
	border-top: 1px solid #dcdcdc;		/*メニュー上の線の幅、線種、色*/
	border-bottom: 1px solid #dcdcdc;	/*メニュー下の線の幅、線種、色*/
/*	box-shadow: 0px 10px 40px rgba(0,0,0,0.1);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.2は透明度20%の事。*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 16.5%;	/*メニュー幅（100÷6個=16.6%）　もし４個にするなら100÷4=25%になる。*/
	border-left: 1px solid #dcdcdc;
	font-size: 0.85em;
}
#menubar li a {
	display:  block;
	text-decoration: none;
	text-align: center;
	line-height: 50px;	/*メニューの高さ*/
	padding-top: 4px;	/*下のブロックの「border-bottom」と「bottom」の数字と合わせる。*/
	color: #000;
	font-weight: normal;
}
/*下線のアニメーション設定*/
#menubar li::after {
	transition: 0.3s;	/*0.3秒かけてアニメーションを実行する。*/
	content: "";
	display: block;
	border-bottom: 4px solid #5fdaaa;	/*下線の幅、線種、色。上のブロックの「padding-top」と、下の行の「bottom」の数字と合わせる。*/
	position: relative;left: 0px;bottom: -4px;	/*bottomの数字は上のブロックの「padding-top」と、上の行の「border-bottom」の数字と合わせる。※マイナス記号は残したまま。*/
}
#menubar li.last {
	border-right: 1px solid #dcdcdc;
}

#menubar li:hover::after,#menubar li.current::after {
	bottom: 0px;
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*トップページメイン画像
---------------------------------------------------------------------------*/
#mainimg {
clear: both;
/*	box-shadow: 0px 10px 40px rgba(0,0,0,0.2);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.2は透明度20%の事。*/
}

.key {
    position: relative;
/*    top: 0;
    left: 0;*/
    max-width: 1000px;
	margin: 0 auto;
}

.key img {
    width: 100%;
    z-index: -3;/*１行コメントのアンダーラインのための措置*/
position: relative;/*１行コメントのアンダーラインのための措置*/
}

.key h1 {
    position: absolute;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3em;
top: 27%;
    left: 5%;
}

.key p {
    position: absolute;
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3em;
	bottom: 5%;
    left: 5%;
}

.animtxt {
  position: relative;
}
 
.animtxt::before {
  content:"";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #d70000;
  animation: underlineAnim 5s ease-in infinite;/*スピードを変えたい時は5ｓの部分の数値を変更*/
  z-index: -1;
}
 
@keyframes underlineAnim {
  0% {
    right: 100%;
  }
  100% {
    right: 0;
  }
}


.key .youtube {
    position: absolute;
/*    top: 15%;
    right: 30px;*/
    width: 40%;
    aspect-ratio: 16 / 9;
	margin-top: -27.5%;
/*	margin-top: -29%;*/
	margin-left: 53%;
}


.key .youtube iframe {
    width: 100%;
    height: 100%;
}


/*コンテンツ
---------------------------------------------------------------------------*/
.contents {
	clear: both;
	overflow: hidden;
	padding: 40px 0;	/*上下、左右に空けるボックス内の余白*/
}
/*コンテンツのh2タグの設定*/
.contents h1 {
	clear: both;
	font-size: 1.3em;	/*文字サイズ*/
	line-height: 1.4;	/*行間*/
	margin-bottom: 20px;
	padding: 12px 10px 8px;	/*上下、左右への余白*/
/*	background: linear-gradient(#fff, #eee);	/*グラデーション*/
	background-color: #fbfbfb;
	border-top: 4px solid #5fdaaa;	/*メニュー下の線の幅、線種、色*/
	border-bottom: 1px solid #c9c9c9;	/*メニュー下の線の幅、線種、色*/
	box-shadow: 0px 1px 3px rgba(0,0,0,0.15);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
/*	text-shadow: 0px 2px #fff;	/*テキストの影。右へ、下へ、色。*/
font-weight: bold;
}


.contents h1.none {
	background-color: #fff;
	border-top: none;	/*メニュー下の線の幅、線種、色*/
	border-bottom: none;	/*メニュー下の線の幅、線種、色*/
	box-shadow: none;	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
	padding: 0;	/*上下、左右への余白*/
}


.contents h2 {
	clear: both;
	font-size: 1.15em;	/*文字サイズ*/
	line-height: 1.4;	/*行間*/
	font-weight: bold;
	margin: 3em 0 1.5em;
	padding: 12px 10px 8px;;	/*上下、左右への余白*/
	background-color: #fbfbfb;
	border-top: 4px solid #5fdaaa;	/*メニュー下の線の幅、線種、色*/
	border-bottom: 1px solid #c9c9c9;	/*メニュー下の線の幅、線種、色*/
	box-shadow: 0px 1px 3px rgba(0,0,0,0.15);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
}

/*コンテンツのh2タグ内のspanタグ設定（色付き文字部分）*/
/*.contents h2 span {
	display: block;
	color: #5fdaaa;		/*文字色*/
/*	font-size: 12px;	/*文字サイズ*/
/*	letter-spacing: 0.1em;	/*文字間隔を少し広げる設定*/
/*	padding-left: 5px;
/*}

/*コンテンツのh3タグの設定*/
.contents h3 {
	margin: 25px 0 0;
	clear: both;
	font-size: 1.1em;
	font-weight: bold;
	color: #00995D;		/*文字色*/
}

/*太字のみタイトル*/
.contents h2.ttl {
background-color: #fff;
    border-top: none;
    border-bottom: none;
    box-shadow: none;
    margin: 0 0 0.8em;
    padding: 0;
}



/*コンテンツの段落タグ設定*/
/*.contents p {
	padding: 0px 0px 10px;	}/*上、左右、下への余白*/

.contents h2 + p {
	margin-top: -10px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
.main {
	overflow: hidden;
	float: right;	/*右に回り込み*/
	width: 72%;		/*幅*/
}

/*Serviceページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	position: relative;
	overflow: hidden;
	float: left;		/*左に回り込み*/
	width: 46%;			/*ボックス幅*/
	padding: 1%;		/*ボックス内の余白*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	margin: 0 0.8% 20px;		/*上、左右、下へのボックスの外に空けるスペース*/
	box-shadow: 0px 10px 40px rgba(0,0,0,0.2);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.2は透明度20%の事。*/
	-webkit-transition: 0.3s;	/*マウスオン時の移り変わるまでの時間設定。0.3秒。*/
	transition: 0.3s;			/*同上*/
}
.list a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	padding: 1%;	/*ボックス内の余白*/
	margin: -1%;
}
/*マウスオン時の背景色*/
.list:hover {
	box-shadow: none !important;	/*ボックスの影をなくす設定*/
}
/*リンクを貼った際に出る「→」マーク*/
.list a::before {
	content: "→";	/*出力する文字。変更しても構いませんが機種依存文字は化けるので使わないで下さい。*/
	font-size: 12px;	/*文字サイズ*/
	display: block;
	position: absolute;
	right: 10px;	/*ボックスの右から10pxの場所に配置*/
	bottom: 10px;	/*ボックスの下から10pxの場所に配置*/
	width: 30px;	/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;
	background: #ccc;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.2);	/*背景グラデーション。0,0,0は黒の事で、0.3は透明度30%の事。*/
	color: #fff;	/*文字色*/
	border-radius: 50%;	/*角丸のサイズ。50%にすると円になる。*/
}
/*マウスオン時の「→」マーク*/
.list a:hover::before {
	background: #5fdaaa;	/*背景色*/
}
/*ボックス内右側のテキストパーツ*/
.list .text {
	font-size: 13px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
	height: 7.5em;		/*高さ*/
	overflow: hidden;	/*高さを超えると非表示になる*/
}
/*ボックス内右側のテキストパーツ（商品ボックス１カラム時）*/
.list.c1 .text {
	height: auto;
	overflow: auto;
}
/*ボックス内のh4タグ設定*/
.list h4 {
	font-size: 16px;
	padding: 0px;
	color: #5fdaaa;	/*文字色*/
}
/*ボックス内のp(段落)タグ設定*/
.list p {
	padding: 0px !important;
}
/*ボックス内の画像*/
.list .img {
	float: left;	/*左に回り込み*/
	width: 100px;		/*幅*/
	height: 100px;		/*高さ*/
	margin-right: 10px;
}
/*各ボックスの設定（商品ボックス１カラム時）*/
.list.c1 {
	float: none;
	width: auto;
	margin: 0 0 20px;
}
/*ボックス内のh4タグ（商品ボックス１カラム時）*/
.list.c1 h4 {
	margin-bottom: 10px;
}
/*ボックス内の画像（商品ボックス１カラム時）*/
.list.c1 .img {
	width: 20%;		/*幅*/
	height: auto;	/*高さ*/
}
/*mainブロック内のボックス設定*/
.main .list {
	box-shadow: 0px 5px 10px rgba(0,0,0,0.1);	/*ボックスの影*/
}

/*subコンテンツ
---------------------------------------------------------------------------*/
/*subブロック*/
.sub {
	float: left;	/*左に回り込み*/
	width: 24%;		/*幅*/
}
/*subコンテンツ内のh2タグ設定*/
.sub h2 {
	margin-bottom: 0;
	box-shadow: none;
	font-size: 16px;	/*文字サイズ*/
	text-align: center;	/*内容をセンタリング*/
	padding: 15px;		/*ボックス内の余白*/
	border: 1px solid #dcdcdc;	/*メニューの線の幅、線種、色*/
}
/*subコンテンツ内の段落タグ設定*/
.sub p {
	margin: 0 !important;
	padding: 10px !important;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
.sub ul.submenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #dcdcdc;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
.sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 5px 10px;	/*メニュー内の余白。上下、左右への設定。*/
	border-bottom: solid 1px #dcdcdc;	/*下の線の線種、幅、色*/
	border-left: solid 1px #dcdcdc;		/*左の線の線種、幅、色*/
	border-right: solid 1px #dcdcdc;	/*右の線の線種、幅、色*/
}
/*マウスオン時の背景色*/
.sub ul.submenu li a:hover {
	background: #5fdaaa;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*h2直下にsubmenuが続いた場合のみ、submenuの上の線を消す設定*/
.sub h2 + ul.submenu {
	border-top: none;
}

/*subコンテンツ内のbox1
---------------------------------------------------------------------------*/
.sub .box1 {
	overflow: hidden;
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	border: solid 1px #dcdcdc;	/*線の線種、幅、色*/
	box-shadow: 0px 0px 20px rgba(0,0,0,0.1) inset;	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事で0.1は透明度10%の事。insetは内側への影、という意味。*/
}
/*h2直下にbox1が続いた場合のみ、box1の上の線を消す設定*/
.sub h2 + .box1 {
	border-top: none;
}
/*box1内のサブメニュー*/
.sub ul.submenu {
	margin-bottom: 0;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #5fdaaa;	/*背景色*/
	color: #fff;	/*文字色*/
	font-size: 85%;	/*文字サイズ*/
}
footer a {
	color: #fff;
}
footer a:hover {
	color: #fff;
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 20px 0;
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅。今回は５列作ったのでここの幅18%と下のpadding(合計の2%)でトータル20%になるよう設定。列に応じて調整して下さい。*/
	padding-right: 1%;
	padding-left: 1%;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #505050;
	border-top: 5px solid #5fdaaa;
	}
#copyright a {
	text-decoration: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding-left: 5px;
	margin-bottom: 30px;
	height: 160px;	/*高さ*/
	overflow: auto;	/*上で設定した高さを超えた場合にスクロールを出す設定。全部表示させていたいなら、この行と上の高さの行を削除する。*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	color: #666;
	letter-spacing: 0.1em;
	font-size: 0.9em;
    padding: 0.35em 0 0 0;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
    padding: 0.2em 0;
	border-bottom: 1px solid #eee;	/*下線の幅、線種、色*/
}


/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	margin: 0 auto 20px;
    width: 95%;
    table-layout: fixed;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #f6f5f2;	/*背景色*/
	font-size: 18px;	/*文字サイズ*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 30%;	/*幅*/
	text-align: center;	/*センタリング*/
/*	font-weight: normal;*/
	background-color: #edf5f2;
}

/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}

/*submitボタンの設定
---------------------------------------------------------------------------*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	padding: 10px 30px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border: none;
	border-radius: 30px;	/*角丸のサイズ*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
	font-size: 16px;	/*文字サイズ*/
	border: 1px solid #ccc;
}
/*マウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover{
	background: #fff;	/*背景色*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
/*	padding-top: 40px;*/
}
#pagetop a {
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
/*	background: #5fdaaa;	/*背景色*/
	background: #33bd878c;
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	width: 60px;	/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 10px;	/*角丸のサイズ*/
/*	border: 3px solid #fff;	/*枠線の幅、線種、色*/
/*	box-shadow: 0px 5px 15px rgba(0,0,0,0.2);	/*ボックスの影*/
	margin-bottom: 20px;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #fff;	/*背景色*/
	color: #5fdaaa;		/*文字色*/
}

/*一覧ページのボックス右下のオプションマーク
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
.option1 {
	font-size: 10px;
	color: #FFF;
	background: #F00;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	left: 0px;
	top: 0px;
	-webkit-transform: rotate(-45deg) translate(-35px);
	transform: rotate(-45deg) translate(-35px);
}
h2 span.option1 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	transform: none;
	display: inline-block;
}
.option2 {
	font-size: 10px;
	color: #FFF;
	background: #069;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	left: 0px;
	top: 0px;
	-webkit-transform: rotate(-45deg) translate(-35px);
	transform: rotate(-45deg) translate(-35px);
}
h2 span.option2 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	transform: none;
	display: inline-block;
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

.newicon_blink {
  animation: blinking 0.7s ease infinite alternate;
}

@keyframes blinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



/*サービスページ（listブロック）
---------------------------------------------------------------------------*/
/*listボックスを囲むボックス*/
.list-container {
	display: flex;					/*flexボックスを使う指定*/
	flex-wrap: wrap;				/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	flex-direction: row;			/*子要素を横並びにする*/
}

/*listボックス。１個あたりのボックスの指定です。*/
.plan {
	display: flex;					/*flexボックスを使う指定*/
	width: 27.5%;	/*ボックスの幅*/
	flex-direction: row;			/*子要素を横並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	background: #fff;				/*背景色。*/
	padding: 20px;					/*ボックス内の余白*/
	box-shadow: 2px 2px 5px #c9c9c9;	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.1は色が10%出た状態。*/
/*	border-radius: 10px;			/*角を丸くする指定*/
/*	overflow: hidden;*/
	margin: 20px 0;
}

/*2boxの場合*/
.plan2 {
	width: 42%;	/*ボックスの幅*/
}


/*listボックス内のfigure画像*/
.plan figure {
	margin: -20px -20px 0;	/*上の余白部分を埋めて画像を大きくするような指定です*/
}

/*listボックス内のh4タグ*/
h4 {
	margin: 10px 0 0;			/*上下、左右へのh4の外側に空けるスペース*/
	font-size: 1em;		/*文字サイズを120%に*/
	font-weight: bold;	/*hタグのデフォルトの太字を標準にする。太字がいいならこの１行を削除。*/
	color: #00995D;
}

/*listボックス内のpタグ*/
.plan p {
	margin: 0;
	font-size: 0.95em;	/*文字サイズを70%に。*/
}

/*IE対策*/
.plan div {
	min-height: 0%;
}


/*ボタン*/

#btn {
text-align: center;
margin:40px 0;
}

#btn .btn-b {
    display: inline-block;
/*    padding: 0.75em;*/
	 padding: 0.6em 0.75em 0.4em;
    color: #FFF;
    border-radius: 6px;
    font-weight: bold;
    /* line-height: 1.2; */
    text-align: center;
    width: 80%;
	clear: both;
}

#btn .btn-s {
    display: inline-block;
    width: 90%;
/*    padding: 0.75em;*/
    padding: 0.6em 0 0.55em 0;
    color: #FFF;
    border-radius: 6px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
	font-size: 1.15em;
}


#btn a {
    color: #FFF;
    text-decoration: none;
}

#btn .btn-ore {
	background-color: #D96523;
}

#btn .btn-gre {
	background-color: #6CC19D;
}


.btn-ppl {
	background-color: #a02B93;
/*	background-color: #53489d;*/
}



.fbox_1rkt{
	width: 46%;
    float: left;
    margin: 10px;
}

.fbox2{
	width: 47%;
    float: left;
    margin: 10px 0 10px 20px;
}

.yt-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.yt-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.kousi{
	width: 28%;
    float: left;
    margin: 0 10px;
}


/*フロー図
---------------------------------------------------------------------------*/
.flowwrap {
  margin: 0 auto;
  width: 80%;
}

.flowbox {
  display: flex; /*横並び*/
    margin: 2em 0;
	}

.flowbox figure {
  width: 80px; /*画像サイズ指定*/
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.flowbox figure img {
  width: 100%; /*画像サイズ指定*/
}

.flowtxt {
  margin: 0 0 0 30px;
  padding: 0;
  width:80%;
}

.stpttl {
  font-weight: bold;
  font-size: 1.3em;
  color: #00b274;
}

.flowtxt p {
  font-size: 0.95em;
	line-height: 1.5;
}

.flowwrap a {
  color: #444;;
}


/*トップページ特徴部分
---------------------------------------------------------------------------*/
.tktyo {
    display: flex;
    width: 27.5%;
    flex-direction: column;
    justify-content: space-between;
    /* overflow: hidden; */
    margin: 0;
}
.tkimg {
margin:0 0 10px;}

.tktyo p {
  font-size: 0.95em;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #e5e5e5;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mt20 {margin-top: 20px;}
.mt10 {margin-top: 10px;}
.ml1 {margin-left: 1em;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #5fdaaa;}
.bg1 {background: #f6f5f2;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 24px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.wb{font-weight:bold;}
.tore{color:#D96523;}
.tgre{color:#0c8f58;}
.tblu{color:#0b76c3;}
.tred{color:#ff0000}
.b{font-weight: bold;}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
 
.clearfix:before {
	content: "";
	display: block;
	clear: both;
}
 
.clearfix {
	display: block;
}

.sml{
	font-size: 0.9em;
	line-height:1.7em;
	}

.sml2{
	font-size: 0.8em;
	line-height:1.5em;
	}

.jisa{
	text-indent:-1em;
	padding-left:1em;
}

.jisa3{
	text-indent:-3em;
	padding-left:4em;
}


table th, table td {
    border: solid 1px #ccc;
    padding: 0.5em;
    line-height: 1.6em;
}


#nbtbl table {
	margin: 0 0 0 10px;
}

#nbtbl table th, #nbtbl table td {
	border: none;
	padding: 0.1em;
}

/*規約
---------------------------------------------------------------------------*/
#kiyaku {
	width:90%;
	font-size: 0.95em;
	line-height:1.6em;
	margin:0 auto;
}

#kiyaku h1{
	font-size: 1.1em;
 font-weight:bold;
text-align:center;
}

#kiyaku h2{
	font-size: 1em;
 margin:2em 0 0.25em;
 font-weight:bold;
}

iframe.kiyaku {
	height:600px;
	border:none;
}

/*フォーム
---------------------------------------------------------------------------*/
.frmtxt {
	width: 70%;
    padding: 0.5em;
	line-height: 2;
margin: 40px 0;
font-size: 1em;
}

.frmtxt2 {
/*    height: 2.4em;*/
	width: 89%;
    padding:10px;
	margin: 10px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 0 0 1px #ccc inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.frmtxt2bx {
	line-height: 1.5em;
    height: 12em;
}

/*FAQ
---------------------------------------------------------------------------*/


.faq1 dl+dl {
    margin-top: 1rem;
}

.faq1 dt,
.faq1 dd {
    padding: 10px;
}

.faq1 dl {
    position: relative;
    overflow: hidden;
}

.faq1 dl>input {
    display: none;
}

.faq1 dt {
    position: relative;
    z-index: 1;
    padding-right: 40px;
    background: #e9f7ec;
font-weight:bold;
}

.faq1 dd {
    position: absolute;
    visibility: hidden;
    transform: translateY(-100%);
    transition: .4s;
/*    background: #e3f6f5;*/
}

.faq1 dl>input:checked+label+dd {
    position: relative;
    visibility: visible;
    transform: translateY(0);
}

.faq1 dt::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    top: 50%;
    right: 10px;
    background: #333;
    transform: translateY(-50%);
}

.faq1 dt::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    width: 20px;
    height: 3px;
    background: #333;
    transition: .4s;
    transform: translateY(-50%) rotate(90deg);
}

.faq1 dl>input:checked+label>dt::after {
    transform: translateY(-50%) rotate(180deg);
}

.topcom{
	font-weight: bold;
	font-size: 1.4em;
	text-align: center;
	margin:25px auto 10px;
color: #cf0606;
max-width: 1000px;
/*    background-color: #fffcbe;*/
    background-color: #fcffbe;
    padding: 0.3em 0;
}

/*受講者の声--------------------------------------------------------------------------------------------*/
#voice2 h1 {
clear: both;
    font-size: 1.3em;
    line-height: 1.4;
    margin-bottom: 30px;
    padding: 0;
    background-color: #fff;
    border-top: none;
    border-bottom:none;
    box-shadow: none;
}

#voice2 h2 {
    clear: both;
    color: #38281b;
    border-bottom: none;
    border-top: none;
    padding: 0.4em 0.5em 0.3em;
    background: #e2f0ea;
    box-shadow: none;
    margin: 0 0 .8em;
    font-size: 1.4em;
    line-height: 1.3em;
}

#voice2 h3 {
color: #35956f;
    border: 1px solid #a1c5b5;
    border-left: solid 7px #a9d7c3;
    margin: 2em 0 1em;
    padding: .3em .5em .2em;
    font-size: 1.2em;
	font-weight:bold;
}

.maru {
position:relative;
/*color: #35956f;*/
margin: 1em 0 1em;
padding: 0 0 0 1.5em;
    margin: 1em 0;
    line-height: 1.5em;
}

.maru:before {
  position:absolute;
  display:inline-block;
  vertical-align: middle;
  content:'';
  width:0.8em;
  height: 0.8em;
  background: #c8cbca;
  border-radius: 50%;
    top: 0.3em;
    left: 0.25em;
}

#voice2 ul {
  counter-reset:list;
  list-style-type:none;
  padding:0;
}

#voice2 ul li {
    position: relative;
    padding: 0 0 0 1.4em;
    margin: 1em 0;
    font-size: 1em;
    line-height: 1.6em;
}

#voice2 ul li:before {
  position:absolute;
  display:inline-block;
  vertical-align: middle;
  content:'';
  width:0.8em;
  height: 0.8em;
/*  background: #c6ddd3;*/
    background: #c8cbca;
  border-radius: 50%;
  margin-right: 0.5em;
    top: 0.35em;
    left: 0.25em;
}

.vic-box{
	padding: 2em;
    border: 1px solid #c1bbb7;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.vic-txt_per{
	display: flex;
margin-bottom: 10px;
}

.vic-txt_per figure {
	width: 18%;
	margin-left: 2vw;
	align-items: flex-start;
}

.vic-txt_chld{
	flex: 1;
}

.vic-ttl {
	margin:1.5em 0;
	font-size: 1.1em;
}

.brn-ttl {
	color:#4c3421;
	font-weight:bold;
}

.redb{
	color:#da4040;
	font-weight:bold;
}

.vt {
	padding-left:0.5em;
}

.ud{
	background: linear-gradient(transparent 70%, #fffaa5 70%);
}


.fbox div{
  background: skyblue;
  margin: 10px;
  width: 200px;
  height: 100px;
}

.fbox{
  display:flex;
}

.elps{
  margin: 10px;
  width: 100px;
  height: 150px;
  border-radius: 50%;
  background: #43A047;
}

@media screen and (max-width:480px){

.vic-box {
padding: 1.5em;
margin-bottom: 1.5rem;
}

#voice2 ul li {
font-size: 1.1em;
}

.vic-txt_per figure {
	    width: 25%;
}

}


/*----------------*/



/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:820px){

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	width: auto;
}

#dsklogo {
	display: none;
}


/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	border-bottom: 1px solid #dcdcdc;	/*上の線の幅、線種、色*/
}



/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体を非表示にする*/
#contact {
/*	display: none;*/
float:left;
/*margin-left:30px;*/
margin-top: 28x;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: left;	/*左に回り込み*/
	width: 50%;		/*メニュー幅*/
background-color: #fff;
}
#menubar-s li a {
	display: block;
	text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	padding: 15px 0;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px solid #dcdcdc;	/*下線の幅、線種、色*/
	border-right: 1px solid #dcdcdc;	/*右線の幅、線種、色*/
font-weight: normal;
 color:#222;
}
/*偶数番目のメニューの右側の線を消す*/
#menubar-s li:nth-child(even) a {
	border-right: none;
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 20px;		/*上から28pxの場所に配置*/
	right: 3%;		/*右から2%の場所に配置*/
	width: 30px;	/*幅*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
	background: #fff;		/*背景色*/
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #000;	/*枠線の幅、線種、色*/
	margin-bottom: 7px;			/*バー同士の余白*/
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
.main, .sub {
	float: none;
	width: auto;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
.sub ul.submenu li {
	width: 50%;		/*半分の幅にする*/
	float: left;	/*左に回り込み*/
}
/*偶数番目のメニューの左のラインを消す設定*/
.sub ul.submenu li:nth-child(even) a {
	border-left: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*アイコン*/
section#new h2::before {
		float: right;	/*右に回り込み*/
/*		margin-top: 4px;*/
		font-size: 19px;	/*文字サイズ*/
		background: #fff;	/*背景色*/
		border-radius: 50%;	/*角丸のサイズ*/
		width: 25px;		/*幅*/
		line-height: 25px;	/*高さ*/
		text-align: center;	/*文字をセンタリング*/
		border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
/*		box-shadow: 1px 1px 6px rgba(0,0,0,0.1) inset;	/*内側への影*/
}
/*プラスアイコンの文字*/
section#new h2.close::before {
		content: "＋";
}
/*マイナスアイコンの文字*/
section#new h2.open::before {
		content: "−";
}

/*その他
---------------------------------------------------------------------------*/
body.s-n .sub,body.s-n #footermenu,.m-n {display: none;}
.fl-half{float:left;width:45%;margin-left:3%;}
.sh {display:block;}
.pc {display:none;}



/*サービスページ（listブロック）
---------------------------------------------------------------------------*/
/*listボックスを囲むボックス*/
/*.list-container {
	flex-direction: column;	}/*子要素を横並びにする*/


/*listボックス。１個あたりのボックスの指定です。*/
.plan {
	width: 95%;	/*ボックスの幅*/
}



.fbox {
    width: 95%;
}

.fbox_1rkt {
    width: 95%;
}


.stepbar {
    width: 90%;
}

.key h1 {
/*    top: 20%;*/
    top: 23%;
/*font-size: 26px;*/
font-size: 2em;
}


}/*800以下ここまで


/*画面幅700px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:700px){

/*Serviceページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	float: none;		/*回り込みのリセット*/
	width: auto;		/*ボックス幅*/
	margin: 0 0 20px;	/*上、左右、下へのボックスの外に空けるスペース*/
}
/*ボックス内の画像*/
.list .img {
	width: 20%;		/*幅*/
	height: auto;
}

#contact {
	display: none;
}

.flowwrap {
  width: 95%;
}



}/*700以下ここまで



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 14px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	width: 250px;	/*ロゴ画像の幅*/
/*	margin: 15px 10px 10px 0; /*ロゴの上にあける余白*/
}
header .inner {
    height: 76px;
}

/*コンテンツ
---------------------------------------------------------------------------*/
.contents {
	padding: 20px 0;	/*上下、左右に空けるボックス内の余白*/
}
/*コンテンツのh2タグの設定*/
.contents h2 {
	font-size: 16px;	/*文字サイズ*/
	padding: 10px 10px;	/*上下、左右への余白*/
}
/*コンテンツの段落タグ設定*/
/*.contents p {
	padding: 0px 10px 15px;	}/*上、左右、下への余白*/


/*Serviceページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	margin: 0;
	box-shadow: none !important;
	border: none;
	border-bottom: 1px solid #dcdcdc;	/*下線の幅、線種、色*/
}
/*１つ目のメニュー*/
.list:first-of-type {
	border-top: 1px solid #dcdcdc;
}
/*リンクを貼った際に出る「→」マーク*/
.list a::before {
	right: 0px;	/*ボックスの右から0pxの場所に配置*/
	width: 20px;	/*幅*/
	line-height: 20px;	/*高さ*/
}
/*ボックス内のp(段落)タグ設定*/
.list a p {
	padding-right: 40px !important;
}


.list-container {
	flex-direction: column;	
width: 92%;	}

.tktyo {
	width: 100%;
 margin:0 0 20px;
}

.tkimg {
	max-width: 75%;
	margin: 0 auto 5px;
}

.tktyo p {
    font-size: 1.25em;
}

.plan p {
    font-size: 1.25em;
}

h4 {
    font-size: 1.25em;
}

#btn a {
font-size:1.15em;
}

.inner p {
    font-size: 1.1em;
}


/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
.sub ul.submenu li {
	width: auto;
	float: none;
}
/*偶数番目のメニューの左のラインを戻す設定*/
.sub ul.submenu li:nth-child(even) a {
	border-left: 1px solid #ccc;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
.sub ul.submenu li a {
	padding: 10px;	/*メニュー内の余白*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
	width: auto;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}
.ta1  {
	border: none;
}

/*tr,th,td{
        display: block;
    }*/

/*フロー図
---------------------------------------------------------------------------*/
.flowwrap {
  width: 95%;
}


.flowbox figure {
    width: 60px;
}

.flowtxt {
margin: 0 0 0 20px;
  padding: 0;
  width:90%;
}

.flowtxt p {
  font-size: 1em;
}

.key h1 {
    font-size: 17px;
}

.topcom {
font-size: 1em;
}	

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.fl-half{float:none;width:100%;margin-left:0;}
.big1 {font-size: 1.3em;}

}
