@charset "UTF-8";
	

/*------------------------------------------------------------
	リセット
------------------------------------------------------------*/

* {
	box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, figure, font, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
	font-weight: 400;
    vertical-align: baseline;
    background: transparent;
}

html {
	font-size: 62.5%;
	height:100%;
	-webkit-text-size-adjust:100%; /*iPhone 文字サイズ調整*/
	overflow-x: hidden; /*横スクロール非表示*/
} 

body {
	width: 100%;
	height:100%;
	font:400 1.4rem/2 'Noto Sans JP',sans-serif,"游ゴシック","Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	color: #1c1c1c;
}

@media only screen and (min-width: 813px) {
	
	body {
		font-size: 1.4rem;
	}
	
}

/* remember to define focus styles! */
:focus {
    outline: 0;
}

i {
	font-style: normal;
}
 
/* remember to highlight inserts somehow! */
ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

address {
	font-style:normal;
}

/* 二乗等の上付き文字 */
sup {
    vertical-align: super;
    font-size: smaller;
}

main {
	display: block; /*IE11対応*/
}

/*------------------------------------------------------------
	LINK
------------------------------------------------------------*/

a:link {
	color: #3D2F29;
	text-decoration: none;
}

a:visited {
	color: #3D2F29;
	text-decoration: none;
}

a:hover {
	color: #3A4B78;
	text-decoration: underline;
}

a:active {
	color: #3A4B78;
}

a:focus { 
	outline:none;
}

/* タップで電話 */
a[href*="tel:"] {
	text-decoration: none;
}

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

	/* タップで電話（PC無効） */
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
	
}


/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/

.cf::after {
	content: "";
	display: table;
	clear: both;
}

br.pc {
	display: none;
}

@media only screen and (min-width: 481px) {
	
	br.sp {
		display: none;
	}
	
	br.pc {
		display: block;
	}

}

/* リスト */
ol, ul {
    list-style: none;
}

/* 画像 */
img {
	max-width: 100%;
	height: auto;
	display:block;/*画像の下の余白を消す*/
}

/* 太字・注意書き */
.bold {
	font-weight:bold;
}

.bold-border {
	font-weight:bold;
	text-decoration:underline;
}

.red,.attention {
	color:#CE4B4B;
}

.redBold {
	font-weight:bold;
	color:#CE4B4B;
}

.red-border {
	color:#CE4B4B;
	text-decoration:underline;
}

.red-bold-border {
	font-weight:bold;
	color:#CE4B4B;
	text-decoration:underline;
}

/*------------------------------------------------------------
	フォント
------------------------------------------------------------*/

