@charset "utf-8";

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

/*全体の設定
---------------------------------------------------------------------------*/
body,html {width: 100%;height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	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 {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;		/*リンクテキストの色*/
	transition: 0.4s;	/*マウスオン時の移り変わるまでの時間設定。0.4秒。*/
}
a:hover {
	color: #009DBF;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*トップページのメインイメージ
---------------------------------------------------------------------------*/
#mainimg {
	width: 100%;	/*画像の幅*/
	position: relative;
}
/*メインイメージ上の新作メニューバナー*/
#message {
	position: absolute;
	right: 3%;		/*#メインイメージに対して右から3%の場所に配置*/
	bottom: 40px;	/*#メインイメージに対して下から40pxの場所に配置*/
	background: #ccc;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.2);	/*背景色。255,255,255は白の事で0.2は20%色がついた状態の事。*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	width: 50%;	/*バナーの幅*/
	padding: 1%;	/*バナー内の余白。一番外側のボーダーと、バナー画像との余白部分です。上のbackgroudが適用されます。*/
}

/*ヘッダー（左側のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #fff url(../images/header_bg.jpg) no-repeat center bottom / 100%;	/*背景色、背景画像の読み込み、リピートせず、中央、下側に配置。幅100%。*/
	width: 20%;	/*ヘッダー幅。イメージ的には左ブロック幅と考えて下さい。*/
	height: 100%;	/*高さ*/
	position: fixed;	/*画面に対して固定表示*/
	left: 5%;			/*ウィンドウに対して左から5%の場所に配置*/
	top: 0px;			/*ウィンドウに対して上から0pxの場所に配置*/
	border-top: 5px solid #009DBF;	/*上の線の幅、線種、色*/
	overflow: auto;	/*ブラウザの高さが狭いとヘッダーが途中で切れて見れなくなる事があるので、その場合にスクロールバーを出す設定*/
	box-shadow: 0px 0px 5px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事で0.2は20%だけ色がついた状態の事。*/
}
/*ロゴ*/
header #logo {
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.9);	/*背景色。255,255,255は白の事で、0.9は90%色がついた状態の事。*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.9);	/*背景色。255,255,255は白の事で、0.9は90%色がついた状態の事。*/
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
	font-size: 20px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
	line-height:1.4;
}
#menubar li a {
	display:  block;text-decoration: none;
	text-align: center;	/*文字を中央よせ*/
	padding: 15px 10px;		/*メニュー内の余白*/
	color: #009DBF;		/*文字色*/
	font-size: 18px;
}
/*説明表記（飾り文字）*/
#menubar li a span {
	display: block;
	font-size: 14px;	/*文字サイズ*/
	color: #999;	/*文字色*/
	letter-spacing: 0.1em;
}
/*マウスオン時と、現在表示中メニューの設定*/
#menubar li a:hover, #menubar li.current a {
	background: #009DBF;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*マウスオン時と、現在表示中メニューの飾り文字の設定*/
#menubar li a:hover span, #menubar li.current a span {
	color: #fff;
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}


/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ*/
.contentstop {
	overflow: hidden;
	padding:  41.666666667% 4% 100px 30%;	/*ボックス内の余白。上、右、下、左。*/
}

