@charset "utf-8";



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

/*全体の設定
---------------------------------------------------------------------------*/
html,body {height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #f1ebe7;	/*背景色*/
	-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%;}*/

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

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

/*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
header {
	height: 100%;
	overflow: auto;
	position: relative;
	background: url(../images/mainimg.jpg) no-repeat center center / cover;	/*背景画像の読み込み*/
}
/*ロゴ画像*/
header #logo img {
	display: block;
	width: 20%;	/*画像の幅*/
	position: absolute;
	left: 40%;		/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
	bottom: 50%;	/*ロゴやメニューが入っているブロックに対して、下からの配置場所の指定。*/
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への指定*/
#menubar {
	position: absolute;
	bottom: 20%;	/*ロゴやメニューが入っているブロックに対して、下からの配置場所の指定。*/
	left: 0px;
	width: 100%;
	text-align: center;
}
/*メニュー１個あたりの指定*/
#menubar li {
	display: inline-block;
	margin: 0 1%;
	animation-name: opa1;
	animation-delay: 1S;
	animation-duration: 1S;
	animation-fill-mode: both;
}
#menubar li a {
	text-decoration: none;display: block;text-align: center;
	width: 140px;	/*メニューの幅*/
	color: #fff;	/*文字色*/
	border-bottom: 2px solid transparent;	/*下線の幅、線種、色。transparentは透明の事。*/
	padding-bottom: 7px;	/*下線と文字の間にとる余白*/
}
/*マウスオン時の指定*/
#menubar li a:hover {
	border-bottom: 2px solid #fff;	/*下線の幅、線種、色*/
	letter-spacing: 0.1em;			/*文字間隔を少しだけ広くする指定。そのままがいいならこの１行を削除。*/
}

/*コンテナー（headerとfooterをのぞくブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1400px;	/*最大幅。これ以上広くならない指定。*/
	margin: 0 auto;
}

/*コンテンツ（上のcontainerの中のブロック）
---------------------------------------------------------------------------*/
#contents {
	overflow: hidden;
	padding: 50px 3%;
}
#contents section + section {
	padding-top: 50px;
}
/*コンテンツ内にあるh2(見出し)タグの指定*/
#contents h2 {
	margin-bottom: 20px;
	clear: both;
	padding: 0 20px;
	font-size: 20px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	background: #c20c0c;	/*背景色*/
	color: #fff;			/*文字色*/
	border-radius: 100px;	/*角を丸くする指定。大きめであれば適当で構いません。*/
}
/*コンテンツ内にあるh3(見出し)タグの指定*/
#contents h3 {
	margin-bottom: 20px;
	clear: both;
	padding: 0 20px;
	font-size: 18px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	border: 2px solid #c20c0c;	/*枠線の幅、線種、色*/
	border-radius: 100px;	/*角を丸くする指定。大きめであれば適当で構いません。*/
	color: #c20c0c;			/*文字色*/
	background: #fff;	/*背景色*/
}
#contents h4 {
	clear: both;
	padding: 10px 10px 10px 0;
	font-size: 16px;		/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	color: #c20c0c;			/*文字色*/
	font-weight: bold;
}
/*コンテンツ内にあるp(段落)タグ設定*/
#contents p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#contents p + p {
	margin-top: -5px;
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}

/*Serviceページ
---------------------------------------------------------------------------*/
/*各ブロックごとの設定*/
.list {
	overflow: hidden;
	line-height: 1.5;
	border-bottom: 1px solid #999;	/*下線の幅、線種、色*/
	padding: 20px;	/*ボックス内の余白*/
}
/*１番目のlistブロックへの追加指定。上に線を入れる。*/
.list:first-of-type {
	border-top: 1px solid #999;
}
/*h4見出しの設定*/
.list h4 {
	font-size: 20px;	/*文字サイズ*/
	margin-bottom: 10px;
}
/*画像の設定*/
.list img {
	width: 20%;			/*画像幅*/
	float: left;		/*画像を左に回り込み*/
	margin-right: 3%	/*画像の右側に空けるスペース*/
}
/*段落タグ*/
.list p {
	padding: 0 !important;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	background: #c20c0c;	/*背景色*/
	color: #fff;		/*文字色*/
	font-size: 85%;		/*文字サイズ*/
}
footer a {
	color: #fff;	/*リンクテキストの文字色*/
	text-decoration: none;
}
footer a:hover {
	color: #fff;	/*マウスオン時の文字色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding-left: 20px;
	margin-bottom: 15px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: center;		/*文字をセンタリング*/
	background: #fff;		/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi {
	width: auto;
	text-align: center;	/*文字をセンタリング*/
	background: #fff;		/*背景色*/
}
/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;			/*テーブル内の余白*/
}
/*テーブルの左側ボックス*/
.ta1 th {
	text-align: center;	/*センタリング*/
	width: 30%;			/*幅*/
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.scroll-show {display: block;}
.scroll a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	position: fixed;
	right: 30px;		/*右からの配置場所指定*/
	bottom: 30px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒色の指定で0.4は色が40%出た状態。*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*マウスオン時*/
.scroll a:hover {
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒色の指定で0.8は色が80%出た状態。*/
}

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

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 55px;
}
ol {
	padding: 0 20px 20px 42px;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #fff;border: 1px solid #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px 40px;list-style: disc;}
.color1, .color1 a {color: #ff4765;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.big1 {font-size: 40px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}



.menulist {
  display: inline-block;
  width: 48%;
  padding: 0!important;
  margin: 0!important;
  vertical-align:middle;
}

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

/*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 30%;	/*画像の幅*/
	left: 35%;	/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
}

}



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