.gothic {
	font-family: "游ゴシック","Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

.mincho {	
    font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
}

/*------------------------------------------------------------
	アニメーション
------------------------------------------------------------*/

.fade-in {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}

/*------------------------------------------------------------
	背景画像 Webp対応
------------------------------------------------------------*/

/* WebP未対応のブラウザ用のスタイル */
.no-webp .element {
  background-image: url("image.jpg");
}
/* WebP対応のブラウザ用のスタイル */
.webp .element {
  background-image: url("image.webp");
 }


/*------------------------------------------------------------
	テキストの寄せ
------------------------------------------------------------*/

.justify {text-align: justify;}
.center {text-align: center;}

/* float */
.floatL {float: left;}
.floatR {float: right;}

/* テーブル */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*------------------------------------------------------------
	フォームのデザイン
------------------------------------------------------------*/

/*iOS スタイル削除*/
input[type="button"],
input[type="text"],
input[type="submit"],
input[type="email"],
input[type="number"],
textarea  {
	max-width: 100%;
	background: #f1f1f1;
	border-radius: 0;
	padding: 7px 5px;
	border: 1px solid #ddd;
	-webkit-appearance: none;
	appearance: none;
}

/*項目のカラー（通常時）*/
input[type="text"],
input[type="tel"],
input[type="number"],
input[type="email"],
textarea {
  background: #f3f3f3;
  border: 1px solid #f3f3f3; /*フォーカス時と同じ太さに*/
}

/*項目のカラー（選択時）*/
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
textarea:focus {
	background: #f9e7ed;
	border: 1px solid #CE245F;
}

/*プルダウンデザイン変更*/
.customSelect { 
	max-width: 100%;
	min-width: 200px;
	border: 1px solid #ddd;
	padding: 5px 40px 5px 10px;
}

.customSelect:after {
	content: '\f107';
	font-family: 'Font Awesome 5 Pro';
	position: absolute;
	top: 8px;
	right: 20px;
} 

.customSelectInner {
	width: 100%!important;
	padding-left: 15px;
}

/* 元々のチェックボックス（非表示） */
input[type="checkbox"]{
    display: none;
}

/* チェックボックスの代わりを成すラベル */
input[type="checkbox"] + span{
    display: none;
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding: 0 10px 0 35px;
}

/* ラベルの左に表示させる正方形のボックス□ */
input[type="checkbox"] + span::before{
    content: "";
    position: absolute;
    display: block;
    background-color: #FFF;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    left: 0;
    top: 50%;
    border: 1px solid #bbb;
}

/* チェックが入った時のレ点 */
input[type="checkbox"]:checked + span::after{
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 18px;
    height: 9px;
    margin-top: -6px;
    top: 50%;
    left: 3px;
    transform: rotate(-45deg);
    border-bottom: 3px solid;
    border-left: 3px solid;
    border-color:  #CE245F;
}


/*------------------------------------------------------------
	マージン
------------------------------------------------------------*/

.mb5 { margin-bottom:5px;}
.mb10 {	margin-bottom:10px;}
.mb15 {	margin-bottom:15px;}
.mb20 {	margin-bottom:20px;}
.mb25 {	margin-bottom:25px;}
.mb30 {	margin-bottom:30px;}
.mb35 {	margin-bottom:35px;}
.mb40 {	margin-bottom:40px;}
.mb45 {	margin-bottom:45px;}
.mb50 {	margin-bottom:50px;}
.mb55 {	margin-bottom:50px;}
.mb60 {	margin-bottom:60px;}
.mb70 {	margin-bottom:70px;}
.mb80 {	margin-bottom:80px;}
.mb90 {	margin-bottom:90px;}
.mb100 {margin-bottom:100px;}
.mb110 {margin-bottom:110px;}
.mb120 {margin-bottom:120px;}

/*------------------------------------------------------------
	IE11以上 Skype電話番号横の「FREE」を削除
------------------------------------------------------------*/

span.skype_c2c_text_span {
	color:#000000 !important;
	font-weight:bold!important;
	font-family:"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",sans-serif !important;
}

span.skype_c2c_free_text_span,
img.skype_c2c_logo_img {
	display:none !important;
}

/*------------------------------------------------------------
	ベースライン
------------------------------------------------------------*/

h1 {
	font-size:3.2rem;
}

h2 {
	font-size:2.4rem;
	letter-spacing: 1px;
	font-weight: 400;
	margin-bottom: 20px;
	text-align: center;
	color: #000;
}


h3 {
	font-size: 2rem;
	font-weight: 600;
	margin: 25px 0 15px;
	line-height: 1;
	color: #8C6329;
	text-align: center;
}


@media only screen and (min-width: 813px) {
	
	
	h2 {
		font-size:4rem;
		margin-bottom: 40px;
	}
	
	h3 {
		font-size: 2rem;
		margin: 0 0 35px;
	}
	
}

h4 {
	font-size:1.6rem;
}

h5 {
	font-size:1.4rem;
}

h6 {
	font-size:1.3rem;
}

/*------------------------------------------------------------
	汎用テキスト
------------------------------------------------------------*/

p.txt10 {
	font-size: 1rem;
	text-align:justify;
}

p.txt11 {
	font-size: 1.1rem;
	text-align:justify;
}

p.txt12 {
	font-size: 1.2rem;
	text-align:justify;
}

p.txt13 {
	font-size: 1.3rem;
	text-align:justify;
}


/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/

header {
	background: rgba(0,0,0,0.8);
	width:100%;
	height:60px;
	margin-bottom:20px;
	position:fixed; /*またはabsoluteで非固定*/
	top:0;
	z-index:100;
	transition: .3s;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}

header.is-scrolled {
	background: rgba(0,0,0,0.6);
}

header.fixed {
	top: 0!important;
}


header div#inner-head {
	width:96%;
	margin:0 auto;
}



a.modal-btn {
	font-size: 3rem;
	color: #fff;
	position: absolute;
	top: 0;
	left: 20px;
}

.menu-btn {
    display: block;
    width: 35px;
    height: 35px;
    cursor: pointer;
	position: absolute;
	top: 34px;
	right: 20px;
    z-index: 100;
}

