@charset "UTF-8";
/*----------------------------------------------------
  基本のレイアウト
----------------------------------------------------*/
html {
  -ms-overflow-style: scrollbar !important;
}
body {
  color: #333;
  font-size: 1.6rem;
  margin: 0;
  padding: 0;
}
html, body {
  position: relative;
  height: 100%;
}
section {
  padding: 30px 0 0;
}
.text-center {
  text-align: center !important;
}
.mx-auto {
  display: block;
}
@media (max-width: 767.98px) {
  body {
    font-size: 1.5rem;
  }
}
/*----------------------------------------------------
  フォント
----------------------------------------------------*/
@font-face {
 font-family: "MyYuGothicM";
 font-weight: normal;
 src: local("YuGothic-Medium"), /* Postscript name */ local("Yu Gothic Medium"), /* for Chrome */ local("YuGothic-Regular"); /* Mediumがない場合 */
}
@font-face {
 font-family: "MyYuGothicM";
 font-weight: bold;
 src: local("YuGothic-Bold"), /* Postscript name */ local("Yu Gothic"); /* for Chrome */
}
body {
  font-family: MyYuGothicM, /* Windows 游ゴシック */ YuGothic, /* OS X 游ゴシック */ -apple-system, /* iOS San Francisco */ BlinkMacSystemFont, /* iOS Chrome San Francisco */ "Hiragino Kaku Gothic ProN", /* OS X, iOS ヒラギノ */ Meiryo, /* Windows メイリオ */ sans-serif;
}
body {
  font-feature-settings : "palt" 1;
}
/*----------------------------------------------------
  リンク色
----------------------------------------------------*/
a {
  outline: none;
}
a:link {
  color: #06c;
  text-decoration: none;
}
a:visited {
  color: #06c;
  text-decoration: none;
}
a:hover {
  color: #0185cf;
  text-decoration: underline;
}
a:active {
  color: #0185cf;
  text-decoration: underline;
}
/*----------------------------------------------------
	hover50%
----------------------------------------------------*/
a:hover .hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
  transition: all 0.3s ease 0s;
}
/*----------------------------------------------------
  ヘッダー
----------------------------------------------------*/
.header {
  position: fixed;
  width: 100%;
  height: 137px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 2;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
header .headerTop {
  padding: 10px 20px 0;
  overflow: hidden;
}
header .siteTitle a {
  float: left;
}
header .siteTitle a img {
  width: 338px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
header .contact-area {
  float: right;
  margin-top: 4px;
}
header.is-animation {
  height: 115px;
  padding: 0;
}
header.is-animation .headerTop a img {
  width: 280px;
}
@media (max-width: 767.98px) {
  .header {
    height: 123px;
  }
  header .headerTop {
    padding: 10px 0 0;
  }
  header .siteTitle a img {
    width: 280px;
  }
}
@media (max-width: 575.98px) {
  header .contact-area {
    display: none;
  }
}
/*----------------------------------------------------
  パンくずリスト
----------------------------------------------------*/
.breadcrumb-container {
  margin-top: 136px;
  padding: 10px 0;
  background: #069;
}
.breadcrumb {
  color: #fff;
  font-size: 1.4rem;
}
.breadcrumb ul {
  padding: 0 20px;
}
.breadcrumb li {
	display: inline-block;
	padding-left: 8px;
}
.breadcrumb li a {
  color: #fff;
  text-decoration: none;
}
.breadcrumb li a:after {
  display: inline-block;
 	font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-left: 14px;
}
.breadcrumb li a:hover {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .breadcrumb-container {
    margin-top: 123px;
  }
}
/*----------------------------------------------------
  テキスト
----------------------------------------------------*/
.pagemenu-title-area {
  margin: 0;
  padding: 85px 0 75px;
  background: #ddd;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.pagemenu-title {
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.0;
  text-align: center;
}
.pagemenu-title span {
  display: block;
  color: #ccc;
  font-size: 2.0rem;
}
.section-title-area {
  margin-bottom: 15px;
  padding: 15px 0;
  background: url(../images/common/fig_section_title.png) center center no-repeat;
  background-size: 56px;
}
.section-title {
  font-size: 2.4rem;
  color: #069;
  text-align: center;
}
.contents-title {
  position:relative;
  margin-bottom: 15px;
  padding: 4px 15px 4px 40px;
  background-color: #f5f7fa;
  font-size: 2.0rem;
  overflow:hidden;
}
.contents-title:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  border-width: 40px 40px 0 0;
  border-style: solid;
  border-color: #0085cf #f5f7fa #f5f7fa;
}
.contents-inner-title {
  margin-left: -15px;
  padding-left: 10px;
  border-left: 3px solid #0085cf;
}
.contents-link-title {
  margin-bottom: 10px;
  padding: 6px 15px;
  background-color: #fafafa;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 1.8rem;
}
@media (max-width: 767.98px) {
  .section-title {
    font-size: 2.2rem;
  }
  .contents-title:before {
    border-width: 35px 35px 0 0;
  }
  .contents-title {
    padding: 4px 15px 3px 35px;
    font-size: 1.8rem;
  }
}
/*----------------------------------------------------
  フッター
----------------------------------------------------*/
.footer {
  position: relative;
  margin: 0 auto;
  padding: 20px 30px;
  border-top: 1px solid #0185cf;
  overflow: hidden;
}
.footer-left {
  float: left;
}
.footer-right {
  float: right;
}
.footer-menu ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  font-size: 0;
}
.footer-menu li {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.6;
}
.footer-menu li a {
  display: block;
  margin: 0;
  padding: 0 10px;
  color: #333;
  text-align: center;
}
.footer-menu li a:hover {
  color: #0185cf;
}
.footer-menu li a:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
 	content: "\f105";
  color: #0185cf;
  font-weight: 900;
	 padding-right: 5px;
}
.footer .footer-logo {
  float: left;
  margin-right: 20px;
}
.footer address {
  float: left;
  margin-bottom: 10px;
}
.footer address p {
  font-size: 1.4rem;
  line-height: 1.4;
}
.copyright {
  clear: both;
  color: #999;
  font-size: 1.2rem;
  text-align: center;
}
@media (max-width: 767.98px) {
  .footer .footer-logo {
    float: none;
    margin-bottom: 10px;
  }
  .footer-right {
    margin-bottom: 10px;
  }
}
/*----------------------------------------------------
  ページトップ
----------------------------------------------------*/
.pagetop {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 9999;
}
.pagetop a {
  display: block;
  width: 43px;
  height: 43px;
  background: url("../images/common/btn_pagetop.png") left top no-repeat;
  opacity: 0.8;
  text-decoration: none;
}
.pagetop a:hover {
  background: url("../images/common/btn_pagetop.png") left top no-repeat;
  transition: all 0.3s ease 0s;
}
/*----------------------------------------------------
  ボタン	
----------------------------------------------------*/
.btn-area {
  clear: both;
  margin: 0 auto 30px;
  text-align: center;
}
.btn-area ul {
  list-style: none;
  padding: 0;
}
.btn-area ul li {
  display: inline;
  margin: 0 20px;
}
.button a {
  display: inline-block;
  background: #fff;
  max-width: 260px;
  margin: 0;
  padding: 10px 24px;
  outline: medium none;
  border: 1px solid #0185cf;
  color: #0185cf;
  font-size: 1.6rem;
  line-height: 1.0;
  text-align: center;
  text-decoration: none;
}
.button a i.fas {
  padding-right: 10px;
}
.button a:hover {
  background: #0185cf;
  border: 1px solid #0185cf;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}
.button-primary a {
  background: #fff;
  display: inline-block;
  min-width: 260px;
  margin: 0;
  padding: 10px 20px 10px 28px;
  outline: medium none;
  border: 2px solid #004d8f;
  color: #004d8f;
  font-size: 1.8rem;
  line-height: 1.0;
  text-align: center;
  text-decoration: none;
}
.button-primary a i.fas {
  padding-left: 14px;
  color: #004d8f;
  font-size: 1.6rem;
  transition: all 0.3s ease 0s;
}
.button-primary a:hover {
  background: #f30 none repeat scroll 0 0;
  border: 2px solid #f30;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}
.button-primary a:hover i.fas {
  color: #fff;
}
.button a::before, .button a::after,
.button-primary a::before, .button-primary a::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}
.button a, .button a::before, .button a::after,
.button-primary a, .button-primary a::before, .button-primary a::after {
  box-sizing: border-box;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767.98px) {
  .btn-area ul li {
    display: inherit;
    margin: 0 auto;
  }
}
/*----------------------------------------------------
  共通レイアウト
----------------------------------------------------*/
.br-sp {
  display: inline-block;
  text-decoration: none;
}
.contents-block {
  margin-bottom: 30px;
}
.contents-inner-block {
  margin: 0 15px 20px 0;
}