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

/* -----------------------------------------------------------
    header
----------------------------------------------------------- */
header {
    font-size: 13px;
    background: #FFF;
    position: relative;
    z-index: 99999;
}

header i {
    margin-right: 5px;
}

header .wrapper > .flexWrapper {
    padding: 50px 0;
}

header .sub_nav {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

header .sub_nav ul {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

header .sub_nav ul:nth-of-type(1)::after {
    content: "";
    border-right: 1px dotted #9A9A9A;
    height: 30px;
    margin-right: 28px;
}

header .sub_nav ul:nth-of-type(1) li {
    margin-right: 32px;
}

header .sub_nav ul:nth-of-type(2) li {
    margin-right: 28px;
}

header .sub_nav ul:nth-of-type(2) li:last-child {
	margin-right: 0;
    background: #0b3c5d;
}

header .sub_nav ul:nth-of-type(2) li:last-child a {
    display: block;
    padding: 8px 18px;
    color: #FFF;
}

header > nav {
    border-top: 1px solid #dddddd;
    background: #FFF;
    box-shadow: 0px 2px 3px -3px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0px 2px 3px -3px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 2px 3px -3px rgba(0,0,0,0.3);
}

header > nav > ul {
    margin: 0 6.25%;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    border-left: 1px solid #dddddd;
}

header > nav > ul li {
    flex: 1;
    -webkit-flex: 1;
    text-align: center;
    border-right: 1px solid #dddddd;
}

header > nav > ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 15px;
    padding:  22px 0;
}

header > nav > ul li a span {
    display: block;
    font-size: 10px;
    line-height: 10px;
    color: #328cc1;
    margin-top: 10px;
}

header > nav > ul li a.current {
    background: #0b3c5d;
    color: #FFF;
}

header > nav > ul li a.current span{
    color: #FFF;
}

header > nav > ul li a:hover {
    background: #0b3c5d;
    color: #FFF;
    opacity: 1;
}

header > nav > ul li a:hover span{
    color: #FFF;
}

@media screen and (max-width: 1200px) {
header .wrapper > .flexWrapper a {
    font-size: 85%;
}

header .wrapper > .flexWrapper > h1{
    width: 270px;
}

header .sub_nav ul:nth-of-type(1) li {
    margin-right: 20px;
}

header > nav > ul li a {
    font-size: 13px;
    line-height: 13px;
}

}

#panel-btn {
	display: none;
}

#sp_sub_nav {
	display: none;
}

/* -----------------------------------------------------------
    #wrapper
----------------------------------------------------------- */
.wrapper {
    margin: 0 6.25%;
    text-align: left;
}

.flexWrapper {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

/* -----------------------------------------------------------
    .headerBox
----------------------------------------------------------- */
.headerBox {
    text-align: center;
    margin-bottom: 50px;
}

.headerBox div > i {
    display: block;
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 20px;
    color: #0b3c5d;
}

.headerBox > h1 {
    display: block;
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 20px;
}

.headerBox > span {
    display: block;
    font-size: 15px;
    line-height: 15px;
}

/* -----------------------------------------------------------
    #main
----------------------------------------------------------- */
#lower #contents main #main {
	display: flex;
    display: -webkit-flex;
	align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
	background: url(../img/common/main.jpg) no-repeat center / cover;
	height: 25vh;
}

#lower #contents main #main h1 {
	font-size: 30px;
	font-size: 3.0rem;
	color: #ffffff;
}

/* -----------------------------------------------------------
    #breadcrumbs
----------------------------------------------------------- */
#breadcrumbs {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: space-between;
    -webkit-justify-content: space-between;
	background: #f4f4f4;
	padding: 20px 6.25%;
}

#breadcrumbs ol {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
}

#breadcrumbs ol li {
	list-style: none;
}

#breadcrumbs ol li:after {
	font-family: FontAwesome;
	font-size: 15px;
	font-size: 1.5rem;
	content: "\f105";
	margin: 0 0.8em;
}

