@charset "utf-8";
/* -------------------
  web fonts
------------------- */
/* sans-serif */
@font-face{font-weight:normal;font-style:normal;font-family:'yugothic-m';src:url('../fonts/yugothic-medium.woff') format('woff');}
@font-face{font-weight:normal;font-style:normal;font-family:'yugothic';src:url('../fonts/yugothic-bold.woff') format('woff');}

@font-face{font-weight:normal;font-style:normal;font-family:'nsjp';src:url('../fonts/nsjp-regular.woff') format('woff');}
@font-face{font-weight:bold;font-style:normal;font-family:'nsjp';src:url('../fonts/nsjp-bold.woff') format('woff');}

@font-face{font-weight:normal;font-style:normal;font-family:'futura';src:url('../fonts/futura-medium.woff') format('woff');}
@font-face{font-weight:normal;font-style:normal;font-family:'futura-c';src:url('../fonts/futura-condensed-medium.woff') format('woff');}

/* serif */

.en{
    font-family: 'Fjalla One', sans-serif;
}

/* -------------------
  common
------------------- */
* {
	margin:0;
	padding:0;
	box-sizing:border-box;
}
* > *:last-child {
	margin-bottom: 0;
}
address,em {
	font-style: normal;
}
html {
	overflow-x:hidden;
	overflow-y:scroll;
}
body,
input,
select,
textarea {
	font:1.1rem 'yugothic', 'Yu Gothic Medium', '游ゴシック Medium', YuGothic, '游ゴシック体', futura, sans-serif;
}

/* IE表示用のCSS　*/
_:-ms-input-placeholder, :root  body{
  font-family: Meiryo, sans-serif;
}

body{
    color:#1a1a1a;
	background: #fff;
}
h3{
    font-family: '游明朝','Noto Serif JP', serif;
    font-size: 1.15rem;
}
ul,
ol {
	list-style: none;
}
dl {
    display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
    display: flex;
}

figure {
    display: table;
    margin: 0 auto;
}

figcaption {
    display: table-caption;
    padding: 0 1rem;
    caption-side: bottom;
    font-size: .9rem;
    line-height: 2.5rem;
    text-align: center;
    color: #fff;
    background: #1a1a1a;
}

.flex-container {
	display : -webkit-box;
	display : -webkit-flex;
	display : -ms-flexbox;
	display : flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex-container.reverse {
	-ms-flex-direction:row-reverse;
	-webkit-flex-direction:row-reverse;
	flex-direction:row-reverse;
}

.column-2{
    width: 50%;
}
.column-2.left-box{
	width: 30%;
}

.column-2.right-box{
    width: 70%;
}

.column-3 {
	width: 33.3333333%;
}
.column-4 {
	width: 25%;
}
.column-5 {
	width: 20%;
}
.pc-none {
	display: none;
}

a.blank:after {
    content: " ";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-left: 1rem;
    background: url(../img/common/icon-blank.svg) center center;
}

@media screen and (max-width: 799px) {
	body {
		font-size: 1rem;
	}
	.flex-container.reverse {
		-ms-flex-direction: row;
		-webkit-flex-direction: row;
		flex-direction: row;
	}
	.pc-none {
		display: block;
	}
	.sp-none {
		display: none;
	}
    figcaption {
        padding: 0.5rem 1rem;
        line-height: 1.3rem;
    }
}

/* anchor */
body a {
	text-decoration: none;
	color: #1a1a1a;
	outline: none;
	transition: all .2s;
	-webkit-transition: all .2s;
}
body a:hover,
body a:focus {
	text-decoration: none;
	color: currentColor;
	outline: none;
}

body a:hover .image span,
body a:focus .image span {
    transition: all .1s linear;
    transform: scale(1.1);
}

/* Layout */
#main {
	position: relative;
}
.container {
	padding-left: 7.91667vw;
	padding-right: 7.91667vw;
}
._mt3p {
	margin-top: 3%;
}

._mb3p {
	margin-bottom: 3%;    
}

._mt5p {
	margin-top: 5%;
}

._mb5p {
	margin-bottom: 5%;    
}
._mt10p{
    margin-top: 10%;
}
._mb10p{
    margin-bottom: 10%;
}

