@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video, address {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

body {
	line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, menu, nav, section, address {
	display: block;
}

nav ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

hr {
	display: block;
	border: 0;
	margin: 0;
	padding: 0;
}

input, select {
	vertical-align: middle;
}

img {
	vertical-align: bottom;
}

/*--------------------------------------------------------------
　全体共通コンポーネント
--------------------------------------------------------------*/
html {
	height: 100%;
	font-size: 62.5%;
}

body {
	position: relative;
	color: #071B60;
	font-size: 1.6em;
	line-height: 1.6;
	font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	-webkit-text-size-adjust: 100%;
	word-break: break-word;
	-webkit-font-feature-settings: "palt";
	        font-feature-settings: "palt";
	letter-spacing: 0.05em;
}

/* タブレット / ポートレート表示のみ */
@media screen and (min-width: 768px) and (max-width: 1023px) {
	body {
		font-size: 1.4em;
	}
}
/* スマートフォン表示 */
@media screen and (max-width: 767px) {
	body {
		font-size: 1.4em;
	}
}
a {
	color: #333;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}

/*
　表示・非表示用クラス
--------------------------------------------------------------*/
.is-pc {
	display: block;
}

.is-sp {
	display: none;
}

/* スマートフォン表示 */
@media only screen and (max-width: 767px) {
	.is-pc {
		display: none;
	}
	.is-sp {
		display: block;
	}
}
/*
　ボタン
--------------------------------------------------------------*/
.btn {
	display: block;
	position: relative;
	width: 100%;
	max-width: 510px;
	color: #071B60;
	font-size: 2.2rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
}
@media only screen and (max-width: 767px) {
	.btn {
		font-size: 1.6rem;
	}
}
.btn::after {
	position: absolute;
	left: 8px;
	top: 8px;
	width: 100%;
	height: 100%;
	border: 1px solid #071B60;
	content: "";
}
.btn__inner {
	display: block;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	position: relative;
	z-index: 10;
	width: 100%;
	padding: 20px 32px;
	border: 1px solid #071B60;
	background: #fff;
	-webkit-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}
.btn__inner:hover {
	background: #071B60;
	color: #fff;
	-webkit-transform: translate(4px, 4px);
	        transform: translate(4px, 4px);
}
.btn__inner:active {
	-webkit-transform: translate(8px, 8px);
	        transform: translate(8px, 8px);
}
.btn__inner::before {
	position: absolute;
	right: 20px;
	top: 50%;
	width: 20px;
	height: 20px;
	border-top: 1px solid #071B60;
	border-right: 1px solid #071B60;
	content: "";
	-webkit-transform: translateY(-50%) rotate(45deg);
	        transform: translateY(-50%) rotate(45deg);
	-webkit-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}
.btn__inner:hover::before {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
.btn--back .btn__inner::before {
	right: auto;
	left: 20px;
	border-top: none;
	border-right: none;
	border-bottom: 1px solid #071B60;
	border-left: 1px solid #071B60;
}
.btn--back .btn__inner:hover::before {
	border-bottom: 1px solid #fff;
	border-left: 1px solid #fff;
}

/*
　外部リンク
--------------------------------------------------------------*/
.external-link {
	position: relative;
}
.external-link::after {
	margin-left: 0.5em;
	padding: 2px;
	background: #eee;
	border-radius: 2px;
	font-size: 0.8em;
	content: "外部リンク";
}

/*--------------------------------------------------------------
　トップページ
--------------------------------------------------------------*/
/*
　トップページヘッダー
--------------------------------------------------------------*/
.mainvisual {
	background: #071B60;
	overflow: hidden;
}
.mainvisual__inner {
	max-width: 1366px;
	margin: auto;
}

.mainvisual-list__image {
	width: 100%;
}

.mainlead {
	padding: 0 16px;
	position: relative;
	height: 540px;
	background: url(../img/mainvisual_bg.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}
@media only screen and (max-width: 767px) {
	.mainlead {
		height: auto;
		padding: 32px 16px;
	}
}
.mainlead::after {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	height: 600%;
	width: 588px;
	background: rgba(7, 27, 96, 0.8);
	content: "";
	-webkit-transform: rotate(45deg) translate(-211%, -10%);
	        transform: rotate(45deg) translate(-211%, -10%);
}
.mainlead__inner {
	max-width: 1100px;
	margin: auto;
}
.mainlead__scroll {
	position: absolute;
	z-index: 10;
	top: 100px;
	left: 50%;
	color: #fff;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
	.mainlead__scroll {
		display: none;
	}
}
.mainlead__scroll::before {
	position: absolute;
	top: -28px;
	left: 50%;
	height: 20px;
	width: 1px;
	background: #fff;
	content: "";
}
.mainlead__scroll::after {
	position: absolute;
	top: 32px;
	left: 50%;
	height: 20px;
	width: 1px;
	background: #fff;
	content: "";
}
.mainlead__logo {
	display: block;
	position: relative;
	z-index: 10;
	width: auto;
	max-width: 356px;
	margin: 64px 0 64px auto;
}
@media only screen and (max-width: 767px) {
	.mainlead__logo {
		max-width: 200px;
		margin: 0 auto 32px;
	}
}

.mainlead-box {
	position: relative;
	z-index: 10;
	margin: 0 0 0 30%;
	color: #fff;
}
@media only screen and (max-width: 767px) {
	.mainlead-box {
		margin: 0;
	}
}
.mainlead-box__title {
	margin-bottom: 16px;
	font-size: 3rem;
	font-weight: 400;
}
@media only screen and (max-width: 767px) {
	.mainlead-box__title {
		font-size: 2.2rem;
		text-align: center;
	}
}
.mainlead-box__body {
	font-size: 1.5rem;
	text-align: justify;
	line-height: 1.8;
}
@media only screen and (max-width: 767px) {
	.mainlead-box__body {
		font-size: 1.4rem;
	}
}

/*
　ナビゲーション
--------------------------------------------------------------*/
.global-nav-area {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	position: fixed;
	top: 0;
	z-index: 1000;
	padding: 100px 32px;
	width: 100%;
	height: 100%;
	background: #071B60;
	overflow-y: auto;
	-webkit-transform: translateX(100%);
	        transform: translateX(100%);
	-webkit-transition: 0.24s ease;
	transition: 0.24s ease;
}
.global-nav-area.js-menu-open {
	-webkit-transform: translateX(0);
	        transform: translateX(0);
}
.global-nav-area__inner {
	max-width: 700px;
	margin: auto;
}
.global-nav-area__logo {
	max-width: 308px;
}
@media only screen and (max-width: 767px) {
	.global-nav-area__logo {
		max-width: 50%;
	}
}
.global-nav-area__logo-image {
	width: 100%;
}

@media only screen and (max-width: 767px) {
	.global-nav-list {
		padding-bottom: 16px;
	}
}
.global-nav-list__item {
	margin-bottom: 64px;
	-webkit-transition: 0.4s ease;
	transition: 0.4s ease;
}
.global-nav-list__item:hover {
	-webkit-transform: translateX(10px);
	        transform: translateX(10px);
}
@media only screen and (max-width: 767px) {
	.global-nav-list__item {
		margin-bottom: 16px;
	}
}
.global-nav-list__link {
	color: #fff;
	font-size: 4rem;
	font-weight: 600;
	text-decoration: none;
}
@media only screen and (max-width: 767px) {
	.global-nav-list__link {
		font-size: 2rem;
	}
}

.column-nav-list__item {
	margin-bottom: 8%;
	-webkit-transition: 0.4s ease;
	transition: 0.4s ease;
}
.column-nav-list__item:hover {
	-webkit-transform: translateX(10px);
	        transform: translateX(10px);
}
.column-nav-list__link {
	display: grid;
	grid-template-columns: 36% 60%;
	-webkit-column-gap: 4%;
	   -moz-column-gap: 4%;
	        column-gap: 4%;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 600;
	text-decoration: none;
}
@media only screen and (max-width: 767px) {
	.column-nav-list__link {
		font-size: 1.5rem;
	}
}
.column-nav-list__image {
	width: 100%;
}
.column-nav-list__title {
	margin-bottom: 8px;
}
.column-nav-list__name {
	font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
	.column-nav-list__name {
		font-size: 1.3rem;
	}
}

/*
　トップページ共通タイトル
--------------------------------------------------------------*/
.index-section-header {
	margin-bottom: 64px;
}
@media only screen and (max-width: 767px) {
	.index-section-header {
		margin-bottom: 32px;
	}
}
.index-section-header__title {
	color: #071B60;
	font-size: 5.5rem;
	font-weight: 400;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.index-section-header__title {
		font-size: 2.2rem;
	}
}
.index-section-header__title-inner {
	position: relative;
	padding-left: 100px;
}
@media only screen and (max-width: 767px) {
	.index-section-header__title-inner {
		padding-left: 50px;
	}
}
.index-section-header__title-inner::before {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 74px;
	height: 72px;
	background: url(../img/icon_book.svg) no-repeat;
	background-size: contain;
	content: "";
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
	.index-section-header__title-inner::before {
		width: 40px;
		height: 40px;
	}
}
.index-section-header__title-inner--facility::before {
	background: url(../img/icon_chemistry.svg) no-repeat;
	background-size: contain;
}
.index-section-header__subtitle {
	color: #262626;
	font-size: 1.8rem;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.index-section-header__subtitle {
		font-size: 1.6rem;
	}
}

/*
　セクションラッパー
--------------------------------------------------------------*/
.index-section-wrapper {
	overflow: hidden;
}
.index-section-wrapper__inner {
	position: relative;
}
.index-section-wrapper__inner::before {
	position: absolute;
	left: 0;
	bottom: -20%;
	z-index: -1;
	height: 1000%;
	width: 100%;
	background: #071B60;
	content: "";
	opacity: 0.06;
	-webkit-transform: skew(-45deg);
	        transform: skew(-45deg);
	-webkit-transform-origin: bottom left;
	        transform-origin: bottom left;
}
.index-section-wrapper__inner::after {
	position: absolute;
	left: 50%;
	bottom: -20%;
	z-index: -1;
	height: 1000%;
	width: 100%;
	background: #071B60;
	content: "";
	opacity: 0.06;
	-webkit-transform: skew(-45deg);
	        transform: skew(-45deg);
	-webkit-transform-origin: bottom left;
	        transform-origin: bottom left;
}

.second-wrapper {
	max-width: 3000px;
	margin: auto;
	position: relative;
}
.second-wrapper::before {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	height: 100%;
	width: 100%;
	background: url(../img/bg_column_top.svg) no-repeat;
	content: "";
}
.second-wrapper--is-column {
	position: relative;
	margin: 0;
}
.second-wrapper__inner {
	position: relative;
}
.second-wrapper__inner::before {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
	height: 1370px;
	width: 100%;
	background: url(../img/bg_column_bottom.svg) no-repeat bottom right;
	content: "";
}

/*
　トップページ記事一覧
--------------------------------------------------------------*/
.index-post-section {
	padding: 64px 16px;
}
@media only screen and (max-width: 767px) {
	.index-post-section {
		padding: 32px 16px;
	}
}
.index-post-section__inner {
	max-width: 1100px;
	margin: auto;
}

.index-post-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}
.index-post-list__item {
	position: relative;
	margin-right: 1%;
	margin-bottom: 2%;
	width: 32%;
	color: #071B60;
	text-decoration: none;
}
.index-post-list__item:nth-child(3n-1) {
	margin-top: 40px;
}
.index-post-list__item:nth-child(3n) {
	margin-top: 80px;
}
@media only screen and (max-width: 767px) {
	.index-post-list__item {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		margin-bottom: 32px;
		width: 100%;
	}
	.index-post-list__item:nth-child(3n-1) {
		margin-top: 0;
	}
	.index-post-list__item:nth-child(3n) {
		margin-top: 0;
	}
}
.index-post-list__image-area {
	position: relative;
	margin-right: 3%;
}
@media only screen and (max-width: 767px) {
	.index-post-list__image-area {
		margin-right: 0;
		width: 36%;
	}
}
.index-post-list__image-area::after {
	position: absolute;
	top: 8px;
	left: 8px;
	width: 100%;
	height: 100%;
	border: 1px solid #071B60;
	content: "";
}
.index-post-list__image {
	position: relative;
	width: 100%;
}
.index-post-list__figure {
	position: relative;
	z-index: 10;
	overflow: hidden;
	-webkit-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}
.index-post-list__item:hover .index-post-list__figure {
	-webkit-transform: translate(4px, 4px);
	        transform: translate(4px, 4px);
}
.index-post-list__item:active .index-post-list__figure {
	-webkit-transform: translate(8px, 8px);
	        transform: translate(8px, 8px);
}
.index-post-list__figure::before {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	z-index: 20;
	background: #071B60;
	content: "";
	opacity: 0.3;
	-webkit-transform: skew(-45deg);
	        transform: skew(-45deg);
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
}
.index-post-list__figure::after {
	position: absolute;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	z-index: 20;
	background: #071B60;
	content: "";
	opacity: 0.3;
	-webkit-transform: skew(-45deg);
	        transform: skew(-45deg);
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
}
.index-post-list__item:hover .index-post-list__figure::before {
	left: 100%;
	opacity: 0.8;
}
.index-post-list__item:hover .index-post-list__figure::after {
	left: -100%;
	opacity: 0.8;
}
@media only screen and (max-width: 767px) {
	.index-post-list__text-area {
		width: 60%;
	}
}
.index-post-list__title {
	position: relative;
	margin-top: 16px;
	margin-bottom: 8px;
	font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
	.index-post-list__title {
		margin-top: 0;
		margin-bottom: 8px;
		font-size: 1.5rem;
	}
}
.index-post-list__title-inner {
	background: -webkit-gradient(linear, left top, left bottom, from(#071B60), to(#071B60)) 0 100%/0 1px no-repeat;
	background: -webkit-linear-gradient(#071B60, #071B60) 0 100%/0 1px no-repeat;
	background: linear-gradient(#071B60, #071B60) 0 100%/0 1px no-repeat;
	-webkit-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}
.index-post-list__item:hover .index-post-list__title-inner {
	background-size: 100% 1px;
}
.index-post-list__name {
	font-size: 1.6rem;
	font-weight: 600;
}
@media only screen and (max-width: 767px) {
	.index-post-list__name {
		font-size: 1.4rem;
	}
}

/*
　ボタン配置
--------------------------------------------------------------*/
.btn-area {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
@media only screen and (max-width: 767px) {
	.btn-area {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.btn-area__item {
	width: 46.3%;
}
@media only screen and (max-width: 767px) {
	.btn-area__item {
		width: 100%;
		margin-bottom: 32px;
	}
}

/*
　施設紹介
--------------------------------------------------------------*/
.index-facility-section {
	padding: 64px 16px;
}
@media only screen and (max-width: 767px) {
	.index-facility-section {
		padding: 32px 16px;
	}
}
.index-facility-section__inner {
	max-width: 1100px;
	margin: auto;
}
.index-facility-section__btn .btn {
	display: block;
	margin: auto;
}

/*
　起業家講演
--------------------------------------------------------------*/
.index-entre-section {
	padding: 64px 16px;
}
@media only screen and (max-width: 767px) {
	.index-entre-section {
		padding: 32px 16px;
	}
}
.index-entre-section__inner {
	max-width: 1100px;
	margin: auto;
}
.index-entre-section__image {
	display: block;
	margin: auto;
	max-width: 800px;
}
.index-entre-section__text {
	margin: 32px 0;
	text-align: center;
}
.index-entre-section__btn .btn {
	display: block;
	margin: auto;
}

/*
　動画リスト
--------------------------------------------------------------*/
.index-video-section {
	padding: 64px 16px;
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 290px, #071b60 291px, #071b60 100%);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 290px, #071b60 291px, #071b60 100%);
}
@media only screen and (max-width: 767px) {
	.index-video-section {
		background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 200px, #071b60 201px, #071b60 100%);
		background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 200px, #071b60 201px, #071b60 100%);
		padding: 32px 16px;
	}
}
.index-video-section__inner {
	max-width: 1100px;
	margin: auto;
}

.index-video-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}
.index-video-list__item {
	max-width: 32%;
	width: auto;
	margin-right: 1.3%;
	margin-bottom: 32px;
}
.index-video-list__item:nth-child(3n) {
	margin-right: 0;
}
@media only screen and (max-width: 767px) {
	.index-video-list__item {
		max-width: 48%;
		margin-right: 4%;
		margin-bottom: 32px;
	}
	.index-video-list__item:nth-child(3n) {
		margin-right: 4%;
	}
	.index-video-list__item:nth-child(2n) {
		margin-right: 0;
	}
}
.index-video-list__video {
	display: block;
	width: 100%;
}
.index-video-list__caption {
	margin-top: 16px;
	color: #fff;
	font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
	.index-video-list__caption {
		font-size: 1.6rem;
	}
}
.index-video-list__caption a {
	color: #fff;
}
.index-video-list__name {
	font-size: 1.4rem;
}

/*
　バナーエリア
--------------------------------------------------------------*/
.banner-area {
	padding: 80px 16px;
}
@media only screen and (max-width: 767px) {
	.banner-area {
		padding: 32px 16px;
	}
}
.banner-area__inner {
	max-width: 1100px;
	margin: auto;
}

.banner-area-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
@media only screen and (max-width: 767px) {
	.banner-area-list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}
.banner-area-list__item {
	max-width: 27.8%;
	width: auto;
}
@media only screen and (max-width: 767px) {
	.banner-area-list__item {
		max-width: 100%;
		margin: 0 auto 16px;
	}
}
.banner-area-list__link {
	display: block;
}
.banner-area-list__link:hover {
	opacity: 0.8;
}
.banner-area-list__image {
	max-width: 100%;
}

/*
　フッター
--------------------------------------------------------------*/
.site-footer {
	padding: 64px 16px 16px;
	background: #262626;
}
@media only screen and (max-width: 767px) {
	.site-footer {
		padding: 32px 16px 16px;
	}
}
.site-footer__inner {
	color: #fff;
	text-align: center;
}
.site-footer__name {
	font-size: 1.8rem;
}
.site-footer__copy {
	font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
	.site-footer__copy {
		font-size: 1.2rem;
	}
}

.site-footer-logo {
	max-width: 308px;
	margin: 0 auto 64px;
}
@media only screen and (max-width: 767px) {
	.site-footer-logo {
		max-width: 158px;
		margin: 0 auto 32px;
	}
}
.site-footer-logo__image {
	max-width: 100%;
}

/*
　配下ヘッダー
--------------------------------------------------------------*/
.second-header {
	padding: 32px 16px 64px;
}
@media only screen and (max-width: 767px) {
	.second-header {
		padding: 16px 0 32px;
	}
}
.second-header__inner {
	max-width: 1100px;
	margin: auto;
}
.second-header__mainvisual {
	width: 100%;
}
@media only screen and (max-width: 767px) {
	.second-header h1 {
		margin: 0 -16px;
	}
}
.second-header__top {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-bottom: 32px;
}
@media only screen and (max-width: 767px) {
	.second-header__top {
		margin-bottom: 16px;
	}
}
.second-header__link {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	position: relative;
	padding-left: 20px;
	color: #071B60;
	font-size: 1.8rem;
	text-decoration: none;
}
@media only screen and (max-width: 767px) {
	.second-header__link {
		font-size: 1.4rem;
	}
}
.second-header__link::before {
	position: absolute;
	left: 0;
	top: 50%;
	width: 16px;
	height: 16px;
	border-bottom: 1px solid #071B60;
	border-left: 1px solid #071B60;
	content: "";
	-webkit-transform: translateY(-50%) rotate(45deg);
	        transform: translateY(-50%) rotate(45deg);
	-webkit-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
	.second-header__link::before {
		width: 10px;
		height: 10px;
	}
}
.second-header__link:hover {
	opacity: 0.8;
}
.second-header__caption {
	margin-top: 8px;
	font-size: 1.4rem;
	text-align: center;
}

.second-header-logo {
	justify-self: center;
	max-width: 210px;
}
@media only screen and (max-width: 767px) {
	.second-header-logo {
		max-width: 100px;
	}
}
.second-header-logo__image {
	width: 100%;
}

.second-page-title {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	max-width: 1100px;
	height: 230px;
	margin: 0 auto 64px;
	border-bottom: 1px solid #707070;
}
@media only screen and (max-width: 767px) {
	.second-page-title {
		height: 150px;
		margin: 0 auto 32px;
	}
}
.second-page-title__text {
	font-size: 3.2rem;
	font-weight: 400;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.second-page-title__text {
		font-size: 2.2rem;
	}
}

/*
　施設紹介
--------------------------------------------------------------*/
.facility-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	max-width: 1100px;
	margin: 0 auto 64px;
	padding: 0 16px;
}
@media only screen and (max-width: 767px) {
	.facility-box {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.facility-box__image-area {
	width: 31.8%;
}
@media only screen and (max-width: 767px) {
	.facility-box__image-area {
		width: 100%;
	}
}
.facility-box__image {
	width: 100%;
}
.facility-box__text-area {
	width: 63.4%;
	margin-top: 64px;
}
@media only screen and (max-width: 767px) {
	.facility-box__text-area {
		margin-top: 16px;
		width: 100%;
	}
}
.facility-box__title {
	margin-bottom: 16px;
	font-size: 2.4rem;
	font-weight: 400;
}
@media only screen and (max-width: 767px) {
	.facility-box__title {
		font-size: 2rem;
	}
}
.facility-box__text {
	font-size: 2.4rem;
}
.facility-box__address {
	margin-bottom: 16px;
	color: #222;
	font-size: 1.4rem;
}
.facility-box__description {
	margin-bottom: 16px;
	color: #222;
	font-size: 1.6rem;
}
.facility-box__link {
	position: relative;
	padding-right: 20px;
	color: #222;
	font-size: 1.6rem;
}
.facility-box__link::after {
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: 2px;
	height: 16px;
	width: 16px;
	background: url(../img/icon_link.svg) no-repeat;
	background-size: cover;
	content: "";
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}

/*
　施設紹介　TYPE2
--------------------------------------------------------------*/
.facility-list {
	max-width: 1100px;
	margin: auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	list-style: none;
}
@media only screen and (max-width: 767px) {
	.facility-list {
		padding: 0 16px;
	}
}
.facility-list__item {
	width: 30%;
	margin-right: 5%;
	margin-bottom: 5%;
}
@media only screen and (max-width: 767px) {
	.facility-list__item {
		margin-right: 0;
		margin-bottom: 32px;
		width: 100%;
	}
}
.facility-list__item:nth-child(3n) {
	margin-right: 0;
}
.facility-list__image {
	width: 100%;
	margin-bottom: 16px;
	border: 1px solid #071B60;
}
@media only screen and (max-width: 767px) {
	.facility-list__image {
		display: block;
		margin: 0 auto 16px;
	}
}
.facility-list__name {
	margin-bottom: 16px;
	font-size: 2rem;
}
@media only screen and (max-width: 767px) {
	.facility-list__name {
		margin-bottom: 0;
	}
}
.facility-list__address {
	margin-bottom: 16px;
	color: #333;
	font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
	.facility-list__address {
		margin-bottom: 0;
	}
}
.facility-list__link-area {
	font-size: 1.4rem;
}
.facility-list__link {
	position: relative;
}
.facility-list__link::after {
	margin-left: 0.5em;
	padding: 2px;
	border-radius: 2px;
	font-size: 0.8em;
	content: "（外部リンク）";
}

/*
　コラム
--------------------------------------------------------------*/
.column-section {
	padding: 0 16px;
}
.column-section__lead {
	max-width: 800px;
	margin: auto;
	margin-bottom: 64px;
	color: #071B60;
	line-height: 2;
}

.entry-column {
	padding: 32px 0;
	background: #f7f7f7;
}

.entry {
	max-width: 800px;
	margin: auto;
	color: #333;
	font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
	.entry {
		font-size: 1.5rem;
	}
}
.entry a {
	color: #333;
}
.entry p {
	margin-bottom: 64px;
	text-align: justify;
	line-height: 2;
	letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
	.entry p {
		margin-bottom: 32px;
	}
}
.entry h2 {
	position: relative;
	margin: 64px -64px 32px;
	padding: 0 64px 8px;
	border-bottom: 1px solid #071B60;
	color: #071B60;
	font-size: 2.8rem;
	font-weight: 400;
	line-height: 1.4;
}
@media only screen and (max-width: 767px) {
	.entry h2 {
		margin: 64px 0 32px 0;
		padding: 0 0 8px 32px;
		font-size: 2rem;
	}
}
.entry h2::before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1px;
	height: 30px;
	background: #071B60;
	content: "";
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	-webkit-transform-origin: bottom;
	        transform-origin: bottom;
}
.entry h2::after {
	position: absolute;
	bottom: 8px;
	left: 0;
	width: 1px;
	height: 30px;
	background: #071B60;
	content: "";
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	-webkit-transform-origin: bottom;
	        transform-origin: bottom;
}
.entry .figure {
	margin-bottom: 64px;
}
@media only screen and (max-width: 767px) {
	.entry .figure {
		margin-bottom: 32px;
	}
}
.entry .caption {
	margin-top: 8px;
	color: #071B60;
	font-size: 1.4rem;
}
.entry img {
	max-width: 100%;
}
.entry video {
	width: 100%;
}
.entry strong {
	color: #071B60;
	font-weight: 600;
}
.entry .note-list {
	list-style: none;
	margin-bottom: 64px;
}
.entry .note-list li {
	margin-bottom: 8px;
	padding-left: 2.8em;
	font-size: 1.2rem;
	text-indent: -2.8em;
}
.entry .note {
	font-size: 1.2rem;
}
.entry .youtube {
	width: 100%;
	aspect-ratio: 16/9;
}
.entry .youtube iframe {
	width: 100%;
	height: 100%;
}
.entry .title-label {
	display: inline-block;
	margin-bottom: 16px;
	padding: 4px 8px;
	background: #071B60;
	border-radius: 4px;
	color: #fff;
	font-size: 1.2rem;
}

/*
　コラムもくじ
--------------------------------------------------------------*/
.column-index {
	max-width: 800px;
	margin: auto;
}
.column-index__title {
	margin-bottom: 8px;
	color: #071B60;
}

.column-index-list {
	list-style-type: none;
	padding: 16px 32px;
	margin-bottom: 64px;
	border: 1px solid #071B60;
}
@media only screen and (max-width: 767px) {
	.column-index-list {
		padding: 16px 16px;
		margin-bottom: 32px;
	}
}
.column-index-list__item {
	position: relative;
	border-bottom: 1px solid #BBBBBB;
}
.column-index-list__item::before {
	position: absolute;
	right: 20px;
	top: 50%;
	width: 10px;
	height: 10px;
	border-bottom: 1px solid #071B60;
	border-right: 1px solid #071B60;
	content: "";
	-webkit-transform: translateY(-50%) rotate(45deg);
	        transform: translateY(-50%) rotate(45deg);
	-webkit-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
	.column-index-list__item::before {
		right: 8px;
	}
}
.column-index-list__item:last-child {
	border-bottom: 0;
}
.column-index-list__link {
	display: block;
	padding: 16px 32px;
	color: #222;
	font-size: 1.4rem;
	text-decoration: none;
	-webkit-transition: 0.4s ease-out;
	transition: 0.4s ease-out;
}
@media only screen and (max-width: 767px) {
	.column-index-list__link {
		padding: 8px 32px 8px 16px;
	}
}
.column-index-list__link:hover {
	color: #071B60;
	padding-left: 40px;
}

.column-area {
	padding: 64px 16px;
	background: #f7f7f7;
}
.column-area__inner {
	max-width: 800px;
	margin: auto;
}
.column-area__en-title {
	font-size: 1.6rem;
	font-weight: 600;
}
.column-area__title {
	color: #333;
	font-size: 2.8rem;
	font-weight: 400;
	margin-bottom: 32px;
}

.column-area-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.column-area-box__image-area {
	width: 23.5%;
}
.column-area-box__image {
	width: 100%;
}
.column-area-box__text-area {
	width: 69.7%;
}
.column-area-box__body {
	margin-bottom: 1em;
	color: #333;
	font-size: 1.6rem;
	line-height: 2;
}

.book-intro {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	max-width: 800px;
	margin: 128px auto 64px;
	padding: 32px 64px 64px;
	border: 1px solid #071B60;
}
@media only screen and (max-width: 767px) {
	.book-intro {
		margin: 64px auto 32px;
		padding: 16px 32px 32px;
	}
}
.book-intro__title {
	color: #071B60;
	font-size: 2.9rem;
	font-weight: 400;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.book-intro__title {
		font-size: 2.2rem;
	}
}
.book-intro__subtitle {
	color: #071B60;
	font-size: 1.6rem;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.book-intro__subtitle {
		font-size: 1.4rem;
	}
}
.book-intro__description {
	color: #333;
	font-size: 1.6rem;
	text-align: justify;
	line-height: 1.8;
}

.book-intro-cover {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: 32px 0;
}
@media only screen and (max-width: 767px) {
	.book-intro-cover {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.book-intro-cover__image-area {
	margin-right: 32px;
}
@media only screen and (max-width: 767px) {
	.book-intro-cover__image-area {
		margin-right: 0;
		margin-bottom: 16px;
	}
}
.book-intro-cover__image {
	max-width: 180px;
	width: auto;
}
.book-intro-cover__book-name {
	margin-bottom: 16px;
	color: #071B60;
	font-size: 2.8rem;
	font-weight: 400;
}
@media only screen and (max-width: 767px) {
	.book-intro-cover__book-name {
		font-size: 2rem;
	}
}
.book-intro-cover__book-info {
	list-style-type: none;
	color: #333;
	font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
	.book-intro-cover__book-info {
		font-size: 1.4rem;
	}
}

.company-info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	max-width: 800px;
	margin: 0 auto 64px;
}
@media only screen and (max-width: 767px) {
	.company-info {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		margin: 0 auto 32px;
	}
}
.company-info__image-area {
	width: 23.7%;
	border: 1px solid #071B60;
}
@media only screen and (max-width: 767px) {
	.company-info__image-area {
		display: block;
		width: 40%;
		margin: 0 auto 16px;
	}
}
.company-info__image {
	width: 100%;
}
.company-info__text-area {
	width: 71.2%;
}
@media only screen and (max-width: 767px) {
	.company-info__text-area {
		width: 100%;
	}
}
.company-info__name {
	color: #071B60;
	font-size: 2.8rem;
	margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
	.company-info__name {
		font-size: 2rem;
		text-align: center;
	}
}
.company-info__description {
	margin-bottom: 16px;
	color: #071B60;
	font-size: 1.6rem;
	line-height: 1.8;
}
.company-info__list {
	list-style: none;
	color: #333;
	font-size: 1.4rem;
	line-height: 1.8;
}

.n-comment {
	padding: 0 16px;
}
.n-comment__inner {
	position: relative;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	max-width: 1100px;
	margin: auto;
	padding: 0 64px 32px;
}
@media only screen and (max-width: 767px) {
	.n-comment__inner {
		padding: 0 32px 16px;
	}
}
.n-comment__inner::before {
	position: absolute;
	top: 30px;
	left: 0;
	width: 100px;
	height: 100%;
	border: 1px solid #071B60;
	border-right: 0;
	content: "";
}
.n-comment__inner::after {
	position: absolute;
	top: 30px;
	right: 0;
	width: 100px;
	height: 100%;
	border: 1px solid #071B60;
	border-left: 0;
	content: "";
}
.n-comment__title {
	max-width: 730px;
	margin: auto;
	padding: 16px 0;
	background: #071B60;
	text-align: center;
	-webkit-transform: skewX(-45deg);
	        transform: skewX(-45deg);
}
@media only screen and (max-width: 767px) {
	.n-comment__title {
		-webkit-transform: none;
		        transform: none;
	}
}
.n-comment__title-inner {
	display: block;
	color: #fff;
	font-size: 2.8rem;
	text-align: center;
	letter-spacing: 0.1em;
	-webkit-transform: skewX(45deg);
	        transform: skewX(45deg);
}
@media only screen and (max-width: 767px) {
	.n-comment__title-inner {
		position: relative;
		z-index: 10;
		padding: 0 8px;
		font-size: 1.6rem;
		-webkit-transform: none;
		        transform: none;
	}
}
.n-comment__subtitle {
	margin: 16px 0 32px;
	font-size: 2.6rem;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.n-comment__subtitle {
		font-size: 1.4rem;
	}
}
.n-comment__box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
@media only screen and (max-width: 767px) {
	.n-comment__box {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.n-comment__image-area {
	width: 21%;
	border: 1px solid #071B60;
}
@media only screen and (max-width: 767px) {
	.n-comment__image-area {
		display: block;
		width: 30%;
		margin: 0 auto 16px;
	}
}
.n-comment__image {
	width: 100%;
}
.n-comment__text-area {
	width: 75.4%;
	color: #333;
	text-align: justify;
	line-height: 1.8;
}
@media only screen and (max-width: 767px) {
	.n-comment__text-area {
		width: 100%;
	}
}
.n-comment__body {
	margin-bottom: 1em;
}

.page-back-btn {
	padding: 124px 16px;
}
@media only screen and (max-width: 767px) {
	.page-back-btn {
		padding: 64px 16px;
	}
}
.page-back-btn .btn {
	margin: auto;
}

/*
　スクロールトップ
--------------------------------------------------------------*/
.scroll-top {
	display: none;
	position: fixed;
	z-index: 900;
	bottom: 60px;
	right: 20px;
	width: 62px;
	height: 62px;
	-webkit-transition: 0.4s ease;
	transition: 0.4s ease;
}
@media only screen and (max-width: 767px) {
	.scroll-top {
		bottom: 70px;
		right: 10px;
		width: 50px;
		height: 50px;
	}
}
.scroll-top:hover {
	-webkit-transform: scale(1.1);
	        transform: scale(1.1);
}
.scroll-top__image {
	width: 100%;
}

/*
　メニューオープン
--------------------------------------------------------------*/
.global-nav-open {
	position: fixed;
	z-index: 900;
	top: 40px;
	right: 20px;
	width: 80px;
	height: 80px;
	-webkit-transition: 0.4s ease;
	transition: 0.4s ease;
}
@media only screen and (max-width: 767px) {
	.global-nav-open {
		top: auto;
		bottom: 10px;
		right: 10px;
		width: 50px;
		height: 50px;
	}
}
.global-nav-open:hover {
	-webkit-transform: scale(1.1);
	        transform: scale(1.1);
}
.global-nav-open__image {
	width: 100%;
}

/*
　メニュークローズ
--------------------------------------------------------------*/
.global-nav-close {
	position: absolute;
	z-index: 900;
	top: 40px;
	right: 20px;
	width: 62px;
	height: 62px;
	-webkit-transition: 0.4s ease;
	transition: 0.4s ease;
}
@media only screen and (max-width: 767px) {
	.global-nav-close {
		bottom: 10px;
		right: 10px;
		width: 50px;
		height: 50px;
	}
}
.global-nav-close:hover {
	-webkit-transform: scale(1.1);
	        transform: scale(1.1);
}
.global-nav-close__image {
	width: 100%;
}

/*
　Swiper
--------------------------------------------------------------*/
.swiper {
	overflow: visible;
}

.swiper-pagination-bullet {
	background: none;
	border: 1px solid #fff;
}

.swiper-pagination-bullet-active {
	background: #fff;
}

.swiper-button-prev {
	border: 1px solid #fff;
	border-radius: 50%;
	height: 50px;
	width: 50px;
}
@media only screen and (max-width: 767px) {
	.swiper-button-prev {
		height: 20px;
		width: 20px;
	}
}
.swiper-button-prev::after {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 15px;
	height: 15px;
	margin-left: 3px;
	border-bottom: 1px solid #fff;
	border-left: 1px solid #fff;
	content: "";
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	        transform: translate(-50%, -50%) rotate(45deg);
	-webkit-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
	.swiper-button-prev::after {
		width: 8px;
		height: 8px;
	}
}
.swiper-button-prev:hover {
	-webkit-transform: scale(0.95);
	        transform: scale(0.95);
}
.swiper-button-prev:active {
	-webkit-transform: scale(0.9);
	        transform: scale(0.9);
}

.swiper-button-next {
	border: 1px solid #fff;
	border-radius: 50%;
	height: 50px;
	width: 50px;
}
@media only screen and (max-width: 767px) {
	.swiper-button-next {
		height: 20px;
		width: 20px;
	}
}
.swiper-button-next::after {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 15px;
	height: 15px;
	margin-left: -3px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	content: "";
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	        transform: translate(-50%, -50%) rotate(45deg);
	-webkit-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
	.swiper-button-next::after {
		width: 8px;
		height: 8px;
	}
}
.swiper-button-next:hover {
	-webkit-transform: scale(0.95);
	        transform: scale(0.95);
}
.swiper-button-next:active {
	-webkit-transform: scale(0.9);
	        transform: scale(0.9);
}

/*
　起業家講演ページ
--------------------------------------------------------------*/
.section-entre {
	max-width: 1100px;
	padding: 0 16px;
	margin: auto;
}
.section-entre__text {
	margin-bottom: 1em;
}
.section-entre__list {
	margin-bottom: 1em;
	padding-left: 20px;
}

.entre-box {
	max-width: 800px;
	margin: 0 auto 64px;
}
.entre-box__title {
	margin: 32px 0 16px;
	font-size: 3rem;
	text-align: center;
}
.entre-box__title-small {
	font-size: 1.8rem;
}
.entre-box__name {
	margin-bottom: 1em;
	font-weight: bold;
	text-align: center;
}
.entre-box__video {
	display: block;
	width: 100%;
	margin: 0 auto 16px;
}

.entre-note-area {
	border: 1px solid #071B60;
	padding: 32px;
}
.entre-note-area__text {
	margin-bottom: 1em;
}
.entre-note-area__note {
	font-size: 1.4rem;
}