@charset "utf-8";

/* Base Layout
----------------------------------------------- */
html,body {
    height: 100%;
}
#layout {
	position: relative;
	/* z-index: 1; */
}


/* Container
----------------------------------------------- */
#main-wrap {
	position: relative;
	z-index: 10;
}
#main-wrap > section > .inner-content:last-child {
	padding-bottom: 0;
}
.container > section:first-child {
	padding-top: 100px;
}
#wrapper.no-head .container > section:first-child {
	padding-top: 0;
}
.container > section > article {
	margin-bottom: 100px;
}
.container > section > article:last-child {
	margin-bottom: 0;
}
.content-wrap {
	letter-spacing: 0.1em;
}
.is-show .content-wrap {
	/*opacity: 1;
	transform: matrix(1, 0, 0, 1, 0, 0);*/
}
.ll-container {
	position: relative;
	max-width: 1600px;
	margin: 0 auto;
}
.l-container {
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
	width: 90%;
}
.m-container {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
	width:90%;
}
.s-container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	width:90%;
}
.ss-container {
	position: relative;
	max-width: 640px;
	margin: 0 auto;
}
@media (max-width:750px){
	.s-container{
		width:95%;
	}
	.m-container{
		width:95%;
	}
}


/* Table Layout
----------------------------------------------- */
.table {
	display: table;
}
.cell {
	display: table-cell;
	vertical-align: middle;
}


/* Logo
----------------------------------------------- */


/* primaryNav
----------------------------------------------- */
.primaryNav {
	position: relative;
	/*z-index: 10;*/
	z-index:0;
	width: 100%;
	margin: 0 auto;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
}


/* Header
----------------------------------------------- */
header {
	position: relative;
	z-index: 1000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	width: 100%;
}
#header-logo {
	position: relative;
	display: none;
}
.not-home #header-logo {
	display: none;
}
#header-logo > .logo {
	height: 100%;
}
#header-logo > .logo a {
	display: block;
	height: 100%;
}
header.fixed {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
}
.not-home header.fixed {
	background: rgba(255,255,255,0.7);
}
.pc .home header.fixed {
	animation: slideDown 0.5s ease;
	-ms-animation: slideDown 0.5s ease;
	-webkit-animation: slideDown 0.5s ease;
	-moz-animation: slideDown 0.5s ease;
}
header.fixed > #header-logo {
	display: none;
}
@-webkit-keyframes slideDown {
	0% {
		top: -60px;
	}
    100% {
		top: 0px;
	}
}
@keyframes slideDown {
	0% {
		top: -60px;
	}
	100% {
		top: 0px;
	}
}

#header-navigation {
	position: relative;
	width: 100%;
	height: 60px;
	transition: all 0.3s;
}
header.fixed #header-navigation > .logo a {
	display: block;
	height: 100%;
}
#header-navigation > .logo {
	display: none;
	position: absolute;
	z-index: 5;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 50px;
	height: 100%;
}
header .primaryNav {
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
	align-items: center;
}
.primaryNav > .menus {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
	justify-content: space-between;
	width: 100%;
	height: 100%;
}
.primaryNav > .menus .text-tel {
	font-size: 2em;
	letter-spacing: 0.1em;
}
.primaryNav > .menus .btn-tel {
	position: relative;
	display: block;
	width: 42px;
	height: 42px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.primaryNav > .menus .btn-tel::before {
	position: absolute;
	z-index: 5;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-indent: 0;
	line-height: 1;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
    -ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
    -ms-flex-align: center;
	align-items: center;
	font-family: "Font Awesome 5 Free";
	font-size: 24px;
	content: "\f2a0";
	font-weight: 700;
	color: #FFF;
	-webkit-transform: rotate(45deg);
	transform: rotate(-45deg);
}
.primaryNav > .menus .btn-tel::after {
	display: block;
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	border-radius: 4px;
	transition: all 0.3s;
}

.primaryNav h1 {
	position: relative;
	/* z-index: 999; */
	z-index:100;
	height: 100%;
	
}
.primaryNav h1.logo a {
	display: block;
	height: 100%;
}

#headIcons {
	position: relative;
	z-index: 999;
	height: 100%;
}
#headIcons ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
	align-items: center;
	height: 100%;
}
#headIcons li {
	position: relative;
	margin: 0 6px;
}
#headIcons li.icon-mail {
	width: 35px;
}
#headIcons li a {
	position: relative;
	display: block;
	text-decoration: none;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
