@charset "UTF-8";

/**
 * ========================================
 * reset
 * ========================================
 */
    html, body, div, span, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    abbr, address, cite, code,
    del, dfn, em, img, ins, kbd, q, samp,
    small, strong, sub, sup, var,
    b, i,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, figcaption, figure,
    footer, header, hgroup, menu, nav, section, summary,
    time, mark, audio, video
    {
    margin: 0;padding: 0;border: none;background: transparent;font-family: inherit;font-weight: normal;font-style: normal;font-size: 100%;vertical-align: baseline;outline: none;
    }
    img {
    vertical-align: bottom;
    }
    article, aside, canvas, details, figcaption, figure,
    footer, header, hgroup, menu, nav, section, summary
    {
    display: block;
    }
    :focus {
    outline: none;
    }
    a, a:link, a:visited, a:hover, a:active {
    margin: 0;padding: 0;text-decoration: none;vertical-align: baseline;outline: 0;cursor: pointer;
    }
    ol, ul {
    list-style: none;
    }
    table {
    border-collapse: collapse;
    border-spacing: 0;
    }
    caption, th, td {
    text-align: left;
    }
    fieldset {
    border: none;
    }
    input, select, textarea {
    font-family: inherit;
    font-size: 80%;
    }
    input, select {
    vertical-align: middle;
    }
    textarea {
    overflow: auto;
    }
    label, button {
    cursor: pointer;
    }
    blockquote, q {
    quotes: none;
    }
    blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
    }
    abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
    }
    del {
    text-decoration: line-through;
    }
    ins {
    background-color: #FFFFBB;color: #000000;text-decoration: none;
    }
    mark {
    background-color: #FFFFBB;color: #000000;text-decoration: none;
    }
    hr {
    display: block;height: 1px;margin: 1em 0;padding: 0;border: none;border-top: 1px solid #CCCCCC;
    }

/*----------------------------------
  Base
------------------------------------*/
html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
  /* ルートのフォントサイズを10pxに設定しておく */
  font-size: 62.5%;
}
@media screen and (max-width: 991px) {
  html {
    font-size: 55.5%;
  }
}
*, ::before, ::after {
  box-sizing: inherit;
}
body {
  font-family: "yakuhan", "Noto", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: #1f070a;
}
h2 {
  text-align: center;
}
@media screen and (max-width: 991px) {
  h2 {
    margin: 0 0 0 10px;
  }
}
@media screen and (max-width: 575px) {
  h2 {
    font-size: 3.2rem;
  }
}
.section-title {
  position: relative;
  z-index: 2;
}
p {
  line-height: 1.65;
}
a {
  color: #1f070a;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
a, button {
  transition: 0.3s;
}
ul, ol {
  list-style: none;
}
button {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
strong {
  font-weight: bold;
}
sup {
    font-size: 60%;
    vertical-align: middle;
    margin: -1% 2px 0 0;
    display: inline-block;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
iframe {
  width: 100%;
}
.tel a, .mail a, a.tel, a.mail {
    cursor: default;
    pointer-events: none;
    color: #333;
}
@media screen and (max-width: 767px) {
    .tel a, .mail a, a.tel, a.mail {
        pointer-events: auto;
    }
}
.fl_right {
  float: right;
}
.fl_left {
  float: left;
}
img.fl_right {
  margin-left: 10px;
}
img.fl_left {
  margin-right: 10px;
}
.clearfix::before, .clearfix::after, .cf::before, .cf::after {
  content: "";
  display: table;
}
.clearfix::after, .cf::after {
  clear: both;
}
.block {
    display: block;
}
.inline-block {
    display: inline-block;
}
.inline {
    display: inline;
}
.pc_hid {
    display: none;
}
.center {
    text-align: center;
}
span.small {
    font-size: 90%;
}

@media screen and (max-width: 991px) {
  .pc_hid {
    display: block;
  }
}
.sp_hid {
  display: block;
}
@media screen and (max-width: 991px) {
  .sp_hid {
    display: none;
  }
}
.container {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1130px) {
  .container {
    padding: 0 0;
  }
  .container .row {
    margin: 0 0;
  }
  body.home .container {
    padding: 0;
  }
}
.page-wrap {
    padding-top: 0;
    padding-bottom: 0;
}


/*パンくずリスト　*/
.breadcrumbs {
    font-size: 1.3rem;
    margin: 16px auto 0;
    text-align: right;
    width: 96%;
    max-width: 1040px;
    font-size: 13px;
    color: #013e6a;
}
.breadcrumbs a {
    font-size: 1.3rem;
    color: #013e6a;
}
.breadcrumbs span {
    display: inline-block;
}
body.home .breadcrumbs {
    display: none;
}


/*============================
header
============================*/
.admin-bar .site-header {
    top: 0;
    background-color: transparent;
}
header.site-header {
    position: relative;
    padding: 0;
}
header.site-header.fixed {
    position: relative;
    background-color: transparent;
}
.site-header.float-header {
    background-color: transparent;
    padding: 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 95%;
}
.site-header .logo {
    width: 290px;
    height: auto;
    margin: 10px 0;
}
.site-header .header-inner .logo a img {
    width: 169px;
    display: inline-block;
}
.site-header .header-inner .logo span {
    display: inline-block;
    vertical-align: bottom;
    margin: 0 0 12px -20px;
    font-weight: 900;
    font-size: 15px;
}
.site-header .mv .logo span {
    color: #fff;
}
.site-header .header-inner ul.l-list li {
    background: #fff;
    color: #5f5f5f;
    padding: 8px 16px 9px;
    border: 1px solid #ccc;
    text-align: center;
    line-height: 1;
    font-size: 14px;
}
.site-header .header-inner ul.l-list li a:hover {
   opacity: 0.75;
   text-decoration: none;
}
body.home .site-header .mv {
    width: 100%;
    min-height: 519px;
    height: auto;
    background: url(/img/top/main_img.jpg) center center no-repeat;
    background-size: cover;
    overflow: hidden;
    position: relative;
}
.site-header .mv-02 {
    width: 100%;
    min-height: 89px;
    height: auto;
    background: url(/img/common/main_img.jpg) center center no-repeat;
    background-size: cover;
    overflow: hidden;
    position: relative;
}
.site-header .mv .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}
@media screen and (max-width: 1130px) {
    .mv .header-inner {
        width: 90%;
        padding: 10px;
    }
}
@media screen and (max-width: 991px) {
    .header-inner {
        width: 90%;
    }
    .mv .header-inner {
        padding: 10px 0 0 0;
    }
}
@media screen and (max-width: 767px) {
.site-header .mv {
    min-height: 100%;
    height: 210px;
  }
}
@media screen and (max-width: 575px) {
    .site-header .logo {
        width: 230px;
    }
    .site-header .header-inner .logo a img {
        width: 120px;
    }
    .site-header .header-inner .logo span {
        margin: 0 0 8px -13px;
        font-size: 13px;
    }
    .site-header .header-inner ul.l-list li {
        padding: 7px 2px 9px;
        font-size: 12px;
    }
}
@media screen and (max-width: 480px) {
    .site-header .header-inner ul.l-list li {
        padding: 7px 7px 7px;
        font-size: 8px;
    }
}

/*----------------------------------
  gnavi
------------------------------------*/
#mainnav {
    float: none;
    z-index: 1000;
    position: relative;
}
#mainnav-mobi.syd-hidden {
    display: block;
}
#mainnav-mobi {
    top: 188px;
    background: #013e6a;
}
nav {
    background: #013e6a;
    color: #fff;
    text-align: center;
    padding: 8px 0;
}
nav div.menu-headernavigation-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}
nav#mainnav ul, #mainnav-mobi ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}
nav#mainnav ul ul {
    display: block;
}
nav#mainnav ul li, #mainnav-mobi ul li {
    position: relative;
    border: 0;
}
nav#mainnav ul li {
    width: 20%;
}
#mainnav-mobi ul li {
    width: 100%;
}
nav#mainnav ul li a, #mainnav-mobi ul li a {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 20px;
    transition: all 0.3s;
    font-size: 16px;
    line-height: 1;
    text-align: center;
}
nav#mainnav ul li a {
    width: 100%;
}
nav#mainnav ul li li a {
    padding: 16px 8px;
}
nav#mainnav ul li a:hover, #mainnav-mobi ul li a:hover {
    text-decoration: none;
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
    transition: all 300ms ease-in-out 0s;
    color: #fff;
}
#mainnav .dropdown-symbol {
    margin-left: 2px;
    top: 15px;
    position: absolute;
    right: 14%;
}
nav#mainnav ul li ul {
    top: 53px;
}
#mainnav .sub-menu li {
    width: 100%;
}
#mainnav .sub-menu li a {
    line-height: 2;
    padding: 8px 3px;
}
@media screen and (max-width: 1024px) {
	body.home #mainnav-mobi {
        top: 530px;
    }
    .site-header .mv-02 {
        margin: 0 0 70px;
    }
    .mainnav span.dropdown-symbol {
        display: none;
    }
    span.btn-submenu {
        right: 0;
        top: 0;
        width: 10px;
    }
    span.btn-submenu svg {
        width: 14px;
        top: 21px;
    }
    #mainnav-mobi ul.sub-menu {
        top: 63px;
        width: 100%;
        position: absolute;
    }
    #mainnav-mobi ul.sub-menu>li>a {
        padding: 10px 0;
        font-size: 14px;
    }
}
@media screen and (max-width: 768px) {
    body.home .site-header .mv {
        /*min-height: 180px;*/
        min-height: 250px;
    }
	body.home #mainnav-mobi {
        top: -15px;
    }
    .site-header .mv-02 {
        margin: 0;
        height: 95px;
    }
    nav#mainnav-mobi {
        top: -20px;
        position: relative;
        padding: 0;
        margin-bottom: -20px;
    }
    nav#mainnav-mobi ul  {
        padding: 0;
        flex-wrap: wrap;
    }
    nav#mainnav-mobi ul  ul {
        display: block;
    }
    nav#mainnav-mobi ul li {
        width: 100%;
    }
    nav#mainnav-mobi ul li a {
        border-bottom: 1px solid #ccc;
        padding: 16px;
        text-align: center;
    }
    #mainnav-mobi ul.sub-menu {
        top: 0;
        position: relative;
    }
    span.btn-submenu {
        right: 5%;
        top: -5px;
        width: 10px;
    }
}


/*============================
mv
============================*/

.mv .mv-copy h2.widgettitle {
    display: none;
}
.mv .mv-copy h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  /*text-align: center;*/
  text-align: left;
  z-index: 400;
  width: 100%;
  font-size: 5.5rem;
  font-weight: bold;
  text-shadow: 1px 2px 3px #808080;
  color: #fff;
  max-width: 1200px;
}
.mv .mv-copy h1 img {
    width: 75%;
    max-width: 730px;
}
.header-inner ul.l-list li {
  background: #fff;
  color: #5f5f5f;
  padding: 8px 16px;
  border: 1px solid #ccc;
}
.header-inner ul.l-list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .mv .mv-copy h1 {
    top: 60%;
    font-size: 2.2rem;
  }
  .mv .mv-copy h1 img {
    width: 80%;
    max-width: 410px;
  }
}
@media screen and (max-width: 575px) {
  .header-inner ul.l-list {
    flex-direction: column;
  }
}



/*----------------------------------
  main
------------------------------------*/
.content-area.no-sidebar {
    padding-left: 0;
    padding-right: 0;
    background-color: #fff;
}
body.home .content-area.no-sidebar {
    background-color: #efefef;
}
.content-inner {
    /*width: 98%;
    max-width: 1000px;
    display: block;
    margin: 50px auto 0;*/
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 10px auto 0;
}
.content-inner .entry-header h1.title-post {
    font-size: 2.85rem;
    margin: 70px 0 0;
    font-weight: 800;
}
body.home .content-inner {
    width: 100%;
    max-width: 1357px;
    margin: 0 auto;
    padding-top: 10px;
}
body.home .content-inner .entry-header h1.title-post {
    display: none;
}
.content-inner .content-block {
    width: 90%;
    max-width: 1000px;
    display: block;
    margin: 50px auto 0;
}
@media screen and (max-width: 1024px) {
    /*.page-wrap {
        padding-top: 65px;
    }*/
}
@media screen and (max-width: 767px) {
    .page-wrap {
        padding-top: 5px;
    }
}


/*============================
contentlst
============================*/
.contentlst {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}


