@charset "utf-8";
/* CSS Document */
html,body{
	font-family: "noto-sans-cjk-jp", sans-serif;
	font-weight: 400; /*Mediumは500、Boldは700*/
	font-style: normal;
	color: #242424;
}
body{
}
.SP{
	display: none;
}
.En{
	font-family: "gravesend-sans", sans-serif;
	font-weight: 500;
}

/*ヘッダー*/
header{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	width: 100%;
	transition: .3s ease;
}
header.head-active{
	background-color: rgba(48,62,102,0.75);
}
header nav{
	height: 100px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	padding-left: 20px;
}
header .left .head-logo{
	display: block;
	width: 320px;
	transition: .3s ease;
}
header .left .head-logo:hover{
	opacity: 0.5;
}
header .right .head-list{
	margin-right: 100px;
}
header .right .head-list > li{
	display: inline-block;
	position: relative;
	font-size: 1rem;
	letter-spacing: 0.075em;
}
header .right .head-list > li:not(:last-of-type){
	margin-right: 1.5em;
}
header .right .head-list > li.outside{
	margin-right: 1em;
}
header .right .head-list > li:not(:last-of-type)::after{
	content: "|";
	color: #ffffff;
	position: absolute;
	top: 50%;
	right: -1.1em;
	transform: translateY(-50%);
}
header .right .head-list > li:nth-of-type(4)::after,
header .right .head-list > li.outside::after{
	content: none;
}
header .right .head-list > li a{
	color: #ffffff;
	transition: .3s ease;
}
header .right .head-list > li.outside a{
	display: block;
	padding: 0em 2em;
	height: 60px;
	line-height: 58px;
	color: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 30px;
	-webkit-border-radius: 30px;
}
header .right .head-list > li a:hover{
	opacity: 0.5;
}
header .right .head-list > li.outside a:hover{
	opacity: 1;
	color: #303e66;
	background-color: #ffffff;
}

.menu{
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	width: 100px;
	height: 100px;
	background-color: #ffffff;
	cursor: pointer;
}
.menu span{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 55px;
	height: 2px;
	background-color: #303e66;
	transition: .3s ease;
}
.menu span:nth-of-type(1){
	top: 22px;
}
.menu span:nth-of-type(2){
	top: 38px;
}
.menu span:nth-of-type(3){
	top: 54px;
}
.menu.active span:nth-of-type(1),
.menu.active span:nth-of-type(3){
	opacity: 0;
}
.menu p{
	color: #303e66;
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	font-size: 1rem;
	letter-spacing: 0.075em;
}
.menu-wrap{
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	width: 350px;
	height: 100vh;
	transform: translateX(100%);
	transition: .8s ease;
	background-color: #ffffff;
	padding: 100px 50px 100px;
	overflow-y: auto;
	scrollbar-width: none;
}
.menu-wrap.active{
	transform: translateX(0);
}
.menu-logo{
	display: block;
	text-align: center;
}
.menu-logo img{
	width: 80%;
}
.menu-list{
	margin-top: 20px;
}
.menu-list > li{
	color: #303e66;
	font-size: 0.95rem;
	letter-spacing: 0.075em;
	position: relative;
}
.menu-list > li > .list-btn{
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	padding: 8px;
	cursor: pointer;
}
.menu-list > li > .list-btn::after{
	font: var(--fa-font-solid);
	content: "\2b";
}
.menu-list > li > .list-btn.open::after{
	font: var(--fa-font-solid);
	content: "\f068";
}
.menu-list > li > a{
	display: block;
	padding: 8px 0;
	border-bottom: 1px solid #303e66;
	transition: .3s ease;
}
.menu-list > li > a:hover{
	background-color: #d6d8e0;
}
.sub-menu-list{
	display: none;
}
.sub-menu-list a{
	display: block;
	padding: 8px;
	border-bottom: 1px solid #c0c5d1;
	background-color: #f3f3f3;
	transition: .3s ease;
}
.sub-menu-list a:hover{
	background-color: #d6d8e0;
}


/*フッター*/
footer{
	
}
.foot-deco{
	width: 100%;
    height: 500px;
    background-image: url("../img/front/ground.jpg");
    background-position: center center;
    background-size: cover;
}
.foot-con{
	color: #ffffff;
	background-color: #303e66;
	padding: 100px 5% 200px;
	display: flex;
	justify-content: space-between;
	position: relative;
}
.foot-left{
	width: 40%;
}
.foot-logo{
	display: block;
	width: 100%;
	max-width: 280px;
	transition: .3s ease;
}
.foot-logo:hover{
	opacity: 0.5;
}
.address{
	margin-top: 30px;
	font-size: 0.9rem;
	letter-spacing: 0.075em;
}
.foot-sublink{
	margin-top: 100px;
	font-size: 0.9rem;
	letter-spacing: 0.075em;
}
.foot-sublink li a{
	display: block;
	padding: 0.25em 0;
	transition: .3s ease;
}
.foot-sublink li a:hover{
	opacity: 0.5;
}
.foot-right{
	width: 60%;
	display: flex;
	justify-content: space-between;
}
.foot-right > div{
	width: calc(100% / 3 - 15px);
}
.foot-right > div > ul{
	font-size: 0.9rem;
	letter-spacing: 0.075em;
}
.foot-right > div > ul > li:not(:first-of-type){
	margin-top: 25px;
}
.foot-right > div > ul > li > a{
	display: block;
	padding: 0.25em 0;
	transition: .3s ease;
}
.foot-magolink{
	margin-top: 6px;
	font-size: 0.8rem;
	letter-spacing: 0.13em;
}
.foot-magolink > li > a{
	display: block;
	padding: 0.25em 0;
	transition: .3s ease;
}
.foot-right > div > ul > li > a:hover,
.foot-magolink > li > a:hover{
	opacity: 0.5;
}
.foot-con-deco{
	position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    text-align: center;
	font-size: clamp(1rem, 5vw, 6rem);
    line-height: 0.75em;
    font-weight: 700;
    color: #ffffff;
	opacity: 0.15;
}
.foot-bottom{
	padding: 70px 5% 20px;
}
.foot-bottom h3{
	text-align: center;
	font-size: 1.3rem;
	letter-spacing: 0.075em;
}
.foot-bottom-link{
	margin-top: 25px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}
