@charset "utf-8";
/* カスタマイズ共通 */
body {
	height: calc(100vh - 110px);
}
/* ヘッダ */
#header {
	position: relative;
	height: 90px;
}
#header img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	max-height: 90px;
	max-width: 100%;
	object-fit: contain;
}
#header h1{
	display: none;
}

#header .artEnglishLink {
	float: right;
	margin-top: 15px;
	margin-right: 20px;
	height: 35px;
}

#header .artEnglishLink a {
	position: static;
	font-size: 1.2em;
}

/* ヘッダ（モバイル設定） */
@media screen and (max-width:600px) {
	#header img {
		display: none;
	}
	#header h1 {
		height: 100%;
		color: white;
		
	    display: flex;
	    flex-wrap: nowrap;
	    justify-content: center;
	    align-items: center;
		position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
        width: 100%;
	}
}

/* フッタ */
#footer section {
	align-items: center;
	flex-direction: column;
	height: 110px;
}
#footer section div.info {
    display: flex;
    align-items: center;
    flex-direction: row;
    font-size: 0.9em;
    width: 100%;
}
#footer section.copyright-right div.banner {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9em;
	width: 25%;
}
#footer section.copyright-right div.banner a, #footer section.copyright-right div.contact a, #footer section.copyright-right p.copyright small.infoMobile a {
	color: white;
}
#footer section.copyright-right div.contact {
	text-align: left;
	font-size: 0.9em;
	white-space: nowrap;
	width: 75%;
}
#footer section.copyright-right p.copyright {
    text-align: center;
}
#footer section.copyright-right p.copyright small.infoMobile {
	display: none;
}

/* フッタ（モバイル設定） */
@media screen and (max-width:600px) {
	body {
		height: calc(100vh - 80px);
	}
	#footer section {
		padding: 10px 10px 0 0;
		box-sizing: content-box;
	}
	#footer section.copyright-right {
		height: 80px;
		}
	#footer section.copyright-right div.info {
		display: none;
	}
	#footer section.copyright-right p.copyright small.infoMobile {
		display: inline;
		white-space: nowrap;
	}
}

/* 検索画面リンク */
#main .link_info {
	margin-bottom: 20px;
}
#main .link_info h2 {
        text-align: center;
        width: fit-content;
        margin: 0 auto;
        padding: 15px 10px;
}
#main .link_info h2 p {
        border-bottom: solid 2px #cc3333;
}
#main .link_info p {
        text-align: center;
        margin: 1px auto;
}
#main .link_info p a {
        text-decoration: underline;
        color: #000011;
}