.contents {
	overflow: hidden;
	padding:  0 4% 100px 30%;	/*ボックス内の余白。上、右、下、左。*/
}
/*.bg1背景色*/
.bg1 {
	background: #fbfaf2;
} 
/*.bg2背景色*/
.bg2 {
	background: #cecfbc;
} 
/*.bg3背景色*/
.bg3 {
	background: #c1b7b7;
} 
/*h2見出し*/
.contents h2,
.contentstop h2{
	clear: both;
	font-size: 40px;	/*文字サイズ*/
	margin-bottom: 40px;	/*下に空ける余白*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	line-height: 1.5;	/*行間*/
	color: #333;	/*文字色*/
	background: url(../images/line1.png) no-repeat center top/100%;	/*見出しの上に入っている装飾。*/
	padding-top: 50px;	/*見出しの上の装飾分、余白をとる*/
}
/*h2見出し内のspanタグ*/
.contents h2 span,
.contentstop h2 span{
	display: block;
	font-size: 15px;	/*文字サイズ*/
}
/*h3見出し*/
.contents h3,
.contentstop h3{
	clear: both;
	margin-bottom: 20px;	/*下に空ける余白*/
	letter-spacing: 0.1em;	/*文字間隔を広くとる設定*/
	background: #fdf58c;	/*255,255,255は白の事で0.3は30%色がついた状態の事。*/
	text-align: center;		/*文字を中央に*/
	border-radius: 30px;	/*角丸のサイズ。大きめに設定しておけばOK。*/
	padding: 10px 20px;		/*上下、左右への余白*/
	font-size: 24px;
}
/*段落タグ*/
.contents p,
.contentstop p{
	padding: 0 30px 20px;		/*上、左右、下への余白*/
}
/*段落タグが続いた場合の設定*/
.contents p + p,
.contentstop p + p{
	margin-top: -5px;	/*続いた段落タグを少し上に詰める設定*/
}
/*sectionが続いた場合の設定*/
.contents section + section,
.contentstop section + section{
	margin-top: 50px;
}

/*メニューページの設定（menu.html）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	position: relative;overflow: hidden;
	float: left;	/*左に回り込み*/
	width: 20%;		/*ボックスの幅*/
	margin: 0 2.5% 20px;	/*上、左右、下へのボックス内の余白*/
	height: 370px;			/*ボックスの高さ。*/
}
/*写真の設定*/
.list figure img {
	display: block;
	border-radius: 50%;		/*円形にする設定。30pxなどにすると角丸になります。この行を削除すればそのままの画像が表示されます。*/
	margin-bottom: 10px;	/*画像の下に空けるスペース*/
}
/*写真の右上にある金額*/
.list figure span {
	display: block;text-align: center;
	width: 50px;	/*幅*/
	line-height: 50px;	/*高さ*/
	border-radius: 50%;	/*円形にする設定*/
	font-size: 12px;	/*文字サイズ*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒の事で0.7は70%色がついた状態の事。*/
	position: absolute;
	right: 0px;	/*listブロックに対して右から0pxの場所に配置*/
	top: 5px;	/*listブロックに対して上から5pxの場所に配置*/
	color: #fff;	/*文字色*/
}
/*ボックス内のh4見出し*/
.list h4 {
	text-align: center;	/*文字をセンタリング*/
	border-bottom: 2px dotted #fff;	/*下線の幅、線種、色*/
	margin-bottom: 10px;	/*見出しの下に空けるスペース*/
	font-size: 20px;		/*文字サイズ*/
}
/*ボックス内の段落タグ*/
.list p {
	padding: 0!important;
	line-height: 1.5;	/*行間を少し狭くする*/
}

/*inviewのスタイル
---------------------------------------------------------------------------*/
/*共通設定（待機中）*/
.up, .left, .right, .transform1, .transform2 {
	opacity: 0;		/*透明度（透明の状態）*/
}
/*共通設定（要素が見えたら実行するアクション）*/
.upstyle, .leftstyle, .rightstyle, .transform1style, .transform2style {
	opacity: 1;		/*透明度（色が100%出た状態）*/
	transition: 0.5s 0.5s;	/*0.5sはアニメーションの実行時間0.5秒。0.5sは0.5秒遅れてスタートする指定。*/
}
/*upスタイル。下から上にフェードインしてくるスタイル（待機中）*/
.up {
	bottom: -50px;	/*基準値の下50pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.upstyle {
	bottom: 0px;	/*基準値まで戻す*/
}
/*leftスタイル。左からフェードインしてくるスタイル（待機中）*/
.left {
	left: -100px;	/*基準値より左に100pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.leftstyle {
	left: 0px;		/*基準値まで戻す*/
}
/*rightスタイル。右からフェードインしてくるスタイル（待機中）*/
.right {
	right: -100px;	/*基準値より右に100pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.rightstyle {
	right: 0px;		/*基準値まで戻す*/
}
/*transform1スタイル。その場で回転するスタイル（待機中）*/
.transform1 {
	transform: scaleX(0);	/*幅を0%でスタート*/
}
/*要素が見えたら実行するアクション*/
.transform1style {
	transform: scaleX(1);	/*幅を100%に戻す*/
}
/*transform2スタイル。倒れた状態から起き上がるスタイル（待機中）*/
.transform2 {
	transform: perspective(400px) rotateX(100deg);
}
/*要素が見えたら実行するアクション*/
.transform2style {
	transform: perspective(0px) rotateX(0deg);
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: right;	/*文字を右寄せ*/
	padding: 20px 80px;	/*上下、左右へのボックス内の余白*/
}
footer a {text-decoration: none;}
footer .pr {display: block;}

