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

@import url("reset.css");

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
/*Gotham代替フォント - Montserrat*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
/*condenceフォント*/
@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@600&display=swap');

body {
    font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/*safariで右端が欠ける対策*/
html,body{
    width: 100%;
}
/*=====共通小物=====*/
.align-right {text-align: right;}
.align-left {text-align: left;}
.align-center {text-align: center;}
.bold {font-weight: bold;}
ol {
	display: block;
	list-style-position: outside;
	list-style-type: decimal;
	padding-left: 2em;
	margin-bottom: 2em;
}
ol li {margin-bottom:1em;line-height: 1.5;}
.red {color:#FF0004;}
.indent {padding-left:2em;}

/*テーマカラー*/
/*濃：#082c69　淡い：#-*/
.themeColor {color:#082c69;}

/*
pc/スマホ用改行
<br class="br-wide" /><br class="br-narrow" />
*/
@media screen and (min-width: 480.001px){	
  .br-wide { display:block; }
  .br-narrow { display:none; }
}
@media screen and (max-width: 480px){	
  .br-wide { display:none; }
  .br-narrow { display:block; }
}

/* 点滅 */
.blinking{
    -webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

/*page-top ボタン--*/
#page-top {
    position: fixed;
    bottom: -80px;/*最初は画面の外に追い出す scrfade.jsで操作*/
    right: 10px;
    font-size: 50%;
	z-index:75;
	transition:transform 0.5s;
}
#page-top a {
    background-color: #000000;
    text-decoration: none;
    color: #fff;
    width: auto;
    padding: 5px;
    text-align: center;
    display: block;
    border-radius: 5px;
	opacity:0.7;
}
#page-top a:hover {
	text-decoration: none;
	opacity:1;
}


/*=====
ヘッダ
=====*/
header {
	background-color: #082c69;
	color: #FFF;
	width: 100%;
	height: 83px;
	position:fixed;
	z-index: 99;top:0;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.4);
}
header .wrap {
	position: relative;
	width: 94%;
	max-width: 1298px;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
}
header a {
	color:#FFF;
	text-decoration: none;
}
header h1 {
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
	-webkit- transform: translateY(-50%);
}
header ul,header li {
	list-style: none;
	padding-left: 0;
}
header nav {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit- transform: translateY(-50%);
}
header nav ul {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: flex-end;
	margin: auto;
	padding-right: 156px;
}
header nav li {
	margin: auto 1em;
	font-size: 0.8em;
	font-weight: bold;
	position: relative;
}
header nav li:hover {
}
header nav li::before {
	content:"";
	display:block;
	width:1px;
	height:20px;
	background-color:#FFF;
	position:absolute;
	top:0;
	left:-1em;
	transform: rotate(30deg);
}
header nav li:first-child::before {
	display:none;
}

header .btn {
	width: 150px;
	height: 28px;
	text-align: center;
	position: absolute;
	top: 50%; right:0;
	transform: translateY(-50%);
	-webkit- transform: translateY(-50%);
	background-color:#ac8b43;
	padding: auto;
	border-radius: 4px;
}
header .btn a  {
	font-size: 0.85em;
	font-weight: bold;
	padding-left: 1em;
	line-height:inherit;
}
header .btn a::before {
	position: absolute;
	content: "";
	top:calc(50% - 1px);
	left: 20px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
    transform: rotate(45deg) translateY(-50%);
	-webkit- transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width:1280px){
	h1 img {
		width: 123px;
	}
	header .btn {
		right:50px;
		width: 120px;
	}
	header .btn a  {
		font-size: 0.75em;
	}
	header .btn a::before {
		left: 10px;
		
	}
}
/*初期状態*/
.zdo_drawer_nav_wrapper .btn {
	display: none;
}
.zdo_drawer_nav_wrapper .logo {
	display: none;
}


/*=====
#contents_wrap
=====*/
#contents_wrap {
	display: block;
	margin-top: 83px;
	min-height: 100vh;
}


/*=====
default_format
トップページ以外の汎用
=====*/
.default_format .title.full_width {
	display: block;
	width: 100%;
	height: auto;
	color: #082c69;
	background-color: #f3f3f3;
	text-align: center;
	line-height: 1;
	letter-spacing: 0.25em;
	font-size: 1.5em;
	padding-top: 58px;
	padding-bottom: 58px;
	margin-bottom: 74px;
}
.default_format .title2 {
	display: block;
	width: 100%;
	line-height: 1.2;
	background-color: #082c69;
	color:#FFF;
	text-align: center;
	font-size: 1em;
	padding: 18px;
	margin-bottom: 2em;
}
.default_format .title3 {
	display: block;
	font-size: 1.1em;
	font-weight: bold;
	margin-bottom: 1em;
}
.default_format p,
.default_format ul {
	margin-bottom: 2em;
	line-height: 1.5em;
	font-weight: 0.9em;
}
.default_format li {
	margin-bottom: 0.5em;
}
.default_format ul.indent-list {
	list-style: none;
	padding-left: 3em;
	text-indent: -2em;
}
.default_format .section_box {
	max-width: 1027px;
	margin: 2em auto 8em;
	line-height: 1.6;
}
@media screen and (max-width: 1107px){
	.default_format .section_box {
		width: 90%;
	}
}


/*=====
フッタ
=====*/
footer {
	background-color: #082c69;
	color: #FFF;
}
footer .wrap {
	display: block;
	position: relative;
	width: 1242px;/*1298-28-28*/
	padding:42px 28px 110px;
	margin: 0 auto;
}
@media screen and (max-width: 1322px){
	footer .wrap {
		width:90%;
	}
}
footer a {
	color:#FFF;
	text-decoration: none;
}
footer h1 {
	margin-bottom: 45px;
}
footer ul {
	list-style: none;
	padding-left: 0;
}
footer li {
	margin-bottom: 1em;
	font-size: 0.8em;
}
footer small {
	position: absolute;
	top:42px;right:28px;
	font-size: 0.8em;
}
@media screen and (max-width: 800px){
	footer small {
		position: static;
		display: block;
		margin-top: 4em;
	}
}
@media screen and (max-width: 480px){
	footer h1 img {
		margin: auto;
	}
}