.menu-btn span {
    display: block;
    position: absolute;
    width: 70%;
    border-bottom: solid 1px #000;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    padding-top: 5px;
    right: 7px;
}
.menu-btn span:nth-child(1) {
    top: 3px;
}
.menu-btn span:nth-child(2) {
    top: 11px;
}
.menu-btn span:nth-child(3) {
    top: 19px;
}

.menu-btn.active span {
	border-color: #000;
    border-bottom: solid 1px #000;
}

.menu-btn.active span:nth-child(1) {
    top: 10px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu-btn.active span:nth-child(2),
.menu-btn.active span:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media only screen and (min-width: 813px) {
	
	header {
		height: 120px;
	}
	
	header div#inner-head {
		max-width:1180px;
	}
	
	.menu-btn {
		display: none;
	}

}

/*------------------------------------------------------------
	グランドメニュー
------------------------------------------------------------*/

#gNavi {
	display: none;
}

@media only screen and (min-width: 813px) {
	
		
	#gNavi {
		display: block;
		width: 1080px;
		height: 30px;
		margin: 0 auto;
		position: absolute;
		top: 30px;
		left: 50%;
		margin-left: -540px;
	}
	
	#gNavi ul {
		text-align: center;
	}
	
	#gNavi ul li {
		display: inline-block;
		border-right: 1px solid #fff;
	}
	
	#gNavi ul li a {
		display: block;
		height: 30px;
		color: #fff;
		padding: 0 30px;
	}
	
	
	/*メガメニュー 共通設定*/
	nav#gNavi div.second-menu {
	    visibility: hidden;
	    opacity: 0;
	}
	
	#gNavi ul li div.second-menu {
	    background: #f9f9f9;
	    position: absolute;
	    top: 30px; /*ドロップダウンの表示開始位置*/
	}
	
	#gNavi ul li:hover div.second-menu {
	    visibility: visible;
	    opacity: 1;
	    top: 30px; /*メガメニューの実際の表示位置*/
	    -webkit-transition: all .2s;
	    transition: all .2s;
	}
	
	#gNavi ul li.dropMenu div.second-menu ul.sub-menu li a:hover,
	#gNavi ul li.mega-menu div.second-menu div.one-fourth a:hover  {
		color: #40674B;
		text-decoration: underline;
	}
	
	#gNavi ul li.dropMenu div.second-menu ul.sub-menu li a:after,
	#gNavi ul li.mega-menu div.second-menu div.one-fourth a:after {
		content: none;
	}
	
	#gNavi ul li.dropMenu div.second-menu ul.sub-menu li a:before,
	#gNavi ul li.mega-menu div.second-menu div.one-fourth a:before {
		display: block;
		content: '';
		position: absolute;
	}
	
	#gNavi ul li.dropMenu div.second-menu ul.sub-menu li a:before,
	#gNavi ul li.mega-menu div.second-menu div.one-fourth a:before {
		background: url('../img/arrow-right.svg') left top no-repeat;
		background-size: contain;
		width: 11px;
		height: 9px;
		right: 10px;
		top: 12px;
		z-index: 1;
	}
	
	
	/*メガメニュー：ドロップダウン用*/
	#gNavi ul li.dropMenu div.second-menu {
	    width: 250px;
	    padding: 20px 20px 25px;
	}
	
	#gNavi ul li.dropMenu div.second-menu ul.sub-menu li {
		clear: both;
		width: 100%;
		height: 38px;
		line-height: 39px;
		border: none;
		border-bottom: 1px dotted #ccc;
		padding: 0 0 0 5px;
	}
	
	#gNavi ul li.dropMenu div.second-menu ul.sub-menu li a {
		display: block;
		height: 38px;
		font-size: 1.2rem;
		padding: 0;
	    text-align: left;
		color: #000;
	}
	
	
	/*メガメニュー：メガメニュー用*/
	#gNavi ul li.mega-menu div.second-menu {
	    width: 1080px;
	    padding: 20px 30px 25px;
	    left: 0;
	}
	
	#gNavi ul li.mega-menu div.second-menu div.one-fourth {
		font-size: 1.2rem;
		text-align: left;
	}
	
	#gNavi ul li.mega-menu div.second-menu div.one-fourth:nth-child(n+5) {
		margin-top: -150px;/*学校案内のみ調整*/
	}
	
	#gNavi ul li.mega-menu div.second-menu div.one-fourth dl dt {
		font-size: 1.3rem;
		font-weight: 500;
		color: #40674B;
		border-bottom: 1px solid #40674B;
		margin-bottom: 5px;
	}
	
	#gNavi ul li.mega-menu div.second-menu div.one-fourth dl dd {
		height: 38px;
		line-height: 39px;
		border-bottom: 1px dotted #ddd;
	}
		
	#gNavi ul li.mega-menu div.second-menu div.one-fourth a {
		font-size: 1.2rem;
		height: 38px;
		padding: 0 0 0 0;
	    text-align: left;
		color: #000;
	}
	
	#gNavi ul li.mega-menu div.second-menu div.one-fourth figure figcaption {
		line-height: 1.8;
	}


	
}