/*============================
bbns
============================*/
section.bbns ul.bbns-list {
    display: flex;
    flex-wrap: wrap;
    max-width: 1357px;
    margin: 0 auto;
}
section.bbns ul.bbns-list li {
    /*width: 49%;*/
    width: 32.25%;
    margin: 0 0.5%;
}
section.bbns ul.bbns-list li .bbns-thumbnail a {
  display: inline-block;
}
section.bbns ul.bbns-list li .bbns-thumbnail a:hover {
  opacity: 0.8;
}
section.bbns ul.bbns-list li .bbns-thumbnail a h2 {
  background-color: #1d1e22;
  color: #fff;
  font-size: 140%;
  font-weight: bold;
  margin: 0;
  padding: 14px 0;
  text-align: center;
}
section.bbns ul.bbns-list li .bbns-thumbnail a h2 > a {
  color: #fff;
  display: block;
  height: 100%;
  width: 96%;
}
section.bbns ul.bbns-list li .bbns-thumbnail a h2 > a:hover {
    background-color: rgba(0, 0, 0, 0.45);
    transition: all 300ms ease-in-out 0s;
}
section.bbns ul.bbns-list li .bbns-thumbnail .bbns-txt {
    width: 99%;
    padding: 2% 0% 8% 2%;
}
section.bbns ul.bbns-list li .bbns-thumbnail .bbns-txt p {
    text-align: left;
}
@media screen and (max-width: 1130px) {
    section.bbns ul.bbns-list {
        width: 100%;
    }
    section.bbns ul.bbns-list li .bbns-thumbnail {
        text-align: center;
    }
    section.bbns ul.bbns-list li .bbns-thumbnail .bbns-txt {
        text-align: left;
        width: 97%;
        padding: 2% 0 6% 5%;
    }
}
@media screen and (max-width: 767px) {
    section.bbns ul.bbns-list li .bbns-thumbnail a h2 {
        font-size: 120%;
    }
}
@media screen and (max-width: 767px) {
    section.bbns ul.bbns-list li {
        width: 96%;
        margin: 0 auto;
    }
}


section.bbns .bnr_en {
  margin: 44px auto 34px;
  border: 3px solid #ccc;
  padding: 0;
  border-radius: 29px;
  position: relative;
  white-space: nowrap;
  font-size: 90%;
  background: url(../images/top/bg_eng.png) no-repeat -46px 38%;
  width: 50%;
}
@media screen and (max-width: 991px) {
  section.bbns .bnr_en {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  section.bbns .bnr_en {
    width: 90%;
    font-size: 68%;
  }
}
section.bbns .bnr_en a {
  display: block;
  width: 92%;
  height: 95%;
  padding: 3% 4% 3%;
  color: #5588c4;
}
section.bbns .bnr_en a span {
  font-size: 130%;
  margin: 0 11px 0 75px;
  font-weight: 800;
}
@media screen and (max-width: 575px) {
  section.bbns .bnr_en a span {
    margin: 0 3px 0 0px;
  }
}


/*----------------------------------
  news
------------------------------------*/
.col-md-9 {
    width: 98%;
    max-width: 1000px;
    display: block;
    margin: 50px auto 0;
    float: none;
}
div.top_news {
    padding: 20px 2%;
    max-width: 96%;
    margin: 35px auto;
    background-color: #fff;
}
div.top_news .base_w {
    padding: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
div.top_news h2 {
    font-size: 2.65rem;
    text-align: center;
    font-weight: bold;
}
div.top_news .whatsnew {
    margin: 30px auto;
    font-size: 100%;
    max-height: 170px;
    overflow-y: auto;
    width: 100%;
}
div.top_news .whatsnew p {
    display: none;
}
div.top_news .newsbox dt, div.top_news.newsbox dd {
    text-align: left;
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 1px solid #eee;
}
section.news_area_wrap .newsbox dt {
    width: 20%;
}
section.news_area_wrap .newsbox dt span {
    display: inline-block;
    padding: 5px 20px;
    margin-left: 20px;
    border-radius: 20px;
    background: #013e6a;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1;
}
section.news_area_wrap .newsbox dd {
    width: 80%;
}
div.top_news .base_w p.link {
    text-align: center;
}
div.top_news .base_w p.link a {
    font-size: 15px;
    color: #000;
}
div.top_news .base_w p.link:after {
    font-family: "Font Awesome 5 Free";
    content: "\f101";
    color: #ababab;
    font-weight: 600;
    font-size: 115%;
    position: relative;
    vertical-align: bottom;
    margin: 3px 0 -3px 15px;
    display: inline-block;
}
nav.pagination, nav.post-navigation {
    background-color: transparent;
}
span.byline {
    display: none;
}
.posts-layout .post-vertical-align-middle {
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 3px 3% 20px;
    margin-bottom: 18px;
}
#main .page-header h1.archive-title {
    font-size: 0px;
    margin: 0 auto 30px;
    text-align: center;
}
#main .page-header h1.archive-title span {
    font-size: 3.6rem;
    font-weight: 600;
    margin-top: 1em;
    display: block;
}
.posts-layout .entry-title {
    font-size: 28px;
    text-align: left;
}
.posts-layout .entry-title a {
    font-size: 22px;
    font-weight: 500;
}
.posts-layout .entry-title a:before {
    content: "■";
    font-size: 26px;
}
#secondary {
    width: 98%;
    max-width: 1000px;
    display: block;
    margin: 50px auto 100px;
    float: none;
    border: 1px solid #ccc;
    font-size: 90%;
}
#secondary ul.wp-block-latest-posts li {
    line-height: 1.4;
    border-bottom: 1px dotted #ccc;
}
#secondary ul.wp-block-latest-posts li:last-child {
    border-bottom: 0;
}
.sydney-breadcrumbs {
    display: none;
}

@media screen and (max-width: 991px) {
    section.news_area_wrap .newsbox dt span {
      margin: 10px 0;
    }
    .posts-layout .entry-title {
    font-size: 28px;
    }
}
@media screen and (max-width: 767px) {
    div.top_news h2 {
        margin: 25px 0;
    }
    div.top_news .newsbox dt, div.top_news .newsbox dd {
        padding-bottom: 0;
    }
    section.news_area_wrap .newsbox dt {
        width: 100%;
        padding-bottom: 0px;
        padding-top: 0;
        border-bottom: none;
    }
    section.news_area_wrap .newsbox dt span {
        margin: 10px 0 10px 10px;
    }
    section.news_area_wrap .newsbox dd {
      width: 100%;
      padding-bottom: 20px;
      margin-bottom: 20px;
      border-bottom: 1px solid #aaa;
    }
}
@media screen and (max-width: 575px) {
    div.top_news h2 {
        font-size: 2.6rem;
    }
}



/*============================
lnk2bx
============================*/
section.lnk2bx {
    background: transparent;
    padding: 35px 0 70px;
}
section.lnk2bx ul.lnk-list {
    display: block;
    max-width: 1366px;
    margin: 0 auto;
    text-align: center;
}
section.lnk2bx ul.lnk-list li {
    display: inline-block;
    width: 40%;
    margin: 20px 2%;
    border: 3px solid #ccc;
    border-radius: 20px;
    background-color: #fff;
    position: relative;
    min-width: 500px;
}
section.lnk2bx ul.lnk-list li.zmnd {
    background: url(/img/top/bg_zmnd.jpg) no-repeat -3px center #fff;
    background-size: auto 110%;
}
section.lnk2bx ul.lnk-list li.webc {
    background: url(/img/top/bg_webc.jpg) no-repeat -3px center #fff;
    background-size: auto 110%;
}
section.lnk2bx ul.lnk-list li.webc img {
    position: absolute;
    width: 81px;
    left: 4px;
    bottom: 0;
}
section.lnk2bx ul.lnk-list li a {
    display: block;
}
section.lnk2bx h2 {
    font-size: 2.5rem;
    text-align: center;
    margin: 0 0 0 16%;
    font-weight: 600;
    color: #1e1e1e;
    line-height: 1;
    padding: 0 0 15px;
}
section.lnk2bx ul.lnk-list li h2:after {
    content: ">>";
    display: inline-block;
    vertical-align: middle;
    float: right;
    margin: 5px 10px 0 0;
    background-color: #013e6a;
    width: 42px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 200;
    letter-spacing: -2px;
    color: #99adbf;
    transform: scale(0.75, 2);
    text-align: right;
    padding: 0 8px 3px;
}
@media screen and (max-width: 767px) {
  section.rcrt h2 {
    margin: 25px 0;
  }
}
@media screen and (max-width: 600px) {
    section.lnk2bx ul.lnk-list li {
        min-width: 90%;
    }
    section.lnk2bx ul.lnk-list li.zmnd {
        background: url(/img/top/bg_zmnd.jpg) no-repeat -23px center #fff;
        background-size: auto 105%;
    }
    section.lnk2bx ul.lnk-list li.webc {
        background: url(/img/top/bg_webc.jpg) no-repeat -39px center #fff;
        background-size: auto 101%;
    }
    section.lnk2bx ul.lnk-list li.webc img {
        width: 66px;
        left: 5px;
    }
}
@media screen and (max-width: 575px) {
    section.lnk2bx h2 {
        font-size: 2.2rem;
    }
}

/*============================
rcrt
============================*/
section.rcrt {
    background: #f5fafe;
    padding-bottom: 40px;
    background-image: url(/img/top/bg_rec.jpg);
    background-attachment: fixed;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 35px 0 70px;
}
section.rcrt h2 {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin: 50px 0 13px;
}
section.rcrt p.small {
    text-align: center;
}
section.rcrt ul.rcrt-list {
    display: flex;
    justify-content: space-between;
    max-width: 1366px;
    margin: 0 auto;
}
section.rcrt ul.rcrt-list li {
    margin: 50px 0;
}
section.rcrt ul.rcrt-list li a {
    display: inline-block;
}
section.rcrt ul.rcrt-list li a .rcrt-thumbnail {
    position: relative;
}
section.rcrt ul.rcrt-list li a .rcrt-thumbnail p.rcrt-ttl {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 3.6rem;
    font-weight: bold;
    white-space: nowrap;
    text-shadow: 1px 2px 3px #808080;
}
section.rcrt ul.rcrt-list li a:hover {
    opacity: 0.75;
}
@media screen and (max-width: 1130px) {
    section.rcrt ul.rcrt-list {
        flex-direction: column;
    }
    section.rcrt ul.rcrt-list li {
        text-align: center;
    }
}
@media screen and (max-width: 575px) {
    section.rcrt ul.rcrt-list li a .rcrt-thumbnail p.rcrt-ttl {
        font-size: 3rem;
    }
    section.rcrt ul.rcrt-list li {
        margin: 3px 0;
    }
}



