@charset "UTF-8";

/* オリジナルのレイアウト
----------------------------------------*/

html {
	font-size: 1rem;
	font-size: 10px;
}

body {
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	background: #fff;
	font-size: 1.4rem;
	line-height: 1.5;
	height: 100%;
	-webkit-text-size-adjust: 100%;
	min-width: 1000px;
}
::selection {
    background: #4bd8f9;
    color: #fff;
}

::-moz-selection {
    background: #4bd8f9;
    color: #fff;
}
.inview,
.inview_line {
	animation-fill-mode: forwards;
	animation-duration: 2s;
	opacity: 0;
}
.inview2,
.inview2_2 {
	opacity: 0;
	-webkit-transition: transform 1000ms, opacity 500ms;
	transition: transform 1000ms, opacity 500ms;
}
.inview.show,
.inview_line.show {
	transform: translateY(100px);
	animation-name: fademove;
}
.wrapper {
	overflow: hidden;
}

@keyframes fademove {
	0% { opacity: 0; }
	100% { opacity: 1;transform: translateY(0) translateX(0); }
}

@media only screen and (max-width: 736px) {
	body {
		height: 100%;
		min-width: 0;
	}
}
a {
	text-decoration: none;
	color: inherit;
}


/*表示
----------------------------------------*/
/* PCだけ表示 */
.visible_pc {
	display: block !important;
}
/* SPだけ表示 */
.visible_sp {
	display: none !important;
}

/* PCだけ表示 */
.visible_pc_inline {
	display: inline !important;
}
/* SPだけ表示 */
.visible_sp_inline {
	display: none !important;
}

@media only screen and (max-width: 736px) {
	/* PCだけ表示 */
	.visible_pc {
		display: none !important;
	}
	/* SPだけ表示 */
	.visible_sp {
		display: block !important;
	}

	/* PCだけ表示 */
	.visible_pc_inline {
		display: none !important;
	}
	/* SPだけ表示 */
	.visible_sp_inline {
		display: inline !important;
	}
	/* SPだけ改行 */
	.sp_br {
		display: block;
	}

}

/* SPでtel:
----------------------------------------*/
.txt_telno {
}

/*画像のfloat
----------------------------------------*/
.img_float_l {
	float: left;
	*display: inline;
	*zoom: 1;
	z-index: 2;
	margin-right: 30px;
	max-width: 30%;
}
.img_float_l + div,
.img_float_r + div {
	overflow: hidden;
}
.img_float_r {
	float: right;
	*display: inline;
	*zoom: 1;
	z-index: 2;
	margin-left: 30px;
	max-width: 30%;
}
@media only screen and (max-width: 736px) {
	.img_float_l {
		margin-right: 0;
		margin-bottom: 15px;
		max-width: 100%;
		float: none;
	}
	.img_float_r {
		margin-left: 0;
		margin-bottom: 15px;
		max-width: 100%;
		float: none;
	}
}

/* font
----------------------------------------*/
.en {
	font-family: 'Montserrat', sans-serif;
}
.mincho {
	font-family: 'Noto Serif JP', serif;
}

