@charset "utf-8";

/* ==========================================================================================
	--common
========================================================================================== */
html {
	font-size:62.5%;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
}
body {
	width: 100%;
	font-size:14px;
	font-size:1.4rem;
	font-family: -apple-system, BlinkMacSystemFont, Roboto, 'Segoe UI', 'Helvetica Neue', HelveticaNeue, YuGothic, 'Yu Gothic Medium', 'Yu Gothic', Verdana, Meiryo, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
	line-height: 1;
	color: #1b1b1b;
	-webkit-text-size-adjust: 100%;
}
@-moz-document url-prefix() {
	body {
		font-family: -apple-system, BlinkMacSystemFont, Roboto, 'Segoe UI semibold', 'Helvetica Neue', HelveticaNeue, YuGothic, 'Yu Gothic', 'Segoe UI', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Verdana, Meiryo, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN',sans-serif;
	}
}
@media all and (-ms-high-contrast: none) {
	body {
		font-family: -apple-system, BlinkMacSystemFont, Roboto, 'Segoe UI', 'Helvetica Neue', HelveticaNeue, Verdana, Meiryo, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
	}
}

a {
	transition: .5s;
}
a:link {color: #1b1b1b;}
a:visited {color: #1b1b1b;}
a:hover {color: #005daa;}
a:active {color: #005daa;}

img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
a img {
	transition: .5s;
}
a:hover img {
	opacity: .6;
}

.pc {
	display: none;
}

.lazyload {
	opacity: 0;
	transition: 1s;
}
.lazyloaded {
	opacity: 1;
}

.table_wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.table_wrap table {
	white-space: nowrap;
}

/* ==========================================================================================
	--header
========================================================================================== */
header {
	padding: 10px 15px;
	height: 50px;
	background: #005daa;
	position: relative;
}
header .logo {
	width: 78px;
	display: inline-block;
	z-index: 1;
}
header .txt {
	margin-left: .5em;
	color: #fff;
	font-size: 1.2rem;
	line-height: 29px;
	vertical-align: top;
	display: inline-block;
}
header #menu_btn {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 9999;
}
header #menu_btn.active {
	border-left: none;
}
header .menu-trigger,
header .menu-trigger:before,
header .menu-trigger:after {
	width: 20px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	left: 14px;
	transition: all .2s ease-in;
}
header .menu-trigger {
	top: 24px;
}
header .menu-trigger:before {
	content: '';
	top: -9px;
	left: 0;
}
header .menu-trigger:after {
	content: '';
	top: 9px;
	left: 0;
}
header #menu_btn.active .menu-trigger {
	background-color: transparent;
}
header #menu_btn.active .menu-trigger:before {
	background-color: #bccfe0;
	top: 0;
	transform: rotate(-135deg);
}
header #menu_btn.active .menu-trigger:after {
	background-color: #bccfe0;
	top: 0;
	transform: rotate(135deg);
}
header #menu_open,
header #menu_close {
	padding: 0;
	width: 100%;
	height: 100%;
	border: none;
	background: transparent;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
}
header #menu_close {
	display: none;
}
header nav {
	padding: 50px 0;
	width: 100%;
	height: 100%;
	color: #fff;
	background: #005daa;
	position: fixed;
	top: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	transform: translate(100vw);
	transition: all .4s ease-out;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
	z-index: 9998;
}
header nav.active {
	opacity: 1;
	visibility: visible;
	transform: translate(0);
	transition: all .4s ease-out;
}
header nav ul {
	padding: 0 15px;
	max-height: 100%;
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}
header nav li {
	margin: 0 2% 7px 0;
	width: 49%;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
	position: relative;
}
header nav li:first-of-type {
	margin-right: 0;
	width: 100%;
}
header nav li:nth-of-type(2n+3) {
	margin-right: 0;
}
header nav li a {
	padding: 1.5em 1em;
	width: 100%;
	color: #005daa!important;
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
header nav li img {
	margin-right: .5em;
	width: 1em;
}
header nav li a:hover img {
	opacity: 1;
}
header nav li .ico {
    padding: 1.7%;
    width: 33px;
    height: 33px;
    font-size: 0;
    text-align: left;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
header nav li .ico:before {
    content: '';
    border-style: solid;
    border-width: 33px 33px 0 0;
    border-color: #f7a81b transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
}
header nav li .ico img {
	margin-right: 0;
    width: 47%;
    height: auto;
    position: relative;
}
header nav .join a {
	color: #fff!important;
	background: #f7a81b;
}
header nav .join img {
	vertical-align: top;
}
header nav .contact a {
	color: #fff!important;
	background: #d91b5c;
}
header nav .contact img {
	vertical-align: middle;
}
header nav .facebook a {
	color: #fff!important;
	background: #1778f2;
}

/* ==========================================================================================
	--content
========================================================================================== */
.ttl_wrap {
	width: 100%;
	height: 36.5vw;
	max-height: 460px;
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}
.ttl_wrap:before {
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.3);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.ttl_wrap h1 {
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .1em;
	position: relative;
}
.ttl_wrap h1 span {
	margin-bottom: 20px;
	font-family: 'Merriweather Sans';
	font-size: 2.6rem;
	font-weight: 700;
	display: block;
}
#breadcrumb {
	display: none;
}
body:not(.index) main > section {
	margin: 0 auto 100px;
	padding: 0 15px;
}
body:not(.index) main > section h2 {
	margin-bottom: 50px;
	font-size: 2.1rem;
	font-weight: bold;
	line-height: 1.2;
}
body:not(.index) main > section:first-of-type h2 {
	margin-top: 50px;
}
body:not(.index) main > section h2 span {
	margin-top: 1.5em;
	color: #005daa;
	font-family: 'Merriweather Sans';
	font-size: 1rem;
	font-weight: 400;
	display: block;
}
body:not(.index) main > section h3 {
	margin-bottom: 20px;
	color: #56728a;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.7;
}

body main > section .pager {
	margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
body main > section .pager .page-numbers {
	margin: 4px;
	width: 34px;
	height: 34px;
	text-align: center;
	line-height: 34px;
	background: #f2f2f2;
	display: block;
}
body main > section .pager a:hover,
body main > section .pager .current {
	color: #fff;
	background: #005daa;
}
body main > section .pager .dots {
	background: none;
}

body main > section .btn_home {
    margin: 50px auto 0;
    max-width: 320px;
	font-size: 1.6rem;
    text-align: center;
	line-height: 2;
}
.btn_home a {
    padding: 1em;
    color: #fff;
    background: #005daa;
    display: block;
    border-radius: 2px;
}
.btn_home a:hover {
    background: #1677c7;
}

#spotlight .header div {
	box-sizing: content-box;
}

form input,
form textarea,
form select {
	padding: 1em;
	width: 100%;
	font-size: 1.6rem;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 2px;
}
form textarea {
	font-family: inherit;
	line-height: 1.2;
}
form .select_box {
	position: relative;
}
form .select_box:before {
	content: '';
	margin-top: -2px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #555;
    position: absolute;
    top: 50%;
    right: 1em;
    pointer-events: none;
}
form .select_box select {
	padding-right: 1.5em;
}
form input:focus,
form textarea:focus,
form select:focus{
	border-color: #1b1b1b;
}
::placeholder {
	color: #c0c0c0;
}
::-ms-input-placeholder {
	color: #c0c0c0;
}
:-ms-input-placeholder {
	color: #c0c0c0;
}

.parsley-errors-list {
	margin-top: 1em;
	color: #d91b47;
	font-size: 1.2rem;
}
.parsley-errors-list li:before {
	content: '※';
}

#page-top {
    position: fixed;
    bottom: 0;
    right: 0;
	z-index: 999;
}
#page-top a {
	width: 40px;
	height: 40px;
	text-indent: 100%;
    white-space: nowrap;
    background: #f7a81b;
	overflow: hidden;
	display: block;
	position: relative;
}
#page-top a:after {
    content: '';
    margin: -3px 0 0 -5px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
}
#page-top a:hover {
	opacity: .7;
}

