@charset "UTF-8";
/* CSS Document */

/* ===================================================================
======================================================================
  固定のヘッダーはxPCのみ。SPの際は非表示になりnav.css内#mobile-naviへ切り替わる。
======================================================================
====================================================================*/ 

.fix-header {
	width: 100%;
	margin: 0 auto;
	color: #fff;
	position: fixed;
	z-index: 900;/*　他のアイテムに対して最上位のレイヤーになるように */
	box-shadow: 0px 0px 10px 2px #232323;
	background-size: auto 100%;
	border-bottom: 4px solid #132720;
	background-image: url(https://jspc2023.com/images/header.jpg);
	background-repeat: repeat-x;
	background-position: center 0%;
	}
.fix-header-contents {
	width: 1040px;
	height: 100px;
	margin: 0 auto;
	text-align: center;
	}

/* =========================================================
  Header-Logo
=========================================================*/ 
h1 {
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	width: 650px;
	height: 85px;
	background-size: 650px auto;
	text-indent: -9999px;
	font-size: 0px;
	margin-left: auto;
	margin-right: auto;
}
.title-pc {
    background-image: url(https://jspc2023.com/images/fix_header_title_pc.svg);
    text-indent: -9999px;
    margin-top: 12px;
}
.title-pc-en {
    background-image: url(https://jspc2023.com/images/fix_header_title_en.svg);
    text-indent: -9999px;
}
.fix-header-logo {
    background-image: url(https://jspc2023.com/images/fix_header_title_sp.svg);
    float: right;
    width: 100px;
    height: 30px;
    margin-top: 16px;
    margin-right: 50px;
}
.fix-header-lang {
    width: 100px;
    height: 10px;
    top: 0px;
    right: 20px;
    padding: 1rem 1rem;
    text-align: center;
    position: relative;
    transition: .3s;
    background-color: #fdcf00;
    line-height: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1rem;
    display: block;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.fix-header-lang a {
    color: #2d2b51;
    text-decoration: none;
}
.fix-header-lang a:hover {
    color: #fff;
    text-decoration: none;
    font-weight: normal;
    display: block;
}
.fix-header-lang:after{
    content:"";
    position:absolute;
    top:0;
    bottom:.1rem;
    right:12%;
    margin:auto;
    width: .5rem;
    height: .5rem;
    border-top: .2rem solid #fff;
    border-right: .2rem solid #fde990;
    transform: rotate(45deg);
    transition:.3s;
}
.fix-header-lang:hover:after{
	border-top: .2rem solid #fff;
    border-right: .2rem solid #7f6c40;
    right:8%;
}
/* micro clearfx */
.cf:before, .cf:after {
		content:"";
		display:table
}
.cf:after { clear:both }
.cf { zoom:1 } /* For IE 6/7 */

	article{
		width:800px;
		margin:20px auto ;
	}

/* ====================================================================
=======================================================================
=======================================================================
=======================================================================
1040px以下用（タブレット／スマートフォン用）の記述
=======================================================================
=======================================================================
=======================================================================
======================================================================= */

@media screen and (max-width: 1040px) {
	.fix-header {
    display: none;
	}
	}