@charset "UTF-8";

/* ------------------- Break point memo------------------- 
Desktop(min-width:1000px) 最大横幅960+40px
PC, Tablet(min-width:768px)
mobile(min-width:480px)
*/

/* @@@@@@@@@@@@@@@@@@@@@@ CSS リセット・TIPS @@@@@@@@@@@@@@@@@@@@@@ */

/*Debug*/
.hoge{
	border:1px solid red;
}
/*Scroll*/
::-webkit-scrollbar {
	width: 12px;
}
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
}
::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
.pre-scroll{
	overflow:scroll;
	border:1px solid #a5a5a5;
	padding:5px;
}
/*border-box*/
* {
	-webkit-box-sizing: border-box;
		 -moz-box-sizing: border-box;
					box-sizing: border-box;
}
*:before,
*:after {
	-webkit-box-sizing: border-box;
		 -moz-box-sizing: border-box;
					box-sizing: border-box;
}
/*clear*/
.clear{
	clear: both;
}
/* clearfix */
.cf:after{
	content:"";
	display:block;
	clear: both;
}
/*margin*/
.mar5{
	margin-bottom:5px;
}
.mar10{
	margin-bottom:10px;
}
.mar15{
	margin-bottom:15px;
}
.mar20{
	margin-bottom:20px;
}
.mar30{
	margin-bottom:30px;
}
.mar40{
	margin-bottom:40px;
}
.mar1em{
	margin-bottom:1em;
}
.mar2em{
	margin-bottom:2em;
}
/* フォントファミリー */
.f-serif{
	font-family:"Roboto Slab" , Garamond , "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
}
.f-sakura{
	font-family: "さくらぎ蛍雪", "SakuraKeisetsu", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}