/*「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	padding: 0 30px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;		/*幅*/
	letter-spacing: 0.1em;
	padding: 10px;
}
/*記事設定*/
#new dd {
	padding: 10px;
	border-bottom: 1px dotted #999;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #eee;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;	/*背景色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #eee;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 250px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}

/*ta2設定*/
.ta2 {
	width: 100%;
	margin: 0 auto;
}
.ta2, .ta2 th {
	padding: 10px 0px 20px;
	word-break: break-all;
}
.ta2 td {
    padding: 10px 50px 20px 0;
}
/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi {
	width: auto;
}
/*ta1の左側ボックス*/
.ta2 th {
    width: 40%;
    text-align: center;
    font-weight: normal;
    padding-left: 50px;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta2 th img {
	width: 100%;
}

/*ページの上部に戻る「↑」ボタン
---------------------------------------------------------------------------*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*通常時のボタンは非表示*/
body .nav-fix-pos-pagetop a {
	display: none;
}
/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;	/*ボタンの幅*/
	line-height: 50px;	/*ボタンの高さ*/
	z-index: 100;
	position: fixed;
	bottom: 15px;
    right: 1.5%;		/*ウィンドウの右から1%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は60%色がついた状態。*/
	color: #fff;	/*文字色*/
	border-radius: 50%;	/*角丸指定。50%にすると円形になる。四角形がいいならこの１行削除。*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時の背景色*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;
}

/*トップページの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;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #c3b5a2;background: rgba(0,0,0,0.1);padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.p0 {padding:0 !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #009DBF !important;
    font-size: 20px;
    border-bottom: 1px dotted #009DBF;}
.color2, .color2 a {color: #ff0000 !important;
    font-size: 24px;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.w50 {overflow: hidden;width: 50%;}
.fl {float: left;}
.fr {float: right;}
.big1 {font-size: 50px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}



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

/*トップページのメインイメージ
---------------------------------------------------------------------------*/
/*メインイメージ上の新作メニューバナー*/
#message {
	width: 90%;	/*バナーの幅*/
	bottom: 10px;
}

/*ヘッダー（左側のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: none;
	width: 60%;
	height: auto;
	position: absolute;
	border-top: none;
	box-shadow: none;
	left: 3%;
}
/*ロゴ*/
header #logo {
	background: transparent;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。
透明(opacity: 0;)から色をつける(opacity: 1;)までの指定。*/
@keyframes menubar {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: fixed;z-index: 50;
	top: 0px;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: menubar;		/*上のkeyframesの名前*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
    display: block;
    text-decoration: none;
    padding: 10px 15px;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 18px;
}
/*説明表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 12px;	/*文字サイズ*/
	color: #999;	/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 50;
	top: 10px;		/*上から10pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #666 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #666 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ*/
.contents, 
.contentstop{
	padding: 150px 4% 100px 4%;	/*ボックス内の余白。上、右、下、左。*/
}
/*コンテンツ（※トップページのみ）*/ 
.top .contentstop {
	padding: 41.666666667% 4% 100px 4%;	/*ボックス内の余白。上、右、下、左。*/
}

/*メニューページの設定（menu.html）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	width: 40%;			/*ボックスの幅*/
	margin: 0 5% 20px;	/*上、左右、下へのボックス内の余白*/
	height: 400px;		/*ボックスの高さ。*/
}
/*写真の右上にある金額*/
.list figure span {
	width: 70px;	/*幅*/
	line-height: 70px;	/*高さ*/
	font-size: 14px;	/*文字サイズ*/
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}
.big1 {font-size: 24px;}
.w50 {overflow: hidden;width: auto;}
.fl {float: none;}
.fr {float: none;}
.sh {display:block;}
.pc {display:none;}