#headMenus {
	position: relative;
	z-index: 999;
	padding-right: 24px;
}
#headMenus ul {}
#headMenus li {
	display: inline-block;
	text-align: center;
	margin: 0 6px;
}
#headMenus li a {
	display: block;
	text-decoration: none;
	height: 100%;
	color: #FFF;
	border: #FFF solid 1px;
}
#headMenus li a:hover {
	color: #000;
	background: #FFF;
}


/* Footer
----------------------------------------------- */
footer {
	position: relative;
}
footer a {
	color:#FFF;
	text-decoration:none;
}
footer .primaryNav {
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	padding: 1em 0;
	padding-bottom: 5em;
}
#footNav {
	padding: 1em 0 0;
}
#footNav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
}
#footNav ul li {
	font-size: 1.1rem;
}
#footNav ul li a {
	text-decoration: none;
	display: inline-block;
	vertical-align: middle;
	padding: 1rem;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 45px;
	font-size: 1.15rem;
}
#footNav ul li a:hover {
	text-decoration: underline;
}
#footIcons {
	padding: 2em 0;
}
#footIcons ul {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
#footIcons li {
	position: relative;
	width: 56px;
	height: 56px;
	margin: 0 6px;
}
#footIcons li::before {
	display: block;
	content: "";
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #FFF;
	border-radius: 50%;
	transition: all 0.4s;
}
#footIcons li:hover::before {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
#footIcons li a {
	position: relative;
	display: block;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
#copyright {
	text-align: center;
}


/* Page Back
----------------------------------------------- */
#pageBack {
	margin-top:50px;
}


/* Page Top
----------------------------------------------- */
#pageTop {
	position: fixed;
	z-index: 100;
	right: 10px;
	bottom: 10px;
	text-align: center;
	background-color: #808080;
	width: 60px;
	height: 60px;
	-webkit-transform: translateY(200%);
	transform: translateY(200%);
	transition: all 0.3s;
	overflow: hidden;
}
#pageTop.active {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
#pageTop span {
	display: block;
}
#pageTop a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	font-size: 24px;
	color: #FFF;
	text-decoration: none;
	transition: all 0.5s;
	overflow: hidden;
}
#pageTop a::before {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-family: "icofont";
	font-weight: 700;
	content: "\eacb";
}
#pageTop:hover a {
	opacity: 0.8;
}
#pageTop a img {
	transition: all 0.5s;
}
#pageTop a:hover img {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}


/* Page Move
----------------------------------------------- */
.page-move {
	text-align: center;
}
.page-move li .moreBtn {
	width: 100%;
}


/* sns
----------------------------------------------- */
#fb_pluginBox .fb-page {
	min-height: 500px;
}


/* SNS Icons
----------------------------------------------- */
.snsIcons {
	text-align:center;
}
.snsIcons li {
	display:inline-block;
	text-align:center;
	padding:0 0.5em;
}
.snsIcons a {
	display:block;
	text-decoration:none;
}
.snsIcons i {
	font-size:26px;
}


/* Navigation [BASE]
----------------------------------------------- */
#headNav {
	z-index: 100;
	width: 100%;
	transition: all 0.3s;
}
#headNav > h1 {
	position: relative;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}
#headNav > h1 a {
	position:relative;
	display:block;
	text-decoration:none;
	height:100%;
}
#headNav > .snsIcons {
	float:right;
	display:table;
	height:50px;
}
#headNav > .snsIcons ul {
	display:table-cell;
	vertical-align:middle;
}
#headNav > .snsIcons li {
	display:inline-block;
	text-align:center;
	padding:0 0.5em;
}


