@charset "UTF-8";
/*+基本設定
-------------------------------------------------------------*/
/*+全体的なリセット
----------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

body {
  margin: 0px;
}

/*+ブロック化
----------------------------------------------------*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/*+縦スクロールのずれ修正
----------------------------------------------------*/
html {
  overflow-y: scroll;
}

/*+引用符をとる
----------------------------------------------------*/
blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/*+フォーム
----------------------------------------------------*/
input, textarea {
  margin: 0;
  padding: 0;
}

/*+リスト
----------------------------------------------------*/
ol, ul {
  list-style: none;
}

/*+テーブル
----------------------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

/*+リンクをクリックしたときに出る点線を消す
----------------------------------------------------*/
a:focus {
  outline: none;
}

/*+クリアフィクス
----------------------------------------------------*/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

.both {
  clear: both;
}

/*+インラインブロック
----------------------------------------------------*/
.inline_block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/*+フォント
----------------------------------------------------*/
html {
  font-size: 95%;
}
@media screen and (max-width: 959px) {
  html {
    font-size: 90%;
  }
}
@media screen and (max-width: 599px) {
  html {
    font-size: 80%;
  }
}

body, h1, h2, h3, p, ul, li, ol, address, pre {
  color: #333; /*文字色*/
  font-family: Verdana, Roboto, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  -webkit-text-size-adjust: 100%; /*iPhoneのフォント拡大化対策*/
}

/*+イメージ
----------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}

/*+テーブル
----------------------------------------------------*/
table {
  width: 100%;
}

/*+リンク表現
----------------------------------------------------*/
a {
  text-decoration: none;
}

a, a:hover {
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

a img:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
}

/*+CSS3
----------------------------------------------------*/
.tShadow { /*テキストシャドウ*/
  text-shadow: 1px 1px 3px #000;
}

.bShadow { /*ボックスシャドウ*/
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
}

.bShadowI { /*ボックスシャドウ内側*/
  -webkit-box-shadow: inset 1px 1px 3px #000;
  box-shadow: inset 1px 1px 3px #000;
}

.bRadius { /*角丸*/
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
}

.transition { /*トランジション*/
  -webkit-transition: 1.5s;
  transition: 1.5s;
}

.opacity { /*透明*/
  filter: alpha(opacity=25);
  -moz-opacity: 0.25;
  opacity: 0.25;
}

.bOpacity { /*背景のみ透明*/
  background-color: rgba(255, 255, 255, 0.2);
}

