@charset "utf-8";
/* ===================================================================
 style info : ヘッダーやフッターなどサイト内共通
=================================================================== */

/*----------------------------------------------------
	共通
----------------------------------------------------*/
html {
    overflow-y: scroll;/* スクロールバーの有無によるズレ対策 */
	font-size: 62.5%;
    background: #ffffff;
}

body {
	font-family: "Roboto", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    background: #ffffff;
    color: #333333;
    font-size: 13px;
	font-size: 1.3rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -o-text-size-adjust: 100%;
    text-size-adjust: 100%;
	font-feature-settings: "palt";
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, body {
		font-feature-settings: "pkna";
	}
}

/*----------------------------------------------------
    リンク
----------------------------------------------------*/
a:link {
    color: #333333;
    text-decoration: none;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
}

a:visited {
    color: #333333;
    text-decoration: none;
}

a:hover {
    color: #333333;
    text-decoration: none;
}

a:active {
    color: #333333;
    text-decoration: none;
}

a.link:link {
    color: #0000ff;
    text-decoration: none;
}

a.link:visited {
    color: #0000ff;
    text-decoration: none;
}

a.link:hover {
    color: #0000ff;
    text-decoration: none;
}

a.link:active {
    color: #0000ff;
    text-decoration: none;
}

/* -----------------------------------------------------------
    強制改行
----------------------------------------------------------- */
.word-break {
  word-break: break-all;
}

/* -----------------------------------------------------------
    header
----------------------------------------------------------- */

header > .header_up {
	padding: 10px;
	background: #ededed;
}

header > .header_up > .inner > div {
	text-align: right;
}

header > .header_inner .inner {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}

header > .header_inner {
	background: #07429a;
	color: #fff;
	padding: 40px 0;
}


header > .header_inner .inner h1 a > span {
	display: block;
}

header > .header_inner .inner h1 a > span:first-child {
	font-size: 31px;
	font-size: 3.1rem;
	font-weight: bold;
	color: #fff;
}

header > .header_inner .inner h1 a > span:nth-child(2) {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	color: #fff;
}

header > .header_inner .inner > div p {
	margin-left: auto;
}

header > .header_inner .inner > div p a:before {
	font-family: FontAwesome;
    content: " \f003";
    padding-right: 0.8em;
}

/* -----------------------------------------------------------
    グローバルナビゲーション
----------------------------------------------------------- */

header > .header_inner .inner > div nav {
	margin-top: 30px;
}

header > .header_inner .inner > div nav > p {
	display: none;
}

header > .header_inner .inner > div nav ul {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
}

header > .header_inner .inner > div nav ul li:not(:first-child) {
	margin-left: 30px;
}

header > .header_inner .inner > div nav ul li a {
	font-size: 14px;
	font-size: 1.4rem;
	color: #fff;
	position: relative;
}

header > .header_inner .inner > div nav ul li a.current:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
	-webkit-transform: scaleX(1);
  	-ms-transform: scaleX(1);
  	transform: scaleX(1);
    width: 100%;
    height: 2px;
    background-color: #fcb800;
}

header > .header_inner .inner > div nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    background-color: #fcb800;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

header > .header_inner .inner > div nav ul li a:hover:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

/* -----------------------------------------------------------
    下層ページ メイン　共通
----------------------------------------------------------- */
#lower .main {
	min-height: 160px;
	height: 20vh;
	width: 100%;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	-webkit-flex-direction: column;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	background: url(../img/common/pattern.png) repeat;
	border-bottom: 1px solid #ededed;
}

#lower .main h2 {
	font-size: 40px;
	font-size: 4rem;
	font-weight: bold;
	color: #07429a;
	text-shadow: 
	1px 1px 0px #4f4f4f;
}

/* -----------------------------------------------------------
    下層ページ パンくず
----------------------------------------------------------- */
.Breadcrumbs {
	padding: 10px 0;
	background: #f7f7f7;
}

.Breadcrumbs ul {
	width: 1000px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
}

.Breadcrumbs ul li a {
	text-decoration: underline;
}

.Breadcrumbs ul li a:hover {
	text-decoration: none;
}

.Breadcrumbs ul li:nth-child(n+2):before {
	content: '>';
	padding: 0 15px;
}



/* -----------------------------------------------------------
    .btn　共通
----------------------------------------------------------- */
.wid20 {
	width: 20rem;
}

.wid30 {
	width: 30rem;
}