#breadcrumbs ol li:last-child:after {
	content: "";
}

#breadcrumbs ol li a {
	text-decoration: underline;
}

#breadcrumbs > p a {
	min-width: 300px;
	position: relative;
}

#breadcrumbs > p a:after {
	font-family: FontAwesome;
	font-size: 22px;
	font-size: 2.2rem;
	font-weight: normal;
	content: "\f105";
	position: absolute;
	top: 50%;
	right: 10%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

/* -----------------------------------------------------------
    #container
----------------------------------------------------------- */
#container {
	padding: 6.25%;
}

/* -----------------------------------------------------------
    #tab
----------------------------------------------------------- */
ul#tab {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: space-between;
    -webkit-justify-content: space-between;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: bolder;
	margin: 0 0 7%;
}

ul#tab li {
	flex: 0 1 33.27%;
	-webkit-flex: 0 1 33.27%;
}

/* -----------------------------------------------------------
    #box
----------------------------------------------------------- */
#box {
}

#box > section {
	margin: 7% 0 0;
}

#box section:first-child {
	margin: 0;
}

/* -----------------------------------------------------------
    .heading
----------------------------------------------------------- */
.heading {
	border-top: 1px solid #dddddd;
	margin: 0 50px 0 0;
	padding: 30px 0 0;
	flex: 0 1 300px;
	-webkit-flex: 0 1 300px;
}

.heading h1 span {
	display: block;
}

.heading h1 span:nth-child(1) {
	font-size: 24px;
	font-size: 2.4rem;
}

.heading h1 span:nth-child(2) {
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: 400;
	margin: 5% 0 0;
}

.main_contents {
	flex: 1 1;
	-webkit-flex: 1 1;
}

/* -----------------------------------------------------------
    .clm
----------------------------------------------------------- */
.clm {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
    -webkit-justify-content: space-between;
}

/* -----------------------------------------------------------
    section
----------------------------------------------------------- */
section {
    margin-bottom: 100px;
}

#lower section {
    margin-bottom: 0;
}

/* -----------------------------------------------------------
    .btn
----------------------------------------------------------- */
.btn {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
    -webkit-justify-content: center;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: bolder;
	background: #0b3c5d;
	color: #ffffff !important;
	min-height: 60px;
	height: 60px\0;/*IE*/
}

.btn:hover {
	background: #137abf;
	opacity: 1;
}

/* -----------------------------------------------------------
    .btn_contact
----------------------------------------------------------- */
.btn_contact {
    position: fixed;
    bottom: 30px;
    right: 60px;
    z-index: 9999;
}

.btn_contact a {
    color: #FFF !important;
    border: 3px solid #ffffff;
    background: #0b3c5d;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    flex-direction: column;
}

.btn_contact a:hover {
    opacity: 1;
    background: #137abf;
}

.btn_contact a i {
    margin-right: 4px;
}