/*----------------------------------
見出し 本文
------------------------------------*/
h2.widgettitle {
    display: none;
}
.page .entry-header {
    display: none;
}
.content-block h1, .content-block h2.tit_h1 {
    font-size: 3.6rem;
    font-weight: 600;
    margin: 0 auto 30px;
    text-align: center;
}
.content-block h1 span, .content-block h2.tit_h1 span {
    display: block;
    font-size: 21px;
    line-height: 1.5;
    font-weight: 600;
}
.content-block h1 span.small, .content-block h2.tit_h1 span.small {
    font-size: 17px;
    font-weight: normal;
}
.content-block h1 img, .content-block h2.tit_h1 img {
    display: block;
    margin: 13px auto;
    width: 110px;
}
.content-block h1 img.w140 {
    width: 140px;
}
.content-block h2.tit {
    padding: 0.65em;
    color: #013e6a;
    font-size: 2.7rem;
    font-weight: bold;
    border-left: solid 12px #6d85b9;
    border-bottom: dotted 1px #013e6a;
    text-align: left;
    margin-top: 2.5em !important;
    margin-left: 0;
}
.content-block h2.copy {
    font-size: 23px;
    font-weight: 800;
    color: #FF9900;
    line-height: 1.3;
    text-align: left;
}
.content-block h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 30px 0;
}
.content-block p.maincopy {
    margin: 15px auto 55px;
}
.content-block p.small {
    font-size: 90%;
    margin: 0 auto 30px;
}
.content-block .img_r, .content-block .img_l {
    display: flex;
    flex-wrap: wrap;
}
.content-block .img_r div {
    width: 50%;
}
.content-block .img_r img {
    width: 50%;
    height: max-content;
    padding: 0 2%;
}
.content-block ul li {
    text-indent: 0.5em;
    margin-left: -0.5em;
    padding-left: 2.25em;
    line-height: 1.4;
    margin-bottom: 10px;
}
.content-block ul li:before {
    content: "■";
    margin: 2px 0.5em 0 -2em;
    font-size: 115%;
    color: #999797;
}
.content-block ul li.red {
    color: #c50000;
}
.content-block p.back {
    background-color: #E0E9E9;
    font-size: 90%;
    width: 100%;
    color: #003366;
    margin: 20px auto 0px;
    padding: 10px 12px;
}
.content-block .img_l {
    justify-content: center;
    margin: -25px auto 45px;
}
.content-block .img_l.mt25 {
    margin-top: 25px;
}
.content-block .img_l p {
    width: 45%;
    text-align: center;
}
.content-block .img_l p img {
    width: 100%;
    max-width: 341px;
}
.content-block .img_l ul {
    display: flex;
    justify-content: center;
    width: 50%;
}
.content-block .img_l ul li {
    padding: 0;
    margin: 0 2%;
}
.content-block .img_l ul li:before {
    content: "";
    margin: 0;
}
.content-block .img_l ul li p {
    width: 100%;
    font-size: 90%;
}
div.img4bx {
    text-align: center;
    margin: 30px auto 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
div.img4bx div {
    width: 25%;
    margin: 0 0.5%;
    display: inline-block;
    vertical-align: top;
    padding: 0 0 20px;
    max-width: 185px;
    font-size: 14px;
    line-height: 1.4;
}
div.img4bx div img {
    width: 100%;
    height: auto;
    margin: 0 0 8px;
}
div.photo2bx {
    margin: 50px auto 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
div.photo2bx img {
    width: 49%;
    height: auto;
    margin: 0.5%;
    display: inline-block;
    vertical-align: top;
}
div.product-box {
    margin: 0 auto 65px;
}
div.product-box h3 {
	margin: 45px 0 25px !important;
}
div.product-box h3.bdr {
    border-bottom: 3px solid #ccd2d7;
    padding-bottom: 4px;
}
div.product-box h3.pro {
	font-size: 18px;
    margin: 20px 0 10px !important;
}
div.product-box h3.line {
    border-top: 1px dotted #888;
    padding-top: 19px;
}
div.product-box p.pro_txt {
    margin-bottom: 20px;
}
div.product-box .link {
	width: 100%;
    margin: 0px auto 10px;
    display: flex;
}
div.product-box .link p {
	width: 160px;
    display: inline-block;
    vertical-align: top;
}
div.product-box .link p img {
	width: 100%;
}
div.product-box .link .link_left {
	display: inline-block;
    width: 100%;
}
div.product-box .link .link_left p {
	margin: 15px 0px 0px 0px;
    width: 100%;
    text-align: right;
}
div.product-box .link .link_left p a {
    background-color: #e7e7e7;
    padding: 5px 12px;
    border-radius: 3px;
}
div.product-box .link .link_left p a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f101";
    color: #bfbfbf;
    font-weight: 600;
    font-size: 110%;
    position: relative;
    vertical-align: bottom;
    margin: 2px 0 -2px 13px;
    display: inline-block;
}
div.product-box .link dt {
	font-weight: bold;
    color: #003366;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #003366;
    margin: 10px 0px 5px 0px;
    padding: 0px 0px 5px 10px;
    font-size: 18px;
}
div.product-box .link dt a {
    text-decoration: none;
    color: #003366;
}
div.product-box .link dt a:hover {
    color: #003366;
    text-decoration: none;
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
    transition: all 300ms ease-in-out 0s;
}
div.product-box .link dd {
	padding: 5px 0px 0px 10px;
}
div.product-box #photo, div.product-box .photo {
	display: flex;
    margin-bottom: 25px;
}
div.product-box #photo dl {
	width: 68%;
    display: inline-block;
    vertical-align: top;
    margin: 0px 2% 0 0;
}
div.product-box #photo dt {
	font-weight: bold;
    color: #003366;
    font-size: 17px;
}
div.product-box #photo dt span {
    font-size: 21px;
    margin: 0px 2px -4px 0;
    vertical-align: bottom;
    display: inline-block;
}
div.product-box #photo dd {
	margin: 0px 0px 15px 0px;
}
div.product-box #photo div.photo_l {
	width: 68%;
    display: inline-block;
    vertical-align: top;
    margin: 0px 2% 0 0;
}
div.product-box #photo div.photo_l img {
	width: 100%;
}
div.product-box #photo .photo_merit {
	width: 30%;
}
div.product-box .photo .photo_merit {
	width: 50%;
}
div.product-box #photo .photo_merit div,
div.product-box .photo .photo_merit div {
	width: 100%;
    margin: 0;
}
div.product-box .photo .photo_merit div {
	text-align: center;
}
div.product-box #photo .photo_merit div img,
div.product-box .photo .photo_merit div img {
	width: 100%;
    margin: 0 0 15px;
}
div.product-box .photo .photo_merit div img {
	max-width: 265px;
}
div.product-box #photo .photo_merit div img.w235 {
    max-width: 235px;
    display: block;
    margin: 0 auto 15px;
}
div.product-box img.boder {
    border: 1px solid #c5c5c5;
}
div.product-box #photo .photo_merit p,
div.product-box .photo .photo_merit p {
	margin: -10px 0 20px;
    font-size: 14px;
}
div.product-box #photo .photo_merit p span {
	font-weight: bold;
    font-size: 16px;
    color: #003366;
    display: block;
}
.content-block ul li span.alph {
    display: inline-block;
    font-size: 108%;
    padding: 0px 6px 2px 0px;
    width: 28px;
    background-color: #4485c6;
    border-radius: 50%;
    margin: -2px 2px 0 2px;
    color: #fff;
    text-align: center;
}
.content-block .frame-box {
	border: 1px solid #003b95;
    padding: 20px;
    display: flex;
    justify-content: center;
    margin: 0 auto 25px;
}
.content-block .frame-box div {
    width: 48%;
    margin: 0 4%;
    max-width: 320px;
}
.content-block .frame-box div span.caption {
    font-size: 90%;
    line-height: 1.4em;
    font-weight: 400;
    display: block;
    text-align: center;
    margin: 5px auto;
}
.content-block .frame-box div.frame_w {
    width: 100%;
    margin: 0 auto;
    max-width: 700px;
}
.content-block .frame-box div.frame_w p.tac img {
    margin: 8px auto;
}
@media screen and (max-width: 1000px) {
    .content-block ul li span.alph {
        width: 24px;
    }
}
@media screen and (max-width: 767px) {
    .content-block .img_r div {
        width: 100%;
    }
    .content-block .img_r img {
        width: 98%;
        max-width: 430px;
        margin: 15px auto 0;
        height: auto;
    }
    div.product-box #photo, div.product-box .photo {
		flex-wrap: wrap;
	}
	div.product-box #photo dl {
		width: 100%;
  	    margin: 0px auto 15px;
	}
	div.product-box #photo .photo_merit,
	div.product-box .photo .photo_merit {
		width: 100%;
        display: flex;
        justify-content: center;
	}
    div.product-box #photo .photo_merit div {
        width: 32.3%;
        margin: 0 0.5% 15px;
    }
    div.product-box .photo .photo_merit div {
        width: 100%;
        margin: 0 auto 15px;
    }
    .content-block .img_l p {
		width: 100%;
    }
    .content-block .img_l ul {
		width: 100%;
    }
}
@media screen and (max-width: 600px) {
    div.img4bx div {
        width: 47%;
    }
    div.photo2bx img {
        width: 100%;
        margin: 0 0 0.5%;
    }
    div.product-box #photo .photo_merit.photo3bx div {
        width: 50%;
    }
    div.product-box .photo .photo_merit div {
        width: 100%;
    }

}

/*----------------------------------
Q&A
------------------------------------*/
div.q_a-box {
    margin-left: 20px;
    margin-top: 50px;
}
div.q_a-box ul {
    padding-left: 25px;
    margin-bottom: 55px;
}
div.q_a-box li.qa_q {
    list-style: none;
    font-size: 20px;
    width: 95%;
    line-height: 1.2;
    border-bottom: 1px dotted #a3a8af;
    padding-bottom: 10px;
    padding-left: 1.75em;
    margin-left: 0;
    text-indent: 0;
}
div.q_a-box li.qa_q:before {
    content: "Q";
    font-size: 44px;
    font-family: impact, Arial, Helvetica, "sans-serif";
    color: #013e6a;
    margin-right: 8px;
    margin-left: -35px;
    font-weight: 400;
    line-height: 1;
}
div.q_a-box li.qa_a {
    list-style: none;
    font-size: 15px;
    width: 95%;
    line-height: 1.7;
    text-indent: -1em;
    margin-left: 1.75em;
}
div.q_a-box li.qa_a:before {
    content: "A";
    font-size: 35px;
    font-family: impact, Arial, Helvetica, "sans-serif";
    color: #e9bf1c;
    margin-right: 10px;
    margin-left: 0;
    vertical-align: bottom;
    margin-bottom: -15px;
    display: inline-block;
    font-weight: 200;
}
/*div.q_a-box div.link {
    text-align: center;
	font-size: 16px;
}
div.q_a-box div.link a {
    color: #000;
}
div.q_a-box div.link a::after {
    content: "";
    display: inline-block;
    width: 55px;
    height: 55px;
    background: url(/img/common/arrow_y.svg) no-repeat;
    background-size: contain;
    margin: 0 0 4px 25px;
    vertical-align: middle;
}
div.q_a-box div.link a:hover {
    text-decoration: none;
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
    transition: all 300ms ease-in-out 0s;
}
div.q_a-box div.link a:hover::after {
    background: url(/img/common/arrow_yw.svg) no-repeat;
    transition: all 300ms ease-in-out 0s;
}*/
@media screen and (max-width: 600px) {
    div.q_a-box {
        margin-left: 10px;
    }
    div.q_a-box ul {
        padding-left: 10px;
    }
}


