@charset "utf-8";
/*----------------------------------------------------
  基本のレイアウト
----------------------------------------------------*/
html {
  -ms-overflow-style:scrollbar !important;
}
body {
  color: #333;
}
.contents {
  margin: 0 auto;
}
section::after {
  clear: both;
  content: "";
  display: block;
}
/*----------------------------------------------------
  フォント
----------------------------------------------------*/
@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: #f60;
  text-decoration: none;
}
a:visited {
  color: #f60;
  text-decoration: none;
}
a:hover {
  color: #f60;
  text-decoration: underline;
}
a:active {
  color: #f60;
  text-decoration: underline;
}
/*----------------------------------------------------
	hover50%
----------------------------------------------------*/
a:hover .hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
  transition: all 0.3s ease 0s;
}
/*----------------------------------------------------
	lazyload fade
----------------------------------------------------*/
.lazyload {
  opacity: 0;
  width: 100%;
  height: auto;
}
.lazyloaded{
  opacity: 1;
  width: 100%;
  height: auto;
  transition: all 0.5s;
}
/*----------------------------------------------------
  パンクズメニュー
----------------------------------------------------*/
.breadcrumb {
  margin: -30px 0 30px;
  padding: 30px 0 0;
  background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
  color: #666;
  font-size: 1.4rem;
  text-align: right;
}
.breadcrumb ul {
  padding: 0;
}
.breadcrumb li {
  display: inline-block;
  padding: 0 6px 0 0;
}
.breadcrumb li:after {
  content: "/";
  color: #ccc;
}
.breadcrumb li:last-child:after {
  content: "";
}
.breadcrumb li a {
  color: #f60;
  padding: 0 10px 0 0;
}
.breadcrumb li.omission:after {
  padding: 0 0 0 8px;
}
@media (max-width: 480px) {
  .breadcrumb {
    font-size: 1.3rem;
  }
}
/*----------------------------------------------------
  メインイメージ
----------------------------------------------------*/
#main-image > .container {
  text-align: center;
}
/*----------------------------------------------------
  ページタイトル
----------------------------------------------------*/
.page-title-area {
  margin: 0 0 30px;
  text-align: center;
}
h1.page-title{
  position: relative;
  display: inline-block;
  margin: 120px 0 0;
  font-family: Meiryo, /* Windows メイリオ */  MyYuGothicM, /* Windows 游ゴシック */  YuGothic, /* OS X 游ゴシック */  -apple-system, /* iOS San Francisco */  BlinkMacSystemFont, /* iOS Chrome San Francisco */  "Hiragino Kaku Gothic ProN", /* OS X, iOS ヒラギノ */  sans-serif;
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.0;
  text-shadow: #333 0.1px 0.1px 4px;
}
h1.page-title:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -20px;
  display: inline-block;
  width: 60px;
  height: 6px;
  background-color: #fff;
  border-radius: 3px;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.page-title-area h2.page-catchcopy {
  margin: 0 0 10px;
  padding: 0;
  font-family: "游明朝", YuMincho Medium, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #333;
  font-size: 2.6rem;
  font-weight: normal;
  line-height: 1.4;
  text-shadow: #999 0.1px 0.1px 0.3px;
}
.page-title-area h2.page-catchcopy .br-sp {
  display: inline-block;
  font-weight: normal;
  text-decoration: none;
}
.page-title-area p {
  margin: 0 0 20px;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 480px) {
  .page-title-area h2.page-catchcopy {
    font-size: 2.1rem;
  }
}
/*----------------------------------------------------
  コンテンツエリア
----------------------------------------------------*/
.contents-area {
  position: relative;
  overflow: hidden;
  margin: 0 0 40px;
  padding: 80px 0 20px;
}
.contents-area:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  margin: 0 -10%;
  background: #67a9d6;
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
  z-index: -2;
}
.contents-area h3.contents-title {
  margin: 0 0 20px;
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 1.1rem;
}
.contents-area-inner {
  box-sizing: boder-box;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 0 30px;
  color: #fff;
  text-align: center;
}
.contents-area-inner:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  margin: 0 -10%;
  background: -moz-linear-gradient(left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,1) 70%, rgba(0,0,0,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.5) 55%,rgba(0,0,0,1) 70%,rgba(0,0,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.5) 55%,rgba(0,0,0,1) 70%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  z-index: -1;
  opacity: 0.3;
}
.contents-area-inner img {
  margin: 0 auto 20px;
}
.contents-area-inner h4.page-title {
  margin: 0 0 10px;
}
.contents-area-inner h4.page-title a {
  color: #fff;
  font-size: 2.0rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}