/*メニューをページ下部に固定
---------------------------------------------------------------------------*/


#sp-fixed-menu{
   position: fixed;
   width: 100%;
   bottom: 0px;
   font-size: 0;
   opacity: 0.9;
   z-index: 99;
}

/*メニューを横並びにする*/
#sp-fixed-menu ul{
   display: flex;
   list-style: none;
   padding:0;
   margin:0;
   width:100%;
}

#sp-fixed-menu li{
   justify-content: center;
   align-items: center;
   width: 50%;
   padding:0;
   margin:0;
   font-size: 14px;
   border-right: 1px solid #fff;
}

/*左側メニューを緑色に*/
#sp-fixed-menu li:first-child{
   background: #38b435;
}

/*左側メニューをオレンジ色に*/
#sp-fixed-menu li:last-child{
   background: #f3a324;
}

/*ボタンを調整*/
#sp-fixed-menu li a{
   color: #fff;
   text-align: center;
   display:block;
   width: 100%;
   padding: 10px 0;
   text-decoration: none;
   font-size: 120%;
   line-height: 1.4;
}

.ta1 th {
    width: 20%;
}

.ta2 th,
.ta2 td{
    width: 100%;
	display: block;
	padding: 0px 0px 10px!important;
}
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	bottom: 75px;
}


}



/*画面を横向きにした場合の高さが500px以下の場合の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (orientation: landscape) and (max-height:500px){

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li a {
	float: left;		/*左に回り込み*/
	width: 40%;			/*幅*/
	margin-left: 4%;	/*メニューの左側に空けるスペース*/
	line-height: 1.2;	/*行間*/
}

}



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
    font-size: 16px;
    line-height: 1.8;
}

/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ*/
.contents,
.contentstop {
	padding: 20px 4% 50px 4%;	/*ボックス内の余白。上、右、下、左。*/
}
/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツ*/
.contents,
.contentstop{
	padding: 70px 4% 30px 4%;	/*ボックス内の余白。上、右、下、左。*/
}
/*コンテンツ（※トップページのみ）*/
.top .contentstop {
	padding: 41.666666667% 4% 30px 4%;	/*ボックス内の余白。上、右、下、左。*/
}
/*h2見出し*/
.contents h2,
.contentstop h2{
	font-size: 24px;	/*文字サイズ*/
	margin-bottom: 20px;	/*下に空ける余白*/
	letter-spacing: normal;
	padding-top: 20px;	/*見出しの上の装飾分、余白をとる*/
}
/*h2見出し内のspanタグ*/
.contents h2 span,
.contentstop h2 span{
	font-size: 10px;	/*文字サイズ*/
}
/*段落タグ*/
.contents p,
.contentstop p{
	padding: 0 0 20px;		/*上、左右、下への余白*/
}

/*メニューページの設定（menu.html）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	float: none;
	width: auto;
	height: auto;
	margin: 0;
	margin-bottom: 20px;
	overflow: hidden;
}
/*写真の設定*/
.list figure img {
	float: left;	/*左に回り込み*/
	width: 30%;		/*写真の幅*/
}
/*写真の右上にある金額*/
.list figure span {
	width: 40px;	/*幅*/
	line-height: 40px;	/*高さ*/
	font-size: 10px;	/*文字サイズ*/
	left: 0px;	/*listブロックに対して左から0pxの場所に配置*/
	top: 0px;	/*listブロックに対して上から0pxの場所に配置*/
}
/*ボックス内のh4見出しと段落タグ*/
.list h4, .list p {
	text-align: left;	/*文字を左寄せ*/
	margin-left: 35%;	/*左に空けるスペース。上の写真の幅をみて調整して下さい。*/
}

/*「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	padding: 0;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
	padding: 10px;
}
/*記事設定*/
#new dd {
	margin-bottom: 8px;
	padding: 0 10px 10px;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 16px;}

}
.button01{
  margin-top: 50px;
}

.button01 a {
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 1em 2em;
  color: #333;
  font-size: 16px;
  background-color: #eeeeee;
  transition: 0.3s;
  text-decoration: none;
  text-decoration: none;
  border: 1px solid #cccccc;
}

.button01 a:hover {
  text-decoration: none;
  background-color: #fdf58c;
}

