@charset "utf-8";

/*各cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("keyframes.css");
@import url("slider-pro.css");

/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@font-face {
	font-family: 'ayame_font';
	src: url("https://www.kyoaikai.com/ayame/wp-content/themes/lightning/ayame_recruit/font/MPLUSRounded1c-Regular.ttf");
	src: url("https://www.kyoaikai.com/ayame/wp-content/themes/lightning/ayame_recruit/font/font.woff2");
	src: url("https://www.kyoaikai.com/ayame/wp-content/themes/lightning/ayame_recruit/font/font.woff");
}
/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;padding: 0px;
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	color: #666;		/*文字色*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,select,textarea,input {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
video {max-width: 100%;}
iframe {width: 100%;}

body#toppage {
    background-color: #fff;
}

.mobile {
	display: none;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;
	transition: 0.4s;
}
a:hover {
	color: #ed7500;
	text-decoration: none;
}

/*ヘッダーブロック（ロゴやメニューが入った最上段ブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: relative;	/*ヘッダーを上部に固定する指定*/
	z-index: 500;
	left: 0px;			/*左からの配置場所の指定*/
	top: 0px;			/*上からの配置場所の指定*/
	width: 100%;		/*幅*/
	background: #ffffff;	/*背景色*/
	font-size: 13px;	/*文字サイズ*/
	height: 150px;		/*ヘッダーの高さ*/
}
/*ロゴ画像*/
header #logo img {
	float: left;	/*左に回り込み*/
	/* height: 70px; */	/*高さ。上のheaderのheightと合わせる。*/
	padding: 32px 0px 15px 30px;
}
@media screen and (max-width:800px) {
  header #logo img {
	  padding: 0;
  }
}

@media screen and (max-width:800px) {
  header #logo img {
	  /* width: 80%; */
	  height: auto;
  }
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#menubar {
	float: right;
	margin-right: 5vw;
        cursor: default;
}
/*メニュー１個あたりの指定*/
#menubar li {
	float: left;
	letter-spacing: 0.1em;
}
#menubar li a, .ddmenu-title {
	display: block;
	text-decoration: none;
	color: #9b735e;	/*文字色*/
	padding: 0px 7px;	/*上下、左右へのメニュー内の余白*/
	line-height: 140px;	/*行間。headerのheightと数字を合わせる。*/
	font-size: 20px;
}
li.ddmenu-title:hover ul.ddmenu {
    display: block!important;
}
/*マウスオン時の背景色*/
#menubar li a:hover {
	color: #f5ba4a;	/*文字色*/
}
/*ドロップダウンメニューの親メニューへの追加指定。基本指定は上の.ddmenu-titleにあります。*/
.ddmenu-title {
	background: url(../images/arrow1.png) no-repeat 10px center / auto 25px;	/*アイコン画像の読み込み。最後の25pxは高さ指定。*/
}

/*小さい端末用メニューを非表示にする*/
#menubar-s,#menubar-s2 {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニュー（ddmenu）
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#menubar ul.ddmenu {
	position:absolute;
	/* visibility:	hidden; */
        display: none;
	z-index: 100;
	width: auto;
	top: 100px;
	background: #ffffff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.9);	/*背景色。0,0,0は黒の事で0.8は色が80%出た状態。*/
	border: 1px solid rgba(155,115,94,0.8);	/*線の幅、線種、色。255,255,255は白の事で0.4は色が40%出た状態。*/
	border-radius: 10px;
}
/*メニュー１個あたりの指定*/
#menubar ul.ddmenu li {
	float: none;
	height: 61px;
	line-height: 60px;
	
}
#menubar ul.ddmenu li a {
	font-size: 1em;
	height: 61px;
	line-height: 60px;
	border-radius: 10px;
}
/*ドロップダウンのマウスオン事*/
li:hover ul.ddmenu {
	animation-name: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 0.4S;	/*アニメーションの実行時間。0.4秒。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}


/*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon {
	float: right;	/*アイコンブロックを右に回り込み*/
	margin-right: 20px;	/*右側に空けるスペース*/
}
/*アイコン１個あたりの設定*/
ul.icon li {
	display: inline-block;	/*横並びにさせる指定*/
	padding-top: 10px;		/*上に空ける余白。header内の上下の配置バランスをここでとって下さい。*/
}
/*アイコン画像の設定*/
ul.icon img {
	width: 30px;		/*画像の幅*/
	margin-right: 5px;	/*画像同士の余白*/
}

/*コンテンツ（contents）
---------------------------------------------------------------------------*/
/*コンテンツブロック全体*/
#contents {
	background-color: #fcf7ed;
	overflow: hidden;
	
}
/*h2タグ*/
#contents h2 {
}
/*h2タグ内のspanタグ*/
#contents h2 span {
	font-size: 80%;	/*文字サイズ*/
	padding-left: 20px	/*左に空ける余白*/
}
/*h2タグ内のspanタグの文字の最初と最後に表示させる記号*/
#contents h2 span::before,#contents h2 span::after {
	content: "-";
}
/*h3タグ*/
#contents h3 {
	clear: both;
	margin-bottom: 20px;	/*下に空けるスペース*/
	font-size: 120%;		/*文字サイズ*/
	border-bottom: 2px solid #000;	/*下の線の幅、線種、色*/
	padding-left: 20px;		/*左に空ける余白*/
}
/*段落タグ設定*/
#contents p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#contents p + p {
	margin-top: -5px;
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}
#contents section + section {
	margin-top: 30px;
}

/*list（トップページやServiceページで使っている横長ブロック）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .list {
	position: relative;overflow: hidden;
	display: flex;
	align-items: center;
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
	margin-bottom: 1px;	/*ボックス同士に空けるスペース*/
}
/*リンクテキストの文字色*/
#contents .list a {
	color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
#contents .list h4 {
	margin-bottom: 10px;	/*下のテキストとの間に空けるスペース*/
	font-size: 120%;		/*文字サイズ*/
}
/*ボックス内のp（段落）タグ*/
#contents .list p {
	padding: 0;		/*余白のリセット*/
}
/*ボックス内のfigure画像*/
#contents .list figure {
	float: left;	/*左に回り込み*/
	width: 30%;		/*画像の幅*/
}
/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list .text {
	float: right;	/*右に回り込み*/
	width: 64%;		/*幅*/
	margin: 3%;		/*外側に取るスペース。これがないと枠ギチギチに文字が表示されます。*/
}