/*----------------------------------
products
------------------------------------*/
section.products {
  margin: 50px 0;
}
@media screen and (max-width: 767px) {
  section.products {
    padding: 0 2%;
  }
}
section.products .contentlst {
  margin: 0 auto;
}
section.products .contentlst .section-inner {
  margin: 0 0 30px 0;
  width: 1000px;
}
section.products .contentlst .section-inner h3.section-title {
  font-size: 3.6rem;
  margin: 0 auto 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  section.products .contentlst .section-inner h3.section-title {
    font-size: 2.8rem;
  }
}
section.products .contentlst .section-inner p.section-desc {
  line-height: 1.35;
  margin: 0 0 68px 0;
}
section.products .contentlst .products-block {
  margin: 25px 0 0 0;
}
@media screen and (max-width: 767px) {
  section.products .contentlst .products-block {
    padding: 0 2%;
  }
}
section.products .contentlst .products-block .products-name {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 20px 0;
}
section.products .contentlst .products-block .products-desc {
  margin: 0 0 50px 0;
  line-height: 1.35;
}
@media screen and (max-width: 767px) {
  section.products .contentlst .products-block .products-desc {
    margin: 0 0 25px 0;
  }
}
section.products .contentlst .products-block ul.products-list {
  list-style: none;
}
section.products .contentlst .products-block ul.products-list li.products-item {
  margin: 0 0 25px 0;
  padding: 0 0 25px 0;
  border-bottom: 1px dotted gray;
}
@media screen and (max-width: 767px) {
  section.products .contentlst .products-block ul.products-list li.products-item {
    padding: 0 0 25px 0;
  }
}
section.products .contentlst .products-block ul.products-list li.products-item dl dt {
  font-weight: bold;
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 0 0;
}
@media screen and (max-width: 767px) {
  section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx {
    flex-direction: column;
  }
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-txt {
  width: 500px;
  align-items: center;
  line-height: 1.35;
  margin: 0 0 0 20px;
}
div.w100p {
  width: 100% !important;
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-txt span.kome {
  position: absolute;
  margin-left: 23%;
  font-size: 80%;
}
@media screen and (max-width: 991px) {
  section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-txt {
    width: 350px;
  }
}
@media screen and (max-width: 767px) {
  section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-txt {
    width: 100%;
    margin: 30px 0 0 0;
  }
  section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-txt span.kome {
    margin-left: 38%;
  }
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-txt p span.equipment {
  font-weight: bold;
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-txt p span.equipment:before {
  content: "●";
  color: #4567c3;
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-txt p span.strong-bl {
  font-weight: bold;
  color: #4567c3;
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-txt p span.strong-bk {
  font-weight: bold;
  margin: 0 0 10px 0;
  display: inline-block;
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-txt table.table_01 {
  width: 100%;
  border: 1px solid #2b4c69;
  border-spacing: 5px;
  table-layout: fixed;
  margin: 20px 0 0 0;
}
@media screen and (max-width: 767px) {
  section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-txt table.table_01 {
    width: 95%;
  }
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-txt table.table_01 caption {
  color: ghostwhite;
  background: #2b4c69;
  padding: 10px;
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-txt table.table_01 tbody tr.tr_01 th.th_01 {
  background: #f9eedd;
  padding: 10px;
  width: 240px;
}
@media screen and (max-width: 767px) {
  section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-txt table.table_01 tbody tr.tr_01 th.th_01 {
    width: 120px;
  }
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-txt table.table_01 tbody tr.tr_01 td.td_01 {
  background: #fff;
  padding: 10px;
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-txt table.table_02 {
  width: 100%;
  border-spacing: 5px;
  table-layout: fixed;
  margin: 20px 0 0 0;
}
@media screen and (max-width: 767px) {
  section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-txt table.table_02 {
    width: 95%;
  }
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-txt table.table_02 tbody tr.tr_02 th.th_02 {
  background: #2b4c69;
  color: ghostwhite;
  border-right: 1px solid #2b4c69;
  padding: 10px;
  text-align: center;
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-txt table.table_02 tbody tr.tr_02 td.td_02 {
  background: #f9eedd;
  padding: 10px;
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-img {
  width: 300px;
  margin: 0 50px 0 0;
}
@media screen and (max-width: 991px) {
  section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-img {
    margin: 0;
  }
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-img .products-addition {
  width: 300px;
  margin: 20px 0 0 0;
}
@media screen and (max-width: 767px) {
  section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-img .products-addition {
    margin: 20px 0 0 0;
  }
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-img .products-addition p {
  font-weight: bold;
  margin: 0 0 10px 0;
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-img .products-addition p span {
  font-weight: normal;
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx .products-img .products-addition ul {
  line-height: 1.5;
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx ul.products-img-box {
  display: flex;
  flex-direction: column;
  width: 300px;
  margin: 0 50px 0 0;
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx ul.products-img-box li {
  text-align: center;
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx ul.products-img-box li img {
  width: 100%;
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx ul.products-img-box02 {
  display: flex;
  margin: 0 30px 0 0;
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx ul.products-img-box02 li {
  text-align: center;
}
section.products .contentlst .products-block ul.products-list li.products-item dl .products-flx ul.products-img-box02 li img {
  width: 90%;
}
section.products .contentlst .products-block02 {
  width: 1000px;
  border-bottom: 1px dotted gray;
  margin: 25px 0;
}
@media screen and (max-width: 767px) {
  section.products .contentlst .products-block02 {
    padding: 0 2%;
    width: 96%;
  }
}
section.products .contentlst .products-block02 p.products-name {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 20px 0;
}
section.products .contentlst .products-block02 p.products-desc {
  margin: 0 0 50px 0;
  padding: 0 0 25px 0;
  line-height: 1.35;
}
@media screen and (max-width: 767px) {
  section.products .contentlst .products-block02 p.products-desc {
    margin: 0 0 25px 0;
  }
}
section.products .contentlst .products-block02 > p.products-txt {
  padding: 0 0 25px 0;
}
section.products .contentlst .products-block02 > p.products-txt span.kome {
  position: absolute;
  margin-left: 44%;
  font-size: 80%;
}

/*----------------------------------
sdgs
------------------------------------*/
section.sdgs {
  margin: 50px 0;
}
@media screen and (max-width: 575px) {
  section.sdgs {
    padding: 0 2%;
  }
}
section.sdgs .contentlst .section-inner h3.section-title {
  font-size: 3.2rem;
  margin: 30px 0;
}
@media screen and (max-width: 575px) {
  section.sdgs .contentlst .section-inner h3.section-title {
    font-size: 2.8rem;
  }
}
section.sdgs .contentlst .section-inner p.section-desc {
  margin: 50px 0 30px 0;
}
section.sdgs .contentlst .sdgs-block {
  margin: 0 0 30px 0;
  max-width: 1000px;
}
section.sdgs .contentlst .sdgs-block ul.sdgs-list li.sdgs-item {
  margin: 60px 0;
}
section.sdgs .contentlst .sdgs-block ul.sdgs-list li.sdgs-item h4 {
  font-size: 2rem;
  line-height: 1.65;
}
section.sdgs .contentlst .sdgs-block ul.sdgs-list li.sdgs-item h4:after {
  content: "";
  display: inline-block;
  background-color: #282f35;
  width: 200px;
  height: 1px;
  margin-left: 30px;
  vertical-align: middle;
  /* 線が文字の真ん中に来るように */
}
@media screen and (max-width: 767px) {
  section.sdgs .contentlst .sdgs-block ul.sdgs-list li.sdgs-item h4:after {
    width: 100px;
  }
}
@media screen and (max-width: 575px) {
  section.sdgs .contentlst .sdgs-block ul.sdgs-list li.sdgs-item h4:after {
    width: 50px;
    margin-left: 20px;
  }
}
section.sdgs .contentlst .sdgs-block ul.sdgs-list li.sdgs-item .sdg-itemInner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 25px 0;
}
@media screen and (max-width: 767px) {
  section.sdgs .contentlst .sdgs-block ul.sdgs-list li.sdgs-item .sdg-itemInner {
    flex-direction: column;
  }
}
section.sdgs .contentlst .sdgs-block ul.sdgs-list li.sdgs-item .sdg-itemInner .sdgs-imgBox {
  width: 500px;
  display: flex;
}
@media screen and (max-width: 767px) {
  section.sdgs .contentlst .sdgs-block ul.sdgs-list li.sdgs-item .sdg-itemInner .sdgs-imgBox {
    width: 100%;
    flex-wrap: wrap;
  }
}
section.sdgs .contentlst .sdgs-block ul.sdgs-list li.sdgs-item .sdg-itemInner .sdgs-imgBox .sdg-img {
  width: 150px;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 767px) {
  section.sdgs .contentlst .sdgs-block ul.sdgs-list li.sdgs-item .sdg-itemInner .sdgs-imgBox .sdg-img {
    width: 120px;
  }
}
@media screen and (max-width: 575px) {
  section.sdgs .contentlst .sdgs-block ul.sdgs-list li.sdgs-item .sdg-itemInner .sdgs-imgBox .sdg-img {
    width: 100px;
  }
}
section.sdgs .contentlst .sdgs-block ul.sdgs-list li.sdgs-item .sdg-itemInner .sdgs-txt {
  width: 500px;
}
@media screen and (max-width: 991px) {
  section.sdgs .contentlst .sdgs-block ul.sdgs-list li.sdgs-item .sdg-itemInner .sdgs-txt {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  section.sdgs .contentlst .sdgs-block ul.sdgs-list li.sdgs-item .sdg-itemInner .sdgs-txt {
    margin: 20px 0 0 0;
  }
}
/*----------------------------------
sdgs
------------------------------------*/
section.greeting {
  margin: 50px 0;
}
@media screen and (max-width: 767px) {
  section.greeting {
    padding: 0 2%;
  }
}
section.greeting .contentlst .section-inner {
  margin: 0 0 30px 0;
  max-width: 1000px;
}
section.greeting .contentlst .section-inner h3.section-title {
  font-size: 3.2rem;
  margin: 20px 0;
}
@media screen and (max-width: 575px) {
  section.greeting .contentlst .section-inner h3.section-title {
    font-size: 2.8rem;
  }
}
section.greeting .contentlst .section-inner h3.section-title:after {
  content: "";
  display: inline-block;
  background-color: #282f35;
  width: 200px;
  height: 1px;
  margin-left: 30px;
  vertical-align: middle;
  /* 線が文字の真ん中に来るように */
}
@media screen and (max-width: 767px) {
  section.greeting .contentlst .section-inner h3.section-title:after {
    width: 100px;
  }
}
section.greeting .contentlst .section-inner p.section-desc {
  line-height: 1.35;
  margin: 0;
  font-weight: 600;
}
section.greeting .contentlst .greeting-block {
  margin: 50px auto;
  width: 90%;
}
/*----------------------------------
  company
------------------------------------*/
section.company {
  margin: 50px 0;
}
@media screen and (max-width: 575px) {
  section.company {
    padding: 0 2%;
  }
}
  /* table */
  /*----------------------------------
  history
------------------------------------*/
section.company div.contentlst {
}
h3.section-title {
  font-size: 3.2rem;
  margin: 30px 0;
}
table.company-table {
  border-collapse: collapse;
  margin: 15px auto 40px;
  width: 100%;
  font-size: 1.6rem;
}
table.company-table tr {
  line-height: 1.75;
}
table.company-table tr th {
  background: #deebf6;
  border: 1px solid #ccc;
  font-weight: normal;
  line-height: 1.3;
  padding: 16px;
  vertical-align: middle;
  width: 27%;
  word-break: initial;
  text-align: left;
}
table.company-table tr td {
  border: 1px solid #ccc;
  padding: 13px 13px;
  vertical-align: middle;
  word-break: initial;
}
table.company-table tr td .nowrap {
  white-space: nowrap;
}
table.company-table tr td ul.board_member li,
table.company-table tr td ul.board_member_e li {
  display: flex;
}
table.company-table tr td ul.board_member li p.director {
  width: 20%;
}
table.company-table tr td ul.board_member_e li p.director {
  width: 33%;
}
table.company-table tr td ul.board_member li {
    text-indent: 0;
    margin: 0;
    padding: 0;
}
table.company-table tr td ul.board_member li:before {
    content: "";
    margin: 0;
}
table.company-table td .area {
	max-width: 560px;
    margin: 0 auto;
    width: 100%;
    display: block;
}
table.company-table td .photo {
    width: 100%;
    margin: 5px auto 0;
    clear: both;
    display: inline-block;
}
table.company-table td .photo li {
	float: left;
    width: 40%;
    margin: 0 5%;
    padding: 0;
    text-indent: 0;
    max-width: 240px;
}
table.company-table td .photo li:before {
    content: "";
    margin: 0;
}
table.company-table td .photo li img {
    width: 100%;
}
table.company-table td .photo dt {
	color: #003366;
    font-weight: bold;
    margin: 9px 0px 7px 0px;
    width: 100%;
}
table.company-table td .photo dd {
    width: 100%;
    float: left;
    display: block;
    font-size: 80%;
    margin-bottom: 20px;
}
table.company-table td .line {
	border-top-width: 1px;
    border-top-style: dotted;
    border-top-color: #333333;
    margin-top: 3px;
    padding-top: 8px;
}
table.company-table td dt {
	float: left;
	width: 100px;
}
table.company-table td dd {
	float: right;
	width: 580px;
}
table.company-table td dt {
	float: left;
	width: 100px;
	color: #003366;
}
table.company-table td dd {
	float: right;
	width: 580px;
}

@media screen and (max-width: 991px) {
  table.company-table tr td ul.board_member li p.director {
    width: 25%;
  }
  table.company-table tr td ul.board_member_e li p.director {
    width: 42%;
  }
}
@media screen and (max-width: 767px) {
  table.company-table tbody tr td ul.board_member li p.director {
    width: 60%;
  }
  table.company-table tbody tr td ul.board_member_e li p.director {
    width: 55%;
  }
  table.company-table td .photo li {
    width: 100%;
    margin: 0 auto 5%;
    float: none;
  }
}
@media screen and (max-width: 600px) {
  table.company-table tbody tr td ul.board_member_e li {
    display: block;
}
  table.company-table tbody tr td ul.board_member_e li p {
    width: 100%;
    margin-left: 1em;
    margin-bottom: 8px;
  }
  table.company-table tbody tr td ul.board_member_e li p.director {
    width: 100%;
    margin-left: 0;
    margin-bottom: 0px;
  }
}
div.history dl {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  padding: 15px 0;
  font-size: 1.6rem;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 991px) {
  div.history dl {
    flex-direction: column;
    width: 100%;
  }
}
div.history dl dt {
  padding-bottom: 5px;
  width: 24%;
}
@media screen and (max-width: 767px) {
  div.history dl dt {
    width: 90%;
    margin: 0 10px 0 0;
  }
}
/* @media screen and (min-width: 768px) {
.history dt {
clear: left;
float: left;
width: 10%;
}
.history dd {
margin-left: 11%;
}
}
 */
/*----------------------------------
  access
------------------------------------*/
section.access .contentlst .section-title-inner {
  display: block;
  margin: 30px 0;
}
@media screen and (max-width: 991px) {
  section.access .contentlst .section-title-inner {
    padding: 0 2%;
  }
}
section.access .contentlst .section-title-inner h3.section-title {
  font-size: 3.2rem;
  font-weight: bold;
  margin: 30px 0;
}
section.access .contentlst .access-block {
  max-width: 900px;
  width: 100%;
  margin: 0 auto 50px;
}
@media screen and (max-width: 991px) {
  section.access .contentlst .access-block {
    padding: 0 4%;
  }
}
section.access .contentlst .access-block h4.company-name {
  font-size: 3rem;
  margin: 30px 0;
}
section.access .contentlst .access-block .access-flx {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 767px) {
  section.access .contentlst .access-block .access-flx {
    flex-direction: column;
  }
}
section.access .contentlst .access-block .access-flx .access-txt {
  width: 60%;
}
@media screen and (max-width: 767px) {
  section.access .contentlst .access-block .access-flx .access-txt {
    width: 98%;
  }
}
section.access .contentlst .access-block .access-flx .access-txt p span.bold {
  display: inline-block;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  section.access .contentlst .access-block .access-flx .access-txt p span.bold {
    font-size: 90%;
  }
}
section.access .contentlst .access-block .access-flx .access-img {
  width: 35%;
}
@media screen and (max-width: 767px) {
  section.access .contentlst .access-block .access-flx .access-img {
    width: 50%;
  }
}
section.access .contentlst .access-block .access-flx .access-img img {
  width: 100%;
  height: auto;
}


/*----------------------------------
  recruit
------------------------------------*/
section.recruit {
  margin: 50px 0;
  background-size: 34% auto;
}
@media screen and (max-width: 575px) {
  section.recruit {
    padding: 0 2%;
  }
}
section.recruit div.bg_recruit {
  background: url(../images/recruit/mainimage_person.jpeg) no-repeat center;
  background-size: cover;
  position: relative;
}
section.recruit div.bg_recruit div.recruit-copy {
  background-color: rgba(3, 75, 84, 0.35);
  color: #fff;
  display: inline-block;
  font-size: 3.1rem;
  position: relative;
  top: 0;
  left: 12%;
  padding: 20px;
  margin: 20px 0;
  line-height: 1.2;
}
@media screen and (max-width: 991px) {
  section.recruit div.bg_recruit div.recruit-copy {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  section.recruit div.bg_recruit div.recruit-copy {
    font-size: 2.4rem;
  }
}
section.recruit div.bg_recruit div.recruit-copy p.copy-ttl {
  font-size: 1.8rem;
  margin: 0 0 5px 0;
  color: #fff;
}
@media screen and (max-width: 767px) {
  section.recruit div.bg_recruit div.recruit-copy p.copy-ttl {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
  }
}
section.recruit .contentlst.content_bgidx {
  margin: 0 auto;
  padding: 35px 0;
}
@media screen and (max-width: 991px) {
  section.recruit .contentlst.content_bgidx {
    width: 100%;
  }
}
section.recruit .contentlst.content_bgidx .section-inner {
  text-align: center;
  margin: 0 auto;
  font-weight: normal;
}
section.recruit .contentlst.content_bgidx .section-inner p.section-main-desc {
  font-size: 3.4rem;
  line-height: 1.3;
  color: #222;
  text-align: center;
  margin: 0 0 15px 0;
}
section.recruit .contentlst.content_bgidx .section-inner p.section-sub-desc {
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.3;
  color: #222;
  text-align: center;
}
section.recruit .staff-voice {
  padding: 35px 0;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  section.recruit .staff-voice {
    width: 100%;
  }
}
section.recruit .staff-voice p.staff-voice-ttl {
  font-size: 4.3rem;
  letter-spacing: 1px;
  color: #5d86bb;
  margin: 40px 0;
  text-align: center;
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN";
  font-weight: bold;
}
section.recruit .staff-voice p.style_itv {
  font-size: 2.1rem;
  letter-spacing: 2px;
  color: #1f070a;
  margin: 0 0 35px 0;
  padding: 0 0 0 15px;
  border-left: 7px solid #3577ca;
}
section.recruit .staff-voice ul.staff-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  section.recruit .staff-voice ul.staff-list {
    flex-direction: column;
  }
}
section.recruit .staff-voice ul.staff-list li {
  display: flex;
  flex-direction: column;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 767px) {
  section.recruit .staff-voice ul.staff-list li {
    text-align: center;
    width: 100%;
    margin: 30px 0px;
  }
}
section.recruit .staff-voice ul.staff-list li a img {
  width: 100%;
}
section.recruit .staff-voice ul.staff-list li .photo {
  max-width: 367px;
  height: 300px;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
section.recruit .staff-voice ul.staff-list li .photo span.staff_name {
  position: absolute;
  top: 0px;
  display: inline-block;
  z-index: 99;
  background: #013e6a;
  color: #ffffff;
  padding: 14px;
}
section.recruit .staff-voice ul.staff-list li .photo a:hover img {
  transform: scale(1.1);
}
section.recruit .staff-voice ul.staff-list li .photo a img {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: 0.5s ease-in-out;
}
section.recruit .staff-voice ul.staff-list li p.thumbnail {
  max-width: 367px;
  height: 150px;
  text-align: left;
  color: #1f070a;
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}
@media screen and (max-width: 991px) {
  section.recruit .staff-voice ul.staff-list li p.thumbnail {
    width: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  section.recruit .staff-voice ul.staff-list li p.thumbnail {
    width: 100%;
    padding: 15px;
    margin: 0;
  }
}
section.recruit .staff-voice ul.staff-list li a.btn-more {
  display: block;
  margin: 10px 0 0 0;
  color: #154188;
  font-weight: 600;
}
section.recruit .staff-voice ul.staff-list li a.btn-more:hover {
  text-decoration: underline;
}
/* 背景画像なし */
section.recruit.bg_none {
  background: none;
}
section.recruit.bg_none div.recruit-person {
  position: relative;
}
section.recruit.bg_none div.recruit-person img {
  height: 256px;
  width: 100%;
  object-fit: cover;
}
section.recruit.bg_none div.recruit-person div.recruit-copy {
  position: absolute;
    top: 32%;
    left: 10%;
    background-color: rgb(94 149 144 / 54%);
    color: #fff;
    padding: 10px;
    margin: 0;
    line-height: 1.2;
    width: 80%;
}
@media screen and (max-width: 767px) {
  section.recruit.bg_none div.recruit-person div.recruit-copy {
    font-size: 2.4rem;
  }
}
section.recruit.bg_none div.recruit-person div.recruit-copy p.copy-ttl {
  font-size: 3.8rem;
    margin: 0;
    color: #fff;
    text-align: center;
}
@media screen and (max-width: 767px) {
  section.recruit.bg_none div.recruit-person div.recruit-copy p.copy-ttl {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
  }
}
section.recruit.bg_none div.contentlst div.recruit-flx {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  margin: 50px 0 0 0;
}
@media screen and (max-width: 767px) {
  section.recruit.bg_none div.contentlst div.recruit-flx {
    flex-direction: column-reverse;
  }
}
section.recruit.bg_none div.contentlst div.recruit-flx div.recruit-txt {
  width: 57%;
  margin: 50px 0 0 0;
}
@media screen and (max-width: 767px) {
  section.recruit.bg_none div.contentlst div.recruit-flx div.recruit-txt {
    width: 100%;
  }
}
section.recruit.bg_none div.contentlst div.recruit-flx div.recruit-txt p {
  display: inline-block;
  font-size: 95%;
  line-height: 1.4;
  margin: 0 0 20px 0;
  width: 100%;
}
section.recruit.bg_none div.contentlst div.recruit-flx div.recruit-txt p span {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  display: inline-block;
  margin: 25px 0;
}
section.recruit.bg_none div.contentlst div.recruit-flx .recruit-img {
  position: relative;
}
@media screen and (max-width: 767px) {
  section.recruit.bg_none div.contentlst div.recruit-flx .recruit-img {
    text-align: center;
  }
}
section.recruit.bg_none div.contentlst div.recruit-flx .recruit-img .persons-name {
  position: absolute;
  top: 1vw;
  left: -14vw;
  background: #a35b9a;
  padding: 20px;
  width: 240px;
}
@media screen and (max-width: 767px) {
  section.recruit.bg_none div.contentlst div.recruit-flx .recruit-img .persons-name {
    top: -7vw;
    left: 0vw;
  }
}
section.recruit.bg_none div.contentlst div.recruit-flx .recruit-img .persons-name p {
  text-align: right;
  color: #fff;
  font-size: 17px;
}
section.recruit.bg_none div.contentlst .recLink {
  padding: 17px;
  position: relative;
  margin: 40px auto 0;
  text-align: center;
}
section.recruit.bg_none div.contentlst .recLink ul li.actv a {
  color: #666;
}
section.recruit.bg_none div.contentlst .recLink ul li {
  font-size: 90%;
  display: inline-block;
  letter-spacing: normal;
  list-style: none;
  border-right: 1px solid #666;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  section.recruit.bg_none div.contentlst .recLink ul li {
    margin: 10px;
  }
}
section.recruit.bg_none div.contentlst .recLink ul li:last-child {
  border-right: none;
}
@media screen and (max-width: 767px) {
  section.recruit.bg_none div.contentlst .recLink ul li:last-child {
    border-right: 1px solid #666;
  }
}
section.recruit.bg_none div.contentlst .recLink ul li a {
  text-decoration: none;
  color: #ff9800;
}
section.recruit.bg_none {
  background: none;
  margin: 150px 0;
}
section.recruit.bg_none div.recruit-workCopy {
  position: relative;
}
section.recruit.bg_none div.recruit-workCopy img {
  height: 256px;
  width: 100%;
  object-fit: cover;
}
section.recruit.bg_none div.recruit-workCopy div.work-copy {
  position: absolute;
  /*絶対配置*/
  top: 8%;
  left: 16%;
  display: flex;
  max-width: 1000px;
  width: 100%;
  color: #fff;
  font-size: 3.6rem;
}
@media screen and (max-width: 1130px) {
  section.recruit.bg_none div.recruit-workCopy div.work-copy {
    top: 14%;
    left: 3%;
  }
}
@media screen and (max-width: 991px) {
  section.recruit.bg_none div.recruit-workCopy div.work-copy {
    flex-direction: column;
    top: 3%;
    left: 20%;
  }
}
@media screen and (max-width: 767px) {
  section.recruit.bg_none div.recruit-workCopy div.work-copy {
    top: 10%;
    left: 5%;
  }
}
@media screen and (max-width: 575px) {
  section.recruit.bg_none div.recruit-workCopy div.work-copy {
    width: 100%;
  }
}
section.recruit.bg_none div.recruit-workCopy div.work-copy .nvbox.actv_lnk {
  width: 47.5%;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.2);
  border: 5px solid rgba(255, 255, 255, 0.85);
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
  padding: 0;
  margin: 0.5%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  section.recruit.bg_none div.recruit-workCopy div.work-copy .nvbox.actv_lnk {
    font-size: 3rem;
    width: 90%;
  }
}
section.recruit.bg_none div.recruit-workCopy div.work-copy .nvbox.actv_lnk a {
  padding: 62px 5px;
  width: 100%;
  height: 100%;
  display: block;
  color: #fff;
}
@media screen and (max-width: 991px) {
  section.recruit.bg_none div.recruit-workCopy div.work-copy .nvbox.actv_lnk a {
    padding: 31px 5px;
  }
}
section.recruit.bg_none div.recruit-workCopy div.work-copy .nvbox.actv_lnk a:hover {
  background-color: rgba(27, 9, 9, 0.6);
  text-decoration: underline;
}
section.recruit.bg_none div.recruit-workCopy div.work-copy .nvbox.actv {
  width: 47.5%;
  display: inline-block;
  background-color: rgba(27, 9, 9, 0.6);
  border: 5px solid rgba(255, 255, 255, 0.85);
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
  padding: 0;
  margin: 0.5%;
  text-align: center;
  padding: 62px 5px;
}
@media screen and (max-width: 991px) {
  section.recruit.bg_none div.recruit-workCopy div.work-copy .nvbox.actv {
    padding: 31px 5px;
  }
}
@media screen and (max-width: 767px) {
  section.recruit.bg_none div.recruit-workCopy div.work-copy .nvbox.actv {
    font-size: 3rem;
    width: 90%;
  }
}
section.recruit.bg_none div.contentlst div.recruit-workDesc h3.work-ttl {
  font-size: 2.3rem;
  color: #fff;
  background: #6d85b9;
  margin: 19px 0 20px 0;
  padding: 22px 30px 18px;
  border-radius: 3px;
}
section.recruit.bg_none div.contentlst div.recruit-workDesc p {
  display: inline-block;
  font-size: 95%;
  line-height: 1.4;
  padding: 0 3%;
  margin: 0 0 20px 0;
}
section.recruit.bg_none .recLink {
  padding: 17px;
  position: relative;
  margin: 20px auto 0;
  text-align: center;
}
section.recruit.bg_none .recLink ul li {
  font-size: 90%;
  display: inline-block;
  letter-spacing: normal;
  list-style: none;
  padding: 0 20px;
}
@media screen and (max-width: 575px) {
  section.recruit.bg_none .recLink ul li {
    margin: 10px 0;
  }
}
section.recruit.bg_none .recLink ul li:first-child {
  border-right: 1px solid #666;
}
@media screen and (max-width: 575px) {
  section.recruit.bg_none .recLink ul li:first-child {
    border-right: none;
  }
}
section.recruit.bg_none .recLink ul li a {
  text-decoration: none;
  color: #ff9800;
}
section.recruit.bg_none .recLink ul li.actv a {
  color: #666;
}
section.recruit.bg_none {
  background: none;
  margin: 150px 0;
}
section.recruit.bg_none div.recruit-featureCopy {
  position: relative;
}
section.recruit.bg_none div.recruit-featureCopy img {
  height: 256px;
  width: 100%;
  object-fit: cover;
}
section.recruit.bg_none div.recruit-featureCopy .feature-copy {
  position: absolute;
  /*絶対配置*/
  top: 8%;
  left: 12%;
  width: 55%;
  background-color: rgba(252, 165, 34, 0.54);
  color: #fff;
  display: inline-block;
  font-size: 3.1rem;
  padding: 20px;
  margin: 20px 0;
  line-height: 1.2;
}
@media screen and (max-width: 991px) {
  section.recruit.bg_none div.recruit-featureCopy .feature-copy {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  section.recruit.bg_none div.recruit-featureCopy .feature-copy {
    font-size: 2.4rem;
    left: 2%;
    width: 96%;
  }
}
section.recruit.bg_none div.recruit-featureCopy .feature-copy p.copy-ttl {
  font-size: 1.8rem;
  margin: 0 0 5px 0;
  color: #fff;
}
@media screen and (max-width: 767px) {
  section.recruit.bg_none div.recruit-featureCopy .feature-copy p.copy-ttl {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
  }
}
section.recruit.bg_none .contentlst .recruit-featureDesc h3.feature-ttl {
  font-size: 2.3rem;
  color: #fff;
  background: #6d85b9;
  margin: 19px 0 20px 0;
  padding: 22px 30px 18px;
  border-radius: 3px;
}
section.recruit.bg_none .contentlst .recruit-featureDesc p {
  display: inline-block;
  font-size: 95%;
  line-height: 1.4;
  padding: 0 3%;
  margin: 0 0 20px 0;
}
section.recruit div.contentlst.content_bgnone {
  background: none;
  margin: 0 auto;
}
section.recruit div.contentlst.content_bgnone div.section-inner {
  text-align: center;
  font-weight: normal;
}
section.recruit div.contentlst.content_bgnone div.section-inner h3.section-title {
  font-size: 3.2rem;
  margin: 30px 0;
  text-align: left;
}
section.recruit div.contentlst.content_bgnone .recruit-block {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  section.recruit div.contentlst.content_bgnone .recruit-block {
    width: 98%;
  }
}
section.recruit div.contentlst.content_bgnone .recruit-block .recruit-box {
  margin: 0 0 50px 0;
}
section.recruit div.contentlst.content_bgnone .recruit-block .recruit-box h4 {
  margin: 20px 0;
  padding: 0.65em;
  color: #154188;
  font-size: 20px;
  font-weight: bold;
  border-left: solid 12px #6d85b9;
  border-bottom: dotted 1px #154188;
}
section.recruit div.contentlst.content_bgnone .recruit-block .recruit-box p {
  line-height: 1.5;
}
section.recruit div.contentlst.content_bgnone .recruit-block a.btn-rcrt {
  border-radius: 7px;
  background: -moz-linear-gradient(top, #fd8248, #ff7635);
  background: -webkit-linear-gradient(top, #fd8248, #ff7635);
  background: linear-gradient(to bottom, #fd8248, #ff7635);
  padding: 20px;
  font-size: 2rem;
  width: 70%;
  margin: 25px auto;
  text-align: center;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  display: block;
  box-shadow: 0 0 0 0;
}
section.recruit div.contentlst.content_bgnone .recruit-block a.btn-rcrt:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
  transition: all 300ms ease-in-out 0s;
}
@media screen and (max-width: 767px) {
  section.recruit div.contentlst.content_bgnone .recruit-block a.btn-rcrt {
    font-size: 1.4rem;
    width: 100%;
  }
}
/*----------------------------------
  募集要項
------------------------------------*/
section.recruit.bg_none {
  background: none;
  margin: 150px 0;
}
section.recruit.bg_none .contentlst p.jobDesc-title {
  width: 100%;
  font-size: 2.6rem;
  border-bottom: 1px solid #0091af;
  line-height: 1.35;
  padding: 21px 0 18px 0;
  margin: 0 0 18px 0;
}
section.recruit.bg_none .contentlst p.style_jobDesc {
  font-size: 2.1rem;
  color: #98b2b4;
  border-left: 7px solid #afd2d8;
  letter-spacing: 2px;
  margin: 35px 0;
  padding: 0 0 0 15px;
  width: 100%;
}
section.recruit.bg_none .contentlst table.jobDesc-table {
  border-collapse: collapse;
  margin: 15px auto 40px;
  width: 80%;
  text-align: left;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  section.recruit.bg_none .contentlst table.jobDesc-table {
    width: 100%;
  }
}
section.recruit.bg_none .contentlst table.jobDesc-table tbody tr {
  font-size: 1.6rem;
  line-height: 1.65;
}
section.recruit.bg_none .contentlst table.jobDesc-table tbody tr th {
  font-weight: normal;
}
section.recruit.bg_none .contentlst table.jobDesc-table tbody tr td {
  border: 1px solid #ccc;
  padding: 26px 13px;
  vertical-align: middle;
  word-break: initial;
}
/*----------------------------------
  entry_area
------------------------------------*/
section.entry_area {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  section.entry_area {
    width: 98%;
  }
}
section.entry_area .entry-inner {
  border: 1px solid #ccc;
  border-radius: 3px;
  float: left;
  margin: 0 auto 50px;
  padding: 34px 2.5% 34px 4%;
  width: 100%;
}
section.entry_area .entry-inner p a.lnk {
  background: rgba(0, 0, 0, 0) url(../images/icon/arrow.png) no-repeat scroll 0 4px;
  color: #6699ff;
  padding-left: 13px !important;
}
section.entry_area .entry-inner .btn-entry {
  border-radius: 7px;
  background: -moz-linear-gradient(top, #fd8248, #ff7635);
  background: -webkit-linear-gradient(top, #fd8248, #ff7635);
  background: linear-gradient(to bottom, #fd8248, #ff7635);
  padding: 0;
  font-size: 20px;
  width: 40%;
  margin: 20px auto 0;
  text-align: center;
}
@media screen and (max-width: 575px) {
  section.entry_area .entry-inner .btn-entry {
    width: 100%;
  }
}
section.entry_area .entry-inner .btn-entry a {
  color: #fff;
  font-weight: 600;
  height: 100%;
  display: block;
  padding: 15px 15% 14px;
  box-shadow: 0 0 0 0;
}
section.entry_area .entry-inner .btn-entry a:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
  transition: all 300ms ease-in-out 0s;
}

/*----------------------------------
  エントリーフォーム
------------------------------------*/
section.recruit.bg_none {
  background: none;
  margin: 50px 0;
}
@media screen and (max-width: 767px) {
  section.recruit.bg_none {
    padding: 0 2%;
  }
}
section.recruit.bg_none div.contentlst p.confirm-title {
  width: 100%;
  font-size: 2.6rem;
  border-bottom: 1px solid #0091af;
  line-height: 1.35;
  padding: 21px 0 18px 0;
  margin: 20px 0;
}
section.recruit.bg_none div.contentlst div.confirm-form {
  margin: 0px auto;
  padding-bottom: 35px;
  width: 1000px;
}
section.recruit.bg_none div.contentlst div.confirm-form form table#confirm_table {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  section.recruit.bg_none div.contentlst div.confirm-form form table#confirm_table {
    width: 100%;
  }
}
section.recruit.bg_none div.contentlst div.confirm-form form table#confirm_table tbody tr th {
  text-align: left;
}
section.recruit.bg_none div.contentlst div.confirm-form form div.confirm-box {
  width: 80%;
  margin: 40px auto 0;
}
section.recruit.bg_none div.contentlst div.confirm-form form div.confirm-box p {
  text-align: left;
  line-height: 1.4;
  margin: 0 0 20px 0;
}
section.recruit.bg_none div.contentlst div.confirm-form form div.confirm-box p.center.mt25 {
  text-align: center;
  margin: 30px 0 0 0;
}
@media screen and (max-width: 767px) {
  section.recruit.bg_none div.contentlst div.confirm-form form div.confirm-box p.center.mt25 input.sub_btn {
    width: 100%;
  }
}


/*----------------------------------
  contact_area
------------------------------------*/
section.contact_area {
    margin: 50px auto;
    width: 90%;
    max-width: 1000px;
}
section.contact_area .contact-inner {
  margin: 0 auto 10px;
  max-width: 1000px;
  width: 98%;
}
section.contact_area .contact-inner h5 {
  font-size: 18px;
}
section.contact_area .mb25 {
  margin-bottom: 25px !important;
}
@media screen and (max-width: 575px) {
  section.contact_area {
    padding: 0 2%;
  }
}
@media screen and (max-width: 575px) {
  section.contact_area {
    width: 100%;
  }
}
section.contact_area .contentlst {
  margin: 0 auto 100px;
  border: 3px solid #ccc;
  padding: 0 3%;
}
section.contact_area .contentlst p {
  margin: 0px auto 30px;
  font-size: 2.2rem;
  padding: 30px 0 0 0;
}
@media screen and (max-width: 575px) {
  section.contact_area .contentlst p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 575px) {
  section.contact_area .contentlst {
    padding: 30px 10px;
  }
}
section.contact_area .contentlst ul.contact-list {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 0px 30px 0px;
}
@media screen and (max-width: 767px) {
  section.contact_area .contentlst ul.contact-list {
    flex-direction: column;
  }
}
@media screen and (max-width: 575px) {
  section.contact_area .contentlst ul.contact-list {
    flex-wrap: wrap;
  }
}
section.contact_area .contentlst ul.contact-list li {
  margin: 0 20px 0 0;
}
@media screen and (max-width: 575px) {
  section.contact_area .contentlst ul.contact-list li {
    width: 98%;
  }
}
section.contact_area .contentlst ul.contact-list li:nth-child(1) {
  margin: 0 0 0px 14px;
}
@media screen and (max-width: 767px) {
  section.contact_area .contentlst ul.contact-list li:nth-child(1) {
    padding: 0;
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 575px) {
  section.contact_area .contentlst ul.contact-list li:nth-child(1) {
        width: 300px;
        margin: 0px 0 0px 55px;
  }
}
section.contact_area .contentlst ul.contact-list li:nth-child(1) .tel-inner a.tel {
  display: block;
  position: relative;
  color: #ff7c3e;
  font-size: 2.6rem;
  font-weight: bold;
  white-space: nowrap;
  padding: 0;
  margin: 0 0 16px 0;
    line-height: 1;
}
@media screen and (max-width: 991px) {
  section.contact_area .contentlst ul.contact-list li:nth-child(1) .tel-inner a.tel {
    padding: 0 0 0 10px;
  }
}
@media screen and (max-width: 767px) {
  section.contact_area .contentlst ul.contact-list li:nth-child(1) .tel-inner a.tel {
    padding: 0 0 0 20px;
    font-size: 2.1rem;
  }
}
section.contact_area .contentlst ul.contact-list li:nth-child(1) .tel-inner a.tel span {
  font-size: 2rem;
  margin: 0 7px 0 14px;
}
section.contact_area .contentlst ul.contact-list li:nth-child(1) .tel-inner a.tel:before {
    content: url(/img/common/icon_tel.png);
    width: 8px;
    position: absolute;
    top: 0;
    left: -1.5vw;
    transform: scale(0.65);
}
@media screen and (max-width: 1130px) {
  section.contact_area .contentlst ul.contact-list li:nth-child(1) .tel-inner a.tel:before {
    left: -2vw;
  }
}
@media screen and (max-width: 767px) {
  section.contact_area .contentlst ul.contact-list li:nth-child(1) .tel-inner a.tel:before {
    top: -1.5vw;
    left: -1.25vw;
    transform: scale(0.65);
  }
}
section.contact_area .contentlst ul.contact-list li:nth-child(1) .tel-inner .fax {
  display: block;
  position: relative;
  color: #ff7c3e;
  font-size: 2.6rem;
  font-weight: bold;
  white-space: nowrap;
  padding: 0;
  margin: 0 0 16px 0;
}
@media screen and (max-width: 991px) {
  section.contact_area .contentlst ul.contact-list li:nth-child(1) .tel-inner .fax {
    padding: 0 0 0 10px;
  }
}
@media screen and (max-width: 767px) {
  section.contact_area .contentlst ul.contact-list li:nth-child(1) .tel-inner .fax {
    padding: 0 0 0 20px;
    font-size: 2.1rem;
  }
}
section.contact_area .contentlst ul.contact-list li:nth-child(1) .tel-inner .fax span {
  font-size: 2rem;
  margin: 0 7px 0 14px;
}
section.contact_area .contentlst ul.contact-list li:nth-child(1) .tel-inner .fax:before {
  content: url(../images/icon/icon_fax.png);
  width: 10px;
  position: absolute;
  top: 0.25vw;
  left: -2.5vw;
  transform: scale(0.75);
}
@media screen and (max-width: 1130px) {
  section.contact_area .contentlst ul.contact-list li:nth-child(1) .tel-inner .fax:before {
    left: -3.5vw;
  }
}
@media screen and (max-width: 767px) {
  section.contact_area .contentlst ul.contact-list li:nth-child(1) .tel-inner .fax:before {
    top: -0.5vw;
    left: -1.75vw;
    transform: scale(0.65);
  }
}
section.contact_area .contentlst ul.contact-list li:nth-child(1) p.time {
  font-size: 1.4rem;
  margin: 10px 0 0 4px;
  padding: 0;
}
@media screen and (max-width: 991px) {
  section.contact_area .contentlst ul.contact-list li:nth-child(1) p.time {
    margin: 10px 0 0 12px;
  }
}
@media screen and (max-width: 767px) {
  section.contact_area .contentlst ul.contact-list li:nth-child(1) p.time {
    margin: 10px 0 0 22px;
  }
}
section.contact_area .contentlst ul.contact-list li:nth-child(2) {
  width: 400px;
  text-align: center;
  margin: 35px auto 0;
}
@media screen and (max-width: 991px) {
  section.contact_area .contentlst ul.contact-list li:nth-child(2) {
    width: 100%;
    margin: 34px 0 0 15px;
  }
}
@media screen and (max-width: 767px) {
  section.contact_area .contentlst ul.contact-list li:nth-child(2) {
    margin: 20px 0;
  }
}
section.contact_area .contentlst ul.contact-list li:nth-child(2) a.btn {
  display: inline-block;
  border-radius: 10px;
  color: #fff;
  background-color: #eb6100;
  font-size: 2rem;
  position: relative;
  padding: 1.5rem 3rem;
}
@media screen and (max-width: 575px) {
  section.contact_area .contentlst ul.contact-list li:nth-child(2) a.btn {
    font-size: 1.8rem;
  }
}
section.contact_area .contentlst ul.contact-list li:nth-child(2) a.btn:hover {
  color: #fff;
  background: #554b43;
}
section.contact_area .contentlst ul.contact-list li:nth-child(2) a.btn i.fa-envelope:before {
  margin: 0 10px 0 0;
}
section.contact_area .contentlst ul.contact-list li:nth-child(2) a.btn i.fa-chevron-right:before {
  margin: 0 0 0 12px;
}
section.contact_area .contentlst ul.contact-list li:nth-child(2) a.btn i.fa {
  margin-right: 1rem;
}
section.contact_form .contact_inner {
  width: 100%;
  max-width: 1000px;
  margin: 60px auto;
}
section.contact_form .contact_inner .section-inner {
  text-align: center;
}
section.contact_form .contact_inner .section-inner h3 {
  font-size: 3.2rem;
  margin: 30px 0;
  text-align: center;
}
section.contact_form .contact_inner .contact_t {
  width: 100%;
  margin-bottom: 40px;
  border: 1px solid #ddd;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  section.contact_form .contact_inner .contact_t {
    display: block;
  }
  section.contact_form .contact_inner .contact_t tbody, section.contact_form .contact_inner .contact_t tr, section.contact_form .contact_inner .contact_t th, section.contact_form .contact_inner .contact_t td {
    display: block;
  }
}
section.contact_form .contact_inner .contact_t th, section.contact_form .contact_inner .contact_t td {
  padding: 20px 20px;
  border-bottom: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}
section.contact_form .contact_inner .contact_t th {
  width: 25%;
  position: relative;
  background: #f6f6f6;
}
@media screen and (max-width: 767px) {
  section.contact_form .contact_inner .contact_t th {
    width: 100%;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 10px;
    padding-top: 10px;
  }
  section.contact_form .contact_inner .contact_t th::before {
    content: "■";
    display: inline-block;
    vertical-align: baseline;
    color: #154188;
  }
  section.contact_form .contact_inner .contact_t th p {
    display: inline-block;
  }
}
section.contact_form .contact_inner .contact_t th.req::after {
  content: "必須";
  display: inline-block;
  background: crimson;
  color: #fff;
  padding: 4px 10px;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: normal;
  position: absolute;
  right: 20px;
  top: 20px;
}
@media screen and (max-width: 1130px) {
  section.contact_form .contact_inner .contact_t th.req::after {
    font-size: 1.1rem;
    top: 0;
    right: 0;
  }
}
section.contact_form .contact_inner .contact_t th.req_en::after {
  content: "req";
  display: inline-block;
  background: crimson;
  color: #fff;
  padding: 4px 10px;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: normal;
  position: absolute;
  right: 20px;
  top: 20px;
}
@media screen and (max-width: 1130px) {
  section.contact_form .contact_inner .contact_t th.req_en::after {
    font-size: 1.1rem;
    top: 0;
    right: 0;
  }
}
section.contact_form .contact_inner .contact_t td {
  width: 75%;
}
@media screen and (max-width: 767px) {
  section.contact_form .contact_inner .contact_t td {
    width: 100%;
  }
}
section.contact_form .contact_inner input[type="text"], section.contact_form .contact_inner input[type="email"], section.contact_form .contact_inner input[type="tel"] {
  width: 100%;
  font-size: 1.5rem;
  padding: 10px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  section.contact_form .contact_inner input[type="text"], section.contact_form .contact_inner input[type="email"], section.contact_form .contact_inner input[type="tel"] {
    -webkit-appearance: none;
    border-radius: 0;
  }
}
section.contact_form .contact_inner input[type="text"]::placeholder, section.contact_form .contact_inner input[type="email"]::placeholder, section.contact_form .contact_inner input[type="tel"]::placeholder {
  opacity: 0.5;
}
section.contact_form .contact_inner input[type="text"].s, section.contact_form .contact_inner input[type="email"].s, section.contact_form .contact_inner input[type="tel"].s {
  width: 30%;
}
section.contact_form .contact_inner textarea {
  width: 100%;
  font-size: 1.5rem;
  padding: 10px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  section.contact_form .contact_inner textarea {
    height: 150px;
    -webkit-appearance: none;
    border-radius: 0;
  }
}
section.contact_form .contact_inner textarea::placeholder {
  opacity: 0.5;
}
section.contact_form .contact_inner input[type="submit"], section.contact_form .contact_inner button {
  -webkit-appearance: button;
  appearance: button;
  display: inline-block;
  padding: 15px 40px;
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 0;
  width: 35%;
  border: 1px solid #154188;
  background-color: #154188;
  color: #fff;
  background-size: 200% auto;
  background-position: 0 0;
  line-height: 1;
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 1px;
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  section.contact_form .contact_inner input[type="submit"], section.contact_form .contact_inner button {
    width: 90%;
  }
}
section.contact_form .contact_inner input[type="submit"].btn_red, section.contact_form .contact_inner button.btn_red {
  background: #154188;
  background-size: 200% auto;
  background-position: 0 0;
  color: #fff;
  border: none;
}
section.contact_form .contact_inner input[type="submit"].btn_gray, section.contact_form .contact_inner button.btn_gray {
  background: #333;
  background-size: 200% auto;
  background-position: 0 0;
  color: #fff;
  border: none;
}
section.contact_form .contact_inner input[type="submit"].btn_gray:hover, section.contact_form .contact_inner button.btn_gray:hover {
  background: #333;
}
section.contact_form .contact_inner input[type="submit"]:hover, section.contact_form .contact_inner button:hover {
  opacity: 1;
  background: #adc4e0;
  border: 1px solid #adc4e0;
  color: #ffffff;
  text-decoration: underline;
}
section.contact_form .contact_inner .btn_area {
  text-align: center;
}


/*----------------------------------
  reason
------------------------------------*/
.content-block ol.lst_reason {
	margin-left: 2.5em;
    margin-top: 10px;
}
.content-block ol.lst_reason li {
	list-style-type: none;
	counter-increment: cnt;
}
.content-block ol.lst_reason li::before {
	content: "(" counter(cnt) ")";
	display:inline-block;
	margin-left: -1.5em;
    width: 2.5em;
}
.content-block div.num_list {
    display: flex;
    margin: 20px auto 5px;
}
.content-block div.num_list div {
    text-align: center;
    margin: 0 0.5%;
    background: #ffffff;
    padding: 0 1% 25px;
    border: 2px solid #a2b8e9;
    border-radius: 7px;
    width: 33%;
    position: relative;
}
.content-block div.num_list div h3 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 18px 0 5px !important;
}
.content-block div.num_list div p.num {
    text-align: center;
    font-size: 18px;
    line-height: 1.4;
}
.content-block div.num_list div p.num span {
    text-align: center;
    font-size: 59px;
    font-family: century gothic, "Arial Black", Gadget, sans-serif;
    font-weight: 900;
    margin-bottom: 0;
    letter-spacing: -1px;
    color: #84539d;
    margin: 0 3px;
}
.content-block div.num_list div:nth-child(2) p.num span {
    color: #537b9d;
}
.content-block div.num_list div:last-child p.num span {
    color: #539d9d;
}
@media screen and (max-width: 767px) {
  .content-block div.num_list {
    flex-wrap: wrap;
  }
  .content-block div.num_list div {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 10px;
  }
}
/*----------------------------------
privacy
------------------------------------*/
section.privacy {
  margin: 50px 0;
}
section.privacy .contentlst div {
  margin: 0 0 30px 0;
}
section.privacy .contentlst div p.main_txt {
  margin: 0 0 20px 0;
}
section.privacy .contentlst div h3.section-title {
  margin: 0 0 10px 0;
  font-size: 2.9rem;
  margin: 0 0 30px 0;
  text-align: center;
  line-height: 1.35;
}
section.privacy .contentlst div h3.section-title.ttl-center {
  text-align: center;
  border-left: none;
}
section.privacy .contentlst div h4 {
  margin: 0 0 10px 0;
  font-size: 2.4rem;
  margin: 0 0 30px 0;
  text-align: left;
}
section.privacy .contentlst div p.txts {
  margin: 0 0 10px 0;
}
section.privacy .contentlst div ul.dot_list {
  list-style: disc;
  padding: 0 0 0 15px;
}
section.privacy .contentlst div ul.dot_list li {
  line-height: 1.65;
}
@media screen and (max-width: 767px) {
  section.privacy .contentlst div h3.section-title {
    font-size: 2.2rem;
  }
  section.privacy .contentlst div h3.section-title.ttl-center {
    margin: 0;
  }
}


/*----------------------------------
  sitemap
------------------------------------*/
section.sitemap {
    margin: 50px 0;
}
section.sitemap .section-inner {
    width: 1000px;
    margin: 30px auto;
}
section.sitemap .section-inner h1.section-title {
    text-align: center;
    font-size: 3.2rem;
}
section.sitemap .sitemap_inner {
    max-width: 600px;
    margin: 0 auto;
}
section.sitemap .sitemap_inner ul.sitemap-list {
    display: flex;
    flex-direction: column;
    margin: 0 0 30px 0;
}
section.sitemap .sitemap_inner ul.sitemap-list li {
    margin-bottom: 10px;
    text-indent: 0;
    margin-left: 0;
    padding-left: 0;
}
section.sitemap .sitemap_inner ul.sitemap-list li:before {
    content: "";
    margin: 0;
}
section.sitemap .sitemap_inner ul.sitemap-list li.sub {
    padding-left: 0;
}
section.sitemap .sitemap_inner ul.sitemap-list li a {
    display: block;
    padding: 10px 20px 10px 50px;
    font-size: 1.7rem;
    border: 1px solid #ccc;
    position: relative;
    transition: all 0.2s;
}
section.sitemap .sitemap_inner ul.sitemap-list li.sub a {
    border: 0;
    padding: 10px 0 0 56px;
}
section.sitemap .sitemap_inner ul.sitemap-list li.sub2 a {
    border: 0;
    padding: 5px 0px 3px 80px;
}
section.sitemap .sitemap_inner ul.sitemap-list li a:hover {
    opacity: 0.7;
}
section.sitemap .sitemap_inner ul.sitemap-list li a::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: auto;
    background: #555;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
}
section.sitemap .sitemap_inner ul.sitemap-list li.sub a::before {
    top: 10px;
    left: 30px;
}
section.sitemap .sitemap_inner ul.sitemap-list li.sub2 a::before {
    background: #fff;
}
@media screen and (max-width: 991px) {
    section.sitemap .section-inner {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    section.sitemap .sitemap_inner {
      padding: 0 2%;
    }
}


/*============================
footer
============================*/
div.linkBtn {
    text-align: center;
}
div.linkBtn a {
    background-color: #d75e5f;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    display: inline-block;
    margin: 18px 10px;
    min-width: 195px;
    border: 2px solid #d75e5f;
    font-size: 105%;
    font-weight: 400;
}
div.linkBtn a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f101";
    position: relative;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    margin: -4px -15px 0 15px;
    display: inline-block;
    vertical-align: middle;
}
div.linkBtn a:hover {
    background-color: #fff;
    color: #d75e5f;
    text-decoration: none;
    transition: all 300ms ease-in-out 0s;
}
div.linkBtn a:hover:after {
    color: #d75e5f;
    transition: all 300ms ease-in-out 0s;
}
ul.kanren_link {
    margin: 20px auto 60px;
    width: 90%;
    list-style-type: none;
    text-align: center;
    max-width: 750px;
    padding: 25px 0;
}
ul.kanren_link li {
    display: inline-block;
    font-size: 14px;
    padding: 0;
    margin: 0;
}
ul.kanren_link p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 7px;
}
ul.kanren_link a {
    color: #36393d;
}
.content-block ul.kanren_link li:before {
    content: "";
    margin: 0;
}
ul.kanren_link a:hover {
    color: #d75e5f;
    text-decoration: none;
    transition: all 300ms ease-in-out 0s;
}
ul.kanren_link li:after {
    content: "/";
    display: inline-block;
    margin: 0 7px 0 9px;
    font-size: 20px;
    color: #ccc;
}
ul.kanren_link ul li:last-child {
    display: block;
}
ul.kanren_link li:last-child:after {
    content: "";
}
.custom-html-widget section.lnk2bx {
    padding: 40px 0 25px;
}
.custom-html-widget section.lnk2bx ul.lnk-list li {
    min-width: 435px;
}
.custom-html-widget section.lnk2bx ul.lnk-list li:before {
    content: "";
    margin: 0;
}
.custom-html-widget section.lnk2bx h2 {
    font-size: 2.25rem;
}

#sidebar-footer.footer-widgets {
    width: 100%;
    clear: both;
    background: #17181a url(/img/common/bg_ft.jpg) center 0 no-repeat;
    padding: 40px 0 15px;
    background-size: 100% auto;
}
.footer-widgets .container {
    width: 1000px;
    margin: 0 auto;
    background-color: transparent;
}
.footer-widgets-grid.footer-layout-2 {
    padding-top: 0;
}
.sidebar-column {
    display: block;
    width: 100%;
    color: #fff;
    margin: 0;
}
p.ftlogo br {
    display: none;
}
p.ftlogo a {
    color: #fff;
    font-size: 125%;
}
.sidebar-column ul.menu li {
    width: 100%;
    padding-bottom: 6px;
    margin-bottom: 11px;
    margin-left: 0;
    padding-left: 0;
    margin-top: 15px;
    color: #fff;
    font-size: 90%;
}
.sidebar-column ul.menu li ul.sub-menu {
    font-size: 14px;
    display: inline-block;
    vertical-align: top;
    margin: 15px 1% 0;
    width: 98%;
}
.sidebar-column ul.menu li ul.sub-menu li.menu-item {
    padding: 3px 0 8px;
    line-height: 1.3;
    margin: 5px 0 0 36px;
}
.sidebar-column ul.menu li ul.sub-menu li.menu-item a {
    color: #fff;
}
.sidebar-column ul.menu li ul.sub-menu li.menu-item:before {
    content: ">>";
    display: inline-block;
    letter-spacing: -3px;
    margin-right: 8px;
    color: #676767;
    font-family: monospace;
}
.sidebar-column .ftrbx {
    border: 1px solid #434343;
    box-sizing: border-box;
    padding: 4% 3% 5% 3%;
    margin-bottom: 16px;
}
p.company {
    margin-bottom: 5px;
}
p.address {
    font-size: 85%;
    margin-bottom: 0px;
}
#sidebar-footer .sidebar-column p.tel {
    font-size: 85%;
    padding-top: 2px;
}
#sidebar-footer .sidebar-column p.tel a {
    font-size: 21px;
    font-family: Arial;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 0px;
    color: #aaa;
}
.sidebar-column p.map {
    width: 300px;
    height: 140px;
    margin-top: 8px;
}
ul.ftlnk {
    font-size: 14px;
    display: inline-block;
    vertical-align: top;
    margin: 0 1%;
    width: 100%;
}
ul.ftlnk a {
    color: #fff;
    font-size: 90%;
}
ul.ftlnk li {
    padding: 3px 0 8px;
    line-height: 1.3;
    margin-left: 36px;
}
ul.ftlnk li:before {
    content: ">>";
    display: inline-block;
    letter-spacing: -3px;
    margin-right: 8px;
    color: #676767;
    font-family: monospace;
}
footer.site-footer {
    margin-top: -95px;
    background-color: transparent;
}
.copyright {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 14px;
    color: #c3c3c3;
    text-transform: none;
    font-size: 75%;
    font-weight: lighter;
    letter-spacing: 1px;
    clear: both;
}
/*#pagetop {
    bottom: 10px;
    margin-bottom: 50px !important;
    position: fixed;
    right: 15px;
    width: 85px;
}
#pagetop img {
    width: 100%;
}*/
.go-top {
    background-color: rgba(100, 100, 100, 0.5);
}
.go-top .sydney-svg-icon {
    width: 30px;
    height: 30px;
}
@media screen and (max-width: 1000px) {
    #sidebar-footer.footer-widgets {
        background-size: auto 100%;
    }
    .footer-widgets-grid {
        display: block;
    }
    .footer-widgets .container {
        width: 100%;
    }
    .sidebar-column {
        width: 80%;
        margin: 25px auto;
    }
    .footer-widgets .textwidget {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .sidebar-column p.map {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    p.ftlogo br {
        display: block;
    }
}
@media screen and (max-width: 600px) {
    .custom-html-widget section.lnk2bx ul.lnk-list li {
        min-width: 90%;
    }
}
@media screen and (max-width: 480px) {
    .copyright {
        font-size: 10px;
        letter-spacing: 0;
    }
}


/*----------------------------------
  table
------------------------------------*/
.content-block .img_l div.table {
    width: 50%;
    text-align: left;
}
div.table_wrap {
    overflow: scroll;
    overflow-y: unset;
}
table.table_product {
    border-collapse: collapse;
    margin: 35px auto 40px;
    max-width: 1000px;
    font-size: 90%;
    width: 100%;
}
.content-block .img_l div.table table.table_product {
    width: 100%;
    text-align: left;
    margin: 0 auto 15px;
}
table.table_product th {
    background-color: #fff3d9;
    border: 1px solid #ccc;
    font-weight: normal;
    line-height: 1.3;
    padding: 16px 5px 13px 5px;
    vertical-align: middle;
    width: 40%;
    text-align: center;
    word-break: initial;
}
table.table_product td {
    border: 1px solid #ccc;
    padding: 13px 3px;
    vertical-align: middle;
    word-break: initial;
    width: 40%;
    text-align: center;
}
table.table_product th:first-child {
    width: 20%;
}
table.table_product.table_w th, table.table_product.table_w td, table.table_product.table_w th:first-child {
    width: auto;
    white-space: nowrap;
}
table.table_product th.b_back {
    background-color: #e6eff8;
}
table.table_product td.b_back {
    background-color: #e6eff8;
    width: 20%;
}
table.table_product td.nowrap {
    white-space: nowrap;
}

@media screen and (max-width: 991px) {
  table {
    width: 770px;
  }
}
@media screen and (max-width: 767px) {
  table {
    width: 96%;
  }
  .content-block .img_l div.table {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  table.table_product th {
    padding: 6px 3px 6px 3px;
  }
  .content-block .img_l div.table {
    width: 100%;
  }
}
.lnk_contact {
  background-color: #8e8e8e;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.3;
  clear: both;
  float: left;
  margin: 15px auto 10px;
  padding: 9px 2.5% 9px 4%;
  width: 93.5%;
}
.lnk_contact img {
  margin-left: 25px;
  vertical-align: middle;
}

p.style_itv {
  border-left: 7px solid #afd2d8;
  padding-left: 15px;
  font-size: 21px;
  letter-spacing: 2px;
  color: #98b2b4;
  margin-top: 35px;
}
p.style_itv_idx {
  font-size: 43px;
  letter-spacing: 1px;
  color: #5d86bb;
  margin-top: 37px;
  text-align: center;
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN";
  font-weight: bold;
  margin-bottom: 0;
}
.mt0 {
  margin-top: 0px;
}
.mt10 {
  margin-top: 10px;
}
.mt25 {
  margin-top: 25px;
}
.mt55 {
  margin-top: 55px;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb45 {
  margin-bottom: 45px !important;
}
.ofcwk {
  border-bottom: 1px dotted #ccc;
  clear: both;
  float: left;
  margin-bottom: 25px;
  padding-bottom: 22px;
  width: 100%;
}
.ofcwk img {
  float: right;
}
.ofcwk p {
  width: 50%;
}


/* contact */
input, select, textarea {
  padding: 6px 8px;
  font-size: 100%;
  margin: 3px 0;
}
.submit {
  text-align: center;
}
div.content_form {
  width: 80%;
  margin: 0 auto;
}
form {
  width: 100%;
}
input.sub_btn, p a.sub_btn {
  background-color: #ffc7c7;
  border: 1px solid #eee;
  border-radius: 6px;
  color: #444;
  font-size: 100%;
  margin: 0 1%;
  padding: 12px 19px 11px;
}
input.sub_btn:hover, p a.sub_btn:hover {
  background-color: #ff9595;
  color: #fff;
  cursor: pointer;
}
input.sub_btn[type="button"] {
  background-color: #ccc;
}
input.sub_btn[type="button"]:hover {
  background-color: #777;
}
input.txt_btn {
  background-color: #e3e3e3;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  color: #444;
  padding: 5px 19px;
  margin: 0 1%;
}
input.txt_btn:hover {
  background-color: #d8d8d8;
  color: #fff;
}
input.txt, textarea {
  width: 75%;
}
input.w35p {
  width: 35%;
  margin-left: 4px;
}
input.w20p {
  width: 20%;
}
input[type="checkbox"] {
    margin: -1px 4px 0 -16px;
}
/*---- ボタン ----*/
p.txt_link, div.linkBtn {
    text-align: center;
}
p.txt_link a, div.linkBtn a {
    background-color: #d75e5f;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    display: inline-block;
    margin: 18px 10px;
    min-width: 195px;
    border: 2px solid #d75e5f;
    font-size: 105%;
    font-weight: 400;
}
p.txt_link a:after, div.linkBtn a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f101";
    position: relative;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    margin: -4px -15px 0 15px;
    display: inline-block;
    vertical-align: middle;
}
p.txt_link.left {
    text-align: left;
}
p.txt_link a:hover, div.linkBtn a:hover {
    background-color: #fff;
    color: #d75e5f;
    text-decoration: none;
    transition: all 300ms ease-in-out 0s;
}
p.txt_link a:hover:after {
    color: #d75e5f;
    transition: all 300ms ease-in-out 0s;
}
@media screen and (max-width: 767px) {
  input.w20p {
    width: 50%;
  }
}
.ft85 {
  font-size: 85%;
}
.ft130 {
  font-size: 130%;
  font-weight: bold;
}
span.red {
  color: red;
  font-size: 75%;
}
p.error_messe {
  padding-top: 2px;
  padding-bottom: 2px;
  border: 1px solid #f00;
  color: #f00;
}
.content-block.product video {
  width: 100%;
  margin: 10px auto 20px;
}
.content-block ul.list_dl {
    margin: 30px auto 50px;
}
.content-block ul.list_dl li {
    font-size: 120%;
    border-bottom: 2px dotted #ccc;
    padding-bottom: 8px;
}
@media screen and (min-width: 1190px) {
  body {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  body {
    width: 100%;
  }
  .main {
    width: 100%;
  }
  .content_idx .idx_logo {
    width: 100%;
  }
  .contentlst {
  }
  .product .productinbx {
    width: 100%;
  }
  .product .thumbnail {
    width: 31.4%;
    margin: 25px 0.8% 0;
  }
  .content_idx .idx_copy {
    width: 100%;
  }
  .content_idx .idx_copy h1.idxh1 {
    font-size: 27px;
    width: 96%;
    margin: 30px 2% 15px;
  }
  .content {
    margin-left: 3%;
    width: 92%;
  }
  .content_txt_l {
    width: 50%;
  }
  .contentlst .thumbnail {
    margin: 28px 0 0 0;
    width: 50%;
  }
  .contentlst .thumbnail img {
    width: 100%;
  }
  .contentlst .thumbnail h3 {
    font-size: 125%;
  }
  .contentlst .thumbnail p {
    width: 100%;
    font-size: 85%;
  }
  .contentlst .bnr_en {
    width: 64%;
  }
  .content_idx .news {
    width: 96%;
  }
  .contentlst .thumbnail h3 {
    font-size: 125%;
  }
  .contentlst .thumbnail p {
    width: 96%;
    font-size: 80%;
  }
  .rcrt .contentlst .thumbnail {
    height: 350px;
  }
  .rcrt .contentlst .thumbnail h3 {
    top: -222px;
  }
  .rcrt .contentlst .thumbnail p {
    top: -160px;
  }
  .rcrt .contentlst .thumbnail img {
    height: 96%;
    top: 137px;
  }
  .rcrt .contentlst .thumbnail br.br_sp {
    display: block;
  }
  .contentlst .cmp_bx_02 {
    background: rgba(255, 255, 255, 0.65) url(../img/cmp_top2.jpg) no-repeat 108% 55%;
  }
}
@media screen and (max-width: 767px) {
  .contentlst .thumbnail {
    margin: 28px 14% 0 14%;
    width: 72%;
    height: auto;
  }
  .contentlst .thumbnail img {
    height: 250px;
  }
  .contentlst .bnr_en {
    width: 85%;
  }
  .rcrt .contentlst .thumbnail br.br_sp {
    display: none;
  }
  .contentlst .thumbnail h3 {
    top: 0;
  }
  .contentlst .thumbnail p {
    font-size: 85%;
    top: 0;
  }
  .rcrt .contentlst .thumbnail p {
    width: 96%;
  }
  .rcrt .contentlst .thumbnail img {
    height: 104%;
  }
  .cmp .contentlst {
    width: 93%;
  }
  .content {
    margin-left: 4%;
    width: 92%;
  }
  .content p img {
    max-width: 90%;
  }
  div.content_form {
    width: 90%;
  }
  ul.ftlnk {
    margin: 25px 1%;
    width: 100%;
  }
  .product .thumbnail {
    width: 92%;
    margin: 20px 3.75% 0;
  }
  .product .thumbnail img {
    height: 250px;
    object-fit: cover;
  }
  .contentlst .cmp_bx {
    height: 175px;
  }
  .contentlst .cmp_bx p {
    width: 47%;
  }

}
@media screen and (max-width: 600px) {
  /* Iphone 5 landscape */
  header .header-wrap {
    width: 96%;
  }
  .main {
    padding-top: 44px;
  }
  div.main_copy {
    top: 16px;
  }
  div.main_copy h1 {
    font-size: 30px;
    line-height: 1.3;
  }
  div.main_copy h1 br.br_sp {
    display: block;
  }
  .content_bgidx {
    background-size: 100% auto;
  }
  .content_txt_l {
    width: 80%;
  }
  .contentlst {
  }
  .contentlst .thumbnail {
    margin: 28px auto 0;
    width: 78%;
  }
  .rcrt .contentlst .thumbnail {
    width: 78%;
  }
  .contentlst .bnr_en {
    width: 90%;
  }
  .contentlst .thumbnail p {
    width: 96%;
  }
  div.content_form {
    width: 98%;
  }

}
@media screen and (max-width: 480px) {
  .contentlst .bnr_en {
    width: 72%;
    padding-left: 22%;
    font-size: 75%;
  }
  .contentlst .bnr_en span {
    display: block;
  }
  .content_idx .news ul.news-list span {
    display: inline-block;
    margin-bottom: 19px;
    line-height: 1.3;
    margin-left: 4%;
  }
  .content_idx .news ul.news-list p {
    width: 95%;
    margin-left: 4%;
    line-height: 1.3;
  }
  .contentlst .thumbnail {
    width: 93%;
  }
  .rcrt .contentlst .thumbnail img {
    height: 95%;
  }
  .contentlst .cmp_bx h3 {
    text-align: center;
    padding: 30px 3% 5px;
  }
  .contentlst .cmp_bx p {
    padding: 0px 3% 5px;
  }
  .contentlst .cmp_bx_01 {
    background: url(../img/cmp_top1sp.jpg) no-repeat 102% 17%;
  }
  .contentlst .cmp_bx_02 {
    background: url(../img/cmp_top2sp.jpg) no-repeat 140% 17%;
  }
  .kanrenwk div.btnbx {
    width: 80%;
  }
  .content p img {
    max-width: 100%;
  }
  .content p img.w80p {
    width: 100%;
  }
  input.txt, textarea {
    width: 95%;
  }
  .sidebar-column p.map {
    width: 84%;
  }
  p.map iframe {
    width: 100%;
  }
}