/* ==========================================================================================
	--footer
========================================================================================== */
footer {
	padding: 40px 15px;
	color: #fff;
	text-align: center;
	background: url("../img/footer_bg@2x.jpg") no-repeat center center;
	background-size: cover;
	position: relative;
}
footer:before {
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.6);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.footer_inner {
	margin: 0 auto;
	max-width: 1080px;
}
.footer_info {
	position: relative;
}
.footer_info .logo {
	margin: 0 auto;
	width: 122px;
}
.footer_info .txt {
	margin-top: 20px;
	font-size: 1.6rem;
}
.footer_info .txt span {
	margin-top: 15px;
	font-family: 'Merriweather Sans';
	font-size: 1rem;
	font-weight: 400;
	display: block;
}
.footer_info .address {
	margin-top: 20px;
	padding-top: 20px;
	font-size: 1rem;
	text-align: left;
	line-height: 1.7;
	border-top: 1px solid #888;
	display: inline-block;
}
.footer_info .fb {
	margin: 30px auto 0;
	width: 32px;
}
footer nav {
	display: none;
	position: relative;
}
footer small {
	margin-top: 30px;
	font-size: 1rem;
	display: block;
	position: relative;
}


@media screen and (max-width: 320px) {
	/* ==========================================================================================
		--header
	========================================================================================== */
	header nav li {
		font-size: 1.2rem;
	}
	
	/* ==========================================================================================
		--content
	========================================================================================== */
	body:not(.index) main > section h2 {
		font-size: 1.8rem;
	}
}