/*btn1
---------------------------------------------------------------------------*/
.btn1 a {
	display: block;text-decoration: none;
	background: #ed7500 url(../images/arrow4.png) no-repeat 95% center / 15px;	/*背景色、アイコン画像の読み込み。95%は左からの配置場所、最後の15pxは画像幅。*/
	color: #fff;	/*文字色*/
	max-width: 300px;	/*最大幅。画面幅が狭くなった場合、小さく縮小されていきます。*/
	text-align: center;	/*テキストをセンタリング*/
	padding: 5px 30px;	/*上下、左右へのボタン内の余白*/
	margin: 20px auto 0;	/*上、左右、下へのボタンの外側への余白*/
}
/*マウスオン事に少し位置をずらす指定*/
.btn1 a:hover {
	position: relative;
	left: 1px;
	top: 1px;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	font-size: 90%;		/*文字サイズ*/
	color: #9b735e;			/*文字色*/
	font-family: ayame_font;
	background-color: #F7E9E9;
}
footer a {color: #fff;}
footer a:hover {color: #fff;}
footer .pr {display: block;}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: flex;
	overflow: hidden;
	padding: 50px 3% 20px 3%;		/*上下、左右へのボックス内の余白*/
	background-color: #F7E9E9;	/*背景色*/
	max-width: 1200px;
	margin: 0 auto;
}

@media screen and (max-width:1046px) {
  #footermenu {
	  display: inherit;
	  padding: 10px 0 20px;		/*上下、左右へのボックス内の余白*/
  }
}

/*リンクテキスト*/
#footermenu a {
	text-decoration: none;
	color: #9b735e;
}
/*マウスオン時*/
#footermenu a:hover {
	opacity: 1;		/*透明度。100%色がついた状態。*/
}
/*見出し*/
#footermenu ul {
    width: 33.3%;
/*    padding: 1em 2em; */
}
@media screen and (min-width:1047px) {
    #footermenu ul {
        padding: 1em 2em;
    }
}

/*
#footermenu ul.footer_left {
    width: 35%;
} 
#footermenu ul.footer_center {
    width: 30%;
} 
#footermenu ul.footer_right {
    width: 35%;
} 
*/

@media screen and (max-width:1046px) {
  #footermenu ul {
      width: 100%;
  }
}

#footermenu li.title, #footermenu li.title a {
	opacity: 1;	/*透明度。100%色がついた状態。*/
	font-size: 110%;	/*文字サイズ*/
	color: #9b735e;
}

.footer_icon img {
	padding: 0px 10px;
}

.footer_center {
	text-align: left;
}

@media screen and (max-width:1046px) {
  .footer_center {
	  text-align: center;
	  padding-bottom: 20px;
	  font-size: 18px;
  }
}

.footer_left {
	width: 68%;			/*幅。今回は４列作っているので、この数字と下のpadding-rightとpadding-leftを合計した数字が１列分になる。(23%＋1%＋1%)×4列＝100%*/
	padding-right: 1%;	/*右に空ける余白*/
	padding-left: 1%;	/*左に空ける余白*/
	text-align: left;	/*テキストを左寄せ*/
}

.footer_name {
	width: 70%;
	/* padding-top: 30px; */
}

.footer_name img {
	width: 100%;
}

.footer_right {
	width: 28%;			/*幅。今回は４列作っているので、この数字と下のpadding-rightとpadding-leftを合計した数字が１列分になる。(23%＋1%＋1%)×4列＝100%*/
	padding-right: 1%;	/*右に空ける余白*/
	padding-left: 1%;	/*左に空ける余白*/
	text-align: center;	/*テキストを左寄せ*/
}

.footer_sns {
	padding-bottom: 10px;
}

.footer_tel1 {
	padding: 0px 10px;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 2.4rem;
	letter-spacing: 3px;
}

.footer_tel2 {
	font-size: 2rem;
	font-weight: bold;
	line-height: 2rem;
	letter-spacing: 3px;
}

.footer_time {
	padding: 0px 10px;
	font-size: 1.0rem;
	line-height: 1.4rem;
	letter-spacing: 3px;
}

.footer_txt1 {
	padding-top: 15px;
	font-weight: bold;
	letter-spacing: 3px;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #741C1B;	/*背景色*/
}
#copyright a {text-decoration: none;}
#copyright a:hover {color: #666;}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 20px;		/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
	height: 170px;			/*高さ*/
	overflow: auto;			/*上の高さを超えるコンテンツ量になった場合にスクロールバーを出す*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}

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

/*inputボタン
---------------------------------------------------------------------------*/
#contents input[type="submit"].btn,
#contents input[type="button"].btn,
#contents input[type="reset"].btn {
	padding: 5px 10px;		/*上下、左右へのボックス内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	font-size: 20px;		/*文字サイズ*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #eee;		/*背景色*/
}
/*マウスオン時の設定*/
#contents input[type="submit"].btn:hover,
#contents input[type="button"].btn:hover,
#contents input[type="reset"].btn:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
}