/* Navigation [TOGGLE MENU]
----------------------------------------------- */
.toggleMenu {
	position: relative;
	z-index: 999;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: reverse;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
	flex-direction: column-reverse;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	height: 100%;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	cursor: pointer;
}
.toggleMenu > .text {
	position: relative;
	font-weight: 400;
	display: none;
}
.toggleMenu > .text > .enclose {
	position: relative;
	height: 18px;
	width: 50px;
	overflow: hidden;
}
.toggleMenu .bill {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	transition: all 0.3s;
	line-height: 18px;
	text-align: center;
	opacity: 0;
}
.toggleMenu .closing {
	top: 0;
	left: 0;
	right: 0;
	opacity: 1;
}
.toggleMenu .opening {
	top: 15px;
}
.toggleMenu.open .opening {
	top: 15px;
	opacity: 1;
}
.toggleMenu.open .bill {
	-webkit-transform: translate(0,-15px);
	transform: translate(0,-15px);
}
.toggleMenu .closing {
	top: 0;
	right: 0;
	opacity: 1;
}
.toggleMenu .opening {
	top: 15px;
	right: 0;
}
.toggleMenu .navBar {
	position: relative;
	display: block;
	background: #FFF;
	height: 3px;
	width: 35px;
	margin: 3px auto 6px;
	transition: all 0.3s;
}
.toggleMenu.open #navBar01 {
	top: 9px;
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.toggleMenu.open #navBar02 {
	opacity: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.toggleMenu.open #navBar03 {
	bottom: 9px;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}



/* Navigation [GLOBAL NAVIGATION]
----------------------------------------------- */
.gloNav a {
	position: relative;
	text-decoration: none;
	display: block;
	color: #000;
}


/* Navigation [Nav Block]
----------------------------------------------- */
#navBlock {
	position: relative;
	width: 100%;
	height: 60px;
	transition: all 0.5s ease-in 0.2s;
}
#navBlock .gloNav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
	align-items: center;
	height: 100%;
}
#navBlock .gloNav li {
	/* font-size: 1.2em; */
	font-size:1rem;
	height: 100%;
}
#navBlock .gloNav li .txt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
	align-items: center;
}
#navBlock .gloNav a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
	align-items: center;
	height: 100%;
	/* padding: 0 2em; */
	padding:0 1rem;
}
#navBlock .gloNav a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
	align-items: center;
	content: attr(data-text);
	color: #FFF;
	opacity: 0;
}
#navBlock .gloNav a:hover {
	background: #CCC;
}
#navBlock .gloNav a:hover .txt {
	opacity: 0;
}
#navBlock .gloNav a:hover::after {
	opacity: 1;
}


/* Navigation [Nav Box]
----------------------------------------------- */
#navBox {
	position: fixed;
	/* z-index: 100; */
	z-index:999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: start;
    -ms-flex-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	background: rgba(255,255,255,0.95);
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-out;
}
#navBox.open {
	visibility: visible;
	opacity: 1;
}
#navBox .gloNav {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 1em 0;
}
#navBox .gloNav li {
	position: relative;
	width: 100%;
	text-align: center;
	letter-spacing: 0.2em;
	opacity: 0;
	margin-bottom: 1.5em;
}
#navBox .gloNav li:last-child {
	margin-bottom: 0;
}
#navBox .gloNav li span {
	position: relative;
	display: inline-block;
}
#navBox .gloNav li a::after {
	display: block;
	content: attr(data-text);
}
#navBox.open .gloNav li {
	opacity: 1;
}
#navBox.open .gloNav li:nth-child(1) {
	-webkit-transition: opacity 1s ease .1s;
	transition: opacity 1s ease .1s;
}
#navBox.open .gloNav li:nth-child(2) {
	-webkit-transition: opacity 1s ease .2s;
	transition: opacity 1s ease .2s;
}
#navBox.open .gloNav li:nth-child(3) {
	-webkit-transition: opacity 1s ease .3s;
	transition: opacity 1s ease .3s;
}
#navBox.open .gloNav li:nth-child(4) {
	-webkit-transition: opacity 1s ease .4s;
	transition: opacity 1s ease .4s;
}
#navBox.open .gloNav li:nth-child(5) {
	-webkit-transition: opacity 1s ease .5s;
	transition: opacity 1s ease .5s;
}
#navBox.open .gloNav li:nth-child(6) {
	-webkit-transition: opacity 1s ease .6s;
	transition: opacity 1s ease .6s;
}