/*------------------------------------------------------------
	ドロワーメニュー
------------------------------------------------------------*/

#wrapper {
	background: #fff;
	position: relative;
/* 	overflow: hidden; */
	width: 100%;
}


/*------------------------------------------------------------
	コンテンツ：レイアウト
------------------------------------------------------------*/

.container {
	width:100%;
}

.container .contents {
	width:100%;
	margin:0 auto;
	padding: 0 4%;
	position:relative;
}

.container .contents p:not(:last-child) {
	margin-bottom: 5px;
}

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

	.container .contents {
		max-width:1380px;
		padding: 0;
	}
	
	.container .contents p:not(:last-child) {
		margin-bottom: 10px;
	}
	
}


@media only screen and (min-width: 813px) {
	
	.conts-inner {
		width: 420px;
		position: relative;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}

}


.about-box {
	margin-bottom: 40px;
}


@media only screen and (min-width: 813px) {
	
	.about-box {
		margin-bottom: 60px;
	}
		
}

.devider {
	background: url(../img/top/main_sample_01.jpg) center center / cover no-repeat;
	width: 100%;
	height: 400px;
	margin: 60px 0 30px;
}



@media only screen and (min-width: 813px) {
	
	.devider {
		height: 460px;
		margin: 120px 0 60px;
	}
	

	
}

#access-area {
	text-align: center;
	padding-bottom: 30px;
}


@media only screen and (min-width: 813px) {
	
	#access-area {
		padding-bottom: 120px;
	}
	
}

#access-area dl {
	margin-bottom: 20px;
}

@media only screen and (min-width: 813px) {
	
	#access-area dl {
		margin-bottom: 30px;
	}

	
}

#access-area dl dt {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333;
}

#access-area dl dd {
	font-size: 1.5rem;
	line-height: 1.8;
	
}

#access-area dl dd a {
	text-decoration: underline;
	color: #8C6329;
}

#access-area dl dd a i {
	font-size: 2.4rem;
	line-height: 1.6;
}


/*------------------------------------------------------------
	RESPONSIVE GRID（flex-box）
------------------------------------------------------------*/

.flex-box {
	display:flex;
	flex-wrap:wrap;
	display: -webkit-flex; /*古いブラウザ用*/
	-webkit-flex-wrap: wrap;/*古いブラウザ用*/
}

/*テンプレ用 仮設定*/
.grid {
	margin-bottom:10px;
	/*↓2行 テンプレ判別用 実際には不要*/
	background:#f1f1f1;
	min-height:100px;
}

.fullwidth,
.one-half,
.one-third,
.one-third-left,
.one-third-right,
.two-third-left,
.two-third-right,
.two-fifth-left,
.two-fifth-right,
.three-fifth-left,
.three-fifth-right {
	width:100%;
}

.one-fourth,
.one-fifth {
	width:48%;
	margin-right:4%;
}

.one-sixth {
	width:32%;
	margin-right:2%;
}

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

	.one-fourth:nth-child(2n),
	.one-fifth:nth-child(2n),
	.one-sixth:nth-child(3n) {
		margin-right:0;
	}

}

