* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	box-sizing: border-box;
	/*font-family: "Noto Sans JP", sans-serif;*/
}

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	background: #fff;
	line-height: 1.6;
	color: #000;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

ol, ul {
	list-style: none;
}

em, strong {
	font-weight: 600;
	font-style: normal;
}

a {color: #004795; text-decoration: none;}
a:link    {color: #004795; text-decoration: none;}
a:visited {color: #004795; text-decoration: none;}
a:active  {color: #00b7f1; text-decoration: none;}
a:hover   {color: #00b7f1; text-decoration: underline;}

table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}



header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: sticky;
	top: 0;
	z-index: 500;
	padding: 10px 30px;
	border-bottom: solid 1px #ddd;
	background: #fff;
}
header > div {
	flex-basis: calc(100% - 236px);
}
header > div:first-child {
	flex-basis: 130px;
}
header > div:last-child {
	flex-basis: 106px;
}
.header-ttl {
	color: #0085d5;
	font-family: "Roboto", sans-serif;
	font-size: 19px;
	font-weight: 800;
}
.header-nav ul {
	display: flex;
	font-size: 13px;
	font-weight: bold;
}
.header-nav ul li a {
	display: block;
	padding: 12px 15px;
	color: #212121;
	text-decoration: none;
}
.header-nav ul li a:hover,
.header-nav ul li a.is-visible {
	background: #eee;
}
.header-nav ul li a span {
	position: relative;
}
.header-nav ul li a span::after {
	position: absolute;
	bottom: -10px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #333;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
/*.header-nav ul li a.is-visible span::after, 
.header-nav ul li a:hover span::after {
	transform: scaleX(0.6);
}*/
.header-nav ul li a.is-visible span::after{
	/*transform: scaleX(0.6);*/
}
.header-nav ul li a.nolink {
	color: #d2d2d2;
	cursor: default;
}
.header-nav ul li a.nolink:hover span::after {
	transform: scale(0, 1);
}
.header-hamburger {
	display: none;
}
.disabled-link {
  pointer-events: none;     
  color: #aaa;             
  text-decoration: none;   
  cursor: default;         
  opacity: 0.5;
}


main {
	padding: 60px 30px;
}
h1 {
	margin-bottom: 15px;
	color: #0085d5;
	font-size: 16px;
	font-weight: 600;
}
h1.border {
	padding: 0 0 10px;
	border-bottom: solid 1px #ddd;
}
h1.second {
	margin-top: 30px;
}
.main-nav {
	margin-bottom: 20px;
	border-bottom: solid 1px #ddd;
}
.main-nav ul {
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
}
.main-nav ul li a {
	display: block;
	padding: 15px;
	color: #212121;
	text-decoration: none;
}
/*.main-nav ul li:first-child a {
	padding-left: 0;
}
.main-nav ul li:last-child a {
	padding-right: 0;
}*/
.main-nav ul li.first a {
	padding-left: 0;
}
.main-nav ul li a span {
	position: relative;
}
.main-nav ul li a:hover,
.main-nav ul li a.is-visible{
	background-color: #eee;
}
.main-nav ul li a span::after {
	position: absolute;
	bottom: -5px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #333;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
/*.main-nav ul li a.is-visible span::after, 
.main-nav ul li a:hover span::after {
	transform: scaleX(0.6);
}*/
/*.main-nav ul li a.is-visible span::after {
	transform: scaleX(0.6);
}*/

h2 {
	margin-bottom: 15px;
	color: #0085d5;
	font-size: 14px;
	font-weight: 600;
}
section {
	padding: 40px 0 15px;
}
section.border {
	border-bottom: solid 1px #ddd;
}
.shingi {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0 30px;
}
.shingi li {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 6;
	row-gap: 0;
	margin-bottom: 30px;
	grid-template-areas:
    "img"
	"ttl"
    "cat"
    "summary"
    "outline"
    "links";
}
.shingi li > * {
	
}
.shingi-img {
	grid-area: img;
	background-position: center;
	background-size: 110%;
	transition: all .5s ease;
}
.shingi-img.show {
	background-size: 100%;
	transition: all .5s ease;
}
.shingi-img img {
	/*visibility: hidden;*/
}
.shingi-outline {
	grid-area: outline;
	margin: 10px 0;
	padding: 10px 12px;
	/*color: #aaa;*/
	color: #3E4043;
	/*font-size: 11px;*/
	font-size: 13px;
	/*text-align: right;*/
	font-weight: 600;
	background: #f6f6f6;
}
.shingi-cat {
	grid-area: cat;
	font-size: 11px;
	font-weight: 600;
	color: #53565A;
}
.shingi-ttl {
	grid-area: ttl;
	margin: 10px 0 10px;
	/*font-size: 14px;*/
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}
.shingi-summary {
	grid-area: summary;
	margin-top: 5px;
	/*font-size: 12px;*/
	font-size: 14px;
	color: #444;
}
.shingi-links {
	grid-area: links;
	margin-top: 15px;
}
a.shingi-cal {
	display: inline-block;
	margin-right: 10px;
	padding: 8px 20px;
	background: #0085d5;
	color: #fff;
	font-size: 13px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	will-change: color,border;
	transition: color .3s ease,border .3s ease,background 0s linear 0s;
	z-index: 1;
}
a.shingi-cal::before {
	content: "";
	position: absolute;
	display: flex;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	cursor: pointer;
	background: #212121;
	will-change: transform;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform .3s ease;
	z-index: -1;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
a.shingi-cal:hover::before {
	transform-origin: left center;
	transform: none;
}
a.shingi-mov {
	display: inline-block;
	padding: 8px 33.35px;
	background: #0085d4;
	color: #fff;
	font-size: 11px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	will-change: color,border;
	transition: color .3s ease,border .3s ease,background 0s linear 0s;
	z-index: 1;
}
a.shingi-mov::before {
	content: "";
	position: absolute;
	display: flex;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	cursor: pointer;
	background: #007ecc;
	will-change: transform;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform .3s ease;
	z-index: -1;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
a.shingi-mov:hover::before {
	transform-origin: left center;
	transform: none;
}
a.shingi-download {
	display: inline-block;
	margin-right: 10px;
	padding: 8px 20px;
	background: #333;
	color: #fff;
	font-size: 11px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	will-change: color,border;
	transition: color .3s ease,border .3s ease,background 0s linear 0s;
	z-index: 1;
}
a.shingi-download::before {
	content: "";
	position: absolute;
	display: flex;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	cursor: pointer;
	background: #212121;
	will-change: transform;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform .3s ease;
	z-index: -1;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
a.shingi-download:hover::before {
	transform-origin: left center;
	transform: none;
}

.product {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0 30px;
}
.product a {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4;
	row-gap: 0;
	margin-bottom: 30px;
	color: #000;
	text-decoration: none;
	position: relative;
}
.product a:hover {
	color: #aaa;
	transition: all .3s ease;
}
.product a.nolink:hover {
	color: #000;
	cursor: default;
}
.product a > * {
	
}
.product a.new::after {
	content: "NEW";
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	background: #ff0000;
	color: #fff;
	font-size: 10px;
	line-height: 1;
}
.product-img {
	background-position: center;
	background-size: 110%;
	border: solid 1px #eee;
	transition: all .5s ease;
}
.product-img.show {
	background-size: 100%;
	transition: all .5s ease;
}
.product-img img {
	visibility: hidden;
}
.product a:hover .product-img {
	opacity: 0.85;
	transition: all .3s ease;
}
.product a.nolink:hover .product-img {
	opacity: 1;
}
.product-cat {
	margin-top: 10px;
	font-size: 11px;
}
.product-ttl {
	margin-top: 5px;
	font-size: 14px;
	font-weight: 600;
}
.product-summary {
	margin-top: 5px;
	font-size: 12px;
}


.concept-kv {
	padding: 0;
	opacity: 0.2;
}
.concept-kv.show {
	opacity: 1;
	transition: all .5s ease;
}
.concept-catch {
	padding: 10px;
	text-align: center;
}
.concept {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 60px 0;
	padding: 0;
}
.concept.image-right {
	flex-direction: row-reverse;
}
.concept > div {
	width: 49%;
}
.concept > div:first-child {
	align-self: flex-start;
}
.concept > div:last-child {
	padding: 0 10%;
}
.concept-img {
	background-position: center;
	background-size: 110%;
	transition: all .5s ease;
}
.concept-img.show {
	background-size: 100%;
	transition: all .5s ease;
}
.concept-img img {
	visibility: hidden;
}
.concept-ttl {
	margin-top: 15px;
	opacity: 0.2;
	font-size: 14px;
	transition: all .5s ease;
}
.concept-ttl.show {
	margin-top: 0;
	opacity: 1;
	transition: all .5s ease;
}
.concept-txt {
	opacity: 0.2;
	margin: 15px 0;
	font-size: 12px;
	transition: all .5s ease;
}
.concept-txt.show {
	opacity: 1;
	transition: all .5s ease;
}
.concept-btn {
	opacity: 0.2;
	font-size: 12px;
	transition: all .5s ease;
}
.concept-btn.show {
	opacity: 1;
	transition: all .5s ease;
}
.concept-btn a {
	display: inline-block;
	padding: 8px 20px;
	background: #333;
	color: #fff;
	font-size: 11px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	will-change: color,border;
	transition: color .3s ease,border .3s ease,background 0s linear 0s;
	z-index: 1;
}
.concept-btn a::before {
	content: "";
	position: absolute;
	display: flex;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	cursor: pointer;
	background: #212121;
	will-change: transform;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform .3s ease;
	z-index: -1;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
.concept-btn a:hover::before {
	transform-origin: left center;
	transform: none;
}

.shingi-catch {

	padding-bottom: 85px;
}
h1.shingi-ttl {
	text-align: center;
}
.shingi-catch-links {
	margin-top: 25px;
	text-align: center;
}
.shingi-catch a.shingi-mov {
	padding: 8px 19.35px;
}

.event-catch {
	padding-bottom: 85px;
	border-bottom: solid 1px #ddd;
}
h1.event-ttl {
	text-align: center;
}
.event-present {
	display: flex;
	justify-content: space-between;
	padding-bottom: 50px;
}
.event-present > div {
	width: 49%;
}
.event-present-nav {
	position: sticky;
	top: 110px;
	width: 90%;
}
.present-ttl {
	margin: 50px 0 20px;
	color: #0085d5;
	font-size: 14px;
}
.present-ttl2 {
	margin: 20px 0 10px;
	font-size: 12px;
	font-weight: 600;
}
.present-txt {
	margin: 10px 0;
	font-size: 12px;
}
.present-img {
	margin: 30px auto;
	width: 35%;
}
.event-presentation {
	border-bottom: solid 1px #ddd;
}
.event-presentation-ttl {
}
.event-presentation-txt {
	font-size: 12px;
}
.presentation {
	max-width: 1400px;
	margin: 30px auto 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0 30px;
}
.presentation li {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 6;
	row-gap: 0;
	margin-bottom: 50px;
}
.presentation-img {
	border: solid 1px #ddd;
}
.presentation-outline {
	color: #aaa;
	font-size: 11px;
	text-align: right;
}
.presentation-cat {
	margin: 10px 0;
	color: #0085d5;
	font-size: 11px;
}
.presentation-ttl {
	margin: 10px 0 0;
	font-size: 12px;
	font-weight: 600;
}



section.kv {
	padding: 0;
	position: relative;
}
/*
.kv .swiper::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 180px;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55));
	z-index: 1;
}
*/
.kv-01 {
	background-image: url("kv_01.jpg");
}
.kv-02 {
	background-image: url("kv_05.jpg?0702");
}
.kv-03 {
	background-image: url("kv_03.jpg?0625");
}
.kv-04 {
	background-image: url("kv_04.jpg");
}
.kv-05 {
	background-image: url("kv_02.jpg?0625");
}
.swiper-slide {
	width: 100%;
	height: calc(100vh - 71px);
	background-position: center;
	background-size: cover;
}
.swiper-pagination {
	position: absolute;
	z-index: 11;
	margin:  0 auto;
	color: #fff;
	font-size: 14px;
}
.swiper-horizontal > .swiper-pagination-bullets, 
.swiper-pagination-bullets.swiper-pagination-horizontal, 
.swiper-pagination-custom, .swiper-pagination-fraction {
	width: 100%;
	bottom: 30px;
	top: auto;
	left: auto;
}
.swiper-pagination-bullet {
	width: 50px;
	height: 2px;
	background-color: #fff;
	opacity: 0.4;
	border-radius: 0;
}
.swiper-pagination-bullet-active {
	opacity: 0.9;
}
.kv-text {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 10;
	display: flex;
	flex-direction: column;
	justify-content: start;
	width: 100%;
	height: 100%;
	margin-right: 30px;
	padding: 10px 30px 30px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 10%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.55));
	color: #fff;
	font-size: 20px;
}
.kv-text h1 {
	margin: 35px 0 0;
	color: #fff;
	font-size: 40px;
	font-weight: 400;
}
.kv-text h2 {
	margin: 0 0 5px;
	color: #fff;
	font-family: "Roboto", sans-serif;
	font-size: 30px;
	font-weight: 600;
}

.kv-special {
	position: absolute;
	bottom: 40px;
	display: flex;
	flex-direction: column;
	justify-content: start;
	margin-right: 30px;
	padding: 30px;
	color: #fff;
	background: rgba(0, 0, 0, 0.15);
}

.kv-special-ttl {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 600;
}

.kv-special-text {
	font-size: 15px;
}

section.sep {
	display: flex;
	justify-content: space-between;
	padding: 20px 0;
	border: none;
}
section.sep > div {
	width: calc(50% - 15px);
}
section.sep {
	margin-top: -80px;
	padding-top: 100px;
}
h2.border {
	margin: 0 0 20px;
	padding: 0 0 10px;
	border-bottom: solid 1px #ddd;
	font-size: 16px;
}
.news li {
	margin: 0 0 20px;
}
.news-date {
	display: block;
	color: #aaa;
	font-size: 13px;
}
.news-text {
	display: block;
	font-size: 14px;
}
.video-summury {
	font-size: 14px;
}
.access-summury {
	margin: 5px 0 0;
	font-size: 14px;
}
a.leaflet {
	display: block;
	width: 52%;
	margin: 52px auto 0;
	text-decoration: none;
}
.leaflet-text {
	display: block;
	padding: 20px;
	background: #0084d6;
	color: #fff;
}
.leaflet-text > span {
	display: block;
	font-size: 14px;
}
.leaflet-text-3 {
	margin-top: 2em;
}
a.leaflet:hover .leaflet-text-3 {
	text-decoration: underline;
}


.map {
	max-width: 670px;
	margin: 0 auto;
}
.map-summury {
	margin: 15px 0;
	font-size: 14px;
}


.footerSocial {
	padding: 0 30px;
	background: #0085d5;
}
.footerSocial ul {
	display: flex;
}
.footerSocial img {
	height: 58px;
	width: auto;
}


footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 60px 30px;
	background: #222;
	color: rgba(255, 255, 255, 0.8);
}
.footer-logo {
	width: 260px;
}
.footer-information {
	margin-top: 28px;
	font-size: 12px;
}
.footer-information li {
	margin-top: 14px;
	/*padding-left: 28px;*/
	padding-left: 50px;
}
.footer-information li.location {
	background: url("../../common/images/footer_icon_location.png") no-repeat 7px 3px;
	background-size: 20px auto;
}
.footer-information li.email {
	background: url("../../common/images/footer_icon_email.png") no-repeat 6px 3px;
	background-size: 20px auto;
}
.footer-information li.phone {
	background: url("../../common/images/footer_icon_phone.png") no-repeat 6px 3px;
	background-size: 20px auto;
}
.footer-information li a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}
.footer-information li a:hover {
	text-decoration: underline;
}
.footer-copyright {
	margin-right: 50px;
	font-size: 13px;
}


.btn-scroll-top {
	position: fixed;
	right: 30px;
	bottom: 50px;
	z-index: 500;
	overflow: hidden;
	box-shadow: 0 0 10px rgba(0,0,0,.2);
	opacity: 0;
	visibility: hidden;
	transform: translateY(100%);
	transition: opacity .3s ease, transform .3s ease, visibility 0s linear .3s;
	padding: 10px 18px;
	background: #212121;
	cursor: pointer;
}
.btn-scroll-top::after {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	border-color: #fff;
	border-style: solid;
	border-width: 0 0 1px 1px;
	margin: 0;
	vertical-align: middle;
	transform: rotate(135deg);
	transform-origin: 50% 50%;
	transition: all .3s;
}
.btn-scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: opacity .5s ease,transform .5s ease,visibility 0s linear 0s;
}

.only-sp {
	display: none;
}