@media screen and (max-width:799px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* -------------------
  header
------------------- */
/* header */
#header {
	width: 100%;
	position: relative;
	z-index: 300;
	color: #fff;
	background: #333333;
}
#header-inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	width: 100%;
	height: 70px;
}
#header-right {
	height: 100%;
}
@media all and (-ms-high-contrast: none) {
	*::-ms-backdrop, #header-right {
		position: absolute;
		right: 0;
		top: 0;
	}
}

#logo a {
	display: block;
    padding: 1rem;
    font: bold 1.1rem '游明朝','Noto Serif JP', serif;;
    color: #ffffff;
}

@media screen and (max-width:799px) {
    #logo a {
        font-size: .8rem;
    }
}

/* global-nav */
#global-nav {
	height: 100%;
}
#global-nav ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	height: 100%;
}
#global-nav li {
	height: 100%;
}
#global-nav li a {
	color: #fff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	height: 100%;
	cursor: pointer;
}
#global-nav li a,
#global-nav li a:hover {
	height: 100%;
	padding: 10px 34px;
	font: normal 20px/1 'futura',sans-serif;
	letter-spacing: .1em
}

#global-nav li a:hover {
	color:#fff;
	opacity: .85;
}
#global-nav li a .en {
	display: block;
}
#global-nav li a small {
	display: block;
	font: normal 10px/1 'yugothic',serif; 
	margin-bottom: 5px;
}


/* burger */
.menu-line {
	display: none;
	width: 60px;
		height: 60px;
		background: #fff;
		position: absolute;
		padding: 12px 0 0;
		top: 0;
		right: 0;
		z-index: 400;
}
.open {
	display: none;
}

@media screen and (max-width: 999px) {
	#header-inner {
		height: 60px;
	}
	#header-left {
		padding: 0 10px;
	}
	#logo a img {
		width: 65px;
	}
	.menu-line {
		display: block;
	}
	.menu-line.active {
		background: transparent;
		position: fixed;
	}
	.line {
		background: #0f3b6b;
		display: block;
		height: 1px;
		width: 22px;
		position: relative;
		-webkit-transition: all .5s;
		transition: all .5s;
		margin: 8px auto;
	}
	.menu-line.active .line {
		background: #fff;
	}
	.menu-line.active .line.top {
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		display: block;
		top: 17px;
		margin: 0 auto;
		width: 25px;
	}
	.menu-line.active .line.bottom {
		transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		display: block;
		margin: 0 auto;
		bottom: -16px;
		width: 25px;
	}
	.menu-line.active .line.middle {
		display: none;
	}
	#global-nav {
		display: none;
	}
	#global-nav-sp.open {
		display: none;
		background: rgba(51,51,51,0.95);
		position: fixed;
		top: 0;
		left: 0;
		z-index: 350;
		width: 100vw;
		height: 100vh;
		padding: 60px 0 0;
	}
	#global-nav-sp.open ul {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		height: auto;
	}
	#global-nav-sp.open ul li {
		width: 100%;
	}
	#global-nav-sp.open ul li a {
		text-align: center;
		display: block;
		padding: 20px 0;
		color: #fff;
		font-family: 'futura', sans-serif;
		font-size: 22px;
		letter-spacing: .1em;
	}
	#global-nav-sp.open ul li a small {
		display: block;
		font: normal 10px/1 'yugothic',serif;
		margin-bottom: 5px;
	}
}

/* -------------------
  kv
------------------- */
#kv {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	justify-content: center;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	margin-bottom: 35px;
	color: #fff;
	background: url(../img/common/kv.jpg) no-repeat center center / cover;
}
#kv #page-title {
    width: 100%;
    height: 100%;
    padding: 5% 2%;
    background: rgba(0,0,0,0.5);
	text-align: center;
	-webkit-transition: all .3s;
	transition: all .3s;
}
#kv.Fade #page-title {
	opacity: 1;
}
#kv #page-title h2 {
	font: bold 2rem '游明朝','Noto Serif JP', serif;
	letter-spacing: .1em;
    text-shadow:-1px -1px 6px #333333;
    line-height: 1.2em;
}
#kv #page-title p {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 2rem;
	letter-spacing: 0.1em;
	margin-top: 10px;
	-webkit-transition: all .3s;
	transition: all .3s;
	
}