/*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;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*通常時のボタンは非表示*/
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: 20px;	/*下から20pxの場所に配置*/
	right: 1%;		/*右から3%の場所に配置*/
	background: #666;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事。0.6は60%色がついた状態。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 20px;
}
p.check a {color: #fff;}

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

/* 共通画像装飾 */
.common_img_pinkshadow {
    border-radius: 10px;
    box-shadow: 5px 5px 5px #cfaeae;
}
.common_img_shadow {
    border-radius: 3px;
    box-shadow: 2px 2px 5px #f0f0f0, -2px -2px 5px #f0f0f0;
}
.common_img_round {
    border-radius: 15px;
}
.common_img_pinkshadow_left_noblur {
    border-radius: 15px;
    box-shadow: -15px 15px 1px #F7E9E9;
}
.common_img_pinkshadow_right_noblur {
    border-radius: 15px;
    box-shadow: 15px 15px 1px #F7E9E9;
}


/*リクルート
---------------------------------------------------------------------------*/
section.recruit {
	position: relative;
	padding-bottom: 30px;
	background-image: url(../images/contents_top.png);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: auto;
	overflow: hidden;
}

.recruit_kumo01 {
	position:  relative;
	z-index: 41;
	width: 45%;
	margin: -13% 0 0 62%;
}

.recruit_kumo01 img {
	width: 100%;
}

.recruit_kumo02 {
	position: relative;
	z-index: 48;
	width: 30%;
	margin: -6% 0 0 -8%;
	
}

.recruit_kumo03 {
	position: relative;
	z-index: 48;
	width: 40%;
	margin: -12% 0 0 79%;
}

.recruit_kumo04 {
	position: relative;
	z-index: 41;
	width: 30%;
	margin: -6% 0 0 -8%;
}

.recruit_kumo05 {
	position: relative;
	z-index: 48;
	width: 23%;
	margin: -25% 0 0 82%;
}


.recruit_staff {
	position: relative;
	z-index: 45;
	display: flex;
	width: 80%;
	margin: -20% auto 0;
	padding: 5% 3%;
	border: solid 4px #ff9d00;
	border-radius: 50px;
	background-color: #ffffff;
	font-family: ayame_font;
}

.staff02 {
	margin: -10% auto 0;
	flex-direction: row-reverse;
}

.staff02 img {
	width: 90%;
}

.staff03 {
	margin: -7% auto 0;
}

.staff03 img {
	padding-top: 80px;
}

.staff04 {
	margin: -10% auto 10%;
	flex-direction: row-reverse;
}



.recruit_staff_pic {
	width: 40%;
}
.recruit_staff_left img {
	width: 100%;
}

.recruit_staff_name {
	padding-left: 5%;
	font-size: 1.8rem;
	color:#ff9d00;
	line-height: 2.0rem;
}

.recruit_staff_name span {
	font-size: 1.1rem;
}

.recruit_staff_txt {
	width: 60%;
}

.recruit_staff_txt li {
	padding: 0 20px 20px;;
	font-size: 0.9rem;
	font-weight: bold;
	line-height: 1.4rem;
	list-style: none;
}

.recruit_staff_txt p {
	padding: 0px 20px !important;
	color: #f58d8d;
	font-size: 1.1rem;
	font-weight: bold;
}

.recruit_title {
	position: relative;
	z-index: 40;
	width: 45%;
	margin: -3% 0 0 -5%;
	
}

.recruit_title img {
	width: 100%;
}

/*スライド あやめ
---------------------------------------------------------------------------*/
.slider_contents {
	position: relative;
	z-index: 100;
	height: auto;
	aspect-ratio: 3 / 2
}

.slider_top {
	position: absolute;
	top: 0;
	z-index: 10;
	width: 100%;
	line-height: 0;
}
.slider_bottom {
	position: absolute;
	z-index: 9;
	width: 100%;
	bottom: 0;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #222;padding: 5px 10px;border-radius: 4px;border: 1px solid #333;color: #fff;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #ed7500 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fl {float: left;}
.fr {float: right;}
.big1 {font-size: 40px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.dn {display: none;}
.sh {display: none;}

/*画面幅1279px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1640px){
#menubar {
	margin-right: 0;
}
#menubar li a, .ddmenu-title {
	padding: 0px 7px;	/*上下、左右へのメニュー内の余白*/
	font-size: 16px;
}
}

@media screen and (max-width:1348px){
	#menubar li a, .ddmenu-title {
		padding: 0px 3px;	/*上下、左右へのメニュー内の余白*/
		font-size: 14px;
	}
	header #logo img {
		height: 45px;
	}
}


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

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック全体*/
#menubar-s {
	display: block;overflow: auto;height: 100%;
	text-align: left;
	position: fixed;z-index: 100;
	top: 0px;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: opa1;		/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	font-size: 16px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定と、子メニューの見出し。*/
#menubar-s ul li a,#menubar_hdr2 {
	display: block;text-decoration: none;
	padding: 10px 15px;	/*上下、左右へのメニュー内の余白*/

	color: #fff;		/*文字色*/
}
#menubar_hdr2 {
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
}

#menubar-s ul li#menubar_hdr2 a {
    padding: 2px 0 2px 0;
}
#menubar-s ul.ddmenu li a {
    padding: 10px 15px;
}

ul li#menubar_hdr2 ul.ddmenu li a {
    padding: 8px !important;
}

/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*子メニュー
---------------------------------------------------------------------------*/
/*子メニューの見出しの追加。基本は上のブロックで設定しています。*/
#menubar_hdr2 {
	padding-left: 35px;
}
/*子メニューメニューブロック全体*/
#menubar-s2 {
	display: block;
	margin-top: 10px;
	background: rgba(0,0,0,0.5);	/*背景色*/
	border: 1px solid #666;		/*上の線の幅、線種、色*/
	border-bottom: none;		/*下の線のみ消す*/
}
/*「＞」アイコン設定*/
#menubar_hdr2.close {
	background: url(../images/arrow2.png) no-repeat 10px 18px / 18px;
}
/*「＾」アイコン設定*/
#menubar_hdr2.open {
	background: url(../images/arrow3.png) no-repeat 10px 18px / auto 18px;
}
/*子メニュー１個あたりの設定*/
#menubar-s2 li a {
	color: #fff !important;	/*文字色*/
	padding: 5px;	/*余白*/
	border-bottom: 1px solid #666 !important;		/*下の線の幅、線種、色*/
}

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

/*フッターメニュー
---------------------------------------------------------------------------*/
#footermenu {
	display: inherit;
}

.footer_left {
	width: 98%;			/*幅。今回は４列作っているので、この数字と下のpadding-rightとpadding-leftを合計した数字が１列分になる。(23%＋1%＋1%)×4列＝100%*/
	padding-right: 1%;	/*右に空ける余白*/
	padding-left: 1%;	/*左に空ける余白*/
	padding-bottom: 20px;
	text-align: center;	/*テキストを左寄せ*/
}

.footer_name {
	margin: 0 auto;
}

.footer_name img {
	width: 100%;
	max-width: 441px;
}

.footer_right {
	width: 98%;			/*幅。今回は４列作っているので、この数字と下のpadding-rightとpadding-leftを合計した数字が１列分になる。(23%＋1%＋1%)×4列＝100%*/
	padding-right: 1%;	/*右に空ける余白*/
	padding-left: 1%;	/*左に空ける余白*/
	text-align: center;	/*テキストを左寄せ*/
}

/*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon {
	float: left;	/*アイコンブロックを左に回り込み*/
	margin-left: 20px;	/*左側に空けるスペース*/
}

/*リクルート
---------------------------------------------------------------------------*/
.recruit_staff {
	display: inherit;
}
.recruit_staff_name {
	padding-bottom: 30px;
}
.recruit_staff_pic {
	width: 100%;
}
.recruit_staff_txt {
	width: 100%;
}

}


div.imagine {
    margin-top: 10%;
    text-align: center;
}
div.imagine h2 {
    color: #ff9d00;
    font-size: 26px;
    font-weight: bold;
}

/* 募集要項 */
section.recruit {
    font-family: ayame_font;
}
div.desc {
    margin-top: 10%;
}
div.desc h2 {
    color: #ff9d00;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
}
.desc ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-end;
    max-width: 1000px;
    margin: 0 auto;
}
.desc ul a {
    color: #ff9d00;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 3px 2px rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    width: 27.5%;
    text-align: center;
    text-decoration: none;
    margin: 0.5rem;
    font-size: 18px;
}
.desc ul a li {
    font-weight: bold;
}
@media screen and (max-width:963px){
    .desc ul {
        display: block;
    }
    .desc ul a {
        display: block;
        width: 95%;
        padding: 15px 0;
        margin: 10px auto 15px auto;
    }
}

/* スタッフ紹介バナー */
div.staff_intro_banner {
    margin-top: 10%;
    margin-bottom: 5%;
    text-align: center;
}


/* font */
section.toppage,
section.greeting,
section.effort,
section.sisetsu,
section.sitemap,
section.rouken,
section.posteiyou,
section.postreha,
section.postryouyou,
section.postsoudan,
section.daycare,
section.enter {
    font-family: ayame_font;
}