.gradation { /*グラデーション*/
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#000000');
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#000000')";
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#000000));
  background-image: linear-gradient(top, #ffffff, #000000);
}

/*スマートフォン*/
/*++ブレイクポイント
-------------------------------------------------------------*/
/*++色
-------------------------------------------------------------*/
/*$primary-color:#002C86;*/
/*++フォント
-------------------------------------------------------------*/
.mincho {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", "Sawarabi Mincho", serif;
}

.small {
  font-size: 0.7rem;
}

/*+基本
-------------------------------------------------------------*/
div,
nav {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: #F7F7F7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

p,
div {
  word-break: break-all;
}

/*+コンテナ
-------------------------------------------------------------*/
.admin-bar .container {
  padding-top: 10px;
}

.container {
  overflow: visible;
  width: 1240px;
  margin: auto;
  padding: 0rem;
  background-color: #fff;
  border-right: solid 1px #E1E1E1;
  border-left: solid 1px #E1E1E1;
  background-repeat: no-repeat;
  max-width: 100%;
}
@media screen and (max-width: 1000px) {
  .container {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .container {
    border: none;
  }
}

/*+ヘッダー
-------------------------------------------------------------*/
.header {
  max-width: 100%;
}
.header .logo {
  float: left;
  padding: 20px;
  padding-left: 30px;
}
.header .logo img {
  width: 348px;
  x-index: 1000;
}
@media screen and (max-width: 1000px) {
  .header .logo {
    width: 50%;
  }
  .header .logo img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .header .logo {
    float: none;
    width: 100%;
    padding-left: 10px;
  }
  .header .logo img {
    width: 65%;
  }
}
.header .right {
  float: right;
}
@media screen and (max-width: 768px) {
  .header .right {
    float: none;
    width: 100%;
    background-color: #fff;
  }
}
.header div.links {
  background-color: #fff;
  height: 50px;
  text-align: right;
  font-size: 0.8rem;
}
.header div.links .icon {
  margin-right: 6px;
}
@media screen and (max-width: 768px) {
  .header div.links .icon {
    margin-right: 5%;
    margin-left: 5%;
  }
}
.header div.links .icon:last-child {
  margin-right: 19px;
}
.header div.links .icon img {
  height: 32px;
  width: 32px;
}
@media screen and (max-width: 768px) {
  .header div.links .icon img {
    height: 26px;
    width: 26px;
  }
}
@media screen and (max-width: 768px) {
  .header div.links {
    display: none;
    position: absolute;
    padding-top: 30px;
    padding-left: 10px;
    height: 65px;
    top: 78px;
    width: 100%;
    text-align: center;
    z-index: 200;
  }
}
.header .nav {
  margin-top: 13px;
}

/*+ナビゲーション
-------------------------------------------------------------*/
.home a.home {
  color: #149cbb;
  font-weight: bold;
}

/*++PCナビ
-------------------------------------------------------------*/
.nav li {
  position: relative;
  float: left;
  border-right: solid 1px #555;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
}
.nav li:last-child {
  border-right: none;
}
.nav li a {
  display: block;
  padding: 0rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  font-size: 1rem;
  color: #222;
}
.nav li {
  /* 子階層 */
}
.nav li ul {
  position: absolute;
  padding-top: 0rem;
  margin-top: 0.5rem;
  top: 100%;
  left: 0;
  z-index: 100;
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
  opacity: 0.8;
}
.nav li ul li {
  overflow: hidden;
  width: 210px;
  height: 0rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.nav li:hover ul li {
  overflow: visible;
  line-height: 2.4rem;
  height: 2.4rem;
  width: 230px;
  border-right: none;
  z-index: 1000;
}
.nav li:hover ul li:hover {
  background-color: #555;
}
.nav li:hover ul li:hover a {
  color: #fff;
  font-weight: bold;
}
.nav li:hover ul li:hover i {
  color: #5EACFF;
}

.nav li ul.short li {
  width: 180px !important;
}

.nav li ul.long li {
  width: 250px !important;
}

.fa-angle-right {
  margin-right: 0.3rem;
}

/*++モバイルナビ
-------------------------------------------------------------*/
/*PC画面時は消しておく*/
@media screen and (min-width: 768px) {
  .mobile_nav {
    display: none !important;
  }
}
/* ナビ全体を上部へ移動 */
@media screen and (max-width: 768px) {
  .nav {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 100;
  }
}
/* メニュー本体はとりあえず非表示 */
@media screen and (max-width: 768px) {
  .nav .menu {
    display: none;
    width: 100%;
    margin-top: 130px;
    z-index: 100;
    padding-bottom: 8rem;
    background-color: #fff;
  }
  .nav .menu li {
    margin-bottom: 0;
    border-right: none;
    border-bottom: dotted 1px #ccc;
    float: none;
    width: 100%;
    opacity: 1;
    background-color: #fff;
    padding: 2rem;
    height: 30px;
  }
  .nav .menu li a {
    display: block;
  }
  .nav .menu li a:hover {
    color: #149cbb;
    font-weight: bold;
  }
  .nav .menu li .menu-c {
    position: relative;
    top: -7px;
  }
  .nav .menu li ul {
    display: none;
    position: relative;
    top: auto;
  }
}

/* ハンバーガーメニュー */
.mobile_nav {
  position: absolute;
  right: 0;
  display: inline-block;
  padding: 1rem;
  border: none;
}

/* ハンバーガーメニュー */
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 30px;
  height: 30px;
}
.menu-trigger:hover {
  cursor: pointer;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 13px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

/* 新ハンバーガーメニュー｜アクティブ時 */
.close .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(13px) rotate(-45deg);
  transform: translateY(13px) rotate(-45deg);
}

.close .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}

.close .menu-trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-13px) rotate(45deg);
  transform: translateY(-13px) rotate(45deg);
}

/*+メインイメージ
-------------------------------------------------------------*/
.slider {
  height: 300px;
}
.slider ul {
  margin-top: 1rem;
}
.slider li {
  list-style-type: disc;
  margin-left: 2rem;
}

.headerImage img {
  width: 100%;
}

.mainImage {
  position: relative;
}
.mainImage video {
  width: 1238px;
  max-width: 100%;
}

/*+新着
-------------------------------------------------------------*/
div.news {
  margin: 40px;
  margin-left: 50px;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-left: solid 6px #149cbb;
}
@media screen and (max-width: 768px) {
  div.news {
    margin: 20px;
    margin-left: 4%;
  }
}
div.news .title {
  color: #149cbb;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  font-family: "", "Century Gothic";
}
div.news .title a {
  margin-left: 42px;
  color: #fff;
  background-color: #149cbb;
  padding: 0.2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 0.8rem;
  position: relative;
  top: -2px;
}
div.news li {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}
div.news li a {
  color: #149cbb;
}
div.news li a:hover {
  text-decoration: underline;
}
div.news li span {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  div.news li span {
    display: block;
  }
}

/*+メインエリア
-------------------------------------------------------------*/
.main {
  max-width: 100%;
}
.main .contents {
  width: 820px;
  float: left;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .main .contents {
    width: 100%;
    float: none;
  }
}
.main .side {
  padding-top: 30px;
  padding-right: 45px;
  width: 360px;
  float: right;
}
@media screen and (max-width: 1000px) {
  .main .side {
    width: 100%;
    float: none;
  }
}
@media screen and (max-width: 768px) {
  .main .side {
    padding-right: 0px;
    padding-top: 0rem;
  }
}

video {
  max-height: 420px;
  margin: 0;
  padding: 0;
}

