@charset "UTF-8";
	
/*
Theme Name: LAUBEST
Author: 株式会社ヒューバート
Author URI: https://www.hubert.co.jp
Description: 
Version: 202205

*/


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

* {
	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: 300;
    vertical-align: baseline;
    background: transparent;
}

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

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

@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;
}

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

.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;
}

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

.red,.attention {
	color:#9F3340;
}

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

.redBorder {
	color:#9F3340;
	text-decoration:underline;
}

.redBoldBorder {
	font-weight:bold;
	color:#9F3340;
	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, button, textarea, select {
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  margin: 0;
  padding: 0;
  -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: #edf4ff;
	border: 1px solid #4881d9;
}

/*プルダウンデザイン変更*/
.customSelect { 
	max-width: 100%;
	min-width: 200px;
	border: 1px solid #ddd;
	background: #fff url("../img/arrow_down.svg") 95% 14px no-repeat;
	background-size: 10px 10px;
	padding: 5px 40px 5px 10px;
}

.customSelectInner {
	width: 100%!important;
}

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

.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.6rem;
}

h3 {
	font-size:2rem;
}

h4 {
	font-size:1.6rem;
}

h5 {
	font-size:1.4rem;
}

h6 {
	font-size:1.3rem;
}

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

header {
	background: #f1f2f3;
	width:100%;
	height: 60px;
	z-index:100;
    transition: .35s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

header div#inner-head {
    width: 156px;
    height: 25px;
	margin: 0 auto;
	position: relative;
	z-index: 50;
	top: 20px;
}

header div#inner-head #siteID {
	display: block;
	background: url(img/common/logo-blk.svg) left top no-repeat;
	background-size: contain;
    width: 156px;
    height: 25px;
    margin: 0 auto;
	text-indent: -9999px;
}

@media only screen and (min-width: 813px) {
	
	header {
		height: 120px;
		position: relative;
	}
	
	header div#inner-head {
	    width: 190px;
	    height: 30px;
	    position: absolute;
	    top: 46px;
	    left: 50px;
	}
	
	header div#inner-head #siteID {
	    width: 190px;
	    height: 30px;
		margin: 0;
	}
	
}


/*------------------------------------------------------------
	ハンバーガー
------------------------------------------------------------*/

.menu-btn {
	background: #f1f2f3;
    display: block;
    width: 44px;
    height: 44px;
	position: fixed;
	top: 9px;
	left: 5vw;
    z-index: 1000;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    position: absolute;
    width: 25px;
    border-bottom: solid 1px #000;
    -webkit-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    padding-top: 4px;
    right: 10px;
}

.menu-btn span:nth-child(1) {
    top: 14px;
}
.menu-btn span:nth-child(2) {
    top: 23px;
}

.menu-btn.active span {
	border-color: 666;
    border-bottom: solid 1px 666;
    right: 8px;
}

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

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


@media only screen and (min-width: 813px) {
	
	.menu-btn {
		background: url(img/common/bg_bar.jpg) center top / cover no-repeat;
	    width: 80px;
	    height: 100vh;
		top: 0;
		left: 0;
		border-radius: 0;
	    -webkit-transition: .35s ease-in-out;
	    transition: .35s ease-in-out;
	}
	
	.menu-btn:hover {
		opacity: 0.9;
	}
	
	.menu-btn span {
		width: 40px;
	    right: 20px;
		border-bottom: solid 1px #fff;
	    -webkit-transition: .2s ease-in-out;
	    transition: .2s ease-in-out;
	}
	
	.menu-btn span:nth-child(1) {
	    top: 40px;
	}
	.menu-btn span:nth-child(2) {
	    top: 58px;
	}
	.menu-btn span:nth-child(3) {
	    top: 75px;
	}
	
	.menu-btn:hover span:nth-child(1),
	.menu-btn:hover span:nth-child(3)  {
		right: 17px;
	}
	
	.menu-btn:hover span:nth-child(2) {
		right: 23px;
	}
	
	.menu-btn.active span:nth-child(1),
	.menu-btn.active span:nth-child(2),
	.menu-btn.active span:nth-child(3) {
	    top: 56px;
	    right: 20px;
	}
	
	.menu-btn.active span:nth-child(1) {
		left: 17px;
	}
	
}


/*------------------------------------------------------------
	PAGE TOP
------------------------------------------------------------*/


@media only screen and (max-width: 812px) {
	
	#page-top {
		display: none!important;
	}

}