/* ショートステイ・デイケア */

#contents_enter_and_reha {
   background-color: #fff; 
   color: #555;
}
#contents_enter_and_reha h2 {
    color: #E6A1A1;
    font-size: 26px;
    margin: 2em 0 1em 0;
    font-weight: bold;
    text-align: left;
}
#contents_enter_and_reha section.enter h2 { /* ショートステイ */
    color: #8CBF7D;
    font-size: 26px;
    margin: 2em 0 1em 0;
    font-weight: bold;
    text-align: left;
}
#contents_enter_and_reha h3 {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
}
#contents_enter_and_reha p.caption {
    text-align: center;
}
#contents_enter_and_reha div.target_back {
    background-color: #FFFEF4;
    padding: 5px 0;
}
#contents_enter_and_reha div.target {
    background-color: #FFFEF4;
}
#contents_enter_and_reha div.target .pic {
    float: left;
    width: 40%;
}
#contents_enter_and_reha div.target .text {
    float: left;
    width: 60%;
}
#contents_enter_and_reha div.service {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 2em;

}
#contents_enter_and_reha div.service span.linkbutton {
    border: 3px solid #1E65AD;
    color: #1E65AD;
    margin: 0.5em 0 0 1.5em;
    padding: 2px 20px;
    display: inline-block;
}
#contents_enter_and_reha div.service span.linkbutton:after {
    content: '▶';
}

#contents_enter_and_reha div.service h3 {
    color: #E6A1A1;
    border-bottom: 2px dashed #E6A1A1;
    text-align: left;
    margin: 1em 0 0.5em 0;
    padding-bottom: 0.5em;
}
#contents_enter_and_reha div.service h4 {
    color: #E6A1A1;
    font-size: 18px;
    margin-top: 1.5em;
}
#contents_enter_and_reha section.enter div.service h3 { /* ショートステイ */
    color: #8CBF7D;
    border-bottom: 2px dashed #8CBF7D;
    text-align: left;
    margin: 1em 0 0.5em 0;
    padding-bottom: 0.5em;
}
#contents_enter_and_reha section.enter div.service h4 { /* ショートステイ */
    color: #8CBF7D;
    font-size: 18px;
    margin-top: 1.5em;
}
#contents_enter_and_reha div.service h4:before {
    content: "■";
}
#contents_enter_and_reha div.service p {
    font-size: 16px;
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
}
#contents_enter_and_reha div.service img {
    font-size: 14px;
    margin-bottom: 0.5em;
    /*padding-left: 1em;*/
}

#contents_enter_and_reha div.service p:before {
    color: #E6A1A1;
    font-size: 12px;
    content: "▶";
    padding-right: 0.5em;
}
#contents_enter_and_reha section.enter div.service p:before { /* ショートステイ */
    color: #8CBF7D;
    font-size: 12px;
    content: "▶";
    padding-right: 0.5em;
}
#contents_enter_and_reha div.service table.schedule {
    margin: 1em 2em;
}
#contents_enter_and_reha div.service div.schedule_caption {
    margin: 0 2em 1em 2em;
}

#contents_enter_and_reha .enter_and_reha {
    margin-top: 10%;
    text-align: center;
}
#contents_enter_and_reha .enter_and_reha .linkbutton img {
    margin: 10px 20px;
}
#contents_enter_and_reha .enter_and_reha .wheelchair_box {
    margin: 50px 0px;
}

#contents_enter_and_reha .target {
    max-width: 1000px;
    margin: 0 auto 50px auto;
}
#contents_enter_and_reha .target div.pic {
    text-align: center;
    float: left;
}
#contents_enter_and_reha .target div.pic img {
    width: 90%;
    max-width: 260px;
    padding-top: 150px;
}
#contents_enter_and_reha .target div.text {
    float: left;
}

#contents_enter_and_reha div.veu_childPage_list a {
    width: 33%;
}
#contents_enter_and_reha div.veu_childPage_list h3 {
    border-bottom: none!important;
    padding-bottom: 5px!important;
    text-align: center!important;
    color: #E6A1A1!important;
}

/* 施設長挨拶 */
#contents_common .normal {
    margin-top: 100px;
    text-align: center;
}
#contents_common .normal h2 {
    display: inline-block;
    color: #777;
    border-bottom: 2px solid #EA9F99;
    letter-spacing: 0.5em;
    font-size: 26px;
    margin: 2em 0;
    font-weight: bold;
    text-align: center;
    padding: 0 0.5em 0 1em;
}
#contents_common .col2_back {
    background-color: #fff;
    padding: 10px 0 0 0;
}
#contents_common .col2 {
    max-width: 1000px;
    margin: 0 auto;
}
#contents_common .col2 h3 {
    margin:0;
    color: #E6A1A1;
    font-size: 26px;
    font-weight:bold;
    padding-left: 0.5em;
}

#contents_common .col2 .left {
    float: left;
    width: 60%;
}
#contents_common .col2 .left p {
    font-size: 14px;
    padding: 0 0.5me 0 1em;
    line-height: 1.5;
}
#contents_common .col2 .right {
    text-align: center;
    float: left;
    width: 40%;
}
#contents_common .col2 .right img {
    width: 90%;
    padding-top: 10px;
    max-width: 330px;
}
@media screen and (max-width:800px) {
    #contents_common .col2 .left,
    #contents_common .col2 .right {
        float: none;
        width: 95%;
        margin: 0 auto;
    }
}

#contents_common .col1_colorback {
    background-color: #FCF7ED;
}
#contents_common .col1 {
    max-width: 1000px;
    margin: 10px auto 50px auto;
    padding: 50px 0;
}
@media screen and (max-width:800px) {
    #contents_common .col1 {
        width: 95%;
    }
}

#contents_common .col1 h3 {
    margin:0;
    color: #E6A1A1;
    font-size: 26px;
    font-weight:bold;
}
#contents_common .col1 h4 { 
    font-size: 18px;
    margin-top: 1.5em;
}
#contents_common .col1 h4:before {
    content: "■";
    color: #E6A1A1;
}
#contents_common .col1 p {
    font-size: 24px;
}

#contents_common .col1 span.char {
    font-weight: bold;
    background-color: #FF918B;
    color: #fff;
    padding: 6px 10px;
    margin-right: 1em;
    border-radius: 7px;
}
#contents_common p.policy_text {
    padding: 0.6em 0 0.8em 0;
    font-size: 14px;
}

/* 施設設備 */
div.container {
    display: flex; flex-wrap: wrap; justify-content: center;
}
div.container div {
    width: 28%;
    min-width: 290px;
    text-align: center;
    margin: 21px;
    line-height: 1.4;
    flex-grow: 1;
    font-size: 14px;
}
div.container div img {
    border-radius: 15px;
    margin-bottom: 5px;
}

