@charset "utf-8";
/*
Theme Name:未来創世ラボ
Version: 1.1
*/

/*============================
共通スタイル
============================*/
html,body {
	color: #000;
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-family: 'font1', 'Noto Sans JP', 'Lato', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 100%;
	line-height: 1.5;
	text-align: justify; /*文字右端揃え*/
	text-justify: inter-ideograph;
	width: 100%;
	height: 100%;
	letter-spacing: .05em;
}
.flex{
	display:flex;
	justify-content: space-between;
}
.wrap {
	max-width: 1200px;
	margin: 0 auto;
}
@media screen and (max-width: 1230px) {
    .wrap {
        max-width: 95%;
    }
}

@media screen and (max-width: 650px) {
    .wrap {
        max-width: 90%;
    }
}


.center{text-align:center;}
.top-2{margin-top:2%;}
.top-3{margin-top:3%;}
.top-5{margin-top:5%;}
.btm-5{margin-bottom:5%;}

/* --------------------------------------------------- PC/MO　表示切替え */
.only-mov {
	display: none;
}
@media screen and (max-width: 767px) {
	.only-mov {
		display: block;
	}
	.only-pc {
		display: none;
	}
}


/* ======================================================
/*               ++ フォント ++
   ====================================================== */
/*太字*/
.font-b{
	font-weight:bold;
}
/*英語テキスト*/
.en{
	font-family: "Montserrat", sans-serif;
    text-transform: capitalize;
}
/*白字*/
.font-w{
	color:#fff;
}

/* ======================================================
/*               ++ 装飾・アニメーション ++
   ====================================================== */
/* ----- ■ -----*/
.square {
    position: relative;
    margin-left: 24px;
}

.square::before {
    font-family: FontAwesome;
    content: '\f0c8';
    color: #ccc;
    position: absolute;
    top: 2px;
    left: -22px;
    font-size: 0.85em;
}

/* ----- キランと光る -----*/
.kiran-box {
    opacity: 0;
}