@media only screen and (min-width: 813px) {
		
	.arrow-wrap {
		display: block;
		height: 190px;
		position: fixed;
	    bottom: 40px;
	    left: 40px;
		z-index: 1500;
		transform: translateX(-50%);
	}
	
	.arrow-wrap a {   
		position: absolute;
	    display: block;
	    width: 20px;
	    height: 190px;
	    top: 0;
	    left: 27px;
	    z-index: 1600;
	}
	
	.arrow-inner p {
		font-size: 1.2rem;
		letter-spacing: 2px;
		font-weight: 500;
		text-align: end;
		color: #fff;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}
	
	.arrow {
		width: 1px;
		height: 100px;
		margin: 0 auto 40px;
		background-color: transparent;
		position: relative;
		overflow: hidden;
	}
	
	.arrow::before {
		content: '';
		background-color: #fff;
		width: 1px;
		height: 100px;
		margin: 50px auto 0;
		position: absolute;
		top: -150px;
		left: 0;
		-webkit-animation: arrow 2.5s ease 0s infinite normal;
		animation: arrow 2.5s ease 0s infinite normal;
	}
	
}

@keyframes arrow {
	
  0% {
    -webkit-transform: translate3d(-50%, 200px, 0);
    transform: translate3d(-50%, 200px, 0);
  }


  100% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
  
}

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

.drawer {
	background: #f1f2f3;
	width: 100%;
	height: 100%;
	padding: 80px 5vw 0;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 500;
	opacity: 0;
	color: #000;
}

.drawer.active {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
}

.drawer .drawer-wrap {
	position: relative;
    padding-top: 50px;
}

.drawer .drawer-wrap:before {
	content: '';
	background: url(img/common/logo-blk.svg) right top / contain no-repeat;
	width: 156px;
	height: 25px;
	position: absolute;
	top: -5px;
    right: 50%;
    transform: translateX(50%);
}

.drawer img {
	width: 100%;
	max-width: 600px;
	margin: 0 auto 40px;
}

@media only screen and (min-width: 813px) {
		
	.drawer {
		width: calc(100% - 80px);
		left: 80px;
	}
	
	.drawer .drawer-wrap {
	    width: 700px;
	    height: 500px;
	    position: absolute;
	    top: 0;
	    right: 0;
	    left: 0;
	    bottom: 0;
	    margin: auto;
	    padding-top: 80px;
	}
	
	.drawer .drawer-wrap:before {
	    width: 220px;
	    height: 36px;
		top: 0;
	}

}

.drawer ul {
	width: 50%;
	padding: 0 0 15px;
    float: left;
	position: relative;
}

.drawer ul li {
	text-align: center;
}

.drawer ul li:not(:last-child) {
	margin-bottom: 25px;
}

@media only screen and (min-width: 813px) {
	
	.drawer ul {
	    width: 350px;
	    padding: 0;
	}
		
}

.drawer ul li a {
	font: 400 1.6rem/1 'Roboto', sans-serif;
	letter-spacing: 1px;
	color: #000;
	text-decoration: none;
}

.drawer ul li a span {
	font-size: 1rem;
	display: block;
	color: #9c9c9c;
}

.drawer ul li section {
	margin: 8px 0 0;
}

.drawer ul li div {
	display: inline-block;
	margin: 0 15px 5px 0;
}

.drawer ul li div i {
	margin-right: 3px;
}

.drawer ul li div a {
	font-size: 1.3rem;
	font-weight: 400;
}

@media only screen and (min-width: 813px) {
	
	.drawer ul li a {
		font-size: 1.8rem;
	}
	
	.drawer ul li a span {
		font-size: 1.2rem;
		margin-top: 5px;
	}
	
	.drawer ul li section {
		margin: 13px 0 0;
	}
	
	.drawer ul li div a {
		font-size: 1.5rem;
	}
	
	.drawer ul li div a:hover {
		text-decoration: underline;
	}
	
}

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

#gNavi {
	display: none;
}