/* サイトマップ */
#contents_common div.sitemap {
    max-width: 1200px;
    margin-bottom: 5px;
}
div.sitemap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

div.sitemap div {
    /*background-color: #ddd;*/
    margin: 40px 5px 5px 5px;
    width: 160px;
    font-size: 14px;
    line-height: 2.5;
}
@media screen and (max-width:715px) {
    div.sitemap div {
        width: 100%;
        font-size: 16px;
    }
}
div.sitemap div a {
    text-decoration: none;
}

#contents_common section.sitemap hr {
    max-width: 1200px;
}

ul.sitemap_footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 70px;
    font-size: 14px;
}
ul.sitemap_footer li {
    margin: 5px 30px;
}
#contents_common div.sitemap {
    padding: 0 0 50px 0;
}
@media screen and (max-width:715px) {
    ul.sitemap_footer li {
        width: 100%;
        text-align: center;
    }
    ul.sitemap_footer {
        margin-bottom: 5px;
        font-size: 16px;
    }
    #contents_common section.sitemap {
        padding: 0;
    }
    #contents_common .col1 {
        padding: 0 0 50px 0;
    }
}
ul.sitemap_footer li a {
    text-decoration: none;
}

/* 老健 */
#contents_common section.rouken .col1 {
    text-align: center;
    padding: 10px 0;
}
#contents_common section.rouken .col1 h3 {
    color: #666;
}
#contents_common section.rouken .col1 img#rouken {
    margin-top: 80px;
}

/* 部署共通 */
ul.post_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 100px;
}
ul.post_menu li {
    font-size: 22px;
    padding: 0 80px;
    letter-spacing: 0.2em;
    font-weight: bold;
}
ul.post_menu li a {
    text-decoration: none;
}
ul.post_menu li.reha a {
    color: #FF914D;
}
ul.post_menu li.eiyou a {
    color: #F475B4;
}
ul.post_menu li.ryouyou a {
    color: #5B98B4;
}
ul.post_menu li.soudan a {
    color: #91C05B;
}

@media screen and (max-width:680px) {
    ul.post_menu li {
        padding: 0 50px;
    }
}
/* リハビリテーション科 */
#contents_common section.postreha h2 {
    color: #FF914D;
    border-bottom: none;
    font-size: 28px;
}
#contents_common section.postreha h3 {
    color: #666666;
    border-bottom: 2px solid #FF914D;
    display: inline-block;
    line-height: 1.5;
    margin-bottom: 0.8em;
}
#contents_common section.postreha .col1 {
    padding: 0 0 2em 0;
}
#contents_common section.postreha .col1 p {
    margin-bottom: 1em;
}
#contents_common section.postreha .normal {
    margin-top: 0;
}

/* 栄養科 */
#contents_common section.posteiyou h2 {
    color: #F475B4;
    border-bottom: none;
    font-size: 28px;
}
#contents_common section.posteiyou h3 {
    color: #666666;
    border-bottom: 2px solid #F475B4;
    display: inline-block;
    line-height: 1.5;
    margin-bottom: 0.8em;
}
#contents_common section.posteiyou .col1 {
    padding: 0;
}
#contents_common section.posteiyou .normal {
    margin-top: 0;
}

/* 療養棟 */
#contents_common section.postryouyou h2 {
    color: #5B98B4;
    border-bottom: none;
    font-size: 28px;
}
#contents_common section.postryouyou h3 {
    color: #666666;
    border-bottom: 2px solid #5B98B4;
    display: inline-block;
    line-height: 1.5;
    margin-bottom: 0.8em;
}
#contents_common section.postryouyou .col1 {
    padding: 0;
}
#contents_common section.postryouyou .normal {
    margin-top: 0;
}

/* 相談室 */
#contents_common section.postsoudan h2 {
    color: #91C05B;
    border-bottom: none;
    font-size: 28px;
}
#contents_common section.postsoudan h3 {
    color: #666666;
    border-bottom: 2px solid #91C05B;
    display: inline-block;
    line-height: 1.5;
    margin-bottom: 0.8em;
}
#contents_common section.postsoudan .col1 {
    padding: 0;
}
#contents_common section.postsoudan .normal {
    margin-top: 0;
}

/* 各ページタイトル */
section.toppage div.title h2,
section.greeting div.title h2,
section.facility div.title h2,
section.magokoro div.title h2,
section.fee div.title h2,
section.enter div.title h2,
section.initiative div.title h2,
section.opening_10th div.title h2,
section.difference div.title h2,
section.faq div.title h2 {
    text-align: center;
    color: #741c1b;
    font-size: 26px;
    border-bottom: 2px solid #741c1b;
    width: 380px;
    margin: 3em auto 0 auto;
}

section.initiative div.title_rec br {
	display: none;
}

@media screen and (max-width:600px) {
  section.initiative div.title_rec br {
	  display: block;
  }
}

section.initiative div.title_rec h2 {
	width: 100%;
    max-width: 800px;
}

@media screen and (max-width:600px) {
  section.initiative div.title_rec h2 {
	width: 98%;
	margin: 0 1%;
  }
}

/* 有料老人ホームの違い */
section.difference div.caption {
    margin: 4em auto;
    max-width: 1000px;
}

@media screen and (max-width:963px) {
  section.difference div.caption {
      margin: 4em 5%;
  }
}

section.difference div.difference_img {
    text-align: center;
}

section.difference div.difference_img img {
    /* max-width: 450px; */
}

@media screen and (max-width:963px) {
  section.difference div.difference_img img {
    width:90%;
	margin: auto;
  }
}

section.difference div.col3_text {
    display: flex;
    max-width: 1000px;
    margin: 4em auto;
}

@media screen and (max-width:963px) {
  section.difference div.col3_text {
      display: inherit;
      margin: 2em auto 4em;
  }
}

section.difference div.col3_text div {
    width: 33.3%;
    text-align: center;
    padding: 1em;
}

@media screen and (max-width:963px) {
section.difference div.col3_text div {
    width: 90%;
    text-align: center;
    padding: 0 5% 20px;
}
}

section.difference div.col3_text div p.title {
    font-size: 20px;
}



/* 費用 */
section.fee div.fee {
    margin: 0 auto;
    text-align: center;
    padding: 2em;
    margin-bottom: 3em;
    max-width: 600px;
}

section.fee div.contact {
    margin: 0 auto;
    text-align: center;
    background-color: #FEFDFB;
    padding: 2em;
    margin-bottom: 3em;
    max-width: 450px;
}
section.fee div.contact span.title {
    font-size: 22px;
}
section.fee div.contact span.telfax {
    font-size: 22px;
}