.kiran-box.kiran {
    opacity: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.kiran-box.kiran::before {
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 30px;
    height: 100%;
    opacity: 0;
    transition: cubic-bezier(0.32, 0, 0.67, 0);
}

.kiran-box.kiran:hover::before {
    animation: kiran 0.3s linear 1;
}

@keyframes kiran {
    0% {
        transform: scale(2) rotate(45deg);
        opacity: 0;
    }

    20% {
        transform: scale(20) rotate(45deg);
        opacity: 0.6;
    }

    40% {
        transform: scale(30) rotate(45deg);
        opacity: 0.4;
    }

    80% {
        transform: scale(45) rotate(45deg);
        opacity: 0.2;
    }

    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

.rotateRightZ {
    animation-name: rotateRightZAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes rotateRightZAnime {
    from {
        transform: rotateZ(0);
    }

    to {
        transform: rotateZ(360deg);
    }
}

.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flipLeftTop {
    animation-name: flipLeftTopAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes flipLeftTopAnime {
    from {
        transform: translate(-20px, 80px) rotate(-15deg);
        opacity: 0;
    }

    to {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
}

.flipRightTop {
    animation-name: flipRightTopAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes flipRightTopAnime {
    from {
        transform: translate(-20px, 80px) rotate(25deg);
        opacity: 0;
    }

    to {
        transform: translate(0, 1) rotate(0deg);
        opacity: 1;
    }
}

.zoomIn {
    animation-name: zoomInAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
    from {
        transform: scale(0.6);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.fadeUpTrigger,
.zoomInTrigger,
.flipLeftTopTrigger,
.flipRightTopTrigger {
    opacity: 0;
}

figure {
    margin: 0 !important;
}

figure.hover-zoom {
    overflow: hidden;
}

figure.hover-zoom img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

figure.hover-zoom:hover img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

/*トップに戻るボタン*/
.bl_pageTop {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 0;
    bottom: 0;
    background: #218af8;
    z-index: 999;
}
.bl_pageTop a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
}
.bl_pageTop a::before {
    font-family: FontAwesome;
    content: '\f106';
    font-size: 40px;
    color: #fff;
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    line-height: 48px;
}
/*============================
グローバルメニュー
============================*/
header .bl_logo.flex{
    align-items: center;
    background-color: #fff;
    box-shadow: 0 3px 12px #1478f029;
    width: 35%;
    justify-content: center;
    padding: 25px 20px;
    border-radius: 0 0 30px 30px;
}
header .bl_logo.flex a{
    display: contents;	
}
header .bl_logo.flex .lab{
	width:200px;
	margin-right: 20px;

}
header .bl_logo.flex .agk{
	width:200px;
	margin-left:10px;
}
header .bl_nav{
    width: 50%;
    background-color: #ffffff;
    box-shadow: 0 3px 12px #1478f029;
    border: solid 1px #1478f0;
    padding: 10px 3%;
    border-radius: 35px;
    line-height: 40px;
}
header .bl_nav a{
    font-size: 15px;
}

header .bl_nav_mailIcon{
    background-color: #ffffff;
    box-shadow: 0 3px 12px #1478f029;
    border: solid 1px #1478f0;
    width: 70px;
    padding: 22px;
    border-radius: 40px;
    text-align: center;
    height: 70px;
    margin-right: 70px;
}
header .bl_nav_mailIcon i{
	color: #1478f0;
    font-size: 25px;
}
header .bl_nav a:hover{
	color:#1478f0;
}

.ly_header {
	width: 100%;
 	position: fixed;
	top: 0;
	left: 0;
	box-sizing: border-box;
	text-align: left;
	align-items: center;
	z-index: 1000;
}

.bl_panel{
	position: fixed;
	z-index: 200;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
}

.bl_panel_inner {
	position: relative;
	width: 100%;
	height: 100%;
	background: #218af8;
	transition: all 0.5s;
	overflow-y: auto;
}

.bl_panel_cont {
	max-width: 600px;
	margin: 0 auto;
	height: 100%;
}

.bl_nav.mo {
	width: 100%;
	display: grid;
	 grid-template-columns: repeat(2, 1fr);
	gap: 60px 100px;
}

.bl_nav.mo li {
	font-size: 1.25rem;
}

.bl_nav.mo li a {
	color: #fff;
	font-weight: bold;
    letter-spacing: .1em;
}

.bl_nav.pc {
	position: fixed;
	top: 24px;
	right: 30px;
	line-height: 1;
	text-align: right
}

.ly_header.sticky .bl_nav.pc {
	top: 0;
	right: 0;
}

.bl_nav.pc li {
	display: inline-block;
	vertical-align: middle;
	line-height: 70px;
	margin: 0 0 0 auto;
	padding: 0 24px 0 0;
}

.ly_header .bl_nav.pc li:last-child {
	padding: 0;
	transition: .2s;
}

.ly_header .bl_nav.pc li:last-child a {
    padding: 15px 45px;
	color: #fff;
	display: inline;
	background: #218af8;
	border-radius: 10px;
	border: 4px solid #ffffff66;
	background-clip: padding-box;
	transition: none;
}

.ly_header .bl_nav.pc li:last-child a:hover {
	background: #ff67b3;
	background-clip: padding-box;
}


.ly_header .bl_nav.pc li a {
	letter-spacing: .05em;
	font-weight: bold;
	font-size: .9375rem;
	display: block;
}

.ly_header .bl_nav.pc li a:hover {
	color: #218af8;
}

.ly_header .bl_nav.pc li:last-child a:hover {
	color: #fff;
}

.ly_header .bl_logo img {
	display: block;
}

@media screen and (max-width: 1300px) {
	.bl_nav.pc li {
    	padding: 0 14px 0 0;
	}
}

@media screen and (max-width: 1279px) {
	.ly_header .bl_logo {
    	width: 188px;
		top: 32px;
	}
	
	.ly_header.sticky .bl_logo {
    	top: 18px;
	}
	
	.bl_nav.pc {
    	top: 14px;
	}
}

@media screen and (max-width: 1200px) {
	.bl_nav.pc {
		display: none;
	}
	
	.bl_nav_mailIcon{
		display: inline-block;
    	/*position: fixed;*/
    	top: 0;
    	right: 72px;
	}
	
	.bl_nav_mailIcon a {
		/*display: inline-block;*/
		position: relative;
		width: 70px;
		height: 70px;
		color: #fff;
		background: #218af8;
		background: unset;
	}

	.ly_header .bl_logo {
    	top: 14px;
	}
    header .bl_nav_mailIcon {
        margin-right: 30px;
    }
}
@media screen and (max-width: 1024px) {
	header .bl_nav a {
        font-size: 12px;
    }
}
@media screen and (max-width: 767px) {
	.ly_header {
		height: 60px;
	}
	
	.ly_header .bl_logo {
    	width: 177px;
    	top: 14px;
    	left: 10px;
	}
	
	.ly_header.sticky .bl_logo {
    	top: 14px;
	}
	
	.bl_nav_mailIcon{
    	right: 62px;
	}
	
	.bl_nav_mailIcon a {
		width: 60px;
		height: 60px;
	}
	.bl_nav_mailIcon a:before {
        top: 20px;
		font-size: 20px;
		display:none;
	}
	
	.bl_panel_cont nav {
		display: flex;
    	display: -webkit-flex;
    	justify-content: center;
	}
	
	.bl_panel_cont {
    	padding-top: 80px;
	}
	
	.bl_nav.mo {
		width: auto;
		display: inline-block;
	}
	
	.bl_nav.mo li {
    	font-size: 1.125rem;
    	margin: 0 0 20px;
	}
	header .bl_nav {
        background-color: #218af8;
	    border: none;
		width: 70%;
	}
	header .bl_nav a {
        font-size: 17px;
        color: #fff;
        font-weight: bold;
    }
	.bl_nav_mailIcon a {
		background:none;
	}	
	header .bl_logo.flex {
        width: 75%;
	    padding-bottom: 17px;
	}
    header .bl_logo.flex .lab {
        width: 120px;
        margin-right: 10px;
	}
    header .bl_nav_mailIcon {
        width: 60px;
        padding: 0px;
        height: 60px;
        margin-right: 10px;
	    display: none;
    }
	header .bl_nav_mailIcon i {
        margin-top: 18px;
    }
	.ly_header .bl_logo img {
        width: 110px;
    }	
    header .bl_logo.flex .agk {
        width: 155px;
    }
}

/* ----- MENU Button -----*/
.bl_nav_menu {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	width: 70px;
	height: 70px;
	cursor: pointer;
	z-index: 99;
	background: #218af8;
}

.bl_nav_menu div {
	position: relative;
}

.bl_nav_menu span {
	display: block;
	position: absolute;
	height: 2px;
	width: 50%;
	background: #fff;
	left: 25%;
}

.bl_nav_menu span:nth-child(1) {
	top: 20px;
}

.bl_nav_menu span:nth-child(2) {
	top: 35px;
}

.bl_nav_menu span:nth-child(3) {
	top: 50px;
}

@media screen and (max-width: 767px) {
	.bl_nav_menu{
		display: block;
	}
}

@media screen and (max-width: 767px) {
	.bl_nav_menu {
		width: 60px;
		height: 60px;
	}
	
	.bl_nav_menu span:nth-child(1) {
		top: 24px;
	}

	.bl_nav_menu span:nth-child(2) {
		top: 30px;
	}

	.bl_nav_menu span:nth-child(3) {
		top: 36px;
	}
}
/* ----- close Button -----*/
.bl_close {
	position: fixed;
    top: 11px;
    right: 1px;
	width: 46px;
	height: 46px;
	cursor: pointer;
	z-index: 999;
}

.bl_close div {
	position: relative;
}

.bl_close span {
	display: block;
	position: absolute;
	height: 4px;
	width: 100%;
	background: #fff;
	left: 0;
}

.bl_close span:nth-child(1) {
	top: 11px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}

.bl_close span:nth-child(2) {
	width: 0;
	left: 50%;
}

.bl_close span:nth-child(3) {
	top: 11px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}

@media screen and (max-width: 1279px){
	.bl_close {
    	top: 20px;
		right: 12px;
	}
}