/*+コンテンツパネル
-------------------------------------------------------------*/
.contents-panel {
  padding: 48px;
  padding-right: 0px;
  padding-bottom: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url("../images/bg_top.png");
  background-repeat: no-repeat;
  background-size: 820px 798px;
}
@media screen and (max-width: 768px) {
  .contents-panel {
    padding: 5%;
    padding-right: 0px;
    background-size: cover;
  }
}
.contents-panel .block {
  height: 336px;
  background-color: white;
  width: 220px;
  float: left;
  margin-right: 30px;
  margin-bottom: 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .contents-panel .block {
    width: 45%;
    margin-right: 5%;
    height: 280px;
    padding-bottom: 1rem;
  }
}
.contents-panel .block h3 {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", "Sawarabi Mincho", serif;
  word-break: keep-all;
  font-weight: bold !important;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  .contents-panel .block h3 {
    margin-left: 6%;
    font-size: 1rem;
  }
}
.contents-panel .block p {
  margin-top: 0.2rem;
  margin-left: 1rem;
  margin-right: 1rem;
  font-size: 13px;
  line-height: 1.25;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .contents-panel .block p {
    margin-left: 6%;
    margin-right: 3%;
    font-size: 0.8rem;
  }
}
.contents-panel .block img {
  width: 100%;
}