/* tablet */
@media screen and (min-width: 560px) {
	.sp {
		display: none;
	}
	
	/* ==========================================================================================
		--header
	========================================================================================== */
	header {
		padding: 15px 30px;
		height: 70px;
	}
	header .logo {
		width: 107px;
	}
	header .txt {
		margin-left: 1em;
		font-size: 1.6rem;
		line-height: 40px;
	}
	header #menu_btn {
		width: 70px;
		height: 70px;
	}
	header .menu-trigger,
	header .menu-trigger:before,
	header .menu-trigger:after {
		width: 36px;
	    left: 17px;
	}
	header .menu-trigger {
		top: 34px;
	}
	header .menu-trigger:before {
		top: -12px;
		left: 0;
	}
	header .menu-trigger:after {
		top: 12px;
		left: 0;
	}
	header nav {
		padding: 70px 0;
	}
	header nav ul {
		padding: 0 30px;
	}
	header nav li {
		margin-bottom: 15px;
	}
	header nav li .ico {
		width: 40px;
		height: 40px;
	}
	header nav li .ico:before {
		border-width: 40px 40px 0 0;
	}
	
	/* ==========================================================================================
		--content
	========================================================================================== */
	.ttl_wrap h1 {
		font-size: 1.8rem;
	}
	.ttl_wrap h1 span {
		font-size: 4rem;
	}
	#breadcrumb {
		margin: 30px auto 60px;
		padding: 0 30px;
		font-size: 1.2rem;
		display: block;
	}
	#breadcrumb ul {
	    display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	#breadcrumb li {
		margin-left: 1em;
	}
	#breadcrumb li:first-of-type {
		margin-left: 0;
	}
	#breadcrumb li:before {
		content: '';
		margin: 0 1em 1px 0;
		width: 6px;
		height: 6px;
		border-top: 1px solid #1b1b1b;
		border-right: 1px solid #1b1b1b;
		transform: rotate(45deg);
		display: inline-block;
	}
	#breadcrumb li:first-of-type:before {
		display: none;
	}
	body:not(.index) main > section {
		margin-bottom: 150px;
		padding: 0 30px;
	}
	body:not(.index) main > section h2 {
		margin-bottom: 70px;
		font-size: 3.3rem;
	}
	body:not(.index) main > section h2 span {
	    font-size: 1.4rem;
	}
	body:not(.index) main > section h3 {
	    margin-bottom: 30px;
		font-size: 2.2rem;
	}
	
	/* ==========================================================================================
		--footer
	========================================================================================== */
	footer {
		padding: 60px 30px;
	}
	.footer_info .logo {
		width: 150px;
	}
	.footer_info .txt {
		margin-top: 30px;
		font-size: 2.2rem;
	}
	.footer_info .txt span {
	    margin-top: 25px;
		font-size: 1.2rem;
	}
	.footer_info .address {
		margin-top: 25px;
		padding-top: 25px;
		font-size: 1.2rem;
	}
	footer small {
		font-size: 1.2rem;
	}
}


@media screen and (min-width: 751px) {
	/* ==========================================================================================
		--footer
	========================================================================================== */
	footer {
		background: url(../img/footer_bg.jpg) no-repeat center center;
		background-size: cover;
	}
}