/*header
----------------------------------------*/
.header {
	padding: 38px 42px 52px;
}
.header_inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.header .logo {
	width: 107px;
}
.header .logo a {
	display: block;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.header a:hover {
	opacity: .6;
}
.header img {
	display: block;
}
.btn_nav {
	display: none;
}
@media only screen and (max-width: 736px) {
	.header {
		padding: 15px 5%;
	}
	.header .logo {
		width: 60px;
	}
	.header_inner {
    	position: static;
	}
	.btn_nav {
		-webkit-appearance: none;
		appearance: none;
		border: none;
		width: 62px;
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		cursor: pointer;
		background: #4bd8f9;
		z-index: 2100;
	}
	.btn_nav:focus {
		outline: none;
	}
	.btn_nav span:nth-child(1),
	.btn_nav span:nth-child(3),
	.btn_nav span:nth-child(2) {
		display: block;
		width: 24px;
		height: 2px;
		position: absolute;
		right: 19px;
		overflow: hidden;
	}
	.btn_nav span:nth-child(1)::before,
	.btn_nav span:nth-child(3)::before,
	.btn_nav span:nth-child(2)::before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #fff;
		z-index: 100;
	}
	.btn_nav span:nth-child(1)::before {
		left: 0;
		right: auto;
		width: 100%;
	}
	.btn_nav span:nth-child(3)::before {
		left: auto;
		right: 0;
		width: 100%;
	}
	.btn_nav span:nth-child(1) {
		top: 21px;
	}
	.btn_nav span:nth-child(3) {
		top: 41px;
	}
	.btn_nav span:nth-child(2) {
		top: 31px;
		-webkit-transition: width 300ms, opacity 300ms;
		transition: width 300ms, opacity 300ms;
	}
	.btn_nav.open span:nth-child(1),
	.btn_nav.open span:nth-child(3) {
		width: 32px;
		right: 15px;
		top: 30px;
	}
	.btn_nav.open span:nth-child(1) {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.btn_nav.open span:nth-child(3) {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.btn_nav.open span:nth-child(1)::before {
		animation-fill-mode: forwards;
		animation-name: btn_open;
		animation-duration: 1s;
	}
	.btn_nav.open span:nth-child(3)::before {
		opacity: 0;
		animation-fill-mode: forwards;
		animation-delay: 500ms;
		animation-name: btn_open2;
		animation-duration: 1s;
	}
	.btn_nav.open span:nth-child(2) {
		opacity: 0;
	}
	.btn_nav.close span:nth-child(1) {
		animation-fill-mode: forwards;
		animation-name: btn_close;
		animation-duration: 1s;
	}
	.btn_nav.close span:nth-child(3) {
		animation-fill-mode: forwards;
		animation-name: btn_close2;
		animation-duration: 1s;
	}
}
@keyframes btn_open {
	0% {
    	opacity: 0;
    	right: auto;
    	width: 0;
	}

	50% {
    	opacity: 0;
    	right: auto;
    	width: 0;
	}

	100% {
    	opacity: 1;
    	right: auto;
    	width: 100%;
	}
}
@keyframes btn_close {
	0% {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 31px;
	}

	50% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
		top: 31px;
	}

	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
		top: 21px;
	}
}
@keyframes btn_open2 {
	0% {
    	opacity: 0;
    	left: auto;
    	width: 0;
	}

	50% {
    	opacity: 0;
    	left: auto;
    	width: 0;
	}

	100% {
    	opacity: 1;
    	left: auto;
    	width: 100%;
	}
}
@keyframes btn_close2 {
	0% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		top: 31px;
	}

	50% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
		top: 31px;
	}

	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
		top: 41px;
	}
}

/*gnav
----------------------------------------*/
.gnav {
	font-weight: 600;
	margin-top: 15px;
}
.gnav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.gnav li {
	margin-right: 35px;
}
.gnav a {
	display: block;
	font-size: 1.8rem;
	-webkit-transition: color 500ms;
	transition: color 500ms;
}
.gnav a:hover {
	opacity: 1;
}
.gnav .contact a,
.gnav .map a {
	font-size: 1.5rem;
}
.gnav li.current a,
.gnav li a:hover {
	color: #4bd8f9;
}
.gnav li a::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: transparent;
	position: absolute;
	top: 9px;
	left: -12px;
	-webkit-transition: background 500ms;
	transition: background 500ms;
}
.gnav li.current a::before,
.gnav li a:hover::before {
	background: #4bd8f9;
}
.gnav li.contact a::before,
.gnav li.map a::before,
.gnav li.privacypolicy a::before{
	top: 10px;
	border-radius: 0;
	width: 8px;
	height: 3px;
}
.gnav li.privacypolicy{

}

.gnav li.privacypolicy a{
    font-size: 1.3rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
}
.gnav li.privacypolicy a::before {
	
}

@media only screen and (max-width: 736px) {
	.gnav {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(75,216,249,.9);
		color: #fff;
		overflow: auto;
		height: 100vh;
		margin: 0;
		padding: 0 10.937% 20px;
		z-index: 2000;
	}
	.gnav ul {
		line-height: 1.1;
		top: 50%;
		-webkit-transform: translateY(-50%);
	    transform: translateY(-50%);
		animation-fill-mode: forwards;
		animation-name: menu_close;
		animation-duration: 600ms;
		padding: 0 0 20px;
		margin-top: 20px;
		display: block;
	}
	.gnav ul.open {
		animation-fill-mode: forwards;
		animation-name: menu_open;
		animation-duration: 600ms;
	}
	.gnav li {
		margin-right: 0;
	}
	.gnav ul li + li {
		margin-top: 25px;
	}
	.gnav a {
		font-size: 2.3rem;
		letter-spacing: 1px;
	}
	.gnav .contact a,
	.gnav .map a {
		font-size: 1.8rem;
	}
	.gnav li.current a {
		color: #fff;
	}
	.gnav li.current a::before {
		top: 9px;
		background: #fff;
	}
	.gnav li a:hover {
		color: #fff;
	}
	.gnav li.contact a::before,
	.gnav li.map a::before {
		top: 7px;
	}
	
	.gnav li.privacypolicy{
		right: 0;
		position: static;
		top: 0;
	}

	.gnav li.privacypolicy a{	
		font-size: 1.5rem;
		font-weight: 600;
	}
	
	.gnav li.privacypolicy.current a {
		
	}
}
@keyframes menu_open {
	0% {
    	opacity: 0;
    	margin-top: 20px;
	}

	100% {
    	opacity: 1;
    	margin-top: 0;
	}
}
@keyframes menu_close {
	0% {
    	opacity: 1;
    	margin-top: 0;
	}

	100% {
    	opacity: 0;
    	margin-top: -20px;
	}
}