/* 入居までの流れ */
section.enter div.contact {
    margin: 0 auto;
    text-align: center;
    background-color: #FEFDFB;
    padding: 2em;
    margin-bottom: 3em;
    max-width: 450px;
}
section.enter div.contact span.title {
    font-size: 22px;
}
section.enter div.contact span.telfax {
    font-size: 22px;
}

section.enter div.service {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 2em;
}
section.enter h3 {
    color: #E6A1A1;
    font-size: 26px;
    font-weight: bold;
    border-bottom: 2px dashed #E6A1A1;
    text-align: left;
    margin: 0.8em 0 0.5em 0;
    padding-bottom: 0.5em;
}
section.enter div.veu_childPage_list a {
    width: 33%;
}
section.enter div.veu_childPage_list div {
    border: 1px solid #ddd;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
}
section.enter div.veu_childPage_list div:hover {
    background-color: #f0f0f0;
}
section.enter div.veu_childPage_list h3 {
    border-bottom: none !important;
    padding-bottom: 5px !important;
    text-align: center !important;
    color: #E6A1A1 !important;
}

/* 10周年記念 */
section.opening_10th h3 {
    text-align: center;
    font-size: 22px;
    margin: 1.5em 0;
}

section.opening_10th .top_2col_content {
    display: flex;
    max-width: 1000px;
    margin: 0 auto 4em auto;
}

@media screen and (max-width:963px) {
  section.opening_10th .top_2col_content {
      display: inherit;
  }
}

section.opening_10th .top_2col_content .col_img {
    width: 30%;
}

@media screen and (max-width:963px) {
  section.opening_10th .top_2col_content .col_img {
      width: 60%;
	  padding: 0 20%;
  }
}

section.opening_10th .top_2col_content .col_img:nth-child(odd) {
    padding-right: 5em;
}

section.opening_10th .top_2col_content .col_img:nth-child(even) {
    padding-left: 5em;
}

section.opening_10th .top_2col_content .col_text {
    width: 70%;
    line-height: 1.6;
}

@media screen and (max-width:963px) {
  section.opening_10th .top_2col_content .col_text {
      width: 90%;
	  padding: 20px 5% 0;
  }
}

section.opening_10th .top_2col_content .col_text p.sign {
    padding-top: 1em;
    text-align: right;
}

/* トップページ */
section.toppage a {
    text-decoration: none;
}

section.toppage .top_2col_content {
    display: flex;
    max-width: 1000px;
    margin: 4em auto;
}

@media screen and (max-width:963px) {
  section.toppage .top_2col_content {
      display: inherit;
  }
}

section.toppage .top_2col_content .col_img {
    width: 30%;
}

@media screen and (max-width:963px) {
  section.toppage .top_2col_content .col_img {
      width: 80%;
	  padding: 0 10%;
  }
}

section.toppage .top_2col_content .col_img:nth-child(odd) {
    padding-right: 5em;
}
@media screen and (max-width:963px) {

  section.toppage .top_2col_content .col_img:nth-child(odd) {
      padding-right: 0;
  }
}

section.toppage .top_2col_content .col_img:nth-child(even) {
    padding-left: 5em;
}

@media screen and (max-width:963px) {
  section.toppage .top_2col_content .col_img:nth-child(even) {
      padding-left: 10%;
  }
}

section.toppage .top_2col_content .col_text {
    width: 70%;
    line-height: 1.8;
}

@media screen and (max-width:963px) {
section.toppage .top_2col_content .col_text {
    width: 80%;
	padding: 0 10%;
}
}

@media screen and (max-width:963px) {
  section.toppage .top_2col_content .col_text {
      width: 90%;
	  padding: 20px 5% 0;
      line-height: 1.8;
  }
}

section.toppage .top_2col_content .col_text span.top_title {
    font-size: 22px;
}

section.toppage .top_3col_content {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-around;
}

section.toppage .top_3col_content div {
    width: 33.3%;
    text-align: center;
    margin: 2em 0;
}

section.toppage .top_3col_content div img {
    width: 50%;
}
@media screen and (max-width:963px) {
  section.toppage .top_3col_content div img {
      width: 90%;
  }
}
section.toppage .top_2col {
    background-image: url("../images/top_backimage.png");
    background-color: #fff;
    padding-bottom: 245px;
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
}

@media screen and (max-width:963px) {
  section.toppage .top_2col {
      padding-bottom: 100px;
  }
}

section.toppage .top_2col .box_padding {
    width: 90%;
    margin: 0 auto;
}
section.toppage .top_2col div.left {
    float: left;
    width: 50%;
}
section.toppage .top_2col div.right {
    float: left;
    width: 50%;
    /* padding-top: 60px; */
}
@media screen and (max-width:963px) {
    section.toppage .top_2col div.left {
        float: none;
        width: 100%;
    }
    section.toppage .top_2col div.right {
        float: none;
        width: 100%;
        padding-top: 60px;
    }
}