.btn {
	min-height: 30px;
	height: 30px\0;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	color: #8e6800 !important;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
    border-bottom: solid 3px #694d00;
    border-radius: 3px;
    font-weight: bold;
	background: #fcb800;
	padding: 0.5em 1em;
	font-size: 14px;
	font-size: 1.4rem;
	transition: all 0 ease;
	-webkit-transition: all 0 ease;
}

.btn:active {
    -ms-transform: translateY(4px);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
    border-bottom: none;
}


.wid30 > .btn {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	height: 50px\0;
	min-height: 50px;
	padding: 0.5em 1em;
}

.more {
	width: 20rem;
	margin: 5% auto 0;
	min-height: 30px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	color: #8e6800 !important;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
    border-bottom: solid 3px #694d00;
    border-radius: 3px;
    font-weight: bold;
	background: #fcb800;
	padding: 0.5em 1em;
	font-size: 18px;
	font-size: 1.8rem;
	transition: all 0 ease;
	-webkit-transition: all 0 ease;
	cursor: pointer;
	text-align: center;
}

.more:active {
    -ms-transform: translateY(4px);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
    border-bottom: none;
}



/* -----------------------------------------------------------
    .tit_01　見出し　共通
----------------------------------------------------------- */

.tit_block {
	text-align: center;
}

.tit_01 {
	font-size: 30px;
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
	position: relative;
	margin: 0 auto;
	display: inline-block;
}

.tit_01:before , .tit_01:after {
	content: '';
	width: 15%;
	height: 1px;
	background: #333333;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.tit_01:before {
	left: -80px;
}

.tit_01:after {
	right: -80px;
}


#top main #contents > section:nth-of-type(3) .tit_01 {
	font-size: 30px;
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
	position: relative;
	margin: 0 auto;
	display: inline-block;
	color: #fff !important;
}

#top main #contents > section:nth-of-type(3) .tit_01:before , #top main #contents > section:nth-of-type(3) .tit_01:after {
	content: '';
	width: 15%;
	height: 1px;
	background: #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

/* -----------------------------------------------------------
    #wrapper
----------------------------------------------------------- */
#wrapper {
    width: 100%;
    margin: 0 auto;
    text-align: left;
    background: #fff;
}
/* toggle-panel
----------------------------------------------------------- */
#panel-btn {
	display: none;
}

/* -----------------------------------------------------------
    main
----------------------------------------------------------- */
main {
    background: #fff;
}

/* -----------------------------------------------------------
    inner
----------------------------------------------------------- */
.inner {
	max-width: 1000px;
	min-width: 900px;
	width: 100%;
	margin: 0 auto;
}

/* -----------------------------------------------------------
    #top　セクション　共通　padding
----------------------------------------------------------- */
#top main #contents > section {
	padding: 8% 5%;
}

#top main #contents > section:nth-of-type(n+2) > .inner {
	margin: 4% auto;
}

/* -----------------------------------------------------------
    #lower　contents共通　padding
----------------------------------------------------------- */
#lower main #contents {
	padding: 6% 0;
}

/* -----------------------------------------------------------
    article
----------------------------------------------------------- */
article {
}

/* -----------------------------------------------------------
    section
----------------------------------------------------------- */
section {
}

/* -----------------------------------------------------------
    footer
----------------------------------------------------------- */
footer .fNav {
	background: #383838;
	padding: 40px 0;
}
footer .fNav .inner ul{
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
}
footer .fNav .inner ul li:not(:first-child) {
	margin-left: 40px;
}
footer .fNav .inner ul li a {
	color: #fff;
	font-size: 14px;
	font-size: 1.4rem;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
}
footer .fNav .inner ul li a:hover {
	color: #fcb800;
}

footer .fFoot {
	padding: 40px 0;
	background: #4d4d4d;
}
footer .fFoot .inner > div {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
footer .fFoot .inner > div:first-child p span {
	display: block;
}
footer .fFoot .inner > div:first-child p span:first-child {
    font-size: 31px;
    font-size: 3.1rem;
    font-weight: bold;
    color: #fff;
}
footer .fFoot .inner > div:first-child p span:nth-child(2) {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}
footer .fFoot .inner > div:first-child > div span {
    font-size: 12px;
    font-size: 1.2rem;
    color: #fff;
	margin-bottom: 10px;
    display: block;
}
footer .fFoot .inner > div:nth-child(2) {
    margin-top: 5%;
}
footer .fFoot .inner > div:nth-child(2) > dl {
    font-size: 14px;
    font-size: 1.4rem;
    color: #fff;
}
footer .fFoot .inner > div:nth-child(2) > dl dt {
    font-weight: bold;
}