.contents-area-inner h4.page-title a:hover {
  color: #f90;
}
.contents-area h3.contents-title-e {
  margin: -5px 0 20px;
  color: #000;
  font-family: "游明朝", YuMincho Medium, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2.0rem;
  line-height: 1.2;
  text-align: center;
}
.contents-area-inner p {
  margin: 0 0 20px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: left;
}
.contents-area-inner .text-area {
  background: rgba(255, 255, 255, 0.5);
  padding: 0;
}
.contents-area-inner .text-area .text-area-inner {
  padding: 20px 20px 0;
  overflow: hidden;
  }
.contents-area-inner .text-area .text-area-inner h4.section-title {
  margin: 0 0 10px;
  color: #333;
  font-size: 2.0rem;
  line-height: 1.2;
  text-align: left;
}
.contents-area-inner .text-area .text-area-inner h4.section-title span {
  padding: 0 5px 0 0;
  color: #333;
  font-family: "Century Gothic", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 2.8rem;
  line-height: 1.0;
  text-align: left;
}
.contents-area-inner .text-area .text-area-inner p {
  margin: 0 0 10px;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.4;
}
/*----------------------------------------------------
  フッター
----------------------------------------------------*/
.footer {
  margin: 0 auto;
}
.footer-menu {
  clear: both;
  margin: 0;
  text-align: right;
}
.footer-menu ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  font-size: 0;
}
.footer-menu li {
  display: inline-block;
  border-left: 1px dotted #ccc;
  font-size: 1.4rem;
  line-height: 1.6;
}
.footer-menu li a {
  display: block;
  margin: 0;
  padding: 0 10px;
  color: #333;
  text-align: center;
}
.footer-menu li:last-child {
  border-right: 1px dotted #ccc;
}
.footer-inner {
  margin: 0 auto;
  padding: 20px 0 0;
}
.footer-logo {
  margin: 0 20px 3px 0;
}
address {
  margin: 0 0 10px;
}
address p {
  font-size: 1.2em;
  line-height: 1.6;
}
.copyright {
  margin: 0 auto 20px;
  padding: 0;
  color: #999;
  text-align: center;
}
@media (max-width: 991px) {
 .footer-logo {
    float: none;
  }
  .footer-menu ul {
    margin: 0 0 10px;
    padding: 0;
    border-top: 1px dotted #ccc;
    text-align: left;
  }
  .footer-menu li {
    width: 50%;
    padding: 4px 0;
    border-bottom: 1px dotted #ccc;
  }
  .footer-menu li:nth-child(odd) {
    border-right: 1px dotted #ccc;
    border-left: none;
  }
  .footer-menu li:nth-child(even) {
    border-left: none;
  }
}
/*----------------------------------------------------
  ページトップ
----------------------------------------------------*/
.pagetop {
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 9999;
}
.pagetop a {
  background: url("../images/common/btn_pagetop.png") no-repeat scroll left top;
  display: block;
  width: 50px;
  height: 50px;
  opacity: 0.8;
  text-decoration: none;
}
.pagetop a:hover {
  background: url("../images/common/btn_pagetop.png") no-repeat scroll left top;
  transition: all 0.3s ease 0s;
}
/*----------------------------------------------------
  共通レイアウト
----------------------------------------------------*/
.br-sp {
  display: inline-block;
  text-decoration: none;
}
@media (max-width: 374px) {
  .br-sp {
    display: inline;
  }
}
/*----------------------------------------------------
  テーブル
----------------------------------------------------*/
table {
  margin: 20px auto 0;
  border-collapse: collapse;
  border-bottom: 1px solid #ccc;
  color: #333;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: left;
  width: 100%;
}
table th {
  background: #eee;
  border-top: 1px solid #ccc;
  font-weight: normal;
  padding: 14px 14px 8px;
  vertical-align: top;
  width: 25%;
}
table td {
  background: #fff;
  border-top: 1px solid #ccc;
  padding: 14px 14px 10px;
  vertical-align: middle;
  width: 75%;
}
@media (max-width: 767px) {
  table {
    border: medium none;
  }
  table tr {
    display: block;
  }
  table th {
    background: #eee;
    border-top: 1px solid #ccc;
    display: block;
    margin: 0 auto;
    padding: 11px 14px 8px;
    width: 100%;
  }
  table td {
    background: #fff;
    border: medium none;
    display: list-item;
    list-style: outside none none;
    margin: 0;
    padding: 10px;
    width: 100%;
  }
}
/*----------------------------------------------------
  bootstrap共通設定
----------------------------------------------------*/
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
 *zoom: 1;
}
/*----------------------------------------------------
  ガター溝なしスタイリング（Bootstrap）
----------------------------------------------------*/
.no-gutter > [class*="col-"] {
 padding-left: 0;
 padding-right: 0;
}
/*----------------------------------------------------
  ガターbottomスタイリング（Bootstrap）
----------------------------------------------------*/
.gutter-bottom > [class*="col-"] {
 margin-bottom: 20px;
}
/*----------------------------------------------------
  WordPress
----------------------------------------------------*/
.post .alignnone {
  margin: 5px 20px 20px 0;
}
.post .alignright {
  float: right;
  margin: 5px 0 20px 10px;
}
.post .alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
.post .aligncenter {
  display: block;
  margin: 5px auto 20px;
}
@media (max-width: 767px) {
  .row::before, .row::after {
    content: "";
    display: inherit;
  }
  .post .alignright {
    display: block;
    float: none;
    margin: 5px auto 20px;
  }
  .post .alignleft {
    display: block;
    float: none;
    margin: 5px auto 20px;
  }
  .post .aligncenter {
    margin: 5px auto 20px;
  }
}
.post a img.alignright {
  float: right;
  margin: 0 0 10px 18px;
}
.post a img.alignnone {
  margin: 0 18px 10px 0;
}
a img.alignleft {
  float: left;
  margin: 0 18px 10px 0;
}
.post a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
img[class*="wp-image-"],
img[class*="attachment-"] {
  height: auto;
  max-width: 100%;
}
/*-- キャプション --*/
.wp-caption {
  margin: auto;
  text-align: left;
  max-width: 100%;
}
.wp-caption-text {
  display: inline-block;
  text-align: left;
  color: #666;
  margin: 0 0 10px;
  font-size: 1.2rem !important;
}
.post figure {
  display: inline-block;
  text-align: center;
}
.post figure img {
  display: block;
  margin: auto;
  width: 100%;
}
.post figcaption {
  display: inline-block;
  text-align: left;
  color: #666;
  margin: 0 0 10px;
  font-size: 1.2rem !important;
}
/*-- ギャラリー --*/
.gallery { 
  width: 100%;
  margin-bottom: 20px !important;
  overflow: hidden;
}
.gallery br {
  display: none;
 }