/* フォント色 */
.f-red{
	color:#ff0000;
}
.f-redC{
	color:#CC0000;
}
.f-redb{
	color:#ff0000;
	font-weight:bold;
}
.f-redbC{
	color:#CC0000;
	font-weight:bold;
}
.f-white{
	color:#ffffff;
}
.f-brownCC{ /* こげ茶 */
	color:#4f2d03;
}
.f-redCC{ /* エンジ色 */
	color:#a62037;
}
.f-greyCC{ /* グレー */
	color:#666666;
}
/* フォントウェイト */
.f-bold{
	font-weight:bold;
}
.f-bold33{
	text-shadow:-0.3px -0.3px 0.2px rgba(51,51,51,1),0.3px 0.3px 0.2px rgba(51,51,51,1);
}
.f-boldbr{
	text-shadow:0.1px 0.1px 1px rgba(93,75,69,0.3);
}
/* フォントサイズ */
.f-120{
	font-size:120%;
}
.f-110{
	font-size:110%;
}
.f-95{
	font-size:95%;
}
.f-90{
	font-size:90%;
}
/* フォント他 */
.f-new{ /* NEWS! */
	font-weight:bold;
	color:#ff0000;
	font-size:12px;
}
.f-note{
	margin-left:1em;
	font-size:0.9em;
	text-indent:-1em;
}
.f-note:before{
	content:"※ ";
}
.f-hosoku{
	margin-left:1em;
	font-size:0.9em;
	text-indent:-1em;
}
.f-hosoku:before{
	content:"* ";
}
.f-dia{
	margin-left:1em;
	text-indent:-1em;
}
.f-dia:before{
	content:"◆ ";
}
.f-circle{
	margin-left:1em;
	text-indent:-1em;
}
.f-circle:before{
	content:"● ";
}
.f-square{
	margin-left:1em;
	text-indent:-1em;
}
.f-square:before{
	content:"■ ";
}
.nowrap{
	white-space: nowrap;
}
.ib{
	display:inline-block;
}
/** background **/
.bg-col-lightYellow{
	background-color:#FFFFCC;
	padding-left:5px;
}
.bg-col-yellow{
	background-color:#f8ec60;
	padding-left:5px;
}
/******* hidden,visible ******/
.visible-xxs,
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
	display: none !important;
}
.visible-xxs-block,/* 追加 */
.visible-xxs-inline,/* 追加 */
.visible-xxs-inline-block,/* 追加 */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
	display: none !important;
}
/* ▼追加 */
@media (max-width: 479px) {
	.visible-xxs {
		display: block !important;
	}
	table.visible-xxs {
		display: table !important;
	}
	tr.visible-xxs {
		display: table-row !important;
	}
	th.visible-xxs,
	td.visible-xxs {
		display: table-cell !important;
	}
}
@media (max-width: 479px) {
	.visible-xxs-block {
		display: block !important;
	}
}
@media (max-width: 479px) {
	.visible-xxs-inline {
		display: inline !important;
	}
}
@media (max-width: 479px) {
	.visible-xxs-inline-block {
		display: inline-block !important;
	}
}
/* ▲追加 */
@media (max-width: 767px) {
	.visible-xs {
		display: block !important;
	}
	table.visible-xs {
		display: table !important;
	}
	tr.visible-xs {
		display: table-row !important;
	}
	th.visible-xs,
	td.visible-xs {
		display: table-cell !important;
	}
}
@media (max-width: 767px) {
	.visible-xs-block {
		display: block !important;
	}
}
@media (max-width: 767px) {
	.visible-xs-inline {
		display: inline !important;
	}
}
@media (max-width: 767px) {
	.visible-xs-inline-block {
		display: inline-block !important;
	}
}
@media (min-width: 768px) and (max-width: 1159px) {
	.visible-sm {
		display: block !important;
	}
	table.visible-sm {
		display: table !important;
	}
	tr.visible-sm {
		display: table-row !important;
	}
	th.visible-sm,
	td.visible-sm {
		display: table-cell !important;
	}
}
@media (min-width: 768px) and (max-width: 1159px) {
	.visible-sm-block {
		display: block !important;
	}
}
@media (min-width: 768px) and (max-width: 1159px) {
	.visible-sm-inline {
		display: inline !important;
	}
}
@media (min-width: 768px) and (max-width: 1159px) {
	.visible-sm-inline-block {
		display: inline-block !important;
	}
}
@media (max-width: 479px) {
	.hidden-xxs {
		display: none !important;
	}
}
@media (max-width: 767px) {
	.hidden-xs {
		display: none !important;
	}
}
@media (min-width: 768px) and (max-width: 1159px) {
	.hidden-sm {
		display: none !important;
	}
}
/* others */
*{
	margin:0;
	padding:0;
}
h1,h2,h3{
	font-weight:normal;
	line-height:1.25;
}
html{
	font-size:16px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* リスト */
ul{
	margin:0;
	padding:0;
}
ul li{
	list-style-type:none;
}
ol{
margin: 0;
padding-left: 1.5em;
list-style-type: decimal;
list-style-position:outside;
}
ul.disc li{
	list-style-type:disc;
}
/*link*/
a {
	color: #0071bc;
	cursor:pointer;
}
a:hover,
a:focus {
	color:#e27e52;
}
/* strong */
strong{
	color:#4f2d03;
}
a strong{
	color: #4f2d03;
}
/*img*/
img {
	border:none;
	vertical-align: top;
	/* Chromeで画像がボケるのを防止する*/
	image-rendering: -webkit-optimize-contrast;
}
a img{ /* Internet Explorer用の設定 */
	border:none;
}

/* 画像をレスポンシブ化 */
img{
	display: block;
	max-width: 100%;
	height: auto;
}
/* 枠ベージュ背景 */
.waku-beige{
	display:inline-block;
	background-color:#f6f4f2;
	margin-bottom:20px;
	padding:15px;
}
/* 枠グレーライン */
.waku-grayline{
	display:inline-block;
	margin-bottom:20px;
	padding:15px;
	border:1px solid #ddd;
}


/* 上に戻るリンク */
.goTop{
	position:fixed;
	right:5px;
	bottom:57px;
	z-index:15;
	cursor:pointer;
}
.goTop img{
	width:38px;
}

/* youtube動画埋め込み */
.movieFrame{
	margin-right:auto;
	margin-left:auto;
	position: relative;
	width:100%;
	/* アスペクト比が16:9の場合は56.25% */
	/* W560:H315の場合→315 / 560 * 100 = 56.25 */
	padding-top: 56.25%;
	max-width:100%;
}
.movieFrame iframe{
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media(min-width:768px){
	/* 上に戻るリンク */
	.goTop{
		right:16px;
		bottom:40px;
	}
	.goTop img{
		width:56px;
	}

}/*END media query*/
/*////////////////////////////////////////////*/


/* @@@@@@@@@@@@@@@@@@@@@@ 基本構造 @@@@@@@@@@@@@@@@@@@@@@ */

html{
	font-size:16px;
}
body{
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-size:16px;
	line-height: 1.6;
	background-color:#fff;
	-webkit-text-size-adjust: 100%;
	color:#000;
}
@media(min-width:1000px){
	html{
		font-size:18px;
	}
	body{
		font-size:18px;
	}
}
/* スマホでヘッダー固定 */
@media(max-width: 768px){
	header{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 9999;
		height: 56px;
		background-color:#fff;
	}
	.wrapper {
		padding-top:56px;
	}
}
/* 縦に短いページ（お問合せ）でフッターの下の余白を消すCSS */
html,
body {
	margin: 0;
	min-height: 100%;
}
body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.wrapper {
	flex: 1;
}
/* section */
section{
	margin-bottom:40px;
}
section .h2-wrap{
	background-image:url(/img/tl_line_gold.png);
	background-repeat:repeat-x;
	background-position:center center;
	text-align:center;
	margin-bottom:1.5em;
	margin-right:10px;
	margin-left:10px;
}
section h2{
	display:inline-block;
	background-color:#fff;
	padding-right:1em;
	padding-left:1em;
	font-size:1.125em;
}
section h3{
	font-size:1.5em;
	font-weight:normal;
	margin-bottom:1em;
	line-height:1.6;
}
section h3.line-gold{
	margin-top:30px;
	font-size:1.25em;
	line-height:1.4;
	text-align:center;
	margin-bottom:1em;
}
section h3.line-gold:after{
	content:"";
	display:block;
	margin:0 auto;
	width:3em;
	height:0.7em;
	border-bottom:2px solid #bb9e2d;
}
.section-col{
	padding-left:0.5em;
	padding-right:0.5em;
}
.section-col:after{
	content:"";
	display:table;
	clear:both;
}
.section-col p{
	margin-bottom:1em;
}
.section-col p.mar2em{
	margin-bottom:2em;
}
.section-col p.lastCh{
	margin-bottom:0;
}
/*
section-col-wrap 写真背景
col-inner-bg     白背景
section-col      テキストエリア
*/
.section-col-wrap{
	background-image: url(/img/top_unkai01_sq80.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding:0.7em;
	font-size:0.9375em;
}
.section-col-wrap.lastCh{
	padding-bottom:0;
}
.section-col-wrap:after{
	content:"";
	display:table;
	clear:both;
}
.section-col-wrap.story01{
	background-image: url(/img/top_story01_sq80.jpg);
}
.section-col-wrap.story02{
	background-image: url(/img/top_sunset_sq80.jpg);
}
.section-col-wrap.mission01{
	background-image: url(/img/top_unkai01_sq80.jpg);
}
.section-col-wrap.key-message01{
	background-image: url(/img/top_before_sunset_sq80.jpg);
	min-height: 200px;
	background-position: center 70%;
	height: 60.81vw; /* 画像の縦横比または表示域 375x228 */
}
.section-col-wrap.concept01{
	background-image: url(/img/top_unkai03_sq80.jpg);
	padding:0;
	background-position: 20% 70%;
}
.section-col-wrap.start01{
	background-image: url(/img/top_unkai02_sq80.jpg);
}
.section-col-wrap.vision01{
	background-image: url(/img/top_theme_sq80.jpg);
	min-height: 200px;
	background-position: center 70%;
	height: 56.25vw;
}
.section-col-wrap.core01{
	background-image: url(/img/top_before_sunset_sq80.jpg);
	min-height: 400px;
	background-position: center 70%;
	height: 109.6vw;
}
.section-col-wrap.core03{
	background-image: url(/img/top_unkai04_sq80.jpg);
	min-height: 340px;
	height: 70vw;
}
.section-col-wrap.profile01{
	background-image: url(/img/top_profile01_sq80.jpg);
	min-height: 300px;
	height: 70vw;
}
.section-col-wrap.service01{
	background-image: url(/img/slideLL01_sq80.jpg);
	min-height: 300px;
}
.section-col-wrap.contact01{
	background-image: url(/img/top_sunset_sq80.jpg);
	min-height: 200px;
	background-position: center 70%;
	height: 60.81vw;
}
.section-col-wrap.movie01,
.section-col-wrap.service02,
.section-col-wrap.profile02,
.section-col-wrap.core02,
.section-col-wrap.vision02,
.section-col-wrap.imark01{
	background-image: none;
}
/* 白背景 */
.col-inner-bg{
	background:rgba(255,255,255,0.8);
	text-align:center;
}
.section-col-wrap.concept01 .col-inner-bg{
	background:rgba(255,255,255,0.6);
}
/* テキストエリア */
.section-col-wrap.core03 .section-col,
.section-col-wrap.core01 .section-col,
.section-col-wrap.core02 .section-col,
.section-col-wrap.start01 .section-col,
.section-col-wrap.concept01 .section-col,
.section-col-wrap.key-message01 .section-col,
.section-col-wrap.mission01 .section-col,
.section-col-wrap.story02 .section-col,
.section-col-wrap.story01 .section-col{
	padding-top:2em;
	padding-bottom:2em;
}
.section-col-wrap.profile02 .section-col{
	padding-top:2em;
}
.section-col-wrap.vision02 .section-col,
.section-col-wrap.core03 .section-col,
.section-col-wrap.start01 .section-col,
.section-col-wrap.story02 .section-col{
	text-align:center;
}
.section-col-wrap.core03 .section-col,
.section-col-wrap.core01 .section-col,
.section-col-wrap.core03 .section-col,
.section-col-wrap.start01 .section-col,
.section-col-wrap.story02 .section-col{
	color:#fff;
}
.section-col-wrap.core03 .section-col{
	text-shadow: 0 0 10px #666,
               0 0 10px #666,
               0 0 10px #666,
               0 0 10px #666,
               0 0 10px #666;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media(min-width:768px){
	.header-inner{
		max-width:1260px;
		margin-left:auto;
		margin-right:auto;
	}
	section .h2-wrap,
	.gnav,
	.footer-inner,
	.section-col,
	.bread{
		max-width:960px;
		margin-left:auto;
		margin-right:auto;
	}
	.movieSection .section-col{
		max-width:1260px;
		margin-left:auto;
		margin-right:auto;
	}
	.footer-inner{
		padding-left:15px;
		padding-right:15px;
	}
	/* section */
	section{
		margin-bottom:80px;
	}
	section .h2-wrap{
		margin-bottom:2em;
	}
	section h2{
		font-size:1.5em;
	}
	section h3.line-gold{
		margin-bottom:2em;
	}
	.section-col-wrap{
		padding:0;
		font-size:1em;
	}
	/* 写真背景 */
	.section-col-wrap.core01{
		height: 60.9vw;
		background-position: center 80%;
	}
	.section-col-wrap.core03{
		height: 50vw;
	}
	.section-col-wrap.contact01{
		background-position: center 78%;
		height: 30vw;
	}
	/* 白背景 */
	.col-inner-bg{
		float:left;
		width:50%;
	}
	.section-col-wrap.mission01 .col-inner-bg{
		float:right;
		width:50%;
	}
	.section-col-wrap.concept01 .col-inner-bg{
		float:none;
		width:100%;
	}
	/* テキストエリア */
	.section-col-wrap.core03 .section-col,
	.section-col-wrap.start01 .section-col,
	.section-col-wrap.concept01 .section-col,
	.section-col-wrap.key-message01 .section-col,
	.section-col-wrap.mission01 .section-col,
	.section-col-wrap.story02 .section-col,
	.section-col-wrap.story01 .section-col{
		padding-top:4em;
		padding-bottom:4em;
	}
	.section-col-wrap.profile02 .section-col{
		padding-top:4em;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Desktop(1000px and up) */
@media print, screen and (min-width:1000px){
	.section-col{
		padding-left:0;
		padding-right:0;
	}
	/* 写真背景 */
	.section-col-wrap.core01{
		height: 46vw;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Desktop(1260px and up) */
@media print, screen and (min-width:1260px){
	/* 写真背景 */
	.section-col-wrap.core01{
		height: 36vw;
		background-position: center 85%;
	}
	.section-col-wrap.core03{
		height: 38vw;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/* @@@@@@@@@@@@@@@@@@@@@@ ヘッダー @@@@@@@@@@@@@@@@@@@@@@ */
/* ロゴとキャッチ */
.site-logo{
	padding:10px 5px 5px 5px;
	margin:0;
	font-weight:normal;
}
.site-logo a{
	display:block;
}
.site-logo img{
	float:left;
	width:100%;
	height:auto;
	max-width:220px;
}
/* トグルボタン */
a#navbtn{
	position:absolute;
	top:0;
	right:0;
	padding:8px 5px 5px 5px;
	cursor:pointer;
	color:#3b3b3b;
	text-align:center;
	width:50px;
	height:50px;
	text-decoration:none;
}
a#navbtn:hover{	opacity:0.8;}
a#navbtn:focus{	outline:none;}
a#navbtn i{	font-size:34px;}

/* ---------------------------
ドロワーナビ（スマホ用）
jquery.mmenu.all.cssの上書き
------------------------------- */
/* MENU見出し */
.mm-navbar{
	border-bottom:1px solid #3b3b3b;
	height:50px;/* 見出しをボタンの高さに揃える */
	text-align:center;
}
.mm-hasnavbar-top-1 .mm-panels{
	top:50px /* 見出しの下にメニューパネルの位置をあわせる */
}
.mm-navbar:after{/* 見出しにMENUテキストを追加 */
	content:"";
	display:inline-block;
	width:40px;
	height:40px;
	margin-top:5px;
	background-image:url(/img/i_logo.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
/* 閉じるボタン */
.mm-btn{/* サイズを大きくする */
	width:50px;
	height:50px;
}
.mm-navbar .mm-btn:first-child{/* メニューパネルより左に飛び出させる */
	left:-50px !important;
	background:transparent;
	color:#fff;
}
/* 「×閉じる」の出現を遅くする */
.mm-menu.mm-theme-white .mm-btn.mm-close{
	opacity:0;
	-webkit-transition:opacity .8s ease;
	transition:opacity .8s ease;
}
html.mm-opening .mm-menu.mm-theme-white .mm-btn.mm-close{
	opacity:1;
}

.mm-menu.mm-theme-white .mm-btn span{/* jQueryから追加した「閉じる」のCSS */
	font-size:12px;
	color:#fff;
	display:block;
	margin:auto;
	position:absolute;
	top:27px;
	left:7px;
}
.mm-menu.mm-theme-white .mm-btn:after,
.mm-menu.mm-theme-white .mm-btn:before{/* 「×」の色 */
	border-color:rgba(255,255,255,1);
}
.mm-clear:after,
.mm-clear:before,
.mm-close:after,
.mm-close:before{/* 「×」大きさを変更 */
	border:1px solid transparent;
	width:10px;
	height:10px;
	top:-15px;
	bottom:0;
}
.mm-clear:before,
.mm-close:before{/* 「×」位置を変更 */
border-right:none;
border-bottom:none;
right:15px;
}
.mm-clear:after,
.mm-close:after{/* 「×」位置を変更 */
border-left:none;
border-top:none;
right:27px;
}

/* メニュー背景など */
html.mm-pagedim-black.mm-opening #mm-blocker{
	opacity:.5; /* 背景の黒透過を濃くする */
}
/* 文字色を少し濃く */
.mm-menu.mm-theme-white{
	color:rgba(0,0,0,1) !important;
}
.mm-menu.mm-theme-white .mm-listview>li> .mm-next{/* 親メニュー */
	height:50px !important;
	border-color:transparent !important;
	width:100% !important;/* クリック領域を親要素全体にする */
}
.mm-menu.mm-theme-white .mm-listview>li .mm-next:after{
	border-color:rgba(35,170,196,1) !important;/* 親メニューの矢印 */
}
.mm-listview>li>span{ /* リストのインデント（リンクなし、カテゴリ見出し） */
	padding:15px 10px 15px 20px !important;
	font-weight:bold;
}
.mm-listview>li>a{ /* リストのインデント（リンクあり） */
	padding:15px 10px 15px 35px !important;
}
.mm-listview>li.sub>a{ /* リストのインデント（リンクあり、カテゴリのサブメニュー） */
	padding:15px 10px 15px 45px !important;
}
.sidebar ul.g-menu-list-angle li.sub a i,
.mm-listview>li>a i{/* アイコンのCSS */
	font-size:16px;
	display:inline-block;
	padding-left:10px;
	padding-bottom:2px;
}
 /* サブメニュー背景 */
.mm-menu.mm-theme-white .mm-divider,
.mm-menu.mm-theme-white .mm-fixeddivider span,
.mm-menu.mm-theme-white .mm-listview>li.mm-opened.mm-vertical>.mm-panel,
.mm-menu.mm-theme-white .mm-listview>li.mm-opened.mm-vertical>a.mm-next,
.mm-menu.mm-theme-white.mm-vertical .mm-listview>li.mm-opened>.mm-panel,
.mm-menu.mm-theme-white.mm-vertical .mm-listview>li.mm-opened>a.mm-next{
	background:rgba(93,75,69,0.08) !important;
}
/* メニュー(リンクあり)の頭に矢印をつける */
ul.g-menu-list-angle li a{
	position:relative;
}
ul.g-menu-list-angle li a:before{
	position:absolute;
	left:25px;
	top:28%;
	font-family: 'icomoon';
	content: "\f105";
}
ul.g-menu-list-angle li.sub a:before{
	left:35px;/* サブメニューのインデント */
}

/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media (min-width: 768px) {
	.header-inner:after{
		content:"";
		display:block;
		clear:both;
	}
	/* ロゴとキャッチ */
	.site-logo{
		padding:10px 5px 5px 5px;
		padding:20px;
	}
	.site-logo img{
		max-width:290px;
	}
	/* トグルボタン */
	#navbtn{
		display:none;
	}
	/* ヘッダー右エリア */
	.header-left{
		float:left;
		width:51%;
		border:0px solid red;
	}
	.header-right{
		float:right;
		width:48%;
		padding-top:20px;
		padding-right:5px;
		border:0px solid red;
	}
	.header-right ul{
		text-align:right;
	}
	.header-right ul li{
		display:inline-block;
		padding:5px 0.8em;
	}
	.header-right ul li a{
		color:#000;
		text-decoration:none;
	}
	.header-right ul li a:hover{
		opacity:0.8;
		text-decoration:underline;
	}
	/* グローバルナビ */
	ul.gnav{
		text-align:center;
		padding:20px 0;
	}
	ul.gnav li{
		display:inline-block;
	}
	ul.gnav li a{
		border-right:1px solid #CCC;
		display:block;
		text-align:center;
		line-height:1;
		text-decoration:none;
		padding:10px 20px;
		color:#333;
		letter-spacing:1px;
	}
	ul.gnav li:last-child a{
		border-right:none;
	}
	ul.gnav li a:hover,
	ul.gnav li a:focus{
		opacity:0.8;
	}

}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Desktop(1000px and up) */
@media print, screen and (min-width:1000px){
	ul.gnav{
		padding:30px 0;
	}
	ul.gnav li a{
		padding:10px 30px;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/* @@@@@@@@@@@@@@@@@@@@@@ フッター @@@@@@@@@@@@@@@@@@@@@@ */
/* コピーライト */
.copy-wrap{
	background-color: #313131;
	padding:60px 5px;
	text-align:center;
	color: #fff;
}
.copy-wrap .copyright{
	font-size:0.875em;
}

/* @@@@@@@@@@@@@@@@@@@@@@ スライド @@@@@@@@@@@@@@@@@@@@@@ */
/* ▼画像が一瞬縦並びになる問題を修正 */
.mainvisual#slider{
	display: none;
}
.mainvisual#slider.slick-initialized{
	display: block; /*slick-initializedが付与されたら表示*/
	overflow:hidden;
}
/* ▲画像が一瞬縦並びになる問題を修正 */
.mainvisual#slider {
	width: 100%;
	margin: 0 auto;
}
.mainvisual#slider img {
	width: 100%;
}
.mainvisual .slick-slide,
.mainvisual .slick-slide > div,
.mainvisual .slick-slide > div li,
.mainvisual .slick-slide > div li img{ /* 画像の下の僅かな余白を無しにする */
	line-height:1;
	vertical-align:bottom;
}
.mainvisual .slick-dots{ /* ドットの位置調整 */
	bottom: 2px;
}
.mainvisual .slick-dots li{/* ドットの左右の余白 */
	margin:0 7px;
}
.mainvisual .slick-dots li button:hover:before,
.mainvisual .slick-dots li button:focus:before{
	opacity: .6;
}
.mainvisual .slick-dots li button:before{ /* ドットのデザイン変更 */
	font-family: 'icomoon';
	content: "\f111";
	opacity: .35;
	color: #fff;
	font-size: 6px;
	text-shadow:0 0 1px rgba(0,0,0,0.4);
}
.mainvisual .slick-dots li.slick-active button:before{
	opacity: .75;
	color:#bb9e2d;
}
.mainvisual a{
	outline: 0 !important; /* タッブした時の枠線を削除 */
	display:block;
}
/* サイトタイトルのフェードイン */
.mainslide-wrap{
	position:relative;
	padding-top:25%;
}
.mainslide-wrap .bnr-site-title{
	display:block;
	position:absolute;
	top:5%;
	left:0;
	z-index:5000;
	text-align:center;
	width:100%;
}
.mainslide-wrap .bnr-site-title.bnr-fade-in {
	animation: bnrfadeIn 3.5s ease-in forwards;
	/* アニメーション名、かかる時間、変化する速度、変化前後のスタイル */
}
@keyframes bnrfadeIn {
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
	}
}
/* サイトタイトル */
.bnr-site-title h1{
	font-size:1.25em;
	border-bottom:2px solid #bb9e2d;
	padding-bottom:0.5em;
	margin-bottom:0.6em;
	margin-right:auto;
	margin-left:auto;
	max-width:16.2em;
}

/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media print, screen and (min-width: 768px) {
	.mainvisual .slick-dots{
		bottom: 10px; /* ドットの位置調整 */
	}
	.mainvisual .slick-dots li{/* ドットの左右の余白 */
		margin:0 12px;
	}
	.mainvisual .slick-dots li button:before{ /* ドットのデザイン変更 */
		font-size: 12px;
		text-shadow:0 0 2px rgba(0,0,0,0.4);
	}
	/* 現在表示のスライドをズーム */
	.mainvisual .slick-slide img{
		transform: scale(1);
		transition: 40s ease;
	}
	.mainvisual .slick-slide.slick-current img {
		transform: scale(1.2);
	}
	.mainslide-wrap{
		padding-top:18%;
	}
	/* サイトタイトル */
	.bnr-site-title h1{
		font-size:1.5em;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Desktop(1000px and up) */
@media print, screen and (min-width:1000px){
	.mainslide-wrap{
		padding-top:15%;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Desktop(1260px and up) */
@media print, screen and (min-width:1260px){
	.mainvisual .slick-dots{
		bottom: 25px; /* ドットの位置調整 */
	}
	.mainslide-wrap{
		padding-top:13%;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Letina(1660px and up) */
@media print, screen and (min-width:1660px){
	.mainvisual .slick-dots{
		bottom: 50px; /* ドットの位置調整 */
	}
	.mainslide-wrap{
		padding-top:11%;
	}
}/*END media query*/
/*////////////////////////////////////////////*/

/* @@@@@@@@@@@@@@@@@@@@@@ トップページ @@@@@@@@@@@@@@@@@@@@@@ */
/* -------------------------------------- 
 introSection
----------------------------------------- */
.introSection{
	padding-top:40px;
}
.introSection p{
	line-height:1.8;
	font-size:1.125em;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media(min-width:768px){
	.introSection .section-col{
		text-align:center;
	}
	.introSection .intro-wrap{
		display:inline-block;
		text-align:left;
	}
}/*END media query*/
/*////////////////////////////////////////////*/

/* -------------------------------------- 
 messageSection
----------------------------------------- */
.messageSection h3{
	margin-top:30px;
	font-size:1.25em;
	text-align:center;
}

.message_movie{
	max-width:700px;
	margin:0 auto;
}

/* -------------------------------------- 
 keyMessageSection
----------------------------------------- */
.keyMessageSection .section-col-wrap{
	position:relative;
}
.keyMessageSection h3{
	position:absolute;
	top: 18vw;
	left:0;
	color:#fff;
	width:100%;
	text-align:center;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media(min-width:768px){
	.keyMessageSection h3{
		top: 24vw;
		font-size:1.875em;
	}
}/*END media query*/
/*////////////////////////////////////////////*/

/* -------------------------------------- 
 conceptSection
----------------------------------------- */
.conceptSection h3{
	font-size:1.125em;
	margin-bottom:2em;
}
/* -------------------------------------- 
 imarkSection
----------------------------------------- */
.imark-toikake-wrap{
	background-image:url(/img/tl_line2_gold_top.png);
	background-repeat:repeat-x;
	background-position:center top;
}
.imark-toikake{
	background-image:url(/img/tl_line2_gold_bottom.png);
	background-repeat:repeat-x;
	background-position:center bottom;
	text-align:center;
	padding-top:2em;
	padding-bottom:2em;
	margin-bottom:1em;
	font-size:1.25em;
}
.goConcept a{
	position:relative;
	display:block;
	text-decoration:none;
	color:#000;
}
.goConcept a:hover{
	opacity:0.7;
}

.goConcept span{
	display:block;
	text-align:center;
	font-size:1.875em;
}
/* 「わたし」とは？ の後の矢印
.goConcept span:after{
	font-family: 'icomoon';
	content: "\f105";
	padding-left:7px;
}
.goConcept.no-link span:after{
	display:none;
}
*/
/* ふわっと現れる「Click!」 */
.targetWaypointShow .tool-tips{
	opacity:0;
	transition:.5s;
}
.targetWaypointShow.active .tool-tips{
	opacity:1;
}
.goConcept .tool-tips{
	position:absolute;
	top:45%;
	right:2%;
	background:#a5a5a5;
	color:#fff;
	width:100px;
	line-height:60px;
	font-weight:bold;
	text-align:center;
	border-radius:60px;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media(min-width:768px){
	.imark-toikake{
		font-size:1.25em;
	}
	.goConcept span{
		font-size:3em;
	}
	/* ふわっと現れる「Click!」 */
	.goConcept .tool-tips{
		width:200px;
		line-height:120px;
		border-radius:120px;
		font-size:2em;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/* -------------------------------------- 
 visionSection
----------------------------------------- */
.visionSection h3.line-gold{
	margin-bottom:0;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media(min-width:768px){
	.visionSection h3.line-gold{
		margin-bottom:0;
	}
}/*END media query*/
/*////////////////////////////////////////////*/

/* -------------------------------------- 
 coreValueSection
----------------------------------------- */
.coreValueSection .core01 .section-col{
	padding:60px 20px 20px;
}
.coreValueSection .core01 h3{
	margin-bottom:40px;
}
.coreValueSection .core01 h3 small{
	display:block;
	margin-bottom:2em;
}
.coreValueSection .core01 p{
	line-height:2;
	text-align:right;
	font-size:1.125em;
}
.coreValueSection .core02 ul li{
	vertical-align:top;
	text-align:center;
	margin-bottom:1em;
}
.coreValueSection .core03 p{
	font-size:1.125em;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media(min-width:768px){
	.coreValueSection .core01 .section-col{
		padding:80px 50px 50px;
	}
	.coreValueSection .core01 h3{
		font-size:3em;
	}
	.coreValueSection .core01 h3 small{
		font-size:0.4em;
		margin-bottom:0.7em;
	}
	.coreValueSection .core01 p{
		font-size:1.33em;
	}
	.coreValueSection .core03 .section-col{
		text-align:left;
		width:23em;
	}
}/*END media query*/
/*////////////////////////////////////////////*/
/*////////////////////////////////////////////*/
/* Desktop(1000px and up) */
@media print, screen and (min-width:1000px){
	.coreValueSection .core03 .section-col{
		text-align:left;
		width:23em;
	}
	.coreValueSection .core03 p{
		font-size:1.25em;
	}
}/*END media query*/
/*////////////////////////////////////////////*/

/* -------------------------------------- 
 profileSection
----------------------------------------- */


/* -------------------------------------- 
 serviceSection
----------------------------------------- */
.serviceSection dl{
	padding-left:20px;
	padding-right:20px;
	margin-bottom:2em;
}
.serviceSection dt{
	padding-bottom:10px;
	margin-bottom:10px;
	border-bottom:1px solid #bb9e2d;
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media(min-width:768px){
	.serviceSection h3.line-gold{
		margin-top: 2em;
	}
	.serviceSection dl{
		float:left;
		width:50%;
		padding-left:2em;
		padding-right:10px;
	}
	.serviceSection dl:nth-child(odd){
		clear:both;
		padding-left:10px;
		padding-right:2em;
	}
}/*END media query*/
/*////////////////////////////////////////////*/

/* -------------------------------------- 
 movieSection
----------------------------------------- */
.movieSection li{
	margin-bottom:2em;
}
.movieSection .movie-tl{
	padding-top:1em;
	text-align:center;
}
.movieSection .btn-channel{
	text-align:center;
}
.movieSection .btn-channel a{
	color: #333;
	text-decoration: none;
	text-align:left;
	display: table;
	max-width:380px;
	padding: 0.8em 0.5em;
	margin:0 auto;
	cursor: pointer;
	line-height: 1.4;
	border-radius: 2px;
	border:2px solid #333;
}
.movieSection .btn-channel a:hover{
	opacity:0.7;
}
.movieSection .btn-channel a i,
.movieSection .btn-channel a div{
	display: table-cell;
	vertical-align: middle;
	padding-right:5px;
	padding-left:5px;
}
.movieSection .btn-channel a i.fa-youtube2{
	font-size:1.4em;
	width:20%;
}
.movieSection .btn-channel a i.fa-angle-right{
	font-size:1.4em;
	width:5%;
}
.movieSection .btn-channel a div{
	width:75%;
	font-weight:bold;
}

/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media(min-width:768px){
	.movieSection{
		margin-bottom:100px;
	}
	.movieSection ul{
		margin-bottom:1em;
	}
	.movieSection ul:after{
		content:"";
		display:block;
		clear:both;
	}
	.movieSection li{
		float:left;
		width:33.33%;
		padding-left:1em;
		padding-right:1em;
	}
	.movieSection .movie-tl{
		font-size:0.875em;
	}
	.movieSection .btn-channel a{
		max-width:600px;
		padding:1em 2em;
	}
	.movieSection .btn-channel a i.fa-youtube2{
		font-size:2em;
	}
	.movieSection .btn-channel a i.fa-angle-right{
		font-size:2em;
	}
	.movieSection .btn-channel a div{
		font-size:1.25em;
	}

}/*END media query*/
/*////////////////////////////////////////////*/

/* -------------------------------------- 
 topContactSection
----------------------------------------- */
.topContactSection .btn-contact{
	text-align:center;
	padding-top:20vw;
}
.topContactSection .btn-contact a{
	display:inline-block;
	padding:0.7em 3em;
	font-size:1.125em;
	border:1px solid #fff;
	color:#fff;
	text-decoration:none;
	text-shadow: 0 0 10px #666,
               0 0 10px #666,
               0 0 10px #666,
               0 0 10px #666,
               0 0 10px #666;
}
.topContactSection .btn-contact a:hover{
	background:rgba(255,255,255,0.2);
}
/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media(min-width:768px){
	.topContactSection .btn-contact{
		padding-top:10vw;
	}
	.topContactSection .btn-contact a{
		padding:0.5em 4em;
		font-size:1.875em;
	}
}/*END media query*/
/*////////////////////////////////////////////*/

/* @@@@@@@@@@@ パンクズリスト（お問合せページ用） @@@@@@@@@@@@@@@ */
.bread {
	padding-top:1em;
	padding-left:15px;
	padding-right:15px;
}
.bread ol{
	margin:0;
	padding:0;
	list-style:none;
}
.bread li a{
	display:inline-block;
	padding:5px 5px;
	color:#777;
	font-size:14px;
	text-decoration:none;
	cursor:default;
}
.bread li a[href]{
	color:#5d4b45;
	cursor:pointer;
}
.bread li a[href]:hover{
	text-decoration:underline;
	color:#a69b00;
}
.bread ol:after{
	content:"";
	display:block;
	clear:both;
}
.bread li{
	float:left;
	width:auto;
}
.bread li:before{
	font-family: 'icomoon';
	content: "\f105";
	margin-left:2px;
	margin-right:2px;
	color:#5d4b45;
}
.bread li:first-child:before{
	content:none;
}
bread i{
	font-size:16px;
}
.bread span{
	display:inline-block;
	text-indent:-9999px;
}
/* お問合せトップの時は「お問合せ」リンクを非表示にする */
.contact-top .bread .bread-contact{
	display:none;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@ お問合せ @@@@@@@@@@@@@@@@@@@@@@ */

/* --------------------------------
 contactForm
----------------------------------- */
.contactFormSection{
	padding-bottom:20px;
}
.contactFormSection .waku-beige{
	margin-bottom:40px;
	font-size:0.875em;
}
.contactFormSection .hissu{
	font-size:0.75em;
	color:#fff;
	background-color:#cc0000;
	border-radius:4px;
	padding:2px 5px;
	line-height:1;
}
.contactFormSection .go-privacy{
	padding-top:20px;
	font-size:90%;
}

.contactFormSection input[type="text"],
.contactFormSection input[type="furigana"],
.contactFormSection input[type="tel"],
.contactFormSection input[type="email"]{
	max-width:30em;
}
/* ボタン */
.contactFormSection .btn-area{
	margin-top:30px;
}
.contactFormSection .btn{
	padding: 0.5em 1em;
	font-size: 1.125em;
	font-weight: 400;
}
.contactFormSection .btn:hover{
	opacity:0.7;
}
.contactFormSection .btn-success{
	background-color: #bb9e2d;
	border-color: #bb9e2d;
}

/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media(min-width:768px){
	.contactFormSection{
		padding-bottom:40px;
	}
	.contactFormSection .go-privacy{
		padding-top:30px;
		font-size:100%;
	}
}/*END media query*/
/*////////////////////////////////////////////*/


/* @@@@@@@@@@@@@@@@@@@@@@@@@ 個人情報保護 @@@@@@@@@@@@@@@@@@@@@@ */

.privacySection h3{
	font-size:1.125em;
	margin-bottom:10px;
}
.privacySection .policy{
	background-color:#f6f4f2;
	padding:20px 10px;
}
.privacySection ol li{
	margin-bottom:1em;
}
.privacySection ol li ol li{
	margin-bottom:0;
}

/*////////////////////////////////////////////*/
/* PC, Tablet(768px and up) */
@media(min-width:768px){
	.privacySection .policy{
		border-radius:20px;
		padding:40px;
	}

}/*END media query*/
/*////////////////////////////////////////////*/