@media only screen and (min-width: 813px) {
	
	.grid {
		margin-bottom:20px;
	}
	
	.one-half {
		width:48%;
		margin-right:4%;
	}
	
	.one-third,
	.one-third-left,
	.one-third-right {
		width:32%;
	}
	
	.one-fourth {
		width:23.5%;
		margin-right:2%;
	}
	
	.one-fifth {
		width:18.4%;
		margin-right:2%;
	}
	
	.one-sixth {
		width:15%;
	}
	
	.two-third-left,
	.two-third-right {
		width:66%;
	}
	
	.two-fifth-left,
	.two-fifth-right{
		width:38.8%;
	}
	
	.three-fifth-left,
	.three-fifth-right {
		width:59.2%;
	}
	
	.one-third,
	.one-third-left,
	.two-third-left,
	.two-fifth-left,
	.three-fifth-left {
		margin-right:2%;
	}
	
	.one-half:nth-child(2n),
	.one-third:nth-child(3n),
	.one-fourth:nth-child(4n),
	.one-fifth:nth-child(5n),
	.one-sixth:nth-child(6n) {
		margin-right:0;
	}
	
}


/*------------------------------------------------------------
	メインビジュアル
------------------------------------------------------------*/


#main-vis-area {
	position: relative;
	margin-bottom: 60px;
	z-index: 1;
}


#main-vis-area:after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}

#main-vis-area img {
	width: 240px;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	position: absolute;
	z-index: 10;
}

@media only screen and (min-width: 813px) {
	
	#main-vis-area {
		margin-bottom: 70px;
	}
	
	#main-vis-area img {
		width: 400px;
	}
		
}

#slides {
	width: 100%;
	height: 100vh;
	margin-bottom: 50px;
	position: relative;
}

#slideshow {
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

@media only screen and (min-width: 813px) {
	
	#slides {
		width: 100%;
		height: 900px;
		margin: 0 0 0;
	}

}







/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/

footer {
	background:#000;
	width:100%;
	padding: 10px;
}

footer p {
	font-size: 1rem;
	text-align: center;
	color: #ccc;
}

footer div#inner-foot {
	width:96%;
	margin:0 auto;
}

@media only screen and (min-width: 813px) {
	
	footer div#inner-foot {
		max-width:1180px;
	}
	
}




/*------------------------------------------------------------
	横スクロールコンテンツ
------------------------------------------------------------*/

.scroll-area {
	  overflow-x: scroll;
	  overflow-y: hidden;
	  -webkit-overflow-scrolling: touch;
}

/*横スクロールするラップ全体の設定*/
.scroll-area .scroll-wrap {
	width: 3000px;/*読み込み時に崩れないように。最終的にJSで上書きしてる。*/
	 height:190px; 
}

/*横スクロールするアイテム単体の設定*/
.scroll-area .scroll-wrap .scroll-item {
	width: 230px;
	height: auto;
	margin-right: 10px;
	float: left;
}

@media only screen and (min-width: 813px) {
	
	.scroll-area {
		overflow-x: hidden;
	}
	
	/*横スクロールするラップ全体の設定*/
	.scroll-area .scroll-wrap {
		width: 1180px!important; /*JSで自動取得する幅を強制リセット */
		margin: 0 auto;
		height:auto; 
	}
	
	/*横スクロールするアイテム単体の設定*/
	.scroll-area .scroll-wrap .scroll-item {
		width: 32%; /*個別に設定 or ここで一括設定 */
		margin: 0 0 20px;
	}
	
	.scroll-area .scroll-wrap .scroll-item:not(:nth-child(3n)) {
		margin-right: 2%;
	}
	
}

/*------------------------------------------------------------
	ページトップへ
------------------------------------------------------------*/

p#page-top a {
	background: #1d1d1d;
	width: 30px;
	height: 30px;
	font-size: 2rem;
	font-weight: bold;
	line-height: 30px;
	text-align: center;
	position: fixed;
	bottom: 70px;
	right: 5%;
	display: block;
	color: #fff;
	z-index: 10000;
}


/*------------------------------------------------------------
	ボタン
------------------------------------------------------------*/

.button-list {
	margin-top: 20px;
	text-align: center;
	font-size: 0;
}

@media only screen and (min-width: 813px) {
	
	.button-list {
		margin-top: 30px;
	}
	
}

.button-list li {
	display: inline-block;
	font-size: 1.2rem;
}

.button-list li:nth-child(2) {
	margin-left: 4vw;
}


@media only screen and (min-width: 813px) {
	
	.button-list li {
		font-size: 1.4rem;
	}
	

	.button-list li:nth-child(2) {
		margin-left: 20px;
	}

}

a.button,
a.button::before,
a.button::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .2s;
  transition: all .2s;
}

