@charset "utf-8";

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


/* Container
----------------------------------------------- */
.container {
	position: relative;
	z-index: 0;
}
.container > section {
	padding: 50px 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 {
	max-width: 1600px;
	margin: 0 auto;
}
.l-container {
	max-width: 1280px;
	margin: 0 auto;
}
.m-container {
	max-width: 1080px;
	margin: 0 auto;
}
.s-container {
	max-width: 800px;
	margin: 0 auto;
}

.inner {
	max-width: 640px;
	margin: 0 auto;
}


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


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

.primaryNav h1.logo {
	width: auto;
	height: 100%;	
}

/* Header
----------------------------------------------- */
header {
	position: relative;
	z-index: 1000;
	width: 100%;
	transition: all 0.3s;
}
header.fixed {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(255,255,255,0.95);
}
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 {
	width: 100%;
	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;
}
.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: 30px;
	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;
	height: 100%;
}

.primaryNav h1.logo a {
	display: block;
	height: 100%;
	background: url("../images/head_logo.png") center no-repeat;
	/* background: url("../images/head_logo.png") center no-repeat; */
	background-size: contain;
}

.secondaryNav_top h1.logo {
	width: auto;
	height: 50px;	
}

#headIcons {
	position: relative;
	z-index: 999;
}
#headIcons ul {
	display: -webkit-flex;
	display: flex;
}
#headIcons li {
	position: relative;
	width: 24px;
	height: 24px;
	margin: 0 6px;
}
#headIcons li.icon-mail {
	width: 35px;
}
#headIcons li a {
	position: relative;
	display: block;
	text-decoration: none;
	height: 100%;
	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 {
	text-decoration:none;
	font-size: small;
	color: #333333;
}
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: 3em 0 1em;
	background-color: #1ec0ff;
}
footer .logo {
}
#footNav {
	padding: 1em 0 0;
}
#footNav div{
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: nowrap;
   flex-wrap: nowrap;
}
#footNav ul {
	display: block;
}

#footNav li {
	line-height: initial;	
}

#footNav li span {
	color: #FFF;
}

#footNav li ul {
	padding-bottom: 0.5em;
}


#footNav ul li:last-of-type::after {
	content: "";
}
#footNav ul li a {
	text-decoration: none;
	display: inline-block;
	vertical-align: middle;
	padding: 0 1em;
	transition: all 0.4s;
}

#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 {
	text-align: center;
}
#pageTop p {
	color: #FFF;
	margin: auto;
	width: 48px;
	height: 48px;
}
#pageTop a {
	display: block;
	width: 100%;
	height: 100%;
	background-color: #C0272D;
	text-decoration: none;
	transition: all 0.5s;
	overflow: hidden;
}
#pageTop a:hover {
	background-color: #C0272D;
}
#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;
	cursor: pointer;
	padding: 2px 0;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column-reverse;
	flex-direction: column-reverse;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.toggleMenu > .text {
	position: relative;
	font-weight: 400;
}
.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: 2px;
	width: 40px;
	margin: 10px auto;
	transition: all 0.3s;
}
.toggleMenu.open #navBar01 {
	top: 12px;
	-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: 12px;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


/* Navigation [Nav Box]
----------------------------------------------- */
#navBox {
	position: fixed;
	z-index: 1;
	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;
}


/* Navigation [GLOBAL NAVIGATION]
----------------------------------------------- */
#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: 2em auto;
	padding: 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);
	margin-top: 0.5ex;
}
#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;
}
.gloNav a {
	position: relative;
	text-decoration: none;
	display: block;
	color: #1a1a1a;
	line-height: 1.5em;
}



/* Section
----------------------------------------------- */
.section {
	width: 100%; 
	overflow: hidden;
	position: relative;
	z-index: 1;
	clear: both;
	padding: 80px 0;
}
#wrapper > section {
	padding: 10px 0;
	/* margin-bottom: 80px; */
}


/* crumbs
----------------------------------------------- */
#crumbs {
	max-width:900px;
	margin:0 auto 34px auto;
}


/* wrapper
----------------------------------------------- */
.home #wrapper.no-head {
	padding-top:0!important;
}
#wrapper.no-head {
}