@media only screen and (min-width: 813px) {
		
	#gNavi {
		display: block;
	    width: 380px;
	    height: 80px;
	    margin: 0 auto;
	    position: absolute;
	    top: 20px;
	    right: 140px;
		z-index: 80;
	}
	
	#gNavi ul.gMenu {
		text-align: center;
		float: left;
	}
	
	#gNavi ul.gMenu > li {
		display: inline-block;
		margin: 0 8px;
	}
	
	#gNavi ul.gMenu > li a {
		display: block;
		font: 500 1.4rem/80px 'Roboto', sans-serif;
		letter-spacing: 1px;
		color: #111;
		padding: 0 5px;
		text-decoration: none;
		position: relative;
		overflow: hidden;
	}
	
	#gNavi ul.gMenu > li:hover a {
		color: #222;
	}
	
	#gNavi ul.gMenu li a:after {
		content: '';
		background: #475E91;
		width: 100%;
		height: 2px;
		position: absolute;
		bottom: 15px;
		left: -100%;
	    -webkit-transition: .2s ease-in-out;
	    transition: .2s ease-in-out;
	}
	
	#gNavi ul.gMenu li:hover a:after {
		left: 0;
	}
	
	
	/*メガメニュー 共通設定*/
	nav#gNavi div.second-menu {
	    visibility: hidden;
	    opacity: 0;
	}
	
	#gNavi ul li div.second-menu {
	    background: #FAFAF8;
	    position: absolute;
	    top: 80px; /*ドロップダウンの表示開始位置*/
	    line-height: 2;
	}
	
	#gNavi ul li:hover div.second-menu {
	    visibility: visible;
	    opacity: 1;
	    top: 80px; /*メガメニューの実際の表示位置*/
	    -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  {
		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/common/angle-right-light.svg') left top no-repeat;
		background-size: contain;
		width: 12px;
		height: 10px;
		right: 0;
		top: 21px;
		z-index: 1;
	}
	
	
	/*メガメニュー：ドロップダウン用*/
	#gNavi ul li.dropMenu div.second-menu {
	    width: 200px;
	    padding: 10px 20px 25px;
	}
	
	#gNavi ul li.dropMenu div.second-menu ul.sub-menu li {
		clear: both;
		width: 100%;
		height: 50px;
		line-height: 52px;
		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: 50px;
		line-height: 52px;
		font-size: 1.3rem;
		letter-spacing: 1px;
		padding: 0;
	    text-align: left;
		color: #000;
	}
	
	/*Instagramアイコン*/
	#gNavi div.instagram {
		width: 40px;
		height: 40px;
		font-size: 1.6rem;
		line-height: 38px;
		text-align: center;
		border: 1px solid #999;
		border-radius: 100px;
		position: relative;
		top: 19px;
		margin-left: 15px;
		float: left;
	}
	
	#gNavi div.instagram a {
		display: block;
	}

	
}


/*------------------------------------------------------------
	モーダル（予約ボタン）
------------------------------------------------------------*/

a.modal-btn {
	display: none;
	background: #fff;
	width: 84px;
	height: 60px;
	font: 500 1.1rem/60px 'Roboto', sans-serif;
	color: #000;
	text-align: center;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 90;
	text-decoration: none;
	overflow: hidden;
	-webkit-transition: ease-in-out .15s;
	transition: ease-in-out .15s;
}

@media only screen and (min-width: 813px) {
	
	a.modal-btn {
		display: block;
		width: 150px;
		height: 120px;
		font-size: 1.3rem;
		line-height: 120px;
	}
	
	a.modal-btn:after {
		content: '';
/* 		background: #475E91; */
		background-image: linear-gradient(137deg, #F9E1DA 0%, #578EA3 52%, #485C90 100%);
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: -100%;
		z-index: -1;
		-webkit-transition: ease-in-out .15s;
		transition: ease-in-out .15s;
	}
	
	a.modal-btn:hover {
		color: #fff;
	}
	
	a.modal-btn:hover:after {
		left: 0;
	}
	
}

/*------------------------------------------------------------
	予約ボタン（モーダル）
------------------------------------------------------------*/

#modal-inner dl {
	text-align: center;
}

#modal-inner dl:first-of-type {
	display: none;
}

#modal-inner dl dt {
	background: #fff;
	width: 170px;
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.6;
	color: #475E91;
	margin: 0 auto;
	position: relative;
	top: 11px;
}

#modal-inner dl dd {
	line-height: 1.4;
	border: 1px solid #475E91;
	padding: 16px 15px 11px;
}

#modal-inner dl dd > a {
	font-size: 2.8rem;
	font-weight: 700;
	color: #000;
	text-decoration: none;
}

#modal-inner dl:nth-cild(2) dd {
	padding: 20px 15px;
}

#modal-inner dl dd span {
	display: block;
	font-size: 1.2rem;
}