/*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 50%;	/*画像の幅*/
	left: 25%;	/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
}

/*コンテナー（headerとfooterをのぞくブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	font-size: 12px;
	font-size: 2.93vw;
}

/*コンテンツ（上のcontainerの中のブロック）
---------------------------------------------------------------------------*/
/*コンテンツ内にあるh2(見出し)タグの指定*/
#contents h2 {
	font-size: 16px;	/*文字サイズ*/
}
/*コンテンツ内にあるh3(見出し)タグの指定*/
#contents h3 {
	font-size: 14px;	/*文字サイズ*/
}

/*Serviceページ
---------------------------------------------------------------------------*/
/*h4見出しの設定*/
.list h4 {
	font-size: 16px;	/*文字サイズ*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	padding: 0 0px 20px 35px;
}
ol {
	padding: 0 0px 20px 35px;
}

/*その他
---------------------------------------------------------------------------*/
.ws {width: 96%;}
.big1 {font-size: 22px;letter-spacing: normal;}

}




.u-mg-lr-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-mg-0 {
  margin: 0px !important;
}

.u-mg-t0 {
  margin-top: 0px !important;
}

.u-mg-b0 {
  margin-bottom: 0px !important;
}

.u-mg-l0 {
  margin-left: 0px !important;
}

.u-mg-r0 {
  margin-right: 0px !important;
}

.u-pd-0 {
  padding: 0px !important;
}

.u-pd-t0 {
  padding-top: 0px !important;
}

.u-pd-b0 {
  padding-bottom: 0px !important;
}

.u-pd-l0 {
  padding-left: 0px !important;
}

.u-pd-r0 {
  padding-right: 0px !important;
}

.u-mg-5 {
  margin: 5px !important;
}

.u-mg-t5 {
  margin-top: 5px !important;
}

.u-mg-b5 {
  margin-bottom: 5px !important;
}

.u-mg-l5 {
  margin-left: 5px !important;
}

.u-mg-r5 {
  margin-right: 5px !important;
}

.u-pd-5 {
  padding: 5px !important;
}

.u-pd-t5 {
  padding-top: 5px !important;
}

.u-pd-b5 {
  padding-bottom: 5px !important;
}

.u-pd-l5 {
  padding-left: 5px !important;
}

.u-pd-r5 {
  padding-right: 5px !important;
}

.u-mg-10 {
  margin: 10px !important;
}

.u-mg-t10 {
  margin-top: 10px !important;
}

.u-mg-b10 {
  margin-bottom: 10px !important;
}

.u-mg-l10 {
  margin-left: 10px !important;
}

.u-mg-r10 {
  margin-right: 10px !important;
}

.u-pd-10 {
  padding: 10px !important;
}

.u-pd-t10 {
  padding-top: 10px !important;
}

.u-pd-b10 {
  padding-bottom: 10px !important;
}

.u-pd-l10 {
  padding-left: 10px !important;
}

.u-pd-r10 {
  padding-right: 10px !important;
}

.u-mg-15 {
  margin: 15px !important;
}

.u-mg-t15 {
  margin-top: 15px !important;
}

.u-mg-b15 {
  margin-bottom: 15px !important;
}

.u-mg-l15 {
  margin-left: 15px !important;
}

.u-mg-r15 {
  margin-right: 15px !important;
}

.u-pd-15 {
  padding: 15px !important;
}

.u-pd-t15 {
  padding-top: 15px !important;
}

.u-pd-b15 {
  padding-bottom: 15px !important;
}

.u-pd-l15 {
  padding-left: 15px !important;
}