.foot-bottom-link li{
	width: calc(100% / 4 - 15px);
}
.foot-bottom-link li a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 110px;
	color: #303e66;
	border: 1px solid #303e66;
	font-size: 1rem;
	letter-spacing: 0.025em;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	transition: .3s ease;
}
.foot-bottom-link li a:hover{
	color: #ffffff;
	background-color: #303e66;
}
.foot-bottom-link li img{
	width: 60px;
	object-fit: contain;
	margin-right: 8px;
}
p.copyright{
	margin-top: 55px;
	text-align: center;
	font-size: 0.7rem;
	letter-spacing: 0.025em;
}


/*調整用*/
@media screen and (max-width:1280px) {
	header .left .head-logo{
		width: 250px;
	}
	header .right .head-list > li{
		font-size: 0.85rem;
	}
	header .right .head-list > li.outside a{
		padding: 0 1em;
	}
	.foot-logo{
		max-width: 220px;
	}
	.foot-bottom-link li a{
		font-size: 0.9rem;
	}
	.foot-bottom-link li img{
		width: 45px;
	}
}

@media screen and (max-width:1050px) {
	header .right .head-list{
		display: none;
	}
	.foot-bottom-link li{
		width: calc(100% / 2 - 5px);
	}
	.foot-bottom-link li:nth-of-type(n+3){
		margin-top: 10px;
	}
}

/*スマートフォン*/
@media screen and (max-width:780px) {
    .PC{
		display: none;
	}
	.SP{
		display: block;
	}
	
	/*ヘッダー*/
	header nav{
		height: 60px;
		padding-left: 10px;
	}
	header .left .head-logo{
		width: 220px;
	}
	.menu{
		width: 60px;
		height: 60px;
	}
	.menu span{
		width: 40px;
	}
	.menu span:nth-of-type(1){
		top: 13px;
	}
	.menu span:nth-of-type(2){
		top: 22px;
	}
	.menu span:nth-of-type(3){
		top: 31px;
	}
	.menu p{
		bottom: 7px;
		font-size: 0.8rem;
		letter-spacing: 0em;
	}
	.menu-wrap{
		padding: 60px 20px;
		width: 80%;
	}
	.menu-logo img{
		width: 65%;
	}
	.menu-list > li{
		font-size: 0.9rem;
	}
	
	/*フッター*/
	.foot-deco{
		height: 130px;
	}
	.foot-con{
		padding: 40px 5% 60px;
		flex-wrap: wrap;
	}
	.foot-left{
		margin-top: 50px;
		order: 1;
		width: 100%;
	}
	.foot-logo{
		width: 180px;
		margin: 0 auto;
	}
	.address{
		margin-top: 15px;
		text-align: center;
		font-size: 0.8rem;
	}
	.foot-sublink{
		margin-top: 15px;
		font-size: 0.8rem;
	}
	.foot-right{
		order: 0;
		width: 100%;
		flex-wrap: wrap;
	}
	.foot-right > div{
		width: 100%;
	}
	.foot-right > div:not(:first-of-type){
		margin-top: 0px;
	}
	.foot-right > div > ul > li:not(:first-of-type){
		margin-top: 0px;
	}
	.foot-right > div > ul > li > a{
		border-bottom: 1px solid #ffffff;
		padding: 1em 0;
	}
	.foot-magolink{
		margin-top: 0px;
	}
	.foot-magolink > li > a{
		border-bottom: 1px solid #5f6883;
		padding: 1em 0;
	}
	.foot-bottom{
		padding: 40px 5% 10px;
	}
	.foot-bottom h3{
		font-size: 1rem;
	}
	.foot-bottom-link{
		margin-top: 15px;
	}
	.foot-bottom-link li{
		width: 100%;
	}
	.foot-bottom-link li:nth-of-type(n+2){
		margin-top: 10px;
	}
	.foot-bottom-link li a{
		height: 60px;
	}
	p.copyright{
		margin-top: 25px;
		letter-spacing: 0em;
	}
}

/* インスタ投稿読み込み */
.igload .sb_instagram_header,
.igload #sbi_load {
	display: none;
}
.igload #sb_instagram {
	padding: 0 !important;
}
.igload-home #sbi_images {
	grid-template-columns: repeat(5, 1fr) !important;
	gap: 0 !important;
	padding: 0 !important;
}
@media screen and (max-width:780px) {
	.igload-home #sbi_images {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}
.igload-first {
	display: none;
}
.igload-first a{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #303e66;
}
.igload-first a img{
	position: absolute;
	top: 42%;
	left: 50%;
	z-index: 1;
	transform: translate(-50%,-50%);
	width: 40%;
}