@charset "UTF-8";
/*マージン上下0・左右auto／ margin: 0 auto; */

/* ===========================
共通
=============================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
}
#body_wrapper{
	width:100%;
	overflow-x: hidden !important;
}
img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
svg {
	fill: currentColor;
	stroke: currentColor;
}
.display-block {
	display: block;
}
ul {
	margin:0;
	padding: 0;
	list-style: none;
}


/* ===========================
リンク設定
=============================== */
a {
    position: relative;
    display: inline-block;
    transition:0.3s;
    text-decoration: none;
    color: #000;	
}
a:hover {
    color: #A2A2A2;
}
a.link_UL {
    position: relative;
    display: inline-block;
    transition:0.3s;
    text-decoration: none;
    color: #134799;	
}
a.link_UL::after {
  border-bottom: solid 1px #000;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  width: 0;
}
a.link_UL:hover::after {
  width: 100%;
}
a.link_UL:hover {
    color: #134799;
}

.align-center {
    text-align: center;
}
.align-left {
    text-align: left;
}
.align-right {
    text-align: right;
}
.align-justify {
    text-align: justify;
}
.span-block {
    display: block;
}
 
/* 全幅マスク */
#body-inside {
overflow-x: hidden;
}

hr {
    background-color: #000;
	width: 100%;
    border: none;
    display: block;
    height: 1px;
    margin: 4rem 0;
}
.magin_10 { margin-top: 10px; clear: both; }
.magin_20 { margin-top: 20px; clear: both; }
.magin_30 { margin-top: 30px; clear: both; }
.magin_40 { margin-top: 40px; clear: both; }
.magin_50 { margin-top: 50px; clear: both; }
.magin_60 { margin-top: 60px; clear: both; }
.magin_70 { margin-top: 70px; clear: both; }
.magin_80 { margin-top: 80px; clear: both; }
.magin_100 { margin-top: 100px; clear: both; }
.magin_B10 { margin-bottom: 10px; clear: both; }
.magin_B20 { margin-bottom: 20px; clear: both; }
.magin_B30 { margin-bottom: 30px; clear: both; }
.magin_B50 { margin-bottom: 50px; clear: both; }

.container {
    /* [disabled]width: 1000px; */
	flex-grow: 1;
  	margin: 0 auto;
  	position: relative;
  	width: auto;
}




/* ===========================
各ページ共通
=============================== */

.pagemargin {
	display: block;
    padding-top: 100px;
    margin-top: -100px;
}

header {
    width: 100%;
    height: 85px;
    color: #000;
    background: rgba(255, 255, 255, 0.85);
    position: fixed;
    top: 0;
    z-index: 9999;
}
header .inner {
    height: 100%;
    margin: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  
}

.inner h1 {
    text-align: left;
}
header .inner nav ul {
	list-style: none;
	display: flex; 
}
header .inner nav ul li {
    font-family: 'GothamBook';
    margin: 0 25px;
    font-size: 1.6rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    text-align: center;
}
header .inner nav ul li a:hover {
    color: #909090;
    /* [disabled]text-shadow: 0 0 1px #fff,0 0 2px #fff; */
}
.toplogo {
	width: 125px;
	/*height: 60px;*/
}
@media (max-width: 1024px) {
	header {
		top: 0;
		height: 85px; 
	}
	.inner h1 {
    	/*text-align: left;*/
   		margin-right: auto;
	}
	header .inner {
		margin: 0 15px;
		justify-content: center; 
	}
	.toplogo {
    width: 120px;
	}

	header .inner nav {
		position: fixed;
		top: 85px;
		bottom: 0;
		right: 0;
		left: 0;
		visibility: hidden;
		opacity: 0;
		transition: 0.5s;
		background-color: rgba(0, 0, 0, 0.8);
	}
	header .inner nav ul {
		position: absolute;
		top: 35%;
		left: 20px;
		transform: translateY(-50%);
		flex-direction: column;
		align-items: flex-start;
	}
	header .inner nav ul li {
    margin: 20px;
    text-align: left;
   
	}
	header .inner nav ul li a {
		font-size: 20px;
		color: #fff;
		
	}
	.btn-trigger {
		position: absolute;
		top: 50%;
		right: 20px;
		width: 34px;
		height: 28px;
		transform: translateY(-50%);
		cursor: pointer; }
	.btn-trigger span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 1px;
		background-color: #000;
	 }
	.btn-trigger, .btn-trigger span {
		display: inline-block;
		transition: all .5s;
		box-sizing: border-box; }
	.btn-trigger span:nth-of-type(1) {
		top: 0; }
	.btn-trigger span:nth-of-type(2) {
		top: 13px; }
	.btn-trigger span:nth-of-type(3) {
		bottom: 0; }
	#btn.active span:nth-of-type(1) {
		transform: translateY(15px) rotate(-45deg); }
	#btn.active span:nth-of-type(2) {
		left: 50%;
		opacity: 0;
		animation: active-btn-bar02 .8s forwards; }
	@keyframes active-btn-bar02 {
		100% {
		 height: 0; } }
	#btn.active span:nth-of-type(3) {
		transform: translateY(-12px) rotate(45deg); } 
}
@media (max-width: 599px) {
	header {
		height: 85px;
		background: #fff;
}
	header .inner img {
    	width: 120px;
	}
}

@media (min-width: 1025px) {
	.btn-trigger {
		display: none; } 
}

/* ===========================
フッター
=============================== */


footer {
	font-family: "新ゴ EL", sans-serif;
	display: flex;
	flex-direction: column;
    background-color: #c9caca;
    padding-top: 25px;
}
#foot_nav {
    font-family: 'GothamBook';
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    text-align: center;
}
#foot_nav li {
    list-style-type: none;
    margin: 0 20px;
    font-size: 1.55rem;
}
#foot_nav li a:hover {
    color: #FFF;
}
.add {
    text-align: center;
    font-size: 1.1rem;
    margin: 20px 0;
    line-height: 2;
	padding: 0 15px;
}
.add li:first-child {
	font-size: 1.4rem;
	line-height: 3;
}
.pc-inline {
    margin: 0 0.5em;
    display: inline-block;
}
.footlogo-1 {
    margin: 20px auto;
	text-align: center;
}
.footlogo-1 img {
    width: 140px;
}
.footlogo-2 {
    margin: 5px auto 25px;
	text-align: center;
}
.footlogo-2 img {
    width: 180px;
}
#footcopy {
    text-align: center;
    font-size: 0.7rem;
    padding: 15px;
    letter-spacing: 0.1rem;
}