@media only screen and (min-width: 813px) {
	
	#modal-inner dl:first-of-type {
		display: block;
	}
	
	#modal-inner dl dt {
	    width: 190px;
		font-size: 1.6rem;
	    top: 13px;
	}
	
	#modal-inner dl dd {
		margin-bottom: 25px;
		padding: 16px 20px 16px;
	}
	
	#modal-inner dl dd > a {
		font-size: 3.6rem;
		letter-spacing: 4px;
	}
	
	#modal-inner dl dd span {
		font-size: 1.4rem;
		letter-spacing: 0;
	}
}


#modal-inner dl dd ul {
	width: 100%;
    margin: 10px auto 0;
}

#modal-inner dl dd ul li {
	font-size: 1.1rem;
	line-height: 1.8;
	text-align: left;
	color: #3c3c3c;
	letter-spacing: 0;
	text-indent: -1em;
	padding-left: 1em;
}

#modal-inner dl dd ul li a {
	color: #900;
	text-decoration: underline;
}

@media only screen and (min-width: 813px) {
	
	#modal-inner dl dd ul {
		max-width: 500px;
	}
	
	#modal-inner dl dd ul li {
		font-size: 1.2rem;
	}

}

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

#wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 60px;
}

div.container {
	width:100%;
}

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

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

@media only screen and (min-width: 813px) {
	
	#wrapper {
		width: calc(100% - 80px);
		margin-left: 80px;
		padding-top: 0;/*reset*/
	}
	
	div.container {
		width:100%;
		padding: 0 60px;
	}
	
	div.container div.contents {
		max-width:1180px;
		padding: 0;
	}
	
	div.container div.contents p:not(:last-child) {
		margin-bottom: 10px;
	}
	
}


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

.flex-box {
	display:flex;
	flex-wrap:wrap;
	display: -webkit-flex;
	-webkit-flex-wrap: wrap;
}

.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 {
		width:calc(90% / 3);
	}
	.one-third-left,
	.one-third-right {
		width:31.5%;
	}
	
	.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:63.5%;
	}
	
	.two-fifth-left,
	.two-fifth-right{
		width:38.8%;
	}
	
	.three-fifth-left,
	.three-fifth-right {
		width:59.2%;
	}
	
	.one-third {
		margin-right:5%;
	}
	.one-third-left,
	.two-third-left,
	.two-fifth-left,
	.three-fifth-left {
		margin-right:5%;
	}
	
	.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;
	}

	
}
/*------------------------------------------------------------
	2カラム（サイドナビ有り）
------------------------------------------------------------*/

div#side-left,
div#side-right {
	display:none;
}

div#main-left,
div#main-right {
	width:100%;
}

@media only screen and (min-width: 813px) {
	
	div#main-right {
		width:calc(100% - 280px);
		padding-left: 80px;
	}
	
	div#main-left {
		width:calc(100% - 280px);
		padding-right: 80px;
	}
	
	div#side-left {
		display:block;
		width:280px;
	}
	
	div#side-right {
		display:block;
		width:280px;
	}

}


/*------------------------------------------------------------
	見出し部分
------------------------------------------------------------*/

#main-vis-area {
	position: relative;
	padding-top: 40px;
}


@media only screen and (min-width: 813px) {
	
	#main-vis-area {
		position: relative;
	}
	
}

.bg-blk {
	display: block;
	background: #f1f1f1;
	width: 100%;
	height: calc(100% + 30px);
	position: absolute;
	top: -80px;
	left: 0;
	z-index: -1;
}


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

	.bg-blk {
		height: calc(140px + 70%);
		top: -140px;
	}

}

#main-vis {
	background-image: url(img/top/sample.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 200px;
	margin-bottom: 30px;
	position: relative;
	z-index: 20;
}

@media only screen and (min-width: 813px) {
	
	#main-vis {
		width: calc(100% - 435px);
		height: 500px;
		margin: 0 0 100px 435px;
		left: auto;
	}
}

/*------------------------------------------------------------
	パンくず
------------------------------------------------------------*/

div.breadcrumb {
	width: 100%;
	font-size: 1rem;
	color: #000;
	position: relative;
	margin: 15px auto 20px;
}

@media only screen and (max-width: 812px) {
	
	div.breadcrumb span[property="name"] {
	    display: inline-block;
	    padding: 0;
	    margin-top: -3px;
	    vertical-align: middle;
	    max-width: 130px;
	    white-space: nowrap;
	    overflow: hidden;
	    text-overflow: ellipsis;
	}
	
}

div.breadcrumb a {
	color: #000;
	text-decoration: none;
}