/*.container 共通
----------------------------------------*/
main {
}
main .contents {
}
@media only screen and (max-width: 736px) {
}

/*pagetop
----------------------------------------*/
.btn_pagetop a {
	display: none;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 78px;
	height: 78px;
	background: #4bd8f9 url(../img/common/icon_pagetop.svg) no-repeat center center;
	background-size: 20px auto;
	overflow: hidden;
	text-indent: -999px;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
	z-index: 2000;
}
.btn_pagetop a:hover {
	opacity: .6;
}
@media only screen and (max-width: 736px) {
	.btn_pagetop a {
		width: 50px;
		height: 50px;
	}
	.btn_pagetop a:hover {
		opacity: 1;
	}
}

/*footer
----------------------------------------*/
.footer {
	text-align: center;
}
.footer .copyright {
	margin: 25px 5% 30px;
}
.footer .copyright small {
	font-size: 1.2rem;
	letter-spacing: .5px;
    font-weight: 500;
}
@media only screen and (max-width: 736px) {
	.footer .copyright {
		margin: 25px 5% 20px;
	}
}


/* colobox
----------------------------------------*/
#colorbox,
#cboxOverlay,
#cboxWrapper {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 19999;
	-webkit-transform: translate3d(0,0,0);
}
#cboxWrapper {
	max-width: none;
}
#cboxOverlay{
	position: fixed;
	width: 100%;
	height:100%;
}
#cboxMiddleLeft,
#cboxBottomLeft{
	clear:left;
}
#cboxLoadedContent{
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
#cboxTitle{
	margin: 0;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
	cursor: pointer;
}
.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;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
}
#cboxLoadedContent {
	overflow: visible !important;
	text-align: center;
	display: inline-block;
}
#cboxOverlay {
	background: #000;
	opacity: .96;
	filter: alpha(opacity = 96);
}
#colorbox,
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
	outline: 0;
}
#colorbox {
	position: fixed !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%,-50%) !important;
}
#cboxContent {
	overflow: visible;
	margin: 0;
	height: auto !important;
}
#cboxContent iframe {
	width: 100% !important;
	height: 100%;
}
#cboxContent img {
	width: 100% !important;
	height: auto !important;
}
#cboxError {
	padding: 50px;
	border: 1px solid #ccc;
}
#cboxLoadingGraphic {
	/*background: url(../img/common/icon_loading.gif) no-repeat center center;*/
}
#cboxTitle {
	position: absolute;
	top: -22px;
	left: 0;
	color: #000;
}
#cboxCurrent {
	position: absolute;
	top: -22px;
	right: 205px;
	text-indent: -9999px;
}
#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
	border: 0;
	padding: 0;
	margin: 0;
	overflow: visible;
	text-indent: -9999px;
	width: 20px;
	height: 20px;
	position: absolute;
	top: -20px;
}
#cboxPrevious:focus,
#cboxNext:focus,
#cboxSlideshow:focus,
#cboxClose:focus {
	outline: none;
}
#cboxPrevious,
#cboxNext {
	-webkit-appearance: none;
	appearance: none;
	background: none;
	top: 50%;
	z-index: 1100;
	width: 40px;
	height: 40px;
	margin-top: -20px;
}
#cboxPrevious {
	left: -50px;
}
#cboxNext {
	right: -50px;
}
#cboxPrevious::before,
#cboxNext::after {
	content: "";
	position: absolute;
	right: 1px;
	top: 50%;
	margin-top: -12px;
	width: 22px;
	height: 22px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
#cboxNext::after {
	right: 15px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#cboxClose {
	-webkit-appearance: none;
	appearance: none;
	background: none;
	top: -50px;
	right: 0;
	z-index: 1100;
	width: 40px;
	height: 40px;
}
#cboxClose::before,
#cboxClose::after {
	background: #fff;
	content: "";
	display: block;
	left: -4px;
	top: 20px;
	height: 2px;
	width: 47px;
	position: absolute;
}
#cboxClose::before {
	transform: rotate(-135deg);
}
#cboxClose::after {
	transform: rotate(135deg);
}

@media only screen and (max-width: 736px) {
	#cboxClose {
		background: none;
		top: -35px;
		right: 0;
		width: 30px;
    	height: 30px;
	}
	#cboxClose::before,
	#cboxClose::after {
		left: 0;
		top: 15px;
		width: 30px;
	}
	#cboxPrevious,
	#cboxNext {
		width: 30px;
		height: 30px;
		margin-top: -15px;
	}
	#cboxPrevious {
		left: -30px;
	}
	#cboxNext {
		right: -30px;
	}
	#cboxPrevious::before,
	#cboxNext::after {
		right: -2px;
		top: 50%;
		margin-top: -9px;
		width: 16px;
		height: 16px;
	}
	#cboxNext::after {
		right: 15px;
	}
}