a.button {
	display: block;
	background: #fff;
	width: 44vw;
	max-width: 100%;
	line-height: 42px;
	text-align: center;
	text-decoration: none!important;
	color: #8C6329;
	position: relative;
	z-index: 2;
	border: 1px solid #8C6329;
	overflow: hidden;
}

a.button:hover {
  color: #fff!important;
  text-decoration: none;
}

a.button:before {
	content: '\f105';
	font-size: 1.1rem;
	font-family: 'Font Awesome 6 Pro';
	font-weight: 300;
	position: absolute;
	top: calc(50% + 1px);
	right: 10px;
	transform: translateY(-50%);
}

a.button:hover:before {
	right: 12px;
}

a.button::after{
	display: block;
	content: '';
	background: #8C6329;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	top: 0;
	left: -100%;
}

a.button:hover::after {
  left: 0;
}


/*戻るボタン*/
a.button.reverse:before {
    content: '\f104';
    right: auto;
    left: 20px;
}

a.button.reverse:hover:before {
    right: auto;
    left: 17px;
}

a.button.reverse::after {
	left: auto;
	right: -100%;
}

a.button.reverse:hover::after {
  right: 0;
}

@media only screen and (min-width: 813px) {
	
	a.button {
		width: 200px;
		line-height: 50px;
	}

}





/*------------------------------------------------------------
	Ajax Pagination and Infinite Scroll
------------------------------------------------------------*/

a.malinky-load-more__button,
a.malinky-load-more__button:before,
a.malinky-load-more__button:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .2s;
  transition: all .2s;
}

a.malinky-load-more__button {
	display: block;
	background: #fff;
	width: 240px;
	max-width: 100%;
	line-height: 42px;
	text-align: center;
	text-decoration: none!important;
	color: #013577;
	position: relative;
	z-index: 2;
	border-bottom: 1px solid #013577;
	overflow: hidden;
}

a.malinky-load-more__button {
	width: 260px;
	margin: 20px auto 0;
}

a.malinky-load-more__button:hover {
  color: #fff!important;
  text-decoration: none;
}

a.malinky-load-more__button:before {
	content: '\f107';
	font-family: 'Font Awesome 5 Pro';
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -25px;
}

a.malinky-load-more__button:hover:before {
	margin-top: -25px;
}

a.malinky-load-more__button:after {
	display: block;
	content: '';
	background: #013577;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	bottom: -100%;
	left: 0;
}

a.malinky-load-more__button:hover:after {
  bottom: 0;
}

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

	a.malinky-load-more__button {
		width: 320px;
		line-height: 56px;
		margin: 0 auto 60px;
	}
	
}

/*LOADING中のイメージを中央に配置*/
.malinky-ajax-pagination-loading img {
	margin: 0 auto;
}


/*------------------------------------------------------------
	WP-pagenavi
------------------------------------------------------------*/

div.wp-pagenavi {
    text-align:center;
    margin: 10px auto 0;
}

div.wp-pagenavi a,
div.wp-pagenavi span {
	display: inline-block;
    border:solid 1px #ccc;
    padding: 7px 13px 6px;
    margin: 5px;
    color:#666;
    text-decoration:none;
}

div.wp-pagenavi span.extend {
    padding:10px 13px 10px;
}

div.wp-pagenavi a:hover,
div.wp-pagenavi span.current {
	background: #CE257E;
    border:solid 1px #CE257E;
    color:#fff;
    text-decoration:none;
}

div.wp-pagenavi span.current {
	background: #CE257E;
	border:solid 1px #CE257E;
    color:#fff;
    text-decoration:none;
}

@media only screen and (min-width: 813px) {
	
	div.wp-pagenavi a,
	div.wp-pagenavi span {
	    padding: 7px 18px 7px;
	}
	
}

/*------------------------------------------------------------
	並び替え
------------------------------------------------------------*/

@media only screen and (max-width: 812px) {
	
	.order-01 {
		order: 1;
	}
	
	.order-02 {
		order: 2;
	}
	
	.order-03 {
		order: 3;
	}
	
	.order-04 {
		order: 4;
	}
	
	.order-05 {
		order: 5;
	}
	
	.order-06 {
		order: 6;
	}
	
	.order-07 {
		order: 7;
	}
	
	.order-08 {
		order: 8;
	}
	
	.order-09 {
		order: 9;
	}
	
	.order-10 {
		order: 10;
	}
	
	.order-11 {
		order: 11;
	}
	
	.order-12 {
		order: 12;
	}
		
}