.under01 {
  border-bottom: dotted 2px #ff0000;
  font-weight:bold;
}


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

.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa .cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 0 1em 0;
	color: #1b2538;
}
.cp_qa .cp_actab input {
	position: absolute;
	opacity: 0;
}
/* 質問 */
.cp_qa .cp_actab label {
	line-height: 1.6em;
	position: relative;
	display: block;
	margin: 0 0 0 0;
	padding: 1em 2em 1em 2.5em;
	cursor: pointer;
	text-indent: 1em;
	border-radius: 0.5em;
	background: rgba(27,37,56,0.1);
}
.cp_qa .cp_actab label::before {
	font-family: serif;
	font-size: 1.5em;
	margin-left: -1em;
	padding-right: 0.5em;
	content: 'Q';
}
.cp_qa .cp_actab label:hover {
	transition: all 0.3s;
	color: #00838f;
}
/* --質問の＋アイコン */
.cp_qa .cp_actab label::after {
	font-size: 1.7em;
	font-weight: bold;
	line-height: 2em;
	position: absolute;
	top: 0;
	right: 0;
	content: '+';
	display: inline-block;
	width: 2em;
	height: 2em;
	-webkit-transition: transform 0.4s;
	        transition: transform 0.4s;
}
/* 答え */
.cp_qa .cp_actab .cp_actab-content {
	position: relative;
	overflow: hidden;
	max-height: 0;
	padding: 0 0 0 2.5em;
	-webkit-transition: max-height 0.2s;
	        transition: max-height 0.2s;
	border-radius: 0 0 0.5em 0.5em;
}
.cp_qa .cp_actab .cp_actab-content::before {
	font-family: serif;
	font-size: 1.5em;
	position: absolute;
    margin: 0.3em 0 0 0em;
	padding: 0;
	content: 'A';
}
.cp_qa .cp_actab .cp_actab-content p {
	margin: 1em 1em 1em 0;
}
/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa .cp_actab input:checked ~ .cp_actab-content {
	max-height: 40em;
	border: 10px solid rgba(27,37,56,0.1);
}
/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab input:checked ~ label {
	color: #00838f;
	border-radius: 0.5em 0.5em 0 0;
}
/* 質問をクリックした時の+の動き */
.cp_qa .cp_actab input[type=checkbox]:checked + label::after {
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}


/*料金表
---------------------------------------------------------------------------*/

.wrap table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

.wrap table tr {
  padding: .35em;
  border: 1px solid #eee;
  background-color: #fff;
}
.wrap table tr:last-child{
}
.wrap table th{
  padding: 2em;
  border-right: 1px solid #fff;
}
.wrap table td {
  padding: 2em .5em;
  border-right: 1px solid #eee;
  text-align: center;
}
.wrap table th {
  font-size: .85em;
}
.wrap table thead tr{
  background-color: #50535d;
  color:#fff;
}
.wrap table tbody th {
    border-right: 1px solid #eee;
}
th.non {
    border-right: none;
}
.txt{
   text-align: left;
   font-size: .85em;
}
.price{
  color: #000;
  font-weight: bold;
  font-size:1.3em
}
.price span {
    font-size: .6em;
}
.red_bk{
  background:#e81010
}
.red-txt{
  color:#e81010
}
.btn{
  background:#e81010;
  border: 1px solid #e81010;
  color:#fff;
  padding: 1em;
  border-radius:20px;
  display:block;
  text-decoration:none;
  font-size:.8em
}
.btn:hover{
  background: #fff;
  border: 2px solid #e81010;
  color: #e81010;
  transition: .2s;
}
.wrap table .btnarea td {
  padding: .2em .5em;
  border-right:none;
}

.btnarea {
  background-color: #fbfaf2!important;
  height: 100px;
}
.wrap p {
  line-height: 1.8;
  padding-top:20px;
  text-align: left;
}

@media screen and (max-width: 600px) {
  .wrap{
     overflow-x: scroll;
	 margin-top:0!important
  }
}

p.example01 {
    font-size: 250%;
    font-weight: bold;
    color: #009dbf;;
    text-align: center;
    padding: 0 20px 20px;
    line-height: 1.6;
}