/* Layout
----------------------------------------------- */
.index-section {
	position: relative;
	padding: 70px 0;
	padding-bottom: 120px;
}


/* Page Head
----------------------------------------------- */
.pageHead {
	position: relative;
	margin-top:-60px;
}
.pageHead > .text {
	position: absolute;
	z-index: 5;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
}
.pageHead > .text .ttl {
	-ms-grid-row-align: center;
	-ms-flex-item-align: center;
	-webkit-align-self: center;
	align-self: center;
	color: #FFF;
	text-shadow: 1px 1px 3px #1A1A1A;
	letter-spacing: 0.1em;
	line-height: 1.2;
}
@media (max-width:750px){
	.pageHead{
		margin-top:0;
	}
}

/* crumbs
----------------------------------------------- */
#crumbs {
	padding: 3em 0;
}
#crumbs ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
#crumbs li {
	position: relative;
	color: #999;
}
#crumbs li:not(:last-child) {
	padding-right: 1.5em;
	margin-right: 0.5em;
}
#crumbs a {
	color: #999;
	text-decoration: none;
}
#crumbs .bread-home {}
#crumbs .bread-home a {
	display: block;
	width: 1.2em;
}
#crumbs .bread-home a::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	content: "\f015";
}
#crumbs .bread-home span {
	/*display: block;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;*/
	font-size: 0;
}
#crumbs li:not(:last-child)::after {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-family: "icofont";
	font-weight: 700;
	content: "\eaca";
}


/* Attachment
----------------------------------------------- */
#secondary {
	max-width:640px;
	margin:0 auto;
}
.archive #secondary {
	margin-top:5em;
}
.attachment h3 {
	font-size:1.4em;
	text-align:center;
	margin-bottom:5px;
}


/* Embed Movie
----------------------------------------------- */
.embedMovie {
	position: relative;
}


/* insertWrap
----------------------------------------------- */
.insertWrap {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.insertWrap iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}


/* 404
----------------------------------------------- */
.error404 p {

}


/* Lightbox
----------------------------------------------- */
.lb-nav a.lb-prev {
	background-image: url(images/prev.png);
}
.lb-nav a.lb-next {
	background-image: url(images/next.png);
}
.lb-data .lb-close {
	background-image: url(images/close.png);
}
.lb-cancel {
	background-image: url(images/loading.gif);
}


/* Colorbox
----------------------------------------------- */
#colorbox, #cboxOverlay, #cboxWrapper {
	position:absolute;
	top:0;
	left:0;
	z-index:9999;
	overflow:hidden;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
#cboxWrapper {max-width:none;}
#cboxOverlay{
	position:fixed;
	width:100%;
	height:100%;
	background: #000;
}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	padding: 36px 0 28px 0;
}
#cboxTitle {
	margin: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	color: #FFF;
}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{
	cursor:pointer;
	color: #FFF;
	background: none;
	border: none;
}
#cboxPrevious, #cboxNext {
	font-size: 28px;
	line-height: 28px;
	width: 28px;
	height: 28px;
}
#cboxPrevious {
	position: absolute;
	bottom: 0;
	right: 36px;
}
#cboxNext {
	position: absolute;
	bottom: 0;
	right: 0;
}
#cboxClose {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 36px;
	width: 36px;
	height: 36px;
}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent {
	box-sizing:content-box;
}
.grecaptcha-badge{
	z-index:994;
}