/*+サイドバー
-------------------------------------------------------------*/
.side {
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .side .topics {
    padding: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .side .topics ul {
    margin: auto;
  }
}
.side .topics ul li {
  list-style-type: none;
  margin-left: 0;
  margin-bottom: 10px;
}
.side .topics .square {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .side .topics .square {
    display: none;
    margin-left: 5%;
    margin-right: 5%;
  }
}
.side .topics .square img {
  width: 100%;
}
.side .block {
  height: 200px;
}
@media screen and (max-width: 1000px) {
  .side .block {
    width: 50%;
    float: left;
  }
}
.side .half {
  height: 100px;
}
@media screen and (max-width: 768px) {
  .side {
    float: none;
  }
}

/*+フッター
-------------------------------------------------------------*/
.footer {
  max-width: 100%;
  padding-top: 40px;
  margin-top: 2.5rem;
  background-color: #111;
  opacity: 1;
  background-image: url("../images/footer-back.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 20px;
  }
}
.footer .sitemaps {
  float: left;
}
@media screen and (max-width: 1000px) {
  .footer .sitemaps {
    width: 100%;
    float: none;
    height: auto;
  }
}
.footer .certification {
  float: right;
  opacity: 1;
}
@media screen and (max-width: 1000px) {
  .footer .certification {
    width: 100%;
    float: none;
    height: auto;
  }
}

/*++サイトマップ
-------------------------------------------------------------*/
.sitemaps {
  overflow: hidden;
  margin-left: 7.6rem;
}
@media screen and (max-width: 768px) {
  .sitemaps {
    margin-left: 5%;
  }
}
.sitemaps h3 {
  margin-bottom: 0.4rem;
  font-weight: bold;
  color: #fff;
}
.sitemaps h3 a {
  font-weight: bold;
  color: #fff;
}
.sitemaps .block {
  float: left;
  border: none;
  margin-right: 3rem;
  width: 160px;
}
@media screen and (max-width: 768px) {
  .sitemaps .block {
    width: 40%;
    margin-right: 2rem;
  }
}
.sitemaps .block ul {
  margin-bottom: 2rem;
}
.sitemaps .block ul li {
  font-size: 13px;
  margin-bottom: 0.3rem;
}
.sitemaps .block ul li a {
  color: #fff;
}
.sitemaps .block3 {
  width: 130px;
}
@media screen and (max-width: 768px) {
  .sitemaps .block3 {
    width: 40%;
  }
}
.sitemaps .block4 {
  width: 170px;
}
@media screen and (max-width: 768px) {
  .sitemaps .block4 {
    width: 40%;
  }
}

/*++認証マーク
-------------------------------------------------------------*/
.certification ul {
  margin-right: 10rem;
}
@media screen and (max-width: 768px) {
  .certification ul {
    margin-left: 2.6rem;
    margin-right: 0rem;
  }
}
.certification ul li {
  margin-bottom: 1rem;
}
.certification ul li img {
  width: 70px;
  opacity: 1;
}
.certification ul li img.img1 {
  position: relative;
  width: 86px;
  left: -8px;
}
@media screen and (max-width: 1000px) {
  .certification ul li {
    float: left;
    margin-right: 2rem;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  .certification ul li {
    margin-right: 2rem;
  }
}

/*++コピーライト
-------------------------------------------------------------*/
.copyright {
  background-color: #000;
  opacity: 0.7;
  color: #fff;
  margin: auto;
  padding-top: 0.5rem;
  text-align: center;
  font-size: 0.9rem;
  height: 100px;
}

/*+menuページ
-------------------------------------------------------------*/
.headerImage h1 {
  margin-top: 0rem;
  height: 110px;
  width: 100%;
  background-image: url("../images/h1_back.png");
  background-repeat: no-repeat;
  background-size: 1240px 110px;
  color: #fff;
  padding: 1rem;
  padding-left: 2rem;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", "Sawarabi Mincho", serif;
  font-weight: bold;
  font-size: 2.3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .headerImage h1 {
    padding-top: 1.4rem;
    padding-left: 3%;
    font-size: 1.8rem;
    height: 93px;
  }
}
.headerImage h1 span {
  display: block;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .headerImage h1 span {
    font-size: 1.2rem;
  }
}

/*++パンくずリスト
-------------------------------------------------------------*/
.breadcrumbs {
  padding-left: 2rem;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    padding-left: 3%;
  }
}
.breadcrumbs a {
  color: #000;
  text-decoration: none !important;
}
.breadcrumbs a:hover {
  text-decoration: underline !important;
}

/*++見出し1　2
-------------------------------------------------------------*/
.contents h1 {
  font-size: 2rem;
}

.contents h2 {
  margin-top: 2rem;
  font-size: 1rem;
  padding: 0.5rem;
  border-bottom: dotted 1px #149cbb;
  margin-bottom: 1rem;
}

/*++パネル
-------------------------------------------------------------*/
.panels {
  width: 90%;
  margin: auto;
  margin-left: 63px;
  margin-top: 0.8rem;
}
@media screen and (max-width: 768px) {
  .panels {
    width: 90%;
    margin-left: 3%;
    margin-right: 3%;
    margin-bottom: 5rem;
  }
}

.panel {
  width: 362px;
  height: 570px;
  margin-right: 24px;
  margin-bottom: 25px;
  float: left;
  background-color: #EBF3F4;
  clip-path: polygon(10% 0%, 94% 0, 100% 6%, 100% 90%, 100% 100%, 0 100%, 0% 90%, 0 0);
}
@media screen and (max-width: 768px) {
  .panel {
    width: 45%;
    margin-right: 4%;
    height: auto;
  }
  .panel div.text {
    height: 270px;
  }
}
.panel .linkBar {
  display: block;
  background-image: url("../images/link_back.png");
  background-repeat: no-repeat;
  background-position: top 50% right;
  background-size: cover;
  color: #fff;
  line-height: 2;
  padding: 0.5rem;
  padding-left: 2rem;
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  .panel .linkBar {
    font-size: 0.75rem;
    padding-left: 1rem;
    background-size: cover;
  }
}
.panel img {
  width: 370px;
  height: 220px;
}
@media screen and (max-width: 768px) {
  .panel img {
    width: 100%;
    height: auto;
  }
}
.panel h2 {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", "Sawarabi Mincho", serif;
  word-break: keep-all;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0.6rem;
  padding-left: 0.9rem;
  padding-bottom: 0.3rem;
  color: #149cbb;
  margin-top: 0rem;
  border-bottom: none;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  .panel h2 {
    font-size: 1rem;
  }
}
.panel p {
  padding: 1rem;
  padding-top: 0rem;
  font-size: 0.8rem !important;
  line-height: 1.8;
  word-break: break-all;
}
.panel p.linkbar {
  padding-left: 0rem;
}
.panel p.linkbar img {
  height: auto;
}

.products .panel {
  height: 500px;
}

.quality .panel {
  height: 530px;
}

.csr .panel {
  height: 480px;
}

.plant .panel {
  height: 500px;
}

.profile .panel {
  height: 520px;
}

.page-template-page-tobira .panels {
  width: 820px;
  max-width: 100%;
}

/*+++recruit
-------------------------------------------------------------*/
.recruit .panel {
  height: 400px;
}
@media screen and (max-width: 768px) {
  .recruit .panel {
    height: auto;
  }
  .recruit .panel div.text {
    height: 150px;
  }
}
.recruit .panel h2 {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .recruit .panel h2 {
    font-size: 1.3rem;
  }
}

/*+子ページ
-------------------------------------------------------------*/
.content-block {
  margin-bottom: 4rem;
}

/*++見出し
-------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .page-template-page-recruit .page-contents h1 {
    font-size: 1.8rem !important;
  }
}

.page-contents h1 {
  margin-left: 4rem;
  color: #149cbb;
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", "Sawarabi Mincho", serif;
}
@media screen and (max-width: 768px) {
  .page-contents h1 {
    margin-left: 3%;
    font-size: 2rem;
  }
}

.page-contents h2 {
  margin-top: 2rem;
  font-size: 1.6rem;
  border-left: solid 5px #149cbb;
  padding-left: 1rem;
  margin-bottom: 1rem;
  border-bottom: dotted 1px #149cbb;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}
.page-contents h2 span {
  margin-left: 0.5rem;
  font-size: 13px;
}
.page-contents h2.asu {
  background-image: url("../images/astranLogo.gif");
}
.page-contents h2.ado {
  background-image: url("../images/adorinkLogo.gif");
}
.page-contents h2.lap {
  background-image: url("../images/laplayerLogo.gif");
}

.page-contents h3 {
  margin-top: 1rem;
  background-color: #149cbb;
  color: #fff;
  padding: 0.5rem;
  margin-bottom: 1rem;
}
.page-contents h3.top {
  margin-top: 0rem;
}

/*++ページコンテンツ
-------------------------------------------------------------*/
.body-block p {
  font-size: 0.9rem !important;
  line-height: 1.8;
}

.lead-block p {
  line-height: 1.7;
}

.page-contents .content-block {
  padding-left: 4rem;
}
@media screen and (max-width: 768px) {
  .page-contents .content-block {
    padding-left: 3%;
    padding-right: 3%;
  }
}
.page-contents .content-block .lead {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.page-contents .content-block .left {
  float: left;
  width: 60%;
}
.page-contents .content-block .right {
  float: right;
  width: 37%;
}
.page-contents .content-block .right img {
  width: 100%;
}
.page-contents .content-block p img {
  margin-top: 1rem;
}

div.panels p {
  font-size: 0.9rem;
  line-height: 1.8;
}

p.mini {
  margin-top: 1rem;
  font-size: 0.8rem !important;
}

/*++column
-------------------------------------------------------------*/
.column {
  background-color: #E5F1FE;
  padding: 1rem;
  margin-top: 1rem;
}
.column h4 {
  color: #149cbb;
  font-weight: bold;
  line-height: 3;
}
.column p {
  font-size: 13px !important;
  line-height: 1.6;
}

img.w15 {
  width: 15% !important;
}

/*++リンク
-------------------------------------------------------------*/
.page-contents a {
  text-decoration: underline;
  color: #149cbb;
}

.hoverzoom {
  overflow: hidden;
  width: 100%;
  height: 160px;
  margin-bottom: 14px;
}

.hover0 {
  height: 315px;
}

.p-waku {
  overflow: hidden;
  width: 100%;
  height: 160px;
}
@media screen and (max-width: 768px) {
  .p-waku {
    height: auto;
  }
}

.p-waku img {
  display: block;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

a:hover .p-waku img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

a.active {
  color: #004BC4 !important;
  font-weight: bold;
}

p.parent-button {
  text-align: center;
}

a.btn-flat-simple {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.25em 0.5em !important;
  text-decoration: none !important;
  color: #149cbb;
  background: #ECECEC;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  text-decoration: none;
  -webkit-box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.1);
}

.btn-flat-simple:hover {
  background: #149cbb;
  color: white;
}

/*++サイドバー
-------------------------------------------------------------*/
.side ul {
  margin-bottom: 2rem;
}
.side li {
  list-style-type: disc;
  font-size: 1rem;
  margin-left: 2rem;
}

.side-page {
  margin-top: 33px;
}
@media screen and (max-width: 768px) {
  .side-page {
    margin-top: 10px;
  }
}

.side-menu {
  padding-left: 1rem;
  border-left: solid 7px #149cbb;
}
@media screen and (max-width: 768px) {
  .side-menu {
    margin-left: 3%;
  }
}
.side-menu a {
  color: #222;
}
.side-menu a:hover {
  color: #004BC4;
  font-weight: bold;
}
.side-menu h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.side-menu h3 a {
  font-weight: bold;
}
.side-menu li {
  list-style-type: none;
  margin-left: 0rem;
  margin-bottom: 1rem;
}

/*+温存 子ページ
-------------------------------------------------------------*/
.contents-a {
  margin-left: 4rem;
  margin-bottom: 4rem;
}
.contents-a .toplead {
  margin-bottom: 2rem;
}
.contents-a .toplead h2 {
  border: none;
  padding: 0rem;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  margin-top: 0rem;
}
@media screen and (max-width: 768px) {
  .contents-a {
    margin-left: 3%;
    margin-right: 3%;
  }
}
.contents-a h4 {
  margin-top: 1rem;
  background-color: #149cbb;
  color: #fff;
  padding: 0.5rem;
  margin-bottom: 1rem;
}
.contents-a h4.top {
  margin-top: 0rem;
}
.contents-a .kankyoBox div {
  margin-bottom: 1rem;
}
.contents-a .kankyoLeft {
  float: left;
  width: 60%;
}
.contents-a .kankyoRight {
  float: right;
  width: 37%;
  text-align: right;
}
.contents-a .kankyoRight img {
  width: 100%;
}
.contents-a .kankyoRight img.w70 {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .contents-a .kankyoRight img.w70 {
    width: 90%;
  }
}
.contents-a p {
  font-size: 0.9rem;
  line-height: 1.8;
}
.contents-a .imgRight {
  float: right;
  width: 38%;
}
.contents-a .imgRight img:first-child {
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  .contents-a .imgRight img:first-child {
    margin-bottom: 6px;
  }
}
.contents-a img.w60 {
  width: 59%;
}
.contents-a #hinshitsuBottom p {
  margin-bottom: 1rem;
}

.kankyoBox ul li {
  font-size: 0.9rem;
  list-style-type: square;
  margin-bottom: 0.5rem;
  margin-left: 2rem;
}

/*++兵庫工場 環境方針
-------------------------------------------------------------*/
#houshinList li {
  list-style-type: decimal;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.housin h3:first-child {
  background-color: #fff;
  color: #000;
  font-weight: bold;
  padding: 0rem;
}
.housin h3 {
  margin-top: 2rem;
}

/*++csr
-------------------------------------------------------------*/
.csrInner h3 {
  font-weight: bold;
  margin-bottom: 0.5rem;
  background-color: #fff;
  color: #000;
}

.csrTxt {
  float: left;
  width: 60%;
}

.csrMark {
  float: right;
  width: 37%;
}

.csrBlueBox {
  background-color: #E5F1FE;
  padding: 1rem;
  margin-top: 1rem;
}
.csrBlueBox h4 {
  color: #149cbb;
  background-color: transparent;
  font-weight: bold;
  padding-left: 0rem;
  margin-top: 0rem;
}
.csrBlueBox .boxInner {
  background-color: #fff;
  margin-top: 1rem;
  padding: 1rem;
}
.csrBlueBox .boxInner li {
  list-style-type: disc;
  margin-left: 1rem;
}

/*++green
-------------------------------------------------------------*/
img.greenMark {
  float: right;
  width: 16%;
}
@media screen and (max-width: 768px) {
  img.greenMark {
    width: 20%;
  }
}

.greenInner .left {
  float: left;
  width: 82%;
}
@media screen and (max-width: 768px) {
  .greenInner .left {
    width: 77%;
  }
}

.greenBottom {
  margin-top: 2rem;
}
.greenBottom h5 {
  color: #149cbb;
  font-weight: bold;
  line-height: 3;
}

/*++工場
-------------------------------------------------------------*/
p#underTitle {
  margin-top: 0rem;
  color: #777;
  position: relative;
  top: -22px;
  padding-left: 0.5rem;
}
@media screen and (max-width: 768px) {
  p#underTitle {
    margin-top: 1.5rem !important;
    font-size: 0.8rem !important;
  }
}