.btn_contact a span:nth-of-type(1) {
    font-size: 24px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* -----------------------------------------------------------
    footer
----------------------------------------------------------- */

footer {
    position: relative;
    background: #f4f4f4;
}

footer > .flexWrapper {
    margin: 0 6.25%;
    padding: 100px 0;
}

footer > a {
    position: absolute;
    top: -25px;
    left: 50%;
    background: #0b3c5d;
    color: #FFF;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transform: translateX(-25px);
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}

footer > a i {
    color: #FFF;
}

footer > a:hover {
    background: #137abf;
    opacity: 1;
}

footer > .flexWrapper dl dd ul {
    display: flex;
    display: -webkit-flex;
}

footer > .flexWrapper dl {
    line-height: 22px;
}

footer > .flexWrapper dl dt {
    font-size: 14px;
    font-weight: bold;
}

footer > .flexWrapper dl dd {
    font-size: 12px;
}

footer > .flexWrapper dl dd ul li:nth-child(1)::after {
    content: "/";
    margin: 0 5px;
}

footer > .flexWrapper dl dd ul li a::before {
    content: ".";
    margin: 0 2px;
}

footer > .flexWrapper .footer_cBox ul {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
}

footer > .flexWrapper .footer_cBox ul li {
    margin-right: 30px;
}

footer > .flexWrapper .footer_cBox ul li:last-child {
    margin-right: 0px;
	text-align: center;
}

footer > .flexWrapper .footer_cBox ul li span {
    display: block;
    font-size: 11px;
}

footer > .flexWrapper .footer_cBox ul li:nth-child(2) {
    font-size: 30px;
    line-height: 30px;
    font-weight: bold;
}

footer > .flexWrapper .footer_cBox ul li:nth-child(2) a {
    color: #0b3c5d;
}

footer > .flexWrapper .footer_cBox ul li:nth-child(2) a i {
    margin-right: 6px;
}

footer > .flexWrapper .footer_cBox ul li:nth-child(2) a span {
    color: #333333;
}

footer > .flexWrapper .footer_cBox ul li:last-child a {
    display: block;
    font-size: 15px;
    line-height: 15px;
    background: #0b3c5d;
    padding: 24px;
    color: #fff;
}

footer > .flexWrapper .footer_cBox ul li:last-child a i {
    margin-right: 6px;
}

footer > .flexWrapper .footer_cBox ul li:last-child a:hover {
    background: #137abf;
    opacity: 1;
}

footer .footer {
    padding: 50px 0;
    background: #333333;
    color: #FFF;
}

footer .footer > .flexWrapper {
    margin: 0 6.25%;
}

footer .footer > .flexWrapper ul {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

footer .footer > .flexWrapper ul li {
    margin-right: 30px;
}

footer .footer a {
    color: #FFF;
}


@media screen and (max-width: 1340px) {
footer > .flexWrapper {
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}

footer > .flexWrapper dl {
    display: flex;
    display: -webkit-flex;
	margin-bottom: 20px;
}

footer > .flexWrapper dl dt, footer > .flexWrapper dl dd {
    margin-right: 20px;
}

footer > .flexWrapper .footer_cBox {
    width: 100%;
}

footer > .flexWrapper .footer_cBox ul li:last-child {
    flex: 1;
	-webkit-flex: 1;
}
}
/* -----------------------------------------------------------
    pagetop
----------------------------------------------------------- */
#pagetop {
	position: fixed;
	bottom: 0;
	right: 2%;
	z-index: 999;
}

/* -----------------------------------------------------------
    img:hover
----------------------------------------------------------- */
a img:hover {
	opacity: 0.7;
	-webkit-transition: all .3s;
	transition: all .3s;
}

/* -----------------------------------------------------------
    .hd_01
----------------------------------------------------------- */
.hd_01 {
  font-size: 50px;
  font-size: 5.0rem;
	font-weight: 900;
	margin-top: 4vw;
	text-align: center;
}

.hd_01 span {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}

.hd_01 span:after {
  background-color: #a49375;
  content: "";
  width: 100%;
  height: 5px;
}

/* -----------------------------------------------------------
    .tab
----------------------------------------------------------- */
.tab {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  margin-top: 3vw;
}

.tab ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tab ul li {
  flex: 1 1;
  margin-left: 2vw;
}

.tab ul li:first-of-type {
  margin-left: 0;
}

.tab ul li a {
  background-color: #72b4e0;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  min-height: 70px;
  padding: 0.5vw;
}

.tab ul li a.current,
.tab ul li a:hover {
  background-color: #0b3c5d;
  color: #ffffff;
}

/* -----------------------------------------------------------
    フォントカラー
----------------------------------------------------------- */
.fc_clr_red {
  color: #b80003;
}

/* -----------------------------------------------------------
    ボックス
----------------------------------------------------------- */
.box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1vw;
}

.box01 p {
  background-color: #c74200;
  color: #ffffff;
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
  padding: 0.25em 0.75em;
  text-align: center;
}

/* -----------------------------------------------------------
  .pe_elt
----------------------------------------------------------- */
.pe_elt {
  pointer-events: none;
}