div.breadcrumb i {
	margin: 0 5px;
}

@media only screen and (min-width: 813px) {
	
	div.breadcrumb {
		margin-top: 60px;
	}
	
	div.breadcrumb {
		font-size: 1.2rem;
	}
	
	div.breadcrumb svg {
		margin: 0 12px;
	}
	
	div.breadcrumb a:hover {
		text-decoration: underline;
	}
	
}

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

footer {
	background: #f1f1f1;
	width:100%;
	color: #1c1c1c;
	padding-bottom: 30px;
	margin-top: 70px;
}

footer .foot-vis {
	background: url(img/common/img_foot_sp.jpg?20220524) center bottom no-repeat;
	background-size: cover;
	width: 100%;
	height: 50vw;
}

@media only screen and (min-width: 813px) {
	
	footer {
		padding: 0 0 60px 60px;
		margin-top: 200px;
	}
	
	footer .foot-vis {
		background-image: url(img/common/img_foot_pc.jpg?20220524);
	    width: 100%;
	    height: 430px;
	    position: relative;
	    top: -70px;
	    margin-left: 4vw;
	}
	
}



/*ロゴ・リンク*/

.foot-logo {
	margin-bottom: 10px;
}

.foot-logo dl dt {
	background: url(img/common/logo-blk.svg) center center / contain no-repeat;
    width: 200px;
    height: 32px;
    margin: 40px auto 15px;
	text-indent: -9999px;
}


ul.foot-link {
	text-align: center;
	margin-bottom: 20px;
}

ul.foot-link li {
	display: inline-block;
	margin-right: 10px;
}

ul.foot-link li:last-child {
	margin: 0;
}

ul.foot-link li a {
	font-size: 1.2rem;
	color: #000;
}

footer address {
	font-size: 1rem;
	text-align: center;
	color: #999;
}

@media only screen and (min-width: 813px) {
	
	.foot-bottom {
		margin: 0 60px 0 0;
		position: relative;
	}
	
	.foot-logo dl dt {
		margin: 0 30px 0 0;
		float: left;
	}
	
	ul.foot-link {
		text-align: right;
		margin: 0;
		position: absolute;
		top: 10px;
		right: 0;
	}
	
	ul.foot-link li {
		margin-right: 15px;
	}
	
	footer address {
		text-align: right;
	}
	
}




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

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;
	width: 100%;
	max-width: 280px;
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 50px;
	text-align: center;
	text-decoration: none!important;
	color: #000;
	position: relative;
	z-index: 2;
	overflow: hidden;
	border-bottom: 1px solid #475E91;
}

a.button:hover {
  color: #fff!important;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

a.button:before {
	content: '\f105';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 300;
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -24px;
}

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

a.button::after{
	  content: '';
	  background-image: linear-gradient(137deg, #F9E1DA 0%, #578EA3 52%, #485C90 100%);
	  width: 100%;
	  height: 100%;
	  position: absolute;
	  bottom: 0;
	  left: 0;
	  transform: scale(0, 1);
	  transform-origin: center top;
	  transition: transform .2s;
	  z-index: -1;
}

a.button:hover::after {
	  transform: scale(1, 1);
}


@media only screen and (min-width: 813px) {
	
	a.button {
		max-width: 320px;
		font-size: 1.4rem;
		line-height: 54px;
	}
	
	a.button:before {
		margin-top: -25px;
	}

}


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

@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;
	}
		
}



/*------------------------------------------------------------
	REVEALER
------------------------------------------------------------*/

#slide-holder {
	display:block;
	width: 100%;
	height: 100%; 
}

.block-revealer__element {
	background: #efefef;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	opacity: 0;
	z-index: 100000;
}


/* Page Loader */
.js .loading::before {
	content: '';
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	display: flex;
	width: 100%;
	height: 100%;
	text-align: center;
	background-image: linear-gradient(-45deg, #fff 00%, #efefef 100%);
	background: #efefef;
}

.js .loading::after {
	content: '';
	background: url(img/common/logo_blk.svg) center top no-repeat;
	background-size: contain;
    width: 160px;
    height: 180px;
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	pointer-events: none;
	animation: loaderAnim 2.5s linear infinite alternate forwards;
    animation-iteration-count: 1;
}


@keyframes loaderAnim {
	
  0% {
    opacity: 0;
  }

  60% {
		opacity: 1;
  }
  
  
  100% {
		opacity: 0;
  }
  
}