.factInfo {
  float: left;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .factInfo {
    float: none;
    margin-bottom: 0.5rem;
  }
}

.factInfo2 {
  float: right;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .factInfo2 {
    float: none;
  }
}

#mainImg {
  margin-bottom: 1rem;
}

.mainDiscription {
  margin-bottom: 1rem;
}

.Img3Box img {
  width: 32%;
  margin-right: 2%;
}
.Img3Box img:last-child {
  margin-right: 0;
}

p.linkTxt {
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  font-size: 13px !important;
}

#hyogoBlue {
  background-color: #E5F1FE;
  padding: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
#hyogoBlue h4 {
  background-color: transparent;
  color: #149cbb;
  margin-top: 0rem;
  padding: 0rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: 1rem;
}
#hyogoBlue .left {
  float: left;
  width: 37%;
  font-size: 13px;
}
#hyogoBlue .right {
  float: right;
  width: 60%;
  font-size: 13px;
  line-height: 1.8;
}

/*+++兵庫2
-------------------------------------------------------------*/
.mainWithImg {
  float: left;
  width: 66%;
}

.imgUnderMain {
  float: right;
  width: 31.5%;
}

/*+++関東
-------------------------------------------------------------*/
#mainImg,
.imgUnderMain {
  font-size: 13px;
}