section.toppage .top_2col div.left .news {
    background-color: #fff;
    width: 80%;
    margin: 0 auto;
    padding: 15px 25px;
    border: 3px solid #FFBF48;
    border-radius: 20px;
}
section.toppage .top_2col div.left .news .title {
    color: #9B735E;
    border-bottom: 2px solid #FFBF48;
    font-weight: bold;
    padding-left: 1em;
}
section.toppage .top_2col div.left .news li {
    line-height: 2.5;
    padding-left: 1em;
    padding-top: 1em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
section.toppage .top_2col div.left .news li .date {
    color: #9B735E;
}
section.toppage .top_2col div.left .news li .topics_title {
    padding-left: 2.5em;
}

section.toppage .top_2col div.left .news .more {
    float: right;
    color: #fff;
    background-color: #FFBF48;
    border-radius: 30px;
    padding: 5px 30px;
    margin: 40px 0 20px 0;
}

section.toppage .top_2col div.right .notice {
    text-align: center;
    color: #333;
    background-color: #EA9995;
    width: 90%;
    margin:0 auto;
    padding: 20px 0;
    border-radius: 20px;
}
section.toppage .top_2col div.right .notice .title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

section.toppage .top_2col div.right .ayamemail {
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 20px;
    background-color: #fff;
    width: 90%;
    margin: 0 auto 20px auto;
    padding: 30px 0;
    border: 3px dashed #FFBF48;
    border-radius: 30px;
    background-color: #ffedbc;
}
section.toppage .top_2col div.right .empty_bed {
    border: 2px solid #FFBF48;
    border-radius: 20px;
    text-align: center;
    width: 90%;
    margin: 20px auto 0 auto;
    padding: 4px 0;
    font-size: 16px;
    letter-spacing: 0.1em;
}

section.toppage div.about {
    background-color: #fff;
    padding-bottom: 110px;
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
}
@media screen and (max-width:963px) {
    section.toppage div.about {
        margin-top: 50px;
    }
}

section.toppage div.about .col3 {
    background-color: #FCF7ED;
    width: 85%;
    margin: 0 auto;
    padding: 20px 0;
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
@media screen and (max-width:963px) {
    section.toppage div.about .col3 {
        width: 95%;
    }
}

section.toppage div.about .col3 img {
    width: 90%;
    border-radius: 7px;
    border: 2px solid #fff;
}
section.toppage div.about .col3 .provide img {
    box-shadow: 6px 6px #FFD4D1;
}
section.toppage div.about .col3 .facility img {
    box-shadow: 6px 6px #FFE8D1;
}
section.toppage div.about .col3 .staff img {
    box-shadow: 6px 6px #E9FCCF;
}

section.toppage div.about .col3 p.title {
    color: #9B735E;
    font-weight: bold;
    margin-top: 0.8em;
}
section.toppage div.about .col3 p.desc {
    color: #9B735E;
    margin: 1em 0;
    font-size: 14px;
}
section.toppage div.about .col3 div.provide,
section.toppage div.about .col3 div.facility,
section.toppage div.about .col3 div.staff {
    width: 33%;
    text-align: center;
}
@media screen and (max-width:800px) {
    section.toppage div.about .col3 div.provide,
    section.toppage div.about .col3 div.facility,
    section.toppage div.about .col3 div.staff {
        width: 95%;
    }
}

section.toppage div.about .col3 .detail_btn {
    padding: 5px 0;
    border-radius: 20px;
    border: 2px solid #fff;
    width: 90%;
    margin: 0 auto;
}

section.toppage div.about .col3 .provide .detail_btn {
    background-color: #FFD4D1;
}

section.toppage div.about .col3 .facility .detail_btn {
    background-color: #FFE8D1;
}

section.toppage div.about .col3 .staff .detail_btn {
    background-color: #E9FCCF;
}

/* enter */
section.enter .top_2col_content {
    display: flex;
    max-width: 1000px;
    margin: 4em auto;
}

@media screen and (max-width:963px) {
  section.enter .top_2col_content {
	  flex-flow: column;
  }
}

section.enter .top_2col_content .col_img {
    width: 40%;
	padding-right: 5%;
}

@media screen and (max-width:963px) {
  section.enter .top_2col_content .col_img {
	  display: flex;
      width: 99%;
	  padding: 0 1% 0 0;
  }
}

section.enter .top_2col_content .col_img img {
	padding-bottom: 12em;
}

@media screen and (max-width:963px) {
  section.enter .top_2col_content .col_img img {
	  width: 32%;
	  padding: 0 0 2em 1%;
  }
}

section.enter .top_2col_content .col_text {
    width: 55%;
    padding-top: 0.8em;
	line-height: 1.8em;
}

@media screen and (max-width:963px) {
  section.enter .top_2col_content .col_text {
      width: 100%;
	  text-align: center;
  }
}

section.enter .top_2col_content .col_text span {
	font-size: 1.4em;
	font-weight: bold;
}

.enter_btn {
	padding-top: 10px;
}

.enter_btn img {
	width: 200px;
}

.enter_img_bottom {
	padding-bottom: 0!important; 
}

@media screen and (max-width:963px) {
.enter_img_bottom {
	padding-bottom: 2em!important; 
}
}

.enter_mark{
	padding: 0.6em 0;
	line-height: 1.6em;
}

.enter_mark img{
	width: 16px;
	padding: 0 0 0 1.6em;
}


/* facility */
section.facility .top_2col_content {
    display: flex;
    max-width: 1000px;
    margin: 4em auto;
}

@media screen and (max-width:963px) {
  section.facility .top_2col_content {
      display: inherit;
  }
}

section.facility .top_2col_content .col_img {
    width: 50%;
}

@media screen and (max-width:963px) {
  section.facility .top_2col_content .col_img {
      width: 100%;
  }
}

section.facility .top_2col_content .col_img:nth-child(odd) {
    padding-right: 1em;
}

section.facility .top_2col_content .col_img:nth-child(even) {
    padding-left: 5em;
}

section.facility .top_2col_content .col_text {
    padding-top: 0.8em;
    width: 50%;
}

@media screen and (max-width:963px) {
  section.facility .top_2col_content .col_text {
      width: 90%;
	  padding: 0 5%;
  }
}


/* magokoro */
section.magokoro .top_2col_content {
    display: flex;
    max-width: 1000px;
    margin: 4em auto;
}

@media screen and (max-width:963px) {
  section.magokoro .top_2col_content {
      display: inherit;
  }
}

section.magokoro .top_2col_content .col_img {
    width: 50%;
}

@media screen and (max-width:963px) {
  section.magokoro .top_2col_content .col_img {
      width: 100%;
  }
}

section.magokoro .top_2col_content .col_img:nth-child(odd) {
    padding-right: 1em;
}

section.magokoro .top_2col_content .col_img:nth-child(even) {
    padding-left: 5em;
}

section.magokoro .top_2col_content .col_text {
    padding-top: 0.8em;
    width: 50%;
}

@media screen and (max-width:963px) {
  section.magokoro .top_2col_content .col_text {
      width: 90%;
	  padding: 0 5%;
  }
}
div#contents_common section.magokoro h3 {
    text-align: center;
    font-weight: normal;
    font-size: 22px;
    color: #666;
    margin-bottom: 1em;
}
div#contents_common section.magokoro ul.pskny_back_number {
    margin: 1em auto;
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
}
div#contents_common section.magokoro ul.pskny_back_number li {
    text-align: center;
    width: 33.3%;
    line-height: 3;
}
@media screen and (max-width:963px) {
    div#contents_common section.magokoro ul.pskny_back_number li {
        font-size: 14px;
    }
}

/* greeting */
section.greeting .top_2col_content {
    display: flex;
    max-width: 1000px;
    margin: 4em auto;
}

@media screen and (max-width:963px) {
  section.greeting .top_2col_content {
      display: inherit;
   }
}

section.greeting .top_2col_content .col_img {
    width: 30%;
}

@media screen and (max-width:963px) {
  section.greeting .top_2col_content .col_img {
      width: 100%;
	  text-align: center;
  }
  
  section.greeting .top_2col_content .col_img img {
      width: 50%;
  }    
}

section.greeting .top_2col_content .col_img:nth-child(odd) {
    padding-right: 3em;
}

@media screen and (max-width:963px) {
  section.greeting .top_2col_content .col_img:nth-child(odd) {
      padding-right: 0;
  }
}

section.greeting .top_2col_content .col_img:nth-child(even) {
    padding-left: 5em;
}

section.greeting .top_2col_content .col_text {
    line-height: 1.8;
    width: 70%;
}

@media screen and (max-width:963px) {
  section.greeting .top_2col_content .col_text {
      width: 90%;
   	  padding: 0 5%;
  }
}

section.greeting .top_2col_content .col_text p.sign {
    text-align: right;
}