/* pc */
@media screen and (min-width:1025px) {
	.pc {
		display: block;
	}
	
	a[href*="tel:"] {
		pointer-events: none;
	}
	
	/* ==========================================================================================
		--header
	========================================================================================== */
	header {
		padding: 0;
		width: 100%;
		height: 120px;
		background: transparent;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		position: absolute;
		top: 0;
		left: 0;
	}
	header .logo {
		margin-left: 35px;
		width: 140px;
	}
	header .txt {
		font-size: 1.8rem;
		font-weight: bold;
	}
	header nav {
		padding: 0;
		width: auto;
		background: transparent;
		position: absolute;
		opacity: 1;
		visibility: visible;
		transform: translate(0);
	}
	header nav ul {
		padding: 0;
		height: 100%;
		overflow: hidden;
	}
	header nav li {
		margin: 0;
		width: auto!important;
	}
	header nav li a {
		padding: 34px 1.5em 0;
		color: #fff!important;
		background: transparent;
	    display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-ms-flex-line-pack: start;
		align-content: flex-start;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	header nav li a:before,
	header nav li a:after {
		content: '';
		width: 100%;
		height: 1px;
		background: #fff;
		display: block;
		transform: scaleX(0);
		transition: .5s;
	}
	header nav li a:before {
		margin-bottom: 1.2em;
		transform-origin: left;
	}
	header nav li a:after {
		margin-top: 1.2em;
		transform-origin: right;
	}
	header nav li a:hover:before,
	header nav li a:hover:after {
		transform: scaleX(1);
	}
	header nav .hide,
	header nav li .ico {
		display: none;
	}
	header nav .join,
	header nav .contact,
  header nav .facebook {
		width: 120px!important;
		font-size: 1.4rem;
	}
	header nav .join a,
	header nav .contact a,
  header nav .facebook a {
		padding: 0 1em;
		-ms-flex-line-pack: center;
		align-content: center;
	}
	header nav .join a:before,
	header nav .join a:after,
	header nav .contact a:before,
	header nav .contact a:after,
  header nav .facebook a:before,
	header nav .facebook a:after {
		display: none;
	}
	header nav .join span,
	header nav .contact span,
  header nav .facebook span {
		margin-bottom: 1em;
		width: 100%;
		height: 38px;
		line-height: 38px;
	}
	header nav .join img,
	header nav .contact img,
  header nav .facebook img {
    margin-right: 0;
		width: 38px;
		vertical-align: middle;
	}
	header nav .join a:hover img,
	header nav .contact a:hover img,
  header nav .facebook a:hover img {
		opacity: 1;
	}
	header nav .join a:hover {
		background: #ffc967;
	}
	header nav .contact a {
		background: #005daa;
	}
	header nav .contact a:hover {
		background: #1677c7;
	}
	header nav .facebook {
		margin-left: 1.5em;
	}
  header nav .facebook a {
		background: #1778f2;
	}
	header nav .facebook a:hover {
		background: #388af2;
	}
	header #menu_btn {
		display: none;
	}
	
	/* ==========================================================================================
		--content
	========================================================================================== */
	.ttl_wrap h1 {
		font-size: 2.4rem;
	}
	.ttl_wrap h1 span {
		font-size: 6rem;
	}
	#breadcrumb {
		margin-bottom: 100px;
		padding: 0 10%;
		font-size: 1.4rem;
	}
	body:not(.index) main > section {
		margin-bottom: 200px;
		padding: 0 10%;
	}
	body:not(.index) main > section h2 {
		margin-bottom: 100px;
		font-size: 4.2rem;
		position: relative;
	}
	body:not(.index) main > section h2 span {
	    margin-top: 2em;
		font-size: 1.6rem;
	}
	body:not(.index) main > section h2:after {
		content: '';
		margin: .5em 0 0 -20vw;
		width: 19vw;
		width: calc(20vw - .5em);
		height: 1px;
		background: #bbc7d1;
		display: block;
		position: absolute;
		top: 0;
		left: 0;
	}
	body:not(.index) main > section h3 {
		margin-bottom: 60px;
		font-size: 2.8rem;
	}
	
	body main > section .btn_home {
	    margin-top: 100px;
		max-width: 320px;
		font-size: 1.6rem;
		text-align: center;
	}
	
	/* ==========================================================================================
		--footer
	========================================================================================== */
	footer {
		padding: 100px 0;
	}
	.footer_inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.footer_info .logo {
		width: 180px;
	}
	footer nav {
		margin-left: auto;
		color: #fff;
		font-size: 1.6rem;
		font-weight: bold;
		text-align: left;
		display: block;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	footer nav a {
		color: #fff!important;
	}
	footer nav a:hover {
		color: #f7a81b!important;
	}
	footer nav > ul {
		margin-right: 50px;
	}
	footer nav > ul:last-of-type {
		margin-right: 0;
	}
	footer nav li {
		margin-bottom: 1.5em;
	}
	footer nav li:last-of-type {
		margin-bottom: 0;
	}
	footer nav li ul {
		margin-top: 1.5em;
	}
	footer nav li li {
		padding-left: 1em;
		font-size: 1.4rem;
		font-weight: normal;
	}
	footer nav .member {
		padding-top: 1.5em;
		border-top: 1px solid #888;
	}
	footer small {
		margin-top: 100px;
		display: block;
	}
}


@media screen and (min-width:1536px) {
	/* ==========================================================================================
		--content
	========================================================================================== */
	#breadcrumb {
		padding: 0 20%;
	}
	body:not(.index) main > section {
		padding: 0 20%;
	}
}