/*+++大淀
-------------------------------------------------------------*/
.factInfos {
  margin-top: 2rem;
}

/*+++大淀
-------------------------------------------------------------*/
.factInfoViet {
  font-size: 13px;
  line-height: 1.6;
}

/*++会社案内
-------------------------------------------------------------*/
.hisPosition {
  text-align: right;
}

.aisatu p {
  font-size: 0.9rem !important;
  line-height: 2;
  margin-bottom: 1rem;
}

/*+++社長
-------------------------------------------------------------*/
.president p.catch {
  font-size: 1.2rem;
  font-weight: bold;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", s "Sawarabi Mincho", erif;
  margin-bottom: 1.2rem;
}

/*+++会社概要
-------------------------------------------------------------*/
table.comp_Gaiyou td {
  font-size: 13px;
}
table.comp_Gaiyou td.leftCol {
  width: 20%;
}

.figcap {
  font-size: 13px;
}

/*+++沿革
-------------------------------------------------------------*/
table#historyTable td {
  border: none;
  font-size: 13px;
  border-top: dotted 1px #ccc;
}
table#historyTable td.year {
  width: 25%;
}
table#historyTable td.month {
  width: 10%;
  text-align: right;
}

/*+++グループ企業
-------------------------------------------------------------*/
#groupTop h3 {
  background-color: #fff;
  font-weight: bold;
  color: #000;
  padding: 0rem;
}

.cf {
  font-size: 13px;
}
.cf dt {
  margin-bottom: 0.2rem;
}
.cf dd {
  margin-bottom: 1rem;
}

.hinmoku {
  padding: 0.5rem;
  padding-left: 0rem;
  border-bottom: dotted 1px #149cbb;
  margin-bottom: 1rem;
  color: #149cbb;
  font-weight: bold;
}

.napSub {
  margin-top: 1rem;
}

.meibundo .hinmoku {
  color: #000;
  border-bottom: dotted 1px #000;
}
.meibundo h4 {
  background-color: #149cbb;
}

.nap {
  margin-top: 2rem;
}
.nap .hinmoku {
  color: #000;
  border-bottom: dotted 1px #000;
}
.nap h4 {
  background-color: #149cbb;
}

.taiyou h4 {
  background-color: #149cbb;
  margin-bottom: 8px;
  margin-top: 2rem;
}

/*++就職情報
-------------------------------------------------------------*/
.recruit table td {
  font-size: 13px;
}

/*++取り組み
-------------------------------------------------------------*/
.torikumi iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 768px) {
  .torikumi iframe {
    height: 300px;
  }
}

/*++インターフェックス
-------------------------------------------------------------*/
h1 span.inter {
  font-size: 2rem;
}

.contents-a .block1 {
  font-size: 0.9rem;
  line-height: 1.8;
}
.contents-a .block1 .right {
  text-align: right;
}
.contents-a .block1 table.images td {
  padding: 0;
  width: 50%;
  border: none;
  font-size: 0.8rem;
}
.contents-a .block1 table.images td iframe {
  width: 98%;
}
.contents-a .block1 table.images td img {
  width: 33.3333333333%;
}