.u-pd-r15 {
  padding-right: 15px !important;
}

.u-mg-20 {
  margin: 20px !important;
}

.u-mg-t20 {
  margin-top: 20px !important;
}

.u-mg-b20 {
  margin-bottom: 20px !important;
}

.u-mg-l20 {
  margin-left: 20px !important;
}

.u-mg-r20 {
  margin-right: 20px !important;
}

.u-pd-20 {
  padding: 20px !important;
}

.u-pd-t20 {
  padding-top: 20px !important;
}

.u-pd-b20 {
  padding-bottom: 20px !important;
}

.u-pd-l20 {
  padding-left: 20px !important;
}

.u-pd-r20 {
  padding-right: 20px !important;
}

.u-mg-25 {
  margin: 25px !important;
}

.u-mg-t25 {
  margin-top: 25px !important;
}

.u-mg-b25 {
  margin-bottom: 25px !important;
}

.u-mg-l25 {
  margin-left: 25px !important;
}

.u-mg-r25 {
  margin-right: 25px !important;
}

.u-pd-25 {
  padding: 25px !important;
}

.u-pd-t25 {
  padding-top: 25px !important;
}

.u-pd-b25 {
  padding-bottom: 25px !important;
}

.u-pd-l25 {
  padding-left: 25px !important;
}

.u-pd-r25 {
  padding-right: 25px !important;
}

.u-mg-30 {
  margin: 30px !important;
}

.u-mg-t30 {
  margin-top: 30px !important;
}

.u-mg-b30 {
  margin-bottom: 30px !important;
}

.u-mg-l30 {
  margin-left: 30px !important;
}

.u-mg-r30 {
  margin-right: 30px !important;
}

.u-pd-30 {
  padding: 30px !important;
}

.u-pd-t30 {
  padding-top: 30px !important;
}

.u-pd-b30 {
  padding-bottom: 30px !important;
}

.u-pd-l30 {
  padding-left: 30px !important;
}

.u-pd-r30 {
  padding-right: 30px !important;
}

.u-mg-35 {
  margin: 35px !important;
}

.u-mg-t35 {
  margin-top: 35px !important;
}

.u-mg-b35 {
  margin-bottom: 35px !important;
}

.u-mg-l35 {
  margin-left: 35px !important;
}

.u-mg-r35 {
  margin-right: 35px !important;
}

.u-pd-35 {
  padding: 35px !important;
}

.u-pd-t35 {
  padding-top: 35px !important;
}

.u-pd-b35 {
  padding-bottom: 35px !important;
}

.u-pd-l35 {
  padding-left: 35px !important;
}

.u-pd-r35 {
  padding-right: 35px !important;
}

.u-mg-40 {
  margin: 40px !important;
}

.u-mg-t40 {
  margin-top: 40px !important;
}

.u-mg-b40 {
  margin-bottom: 40px !important;
}

.u-mg-l40 {
  margin-left: 40px !important;
}

.u-mg-r40 {
  margin-right: 40px !important;
}

.u-pd-40 {
  padding: 40px !important;
}

.u-pd-t40 {
  padding-top: 40px !important;
}

.u-pd-b40 {
  padding-bottom: 40px !important;
}

.u-pd-l40 {
  padding-left: 40px !important;
}

.u-pd-r40 {
  padding-right: 40px !important;
}

.u-mg-45 {
  margin: 45px !important;
}

.u-mg-t45 {
  margin-top: 45px !important;
}

.u-mg-b45 {
  margin-bottom: 45px !important;
}

.u-mg-l45 {
  margin-left: 45px !important;
}

.u-mg-r45 {
  margin-right: 45px !important;
}

.u-pd-45 {
  padding: 45px !important;
}

.u-pd-t45 {
  padding-top: 45px !important;
}

.u-pd-b45 {
  padding-bottom: 45px !important;
}

.u-pd-l45 {
  padding-left: 45px !important;
}

.u-pd-r45 {
  padding-right: 45px !important;
}

.u-mg-50 {
  margin: 50px !important;
}

.u-mg-t50 {
  margin-top: 50px !important;
}

.u-mg-b50 {
  margin-bottom: 50px !important;
}

.u-mg-l50 {
  margin-left: 50px !important;
}

.u-mg-r50 {
  margin-right: 50px !important;
}

.u-pd-50 {
  padding: 50px !important;
}

.u-pd-t50 {
  padding-top: 50px !important;
}

.u-pd-b50 {
  padding-bottom: 50px !important;
}

.u-pd-l50 {
  padding-left: 50px !important;
}

.u-pd-r50 {
  padding-right: 50px !important;
}

.u-txt-bold {
  font-weight: bold !important;
}