/* faq */
section.faq div.menu {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
section.faq div.menu a {
    background-color: #F7E9E9;
    border-radius: 60px;
    width: 26.3%;
    text-decoration: none;
    margin: 1em;
    padding: 1em;
}
section.faq div.menu a li {
    text-align: center;
}

section.faq li {
    list-style: none;
}


section.faq div.qa {
    max-width: 1000px;
    margin: 0 auto 5em auto;
}
section.faq div.qa h3 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-top: 5em;
    margin-bottom: 2em;
}
section.faq div.qa li:nth-of-type(odd) {
    margin-top: 1em;
    color: #5A1212;
    font-weight: bold;
}
section.faq div.contact {
    margin: 0 auto;
    text-align: center;
    background-color: #FEFDFB;
    padding: 2em;
    margin-bottom: 3em;
    max-width: 450px;
}
section.faq div.contact span.title {
    font-size: 22px;
}
section.faq div.contact span.telfax {
    font-size: 22px;
}

/* initiative */
section.initiative .top_2col_content {
    display: flex;
    max-width: 1000px;
    margin: 4em auto 12em auto;
}

@media screen and (max-width:963px) {
  section.initiative .top_2col_content {
	  flex-flow: column;
	  margin: 4em auto 4em auto;
  }

  .flex_reverse {
	 flex-direction: column-reverse!important; 
  }
}

section.initiative .top_2col_content .col_img {
    width: 50%;
}

@media screen and (max-width:963px) {
  section.initiative .top_2col_content .col_img {
      width: 100%;
	  text-align: center;
  }

  section.initiative .top_2col_content .col_img img {
      width: 90%;
  }
}

section.initiative .top_2col_content .col_img:nth-child(odd) {
    padding-right: 5em;
}

@media screen and (max-width:963px) {
  section.initiative .top_2col_content .col_img:nth-child(odd) {
      padding-right: 0;
  }
}

section.initiative .top_2col_content .col_img:nth-child(even) {
    padding-left: 5em;
}

@media screen and (max-width:963px) {
  section.initiative .top_2col_content .col_img:nth-child(even) {
      padding-left: 0;
  }
}

section.initiative .top_2col_content .col_text {
    width: 50%;
}

@media screen and (max-width:963px) {
  section.initiative .top_2col_content .col_text {
      width: 90%;
	  padding: 20px 5% 0;
  }
}

section.initiative .top_2col_content .col_text span.top_title {
    font-size: 22px;
}

section.initiative .top_2col_content .col_text p.sign {
    text-align: right;
}

/* effort */
.veu_childPage_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.veu_childPage_list a {
    text-decoration: none;
}

.veu_childPage_list div {
    border: 1px solid #ddd;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
}

.veu_childPage_list h3 {
    font-size: 25px!important;
}

@media screen and (min-width:580px) {
.no_pc {
    display: none;
}
}

/* 空床状況 */
body#empty_bed #empty_bed_container {
    background-size: 100%;
    background-position: top;
    background-image: url("https://www.kyoaikai.com/ayame/wp-content/themes/lightning/ayame_recruit/images/empty_bed_bg.png");
    background-repeat: no-repeat;
    background-color: #F8F4EA;
}
body#empty_bed #empty_bed_container .header_title {
    padding-top: 18vmax;
    padding-left: 5em;
    color: #F29600;
}
body#empty_bed #empty_bed_container .header_title .title {
    font-size: 36px;
}
body#empty_bed #empty_bed_container .header_title .content {
    font-size: 20px;
}


body#empty_bed #empty_bed_container .empty_table {
    margin: 0 auto;
    width: 70%;
    padding-top: 10em;
}
body#empty_bed #empty_bed_container .empty_table table {
    width: 100%;
}
body#empty_bed #empty_bed_container .empty_table td {
    text-align: center;
    background-color: white;
    color: #8987AA;
    font-size: 24px;
    border: 1px solid #A19585;
}
body#empty_bed #empty_bed_container .empty_table td.orangecolor {
    background-color: #F29600;
    color: #fff;
}
body#empty_bed #empty_bed_container .empty_table td.height_01,
body#empty_bed #empty_bed_container .empty_table td.height_03 {
    padding: 0.6em 0;
}

body#empty_bed #empty_bed_container p.updated {
    text-align: right;
    padding-bottom: 7em;
}

body#empty_bed #empty_bed_container .empty_table td.height_03 {
    position: relative;
    font-weight: bold;
}
body#empty_bed #empty_bed_container span.sho {
    position: absolute;
    bottom: 6px;
    right: 6px;
    line-height: 1;
    font-weight: normal;
}

body#empty_bed #empty_bed_container p.updated {
    font-size: 18px;
}

@media screen and (max-width:963px) {
    body#empty_bed #empty_bed_container .empty_table {
        width: 100%;
    }
    
    body#empty_bed #empty_bed_container .header_title {
        padding-left: 2em;
        padding-right: 2em;
    }
    
    
    body#empty_bed #empty_bed_container span.sho {
        position: static;
    }
    body#empty_bed #empty_bed_container .empty_table td.height_03 {
        font-weight: normal;
    }
    body#empty_bed #empty_bed_container .empty_table td {
        font-size: 20px;
    }
}


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	font-size: 2.93vw;
}

/*ヘッダーブロック（ロゴやメニューが入った最上段ブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 90px;		/*ヘッダーの高さ*/
	text-align: left;
}
/*ロゴ画像*/
header #logo img {
	float: none;	/*左に回り込み*/
}

/*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon {
	float: none;
	margin: 0px;
}
/*アイコン１個あたりの設定*/
ul.icon li {
	padding-top: 0px;
}

/*コンテンツ（contents）
---------------------------------------------------------------------------*/
/*コンテンツブロック全体*/
#contents {
/* margin-top: 100px; */	/*上に空ける余白。headerとの間に空けたいスペースを調整して下さい*/
}
/*トップページのコンテンツへの追加指定*/
.home #contents {
/* margin-top: 380px; */	/*スライドショーの高さに合わせて調整して下さい*/
}

/*h2タグ*/
#contents h2 {
	/* border-left: 5px solid #ed7500; */	/*左の線の幅、線種、色*/
	/* line-height: inherit; */
	/* padding-left: 10px; */		/*左に空ける余白*/
}
/*h3タグ*/
#contents h3 {
	padding-left: 15px;		/*左に空ける余白*/
}
/*段落タグ設定*/
#contents p {
	padding: 0px 15px 20px;	/*上、左右、下への余白*/
}

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

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu {display: none;}
.big1 {font-size: 20px !important;}
.sh {display:block;}
.pc {display:none;}
.ws,.wl {width: 94%;}
.fl {float: none;}
.fr {float: none;}
.mobile {
	display: inherit;
}

}


/*
背景画像の処理
@media screen and (max-width: 1226px) {
    background-size: auto;
    background-position: top left;
}
 */