.contents-a .spec table {
  margin-bottom: 2rem;
}
.contents-a .spec table th {
  width: 20%;
}
.contents-a .spec table th,
.contents-a .spec table td {
  font-size: 0.9rem;
}
.contents-a .spec ol li {
  list-style-type: decimal;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

/*++豆知識
-------------------------------------------------------------*/
.mame table:first-child td {
  border: none;
}

.mameko table td {
  border: none;
  width: 40%;
  vertical-align: top;
  font-size: 0.9rem;
  line-height: 2;
}
.mameko table td img {
  width: 100%;
}
.mameko table td:first-child {
  width: 60%;
}

/*++wrap1000
-------------------------------------------------------------*/
#iso14001,
.wrap1000 {
  margin-left: 4rem;
}
@media screen and (max-width: 768px) {
  #iso14001,
  .wrap1000 {
    margin-left: 3%;
    padding-right: 3%;
  }
}
#iso14001 h3.kankyou_h3,
.wrap1000 h3.kankyou_h3 {
  font-weight: bold;
  margin-bottom: 0.5rem;
  background-color: #fff;
  color: #000;
  padding: 0rem;
}
#iso14001 .ctl294,
.wrap1000 .ctl294 {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
#iso14001 table,
.wrap1000 table {
  width: 100%;
}
#iso14001 table td,
.wrap1000 table td {
  font-size: 0.8rem;
}
#iso14001 table td.leftCol,
.wrap1000 table td.leftCol {
  background-color: #E0E0E0;
}

#iso14001 .wrap1000 {
  margin-left: 0rem;
}
#iso14001 h4 {
  background-color: #149cbb;
  color: #fff;
  padding: 0.5rem;
  margin-bottom: 1rem;
}
#iso14001 h4.top {
  margin-top: 0rem;
}
#iso14001 p {
  font-size: 0.9rem;
  line-height: 1.8;
}
#iso14001 .kankyoBox div {
  margin-bottom: 1rem;
}
#iso14001 .kankyoLeft {
  float: left;
  width: 60%;
}
#iso14001 .kankyoRight {
  float: right;
  width: 37%;
  text-align: right;
}
#iso14001 .kankyoRight img {
  width: 100%;
}
#iso14001 .kankyoRight img.w70 {
  width: 70%;
}

/*+問い合わせ
----------------------------------------------------*/
@media screen and (max-width: 768px) {
  .ask .panels {
    width: 94%;
  }
}

/*+クリアフィクス
----------------------------------------------------*/
.kankyoBox:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.kankyoBox {
  min-height: 1px;
}

* html .kankyoBox {
  height: 1px;
  /*¥*/
  /*/
  height: auto;
  overflow: hidden;
  /**/
}

/*+シングル
-------------------------------------------------------------*/
.kiji {
  margin-left: 0rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .kiji {
    margin-left: 3%;
  }
}

h2.Stitle {
  /*font-family: "Times New Roman","YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", "Sawarabi Mincho", serif;*/
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  h2.Stitle {
    font-size: 1.4rem;
  }
}

.single .panels p {
  margin-bottom: 1rem;
}

/*++インターフェックス
-------------------------------------------------------------*/
.single .contents-a {
  margin-left: 0rem;
  margin-right: 0rem;
}

@media screen and (max-width: 768px) {
  .single .panels {
    width: 92%;
  }
}

/*+single一覧
-------------------------------------------------------------*/
.blog .kiji li {
  margin-bottom: 1rem;
}

/*+テーブル
-------------------------------------------------------------*/
.data {
  overflow: auto;
  white-space: nowrap;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .data {
    overflow-x: scroll;
  }
}

table {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  border-collapse: collapse;
  width: 100%;
}
table th,
table td {
  border: solid 1px #ccc;
  padding: 0.8rem;
}
@media screen and (max-width: 768px) {
  table th,
  table td {
    padding: 0.2rem;
  }
}
table th {
  background-color: #E8E8E8;
  font-weight: bold;
}

td.leftCol {
  width: 25% !important;
}

/*+フォーム
-------------------------------------------------------------*/
/* Contact Form7 */
form {
  overflow: hidden;
  width: 820px;
  max-width: 100%;
}