.btncontact {
text-align: center;
}


a.btn_02 {
    display: inline-block;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #009dbf;
    box-sizing: border-box;
    width: 90%;
    padding: 20px 6%;
    color: #009dbf;
    font-size: 20px;
    text-align: center; 
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
}
a.btn_02:hover {
  background: #009dbf;
  color: #fff;
}


.slider_fade {
    position: relative;
}

.slider_fade > li {
    position: absolute;
    list-style: none;
    visibility: hidden;
    animation: anime_slider_fade 12s 0s infinite;
}
.slider_fade > li:nth-of-type(2) {
    animation-delay: 4s;
}
.slider_fade > li:nth-of-type(3) {
    animation-delay: 8s;
}

@keyframes anime_slider_fade {
    0% {
        visibility: visible;
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    33.3% {
        opacity: 1;
    }
    48.3% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}


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

.color1, .color1 a {
    font-size: 18px;
}
footer {
    text-align: center;
    padding: 20px 80px 80px;
    white-space: nowrap;
}
.table_kakoi li {
    font-size: 16px!important;
}

.table_kakoi table,
.table_kakoi table th,
.table_kakoi table td{
	display: block;
	width: 100%!important;
}

.table_kakoi table td{
	padding-right: 0px;
}
.pc {
    display: none;
}

/* 質問 */
.cp_qa .cp_actab label {
	padding: 1em 3em 1em 1.5em!important;
}
.cp_qa .cp_actab label::after {
    top: 5%!important;
}
.cp_qa .cp_actab .cp_actab-content::before {
    margin: 0.3em 0 0 -22px!important;
}
}

@media screen and (min-width: 600px) {

.sp {
    display: none;
}
}

@media screen and (max-width: 1024px) {
.contents h3,
.contentstop h3{
    font-size: 18px;
	line-height: 1.4;
}
#menubar li a {
    font-size: 16px;
}
}

@media (max-width: 1024px) and (min-width: 768px) {
.contents h2,
.contentstop h2{
    font-size: 30px;
}
}


.table_kakoi {
    margin-bottom: 10px;
    border: 5px #eeeeee double;
    background-color: #fff;
    padding: 20px;
    display: inline-block;
    font-size: 110%;
}
.table_kakoi ol{
	/*要素の連番（カウンタ）の値をリセットする*/
	counter-reset: li;
	padding-left: 10px;
    padding-top: 15px;
	padding-bottom: 0;
}
.table_kakoi li{
	position: relative;
	font-size: 20px;
	padding-left: 30px;
	margin: 0 0 10px;
	/*デフォルトのスタイルを非表示にする*/
	list-style: none;
}
.table_kakoi li:before{
	position: absolute;
	top: 0;
	left: 0;
	font-weight: bold;
	color: #f00;
	/*要素の連番（カウンタ）の値を進める*/
	counter-increment: li;
	/*自動連番を付ける関数*/
	content: counter(li)'.';
}

.table_kakoi table th{
	width: 250px;
}
.table_kakoi table td{
	padding-right: 20px;
}

.table_hikaku {
    margin-bottom: 10px;
    border: 5px #eeeeee double;
    background-color: #fff;
    padding: 20px 0;
    display: inline-block;
    font-size: 110%;
    width: 98%;
}

.table_hikaku table th{
	width: 50%;

}
.table_hikaku table td{
	padding-right: 0px;
}

div.vid_contents {
    width: 90%;
    text-align: center;
    margin: 0 auto;
    padding: 4% 0% 4% 0%;
}
video.vid_main {
width: 100%;
max-width: 920px;/*PC版での最大幅*/
}


.yohaku{
	padding: 30px 0;
}


/*ボックスレスポンシブ contact*/
.boxres_contact {
	width: 100%;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 70px;
	margin-left: auto;
}
.boxres_contact img {
	width: 46%;
	float: left;
	padding-top: 0px;
	padding-right: 2%;
	padding-bottom: 20px;
	padding-left: 2%;
}
@media (max-width: 768px){
.boxres_contact {
	width: 90%;
	margin-top: 25px;
	margin-bottom: 20px;
}
.boxres_contact img{
	width: 100%;
	float: none;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 0px;
}
}