#kv .en {
    display: block;
    font: normal 0.9rem 'Kaushan Script', cursive;
}

@media screen and (max-width:799px) {
	#kv {
		margin-bottom: 20px;
	}
	#kv #page-title h2 {
		font-size: 1.5rem;
	}
	#kv #page-title p {
		font-size: 1.2rem;
		transform: scale(0.9);
		transform-origin: center top;
		margin-top: 10px;
	}
}

/* -------------------
  common link
------------------- */
#common-link {
	padding: 20px;
}
#blog #common-link {
	background: #f4f9fb;
}
#common-link a {
	display: block;
	color: #fff;
	background-size: cover;
	height: 24.1666666vw;
}
#common-link a:hover,
#common-link a:focus {
	opacity: .8;
}
#common-link .inner {
	display : -webkit-box;
	display : -webkit-flex;
	display : -ms-flexbox;
	display : flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	width: 100%;
}
#common-link .link-title {
	font: normal 36px/1 'arya', sans-serif;
	text-align: center;
	padding: 40px 0;
	width: 100%;
	position: relative;
}
#common-link .link-title small {
	font: normal 15px/1 'nsjp', sans-serif;
	display: block;
	margin-top: 10px;
}
#common-link .link-title:before,
#common-link .link-title:after {
	content: '';
	width: 100%;
	height: 18px;
	background: url(../images/common/line_common_link.svg) no-repeat center center;
	position: absolute;
	left: 0;
}
#common-link .link-title:before {
	top: 0;
}
#common-link .link-title:after {
	bottom: 0;
}

@media screen and (max-width:799px) {
	#common-link {
		padding: 15px;
		margin-top: -10px;
	}
	#common-link .column-3 {
		width: 100%;
		padding: 10px 0 0;
	}
	#common-link a {
		height: 34.6666666vw;
		background-position: center center;
	}
	#common-link .link-title {
		font-size: 25px;
	}
	#common-link .link-title:before,
	#common-link .link-title:after {
		background-size: 140px auto;
	}
	#common-link .link-title:before {
		top: 13px;
	}
	#common-link .link-title:after {
		bottom: 13px;
	}
	#common-link .link-title small {
		font-size: 13px;
	}
}

/* -------------------
  footer
------------------- */
#footer {
	background: #1a1a1a;
	color: #fff;
	position: relative;
    margin-top: 100px;
}

/* ft-nav */
#ft-nav {
	padding: 50px 0 50px;
}
#ft-nav ul {
	justify-content: center;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	margin: 0 -30px;
	list-style: none;
}
#ft-nav ul li a {
	color: #fff;
	font-size: 18px;
	padding: 0 30px;
	display: block;
	letter-spacing: .05em;
}

/* ft-link */
#ft-link {
	position: absolute;
	right: 15px;
	bottom: 15px;
}

/* ft-copy */
#ft-copy {
	font: normal 12px/1 'Fjalla One', sans-serif;
	text-align: center;
	letter-spacing: .05em;
	line-height: 1;
	padding: 0 0 15px;
}

@media screen and (min-width:800px) and (max-width:1200px) {
	/* ft-nav */
	#ft-nav ul li a {
		font-size: 15px;
	}
}

@media screen and (max-width:799px) {
	#footer {
		padding: 0 20px;
        margin-top: 50px;
	}
	/* ft-nav */
	#ft-nav {
		padding: 35px 0 35px;
	}
	#ft-nav ul {
		margin: 0;
	}
	#ft-nav ul li {
		width: 100%;
	}
	#ft-nav ul li a {
		padding: 13px 0;
		text-align: center;
		font-size: 14px;
	}
	
	/* ft-logo */
	#ft-logo {
		padding: 90px 0 75px;
	}
	#ft-logo img {
		width: 70px;
	}
	
	/* ft-link */
	#ft-link {
		right: 20px;
		bottom: 10px;
	}
	#ft-link img {
		width: 70px;
		height: auto;
	}
	
	/* ft-copy */
	#ft-copy {
		font-size: 10px;
		transform: scale(0.8);
		transform-origin: left bottom;
		text-align: left;
		padding: 0 0 10px;
	}
}

#organization .childorg.outside-color{
    background: #62d8ac;
}

#organization .childorg.list.outside-color{
    border-color: #62d8ac;
}