.contact7 {
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contact7 dd {
  margin: 0 0 30px 0;
  background-color: #fff;
  /*margin-top:.5rem;*/
  border: solid 1px #ccc;
  border-top: none;
  padding: 1rem;
}

p.contactCenter {
  font-size: 0.8rem !important;
  margin-bottom: 1rem;
}

.contact7 dt {
  font-weight: normal;
  border: solid 1px #ccc;
  padding: 1rem;
  display: block;
  background-color: #E8E8E8;
}

/* 必須マーク */
.contact7 .must {
  background: #FAA447;
}

/* 任意マーク */
.contact7 .optional {
  background: #999;
}

.btn_contact7 {
  text-align: center;
  margin-top: 1rem;
}

.contact7 .must,
.contact7 .optional {
  color: #FFF;
  border-radius: 0px;
  font-size: 10px;
  margin-left: 10px;
  padding: 5px 10px;
  letter-spacing: 2px;
}

.contact7 textarea,
.contact7 input {
  width: 100%;
}

.contact7 textarea {
  height: 100%;
}

.btn_contact7 input {
  width: 70%;
  background-color: #E0E0E0;
  padding: 0.5rem;
  color: #FFF;
  font-size: 1.1em;
  font-weight: bold;
  letter-spacing: 0.2em;
  border: 1px solid #149cbb;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-appearance: none !important;
  border-radius: 0 !important;
  height: 50px;
  pointer-events: none;
}

.btn_contact7 input[type=submit] {
  -webkit-appearance: none !important;
  border-radius: 0 !important;
}

.btn_contact7 input:hover {
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .contact7 dt {
    float: left;
    clear: left;
    width: 31%;
    padding: 5px 10px 5px 0;
    padding: 1rem;
    height: 20px;
  }
  .contact7 dt:nth-child(9) {
    height: 140px;
  }
  .contact7 dd {
    margin-left: 35%;
    height: 20px;
    border-top: solid 1px #ccc;
  }
  .contact7 dd:nth-child(10) {
    height: 140px;
  }
  .btn_contact7 input {
    width: 70%;
    background-color: #E0E0E0;
    color: #FFF;
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 0.2em;
    border: 1px solid #149cbb;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-appearance: none !important;
    border-radius: 0 !important;
    pointer-events: none;
  }
}
/*+検索ページ
-------------------------------------------------------------*/
.searchArea {
  width: 100%;
  background-color: #E5E5E5;
  padding: 0.9rem;
  display: none;
}

div.search7 {
  width: 600px;
  margin: auto;
}

div.close2 {
  float: right;
  width: 100px;
  line-height: 30px;
  background-color: #4E98A6;
  color: #fff;
  font-size: 13px;
  text-align: center;
  margin-top: 0px;
  cursor: pointer;
}

.search .panels {
  margin-top: 4rem;
  width: 90%;
}
.search .panels h3 {
  margin-top: 2rem;
}
.search .panels h3 a {
  color: #149cbb;
  text-decoration: underline;
}
.search .panels p {
  font-size: 13px;
  line-height: 1.8;
}

.search_container {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #4E98A6;
  display: block;
  padding: 0px 0px;
  height: 30px;
  width: 485px;
  max-width: 94%;
  overflow: hidden;
  float: left;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .search_container {
    height: 26px;
  }
}

.search_container input {
  -webkit-appearance: none !important;
  border-radius: 0 !important;
}

.search_container input[type=text] {
  border: none;
  height: 22px;
  width: 87%;
  background-color: #fff;
  padding: 0.2rem;
}

.searcharea {
  margin-left: 0rem;
  background-color: #E5E5E5;
}

.search_container input[type=text]:focus {
  outline: 0;
}

.search_container input[type=submit] {
  cursor: pointer;
  border: none;
  background: #4E98A6;
  color: #fff;
  position: absolute;
  width: 4.6em;
  height: 2.2em;
  right: 0px;
  top: 0px;
  outline: none;
  -webkit-appearance: none !important;
  border-radius: 0 !important;
}
@media screen and (max-width: 768px) {
  .search_container input[type=submit] {
    height: 27px;
    width: 4.6em;
    font-size: 10px;
  }
}

.MsearchArea {
  margin: auto;
}
.MsearchArea .search_container {
  float: none;
  width: 70%;
}
.MsearchArea .search_container input[type=text] {
  height: 20px;
  font-size: 0.9rem;
}

li.search8 {
  height: 70px !important;
  padding-top: 1rem !important;
}
@media screen and (min-width: 768px) {
  li.search8 {
    display: none;
  }
}

/*++モバイル
-------------------------------------------------------------*/
span.kensaku:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  span.kensaku {
    display: none;
  }
}

/*+calendar
-------------------------------------------------------------*/
#biz_calendar table.bizcal .eventday,
#biz_calendar p span.boxeventday {
  background-color: #F9DD7E !important;
  color: #000 !important;
}

#biz_calendar table.bizcal .holiday,
#biz_calendar p span.boxholiday {
  background-color: #FEA253 !important;
}

#biz_calendar {
  float: left;
  margin-left: 5rem !important;
}
@media screen and (max-width: 768px) {
  #biz_calendar {
    float: none;
    margin: auto !important;
  }
}

.calendar-img {
  width: 40%;
  float: right;
  margin-top: 5rem;
  margin-right: 5rem;
}
@media screen and (max-width: 768px) {
  .calendar-img {
    float: none;
    display: block;
    margin: auto;
    width: 74%;
    margin-top: 3rem;
  }
}

/*+ウィジェット
-------------------------------------------------------------*/
li.widget {
  list-style-type: none;
}

/*+改行
-------------------------------------------------------------*/
p.center {
  text-align: center;
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

/*+linkButton
-------------------------------------------------------------*/
a.linkButton {
  display: block;
  text-align: center;
  width: 660px;
  margin: auto;
  margin-top: 2rem;
  line-height: 70px;
  background-color: #E0E0E0;
  border-radius: 10px;
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  a.linkButton {
    width: auto;
    font-size: 1rem;
    padding: 1rem;
    line-height: 1.6;
  }
}

a.color {
  background: -webkit-gradient(linear, left top, left bottom, from(#904880), to(#023578));
  background: linear-gradient(to bottom, #904880, #023578);
  color: #FFF9BB;
}

/*+トップに戻る
-------------------------------------------------------------*/
.page-top {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 15px;
}
.page-top img {
  width: 20px;
}

.page-top a {
  display: block;
  background-color: #000;
  text-align: center;
  color: #222;
  font-size: 12px;
  text-decoration: none;
  padding: 15px 15px;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
}

.page-top a:hover {
  display: block;
  background-color: #b2d1fb;
  text-align: center;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
}

/*+2026年対応
-------------------------------------------------------------*/
#hyogoBlue,
.panel,
.column,
.csrBlueBox {
  background-color: #E3F1E4;
}

.boxInner {
  background-color: transparent !important;
}