.gallery-item {
  float: left;
  margin-bottom: 0 !important;
}
.gallery-icon {
  text-align: center;
}
.gallery-icon img {
  width: 100%;
  height: auto;
  margin-bottom: 10px !important;
}
.gallery-caption {
  color: #666;
  font-size: 1.2rem;
  margin: 0 0 10px;
  text-align: center;
}
.gallery-columns-1 .gallery-item { /** カラムなし **/
  width: 100%;
  margin-right: 0;
}
.gallery-columns-2 .gallery-item { /** 2カラム **/
	  width: 48%;
	  margin: 0 1%;
}
.gallery-columns-3 .gallery-item { /** 3カラム **/
  width: 31.33333%;
  margin: 0 1%;
}
.gallery-columns-4 .gallery-item { /** 4カラム **/
  width: 23%;
  margin: 0 1%;
}
.gallery-columns-5 .gallery-item { /** 5カラム **/
  width: 18%;
  margin: 0 1%;
}
@media (max-width: 640px) {
  .gallery-columns-3 .gallery-item, .gallery-columns-4 .gallery-item {
    width: 48%;
    margin: 0 1%;
  }
  .gallery-columns-5 .gallery-item {
    width: 31.33333%;
    margin: 0 1%;
  }
}
/*----------------------------------------------------
  自動アイコン
----------------------------------------------------*/
.icon a[href$=".xls"], .icon a[href$=".xlsx"], .icon a[href$=".doc"], .icon a[href$=".docx"], .icon a[href$=".ppt"], .icon a[href$=".pptx"], .icon a[href$=".pdf"] {
  background: rgba(0, 0, 0, 0) none no-repeat scroll 5px 50%;
  padding: 3px 0 0 2em;
}
.icon a[href$=".xls"] {
  background-image: url("../images/common/ico_xls.gif");
}
* html .icon a.xls {
  background: rgba(0, 0, 0, 0) url("../images/common/ico_xls.gif") no-repeat scroll 5px 50%;
  padding: 3px 0 0 2em;
}
.icon a[href$=".xlsx"] {
  background-image: url("../images/common/ico_xls.gif");
}
* html .icon a.xlsx {
  background: rgba(0, 0, 0, 0) url("../images/common/ico_xls.gif") no-repeat scroll 5px 50%;
  padding: 3px 0 0 2em;
}
.icon a[href$=".doc"] {
  background-image: url("../images/common/ico_doc.gif");
}
* html .icon a.doc {
  background: rgba(0, 0, 0, 0) url("../images/common/ico_doc.gif") no-repeat scroll 5px 50%;
  padding: 3px 0 0 2em;
}
.icon a[href$=".docx"] {
  background-image: url("../images/common/ico_doc.gif");
}
* html .icon a.docx {
  background: rgba(0, 0, 0, 0) url("../images/common/ico_doc.gif") no-repeat scroll 5px 50%;
  padding: 3px 0 0 2em;
}
.icon a[href$=".ppt"] {
  background-image: url("../images/common/ico_doc.gif");
}
* html .icon a.ppt {
  background: rgba(0, 0, 0, 0) url("../images/common/ico_doc.gif") no-repeat scroll 5px 50%;
  padding: 3px 0 0 2em;
}
.icon a[href$=".pptx"] {
  background-image: url("../images/common/ico_doc.gif");
}
* html .icon a.pptx {
  background: rgba(0, 0, 0, 0) url("../images/common/ico_doc.gif") no-repeat scroll 5px 50%;
  padding: 3px 0 0 2em;
}
.icon a[href$=".pdf"] {
  background-image: url("../images/common/ico_pdf.gif");
}
* html .icon a.pdf {
  background: rgba(0, 0, 0, 0) url("../images/common/ico_pdf.gif") no-repeat scroll 5px 50%;
  padding: 3px 0 0 2em;
}
* html .icon a {
}
/*----------------------------------------------------
  404
----------------------------------------------------*/
.notfound {
  margin: 40px 0 0;
}
.notfound p {
  font-size: 1.6rem;
  line-height: 2;
  margin: 10px 10px 20px;
}
.notfound ul {
  border-top: 1px dotted #ddd;
  list-style: outside none none;
  margin: 0 0 10px;
  padding: 0;
}
.notfound ul li {
  padding: 0;
}
.notfound ul li a {
  background: rgba(0, 0, 0, 0) url("../images/common/ico_arrow01.png") no-repeat scroll 20px 18px;
  border-bottom: 1px dotted #ddd;
  display: block;
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0;
  padding: 14px 10px 14px 40px;
}
.notfound ul li a:hover {
  background: #f5f5f5 url("../images/common/ico_arrow01.png") no-repeat scroll 20px 18px;
  text-decoration: none;
}