.u-txt-justify {
  text-align: justify !important;
}

.u-txt-center {
  text-align: center !important;
}

.u-txt-left {
  text-align: left !important;
}

.u-txt-right {
  text-align: right !important;
}

.u-txt-nowrap {
  white-space: nowrap !important;
}

.u-txt-white {
  color: #fff !important;
}

.u-txt-pink01 {
  color: #eb6877 !important;
}

.u-txt-pink02 {
  color: #ff8b8b !important;
}

.u-txt-pink03 {
  color: #ffa8a8 !important;
}

.u-txt-gray04 {
  color: #7c7c7c !important;
}

.u-txt-gray07 {
  color: #666 !important;
}

.u-txt-gray08 {
  color: #626262 !important;
}

.u-txt-gray13 {
  color: #535353 !important;
}

.u-lh1 {
  line-height: 1 !important;
}

.u-lh11 {
  line-height: 1.1 !important;
}

.u-lh12 {
  line-height: 1.2 !important;
}

.u-lh13 {
  line-height: 1.3 !important;
}

.u-lh14 {
  line-height: 1.4 !important;
}

.u-lh15 {
  line-height: 1.5 !important;
}

.u-lh16 {
  line-height: 1.6 !important;
}

.u-lh17 {
  line-height: 1.7 !important;
}

.u-lh18 {
  line-height: 1.8 !important;
}

.u-lh19 {
  line-height: 1.9 !important;
}

.u-lh2 {
  line-height: 2 !important;
}

.u-lh21 {
  line-height: 2.1 !important;
}

.u-lh22 {
  line-height: 2.2 !important;
}

.u-lh23 {
  line-height: 2.3 !important;
}

.u-lh24 {
  line-height: 2.4 !important;
}

.u-lh25 {
  line-height: 2.5 !important;
}

.u-lh26 {
  line-height: 2.6 !important;
}

.u-lh27 {
  line-height: 2.7 !important;
}

.u-lh28 {
  line-height: 2.8 !important;
}

.u-fz1 {
  font-size: 10px !important;
  font-size: 1rem !important;
}

.u-fz11 {
  font-size: 11px !important;
  font-size: 1.1rem !important;
}

.u-fz12 {
  font-size: 12px !important;
  font-size: 1.2rem !important;
}

.u-fz13 {
  font-size: 13px !important;
  font-size: 1.3rem !important;
}

.u-fz14 {
  font-size: 14px !important;
  font-size: 1.4rem !important;
}

.u-fz15 {
  font-size: 15px !important;
  font-size: 1.5rem !important;
}

.u-fz16 {
  font-size: 16px !important;
  font-size: 1.6rem !important;
}

.u-fz17 {
  font-size: 17px !important;
  font-size: 1.7rem !important;
}

.u-fz18 {
  font-size: 18px !important;
  font-size: 1.8rem !important;
}

.u-fz19 {
  font-size: 19px !important;
  font-size: 1.9rem !important;
}

.u-fz2 {
  font-size: 20px !important;
  font-size: 2rem !important;
}

.u-fz21 {
  font-size: 21px !important;
  font-size: 2.1rem !important;
}

.u-fz22 {
  font-size: 22px !important;
  font-size: 2.2rem !important;
}

.u-fz23 {
  font-size: 23px !important;
  font-size: 2.3rem !important;
}

.u-fz24 {
  font-size: 24px !important;
  font-size: 2.4rem !important;
}

.u-fz25 {
  font-size: 25px !important;
  font-size: 2.5rem !important;
}

.u-fz26 {
  font-size: 26px !important;
  font-size: 2.6rem !important;
}

.u-fz27 {
  font-size: 27px !important;
  font-size: 2.7rem !important;
}

.u-fz28 {
  font-size: 28px !important;
  font-size: 2.8rem !important;
}

.u-fz29 {
  font-size: 29px !important;
  font-size: 2.9rem !important;
}

.u-fz3 {
  font-size: 30px !important;
  font-size: 3rem !important;
}

@media screen and (min-width:480px) { 
    /*　画面サイズが480pxからはここを読み込む　*/

}
@media screen and (min-width:768px) and ( max-width:1024px) {
    /*　画面サイズが768pxから1024pxまではここを読み込む　*/
.imgsize {
    max-width:400px
}
}
@media screen and (min-width:1024px) {
    /*　画面サイズが1024pxからはここを読み込む　*/
 .imgsize {
    max-width:400px
}
}

@media(min-width:751px){
    .douga-sp{
        display: none !important;
    }
}
@media(max-width:750px){
    .douga-pc{
        display: none !important;
    }
}