﻿@charset "UTF-8";

body {
	color: #333;
	font-weight:lighter;
//	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3",Hiragino Kaku Gothic, "メイリオ", Meiryo, sans-serif;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3",Hiragino Kaku Gothic,  sans-serif;
}
#session {
	background: url(../bg/bg03.png);
	background-repeat: no-repeat;
	background-position: right top;
	background-size: 41%;
}
#profile {
	background: url(../bg/bg04.png);
	background-repeat: no-repeat;
	background-position: right top;
	background-size: 46%;
}
/*
h1,h2,h3,h4 {
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,'Noto Serif JP',serif;
}
*/
h1,h2,h3,h4 {
	font-family: 'Zen_Kaku_Gothic_Antique',sans-serif;
	color: #000;
}
p {
	text-align: justify;
}
a:hover {
	color: red;
	transition: all 0.4s ease;
}
img, video {
	max-width:100%;
	height:auto;
	width/***/: auto;
}
@font-face {
	font-family: 'Zen_Kaku_Gothic_Antique';
	  src: url('../fonts/Zen_Kaku_Gothic_Antique/ZenKakuGothicAntique-Light.ttf')format('truetype');
}
hr {
	width: 90%;
	border: 1px dotted #666;
	text-align: center;
}

/*----------------------------------------------------------------------------------------------------------
　　ベースレイアウト
  ----------------------------------------------------------------------------------------------------------*/

#container {
	position: relative;
	margin: 0 auto;
	width:100%;
}
header {
	position: absolute;
	top: 0.5%;
	right:0.5%;
	width: 36%;
	margin: 0 auto 20px;
}
#header__box {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
#nav__box {
	width: 24%;
}
#logo__box {
	width: 76%;
}
	
/*ナビゲーション
-----------------------------------------------------------------------*/
.drawerBt {
	display:none;
}
.dNavWrapper{
	width: 100%;
}
nav ul.dNav{

}
nav li {
	text-align: left;
	font-size: 1.1rem;
	line-height: 2;
}
nav li a {
	display: block;
	padding: 4px 8px;
	color: #666;
}
nav li a:hover {
	color: #333;
}
ul#menu li ul {
}

/*サブナビゲーション（未使用）
-----------------------------------------------------------------------*/

/*フッター
-----------------------------------------------------------------------*/

footer {
	padding:6% 0;
	width:100%;
//	background: #FFF;
}
footer p{
	padding-right:10%;
	font-size:0.8rem;
	text-align:right;
}

/*ページトップ
-----------------------------------------------------------------------*/

.pagetop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 10px;
}
.pagetop a {
}
.pagetop a:hover {
	display: block;
}


/* Responsive=============================================*/

@media screen and (max-width: 1024px){
	header {
		margin-bottom: 28px;
}
	nav{
		width: 100%;
//		margin: 0 auto 18px;
	}
	nav li {
		font-size: 1.1rem;
		line-height: 1.6em;
}
	nav li a {
		padding: 10px 0;
		font-size: 0.85rem;
	}
}

@media screen and (max-width:970px){
	footer p{
		padding-right:16%;
	}
}
@media screen and (max-width:800px){
	#container{
		width:100%;
	}
	header {
		margin-bottom: 5%;
	}
}
@media screen and (max-width:560px){
	header {
		width: 40%;
	}
	#header__box {
		flex-direction: column;
		width:80%;
	}
	header #logoWrap{
//		width:80%;
	}
	header #logoWrap h1{
//		width:100%;
	}
	header #logoWrap h2{
//		margin:0 24% 2% 0;
	}
	footer {
		padding:10% 0;
	}
	footer p{
		padding-right:30%;
	}
	.dNavWrapper{
		margin:0;
	}
	.drawerBg {
		width: 100%;
		height: 100%;
		position:relative;
		z-index: 999;
		display: none;
		top: 0;
		left: 0;
	}
	.drawerBt {
		display: block;
		background: none;
		border: none;
		padding: 0;
		width: 34px;
		letter-spacing: 0.1em;
		cursor: pointer;
		position: fixed;
		top: 4px;
		right: 20px;
		z-index: 1001;
		text-align: center;
		outline: none;
	}
	.drawerBt.active .drawerBar {
		width: 44px;
	}
	.drawerBt.active .drawerBar1 {
		transform: rotate(30deg);
		background: #333;
	}
	.drawerBt.active .drawerBar2 {
		opacity: 0;
	}
	.drawerBt.active .drawerBar3 {
		transform: rotate(-30deg);
		background:#333;
	}
	.drawerBt.active .drawerMenuText {
		display: none;
	}
	.drawerBt.active .drawerClose {
		display: block;
	}
	.drawerBar {
		display: block;
		height: 3px;
		margin: 8px 0;
		transition: all 0.2s;
		transform-origin: 0 0;
	}
	.drawerText {
		text-align: center;
		font-size: 8px;
	}
	.drawerClose {
		letter-spacing: 0.08em;
		display: none;
		color:#333;
	}
	.drawerMenuText {
		display: block;
	}
	.dNavWrapper {
		position:fixed;
		top: 100px;
		right: 0;
		width: 70%;
		height: 100%;
		transition: all 0.2s;
		transform: translate(344px);
		z-index: 1000;
		background:rgba(200,244,230,0.7);
	}
	.dNavWrapper.open {
		transform: translate(0);
	}
	.left .drawerBt {
		right: auto;
		left: 32px;
	}
	.left .dNavWrapper {
		transform: translate(-344px);
		right: auto;
		left: 0;
	}
	.left .dNavWrapper.open {
		transform: translate(0);
	}

/*+++ Default Navigation CSS +++*/

	nav ul.dNav{
		top: 60px;
		width: 100%;
	}
	.dNav li {
		width:100%;
		font-size: 1.4rem;
		line-height:2.4em;
		border-top:1px solid #666;
		text-align: center;
	}
	.dNav li a{
		display: block;
		color: #333;
		border-bottom:1px solid #666;
		text-decoration: none;
		background:rgba(220,244,220,0.8);
	}

	/*+++ Default Button Color +++*/

	.drawerBt {
		color:#333;
	}
	.drawerBt .drawerBar {
		background-color:#333;
	}
}