/* 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 {
	padding: 1em 0;
}


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


@media screen and (min-width:768px) {
	/* Container
	----------------------------------------------- */
	.container {
		padding: 0 70px;
	}
	.container.closed {
		padding: 0!important;
	}
	
	/* Header
	----------------------------------------------- */
	header {
	}
	header .primaryNav {
		height: 80px;
	}
	.primaryNav h1 {
	}
	#headIcons {
		padding: 0 12px;
	}
	#headMenus li {
		width: 120px;
		font-size: 1.2em;
	}
	
	/* Footer
	----------------------------------------------- */
	footer {}
	
	
	/* Navigation [GLOBAL NAVIGATION]
	----------------------------------------------- */
	#navBox .gloNav li {
		font-size: 1.2em;
	}
	#navBox .gloNav li span {
		font-size: 1.4em;
	}
	#navBox .gloNav li a {
		padding: 0.5em 0;
	}

	/* Page Top
	----------------------------------------------- */
	#pageTop p {
		width: 72px;
		height: 72px;
	}
	#pageTop.fixed {
		position: fixed;
		z-index: 10;
		bottom: 1em;
		right: 3em;
		padding: 0;
		transform: translate3d(0,0,0);
		transition: all 0.5s;
	}
	#pageTop.fixed:hover {
		-webkit-transform: translateY(-1.5em);
		transform: translateY(-1.5em);
	}
	#pageTop.fixed p {
		width: 34px;
		height: 214px;
	}
	#pageTop.fixed a {
		background: url(images/common/pagetop.png) top center no-repeat;
		background-size: contain;
	}
	#pageTop.fixed a img {
		display: none;
	}
	
	/* Page Move
	----------------------------------------------- */
	.page-move.pane2 li {
		display: inline-block;
		width: 50%;
	}
}
@media screen and (min-width:980px) {
	/* Header
	----------------------------------------------- */
	.primaryNav h1 {
	}
	#headMenus li {
		width: 160px;
	}
	
	/* Layout
	----------------------------------------------- */
	#wrapper {
	}
	
	/* Container
	----------------------------------------------- */
	.content-wrap:not(.archive-list) {
		font-size: 1.2em;
	}
	
	
}
@media screen and (max-width:1620px) {
	/* Container
	----------------------------------------------- */
	.ll-container {
		padding: 0 1em;
	}
}
@media screen and (max-width:1300px) {
	/* Container
	----------------------------------------------- */
	.l-container {
		padding: 0 1em;
	}
}
@media screen and (max-width:1100px) {
	/* Container
	----------------------------------------------- */
	.m-container {
		padding: 0 1em;
	}

	.primaryNav {
	}
	.primaryNav > .logo {
	}
	.primaryNav > .menus {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
	}
	.primaryNav > .menus .tel {
		margin-right: 1em;
	}
}
@media screen and (max-width:979px) {
	/* Layout
	----------------------------------------------- */
	#wrapper {
	}
	
	/* Container
	----------------------------------------------- */
	.content-wrap:not(.archive-list) {
		font-size: 1.2em;
	}
	.s-container {
		padding: 0 1em;
	}
	
	/* Header
	----------------------------------------------- */
	.primaryNav {
	}
	.primaryNav > .logo {
	}
	.primaryNav > .menus {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
	}
	.primaryNav > .menus .tel {
		margin-right: 1em;
	}

	.primaryNav > .menus .pcMenu {
		/* width: 60%; */
		margin-left: auto;
		margin-right: 0;
	}
	
	/* Footer
	----------------------------------------------- */
	
	/* Page Top
	----------------------------------------------- */
	#pageTop.fixed {
		bottom: 5em;
		right: 18px;
	}
	
	#crumbs {
		padding:0 1.5em;
	}
}
@media screen and (max-width:767px) {
	/* Header
	----------------------------------------------- */
	.primaryNav {
		padding: 0 7px;
	}
	.primaryNav > h1 {
	}
	.primaryNav > h1 a {
		background-position: left top;
	}
	#headIcons {
		padding: 0 12px;		
	}
	#headMenus {
		display: none;
	}



	
	/* Navigation [GLOBAL NAVIGATION]
	----------------------------------------------- */
	#navBox .gloNav li {
		margin-bottom: 0.5em;
	}
	/* #navBox .gloNav li a {
		padding: 0.5em 0;
	} */

	#navBox .gloNav li span {
		font-size: 1.5em;
	}


	
	
	/*footer
	----------------------------------------------*/
	#footNav {
		padding: 1em 0 0;
		width: 80%;
		/* margin-top: 3em; */
	}
	#footNav div{
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: space-between;
		-webkit-flex-wrap: nowrap;
	   flex-wrap: nowrap;
	}
	#footNav ul {
		display: block;
	}

	#footNav li {
		margin-bottom: initial;
	}
	.partition {
		margin-bottom: 2em;
	}
	 #copyright {
		color: #333333;
		padding: 20px 0 ;
		font-size: small;
	} 

	 footer .primaryNav {
		padding: 20px 0 50px;
		background-color: #1ec0ff;
	}
	/* Page Top
	----------------------------------------------- */
	#pageTop {
		padding: 4vh 0 8vh;
	}
	
	/* Page Move
	----------------------------------------------- */
	.page-move li {
		margin-bottom: 1em;
		padding: 0 1.5em;
	}
	.page-move li:last-of-type {
		margin-bottom: 0;
	}
	
	/* Container
	----------------------------------------------- */


	/* Navigation [SUB NAVIGATION]
	----------------------------------------------- */
	#subNav {
		padding: 10px 0;
	}
	#subNav ul {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	#subNav li {
		width: 50%;
		margin: 0 auto;
	}
	#subNav img {
		border-radius: 0;
	}
	
	/* Section
	----------------------------------------------- */
	#wrapper > section {
		padding: 20px 0;
		margin-bottom: 0px;
	}
}