@charset "utf-8";
/*##################################################
 *HTMLreset(参考：Eric Mayer's Reset CSS 2.0) */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%; /* 16px */
  vertical-align: baseline;
}
/*パディングとボーダーを幅と高さに含める設定*/
*, *::before, *::after {
  box-sizing: border-box;
}
/*##################################################
 *common*/
body {
  /*基本設定*/
  -webkit-text-size-adjust: 100%; /*スマホの縦横に関わらず文字サイズ固定*/
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 20px;
  line-height: 2;
  text-align: center;
  width: 100%;
  text-shadow: none;
  /* 個別設定 */
  color: #5d3719;
  background-color: #e6e1d4;
  min-width: 1104px; /*レスポンシブ時の右側の余白を解消（1024px+80px）*/
}
img {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}
p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
a {
  text-decoration: none;
  color: #339966;
  transition: all 0.3s;
}
a:hover {
  text-decoration: underline;
  color: #339966;
}
a img {
  transition: opacity 0.3s;
}
a:hover img {
  opacity: 0.7;
}
a[target=_blank]::after {
  content: '\e89e';
  font-family: "Material Icons Round";
  margin-left: 4px;
  display: inline-block;
  vertical-align: -2px;
}
a.after-icon-none[target=_blank]::after {
  content: none;
}
ol, ul {
  list-style: none;
  font-size: 0;
}
li {
  font-size: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}
table tr th, table tr td {
  padding: 0px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
form ::placeholder {
  color: #bbb;
}
input {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 1em;
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
}
input[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  height: 16px;
  width: 16px;
  position: relative;
  top: -1px;
  margin-right: 22px;
  border: none;
  cursor: pointer;
}
input[type="checkbox"]::before, input[type="checkbox"]::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.2s ease-in-out;
}
input[type="checkbox"]::before {
  background-color: #fff;
  border-radius: 4px;
  border: 2px solid #e6e1d4;
  width: 28px; /*チェックボックスの横幅*/
  height: 28px; /*チェックボックスの縦幅*/
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}
input[type="checkbox"]::after {
  border-bottom: 3px solid #fff; /*チェックの太さ*/
  border-left: 3px solid #fff; /*チェックの太さ*/
  opacity: 0; /*チェック前は非表示*/
  height: 8px; /*チェックの高さ*/
  width: 18px; /*チェックの横幅*/
  transform: rotate(-45deg);
  top: -4px; /*チェック時の位置調整*/
  bottom: 0; /*チェック時の位置調整*/
  left: 5px; /*チェック時の位置調整*/
  margin: auto; /*チェック時の位置調整*/
}
input[type="checkbox"]:checked::before {
  border-color: #67b785; /*チェック後表示*/
  background-color: #67b785; /*チェック後表示*/
}
input[type="checkbox"]:checked::after {
  opacity: 1; /*チェック後表示*/
}
input[type="checkbox"]:checked + span {
  color: #339966;
}
input[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
  height: 16px;
  width: 16px;
  position: relative;
  top: -1px;
  margin-right: 16px;
  border: none;
  cursor: pointer;
}
input[type="radio"]::before, input[type="radio"]::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.2s;
}
input[type="radio"]::before {
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #e6e1d4;
  width: 24px; /*ラジオボタンの横幅*/
  height: 24px; /*ラジオボタンの縦幅*/
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}
input[type="radio"]::after {
  background: #67b785; /*中丸の色*/
  border-radius: 50%;
  opacity: 0; /*チェック前は非表示*/
  height: 16px; /*中丸の高さ*/
  width: 16px; /*中丸の横幅*/
  transform: translateY(-50%); /*チェック時の位置調整*/
  top: 50%; /*チェック時の位置調整*/
  left: 4px; /*チェック時の位置調整*/
}
input[type="radio"]:checked::before {
  border-color: #67b785; /*チェック後表示*/
  background-color: #fff; /*チェック後表示*/
}
input[type="radio"]:checked::after {
  opacity: 1; /*チェック後表示*/
}
input[type="radio"]:checked + span {
  color: #339966;
}
input[type="submit"] {
  cursor: pointer;
}
input[type="button"] {
  cursor: pointer;
}
input[type="reset"] {
  cursor: pointer;
}
input[type="text"] {
  color: #5d3719;
  background-color: #fcfbf9;
  border: 2px solid #e6e1d4;
  border-radius: 8px;
}
input[type="text"]:focus {
  border-color: #67b785;
}
textarea {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 1em;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  background-color: #fcfbf9;
  border: 2px solid #e6e1d4;
  border-radius: 8px;
}
textarea:focus {
  border-color: #67b785;
}
button {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 1em;
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  cursor: pointer;
}
button:active, button:focus, button:active > span, button:focus > span {
  position: relative;
}
label {
  cursor: pointer;
}
iframe {
  vertical-align: bottom;
}
hr {
  display: block;
  height: 2px;
  background-color: #e6e1d4;
  border: 0; /*念のため*/
  margin: 64px 0px 64px 0px;
}
sup {
  font-size: 60%;
  vertical-align: top;
}
sub {
  font-size: 60%;
  vertical-align: bottom;
}
.select-wrap {
  position: relative;
}
.select-wrap:after {
  content: "";
  position: absolute;
  right: 20px;
  top: auto;
  width: 20px;
  height: 20px;
  border-top: 3px solid #e0dbcb;
  border-left: 3px solid #e0dbcb;
  transform: translateY(-50%) rotate(-135deg);
  pointer-events: none;
}
.select-wrap select {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 1em;
  color: #5d3719;
  background-color: #fcfbf9;
  border: 2px solid #e6e1d4;
  border-radius: 8px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  cursor: pointer;
}
.select-wrap select:focus {
  border-color: #67b785;
}
.select-wrap select::-ms-expand {
  display: none;
}
.clearfix {
  overflow: hidden;
  zoom: 1;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.br {
  display: inline;
}
.br_sp {
  display: none;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.note {
  font-size: 16px !important;
  line-height: 28px !important;
}
.marker {
  font-weight: bold;
  background: linear-gradient(transparent 80%, #e6e1d4 80%);
  margin: 0 1px 0 1px;
  padding: 0 1px 0 1px;
}
.anchor-point {
  margin-top: -120px !important;
  padding-top: 120px !important;
}
.cont-title, .cate-title, .page-title {
  font-size: 36px;
  font-weight: bold;
  line-height: 88px;
  height: 88px;
  color: #5d3719;
  margin: 0 0 24px 0;
  padding: 2px 0 0 0;
  overflow: hidden;
}
.cont-title span, .cate-title span, .page-title span {
  display: block;
  float: left;
  width: 87px;
  height: 88px;
  border-radius: 44px;
  line-height: 88px;
  text-align: center;
  margin: -2px 20px 0 0;
  padding: 0 20px 0 20px;
}
.cont-title span::before, .cate-title span::before, .page-title span::before {
  font-family: "Material Icons Round";
  display: block;
  font-size: 48px;
  font-weight: normal;
  color: #fff;
}
.cont-title span.title-icon-corporation, .cate-title span.title-icon-corporation, .page-title span.title-icon-corporation {
  background-color: #9bb867;
}
.cont-title span.title-icon-corporation::before, .cate-title span.title-icon-corporation::before, .page-title span.title-icon-corporation::before {
  content: '\e8d0';
}
.cont-title span.title-icon-facility, .cate-title span.title-icon-facility, .page-title span.title-icon-facility {
  background-color: #e3b94b;
}
.cont-title span.title-icon-facility::before, .cate-title span.title-icon-facility::before, .page-title span.title-icon-facility::before {
  content: '\e87d';
}
.cont-title span.title-icon-recruit, .cate-title span.title-icon-recruit, .page-title span.title-icon-recruit {
  background-color: #e39962;
}
.cont-title span.title-icon-recruit::before, .cate-title span.title-icon-recruit::before, .page-title span.title-icon-recruit::before {
  content: '\e87c';
}
.cont-title span.title-icon-access, .cate-title span.title-icon-access, .page-title span.title-icon-access {
  background-color: #6e8dae;
}
.cont-title span.title-icon-access::before, .cate-title span.title-icon-access::before, .page-title span.title-icon-access::before {
  content: '\e55e';
}
.cont-title span.title-icon-news, .cate-title span.title-icon-news, .page-title span.title-icon-news {
  background-color: #6bb0ba;
}
.cont-title span.title-icon-news::before, .cate-title span.title-icon-news::before, .page-title span.title-icon-news::before {
  content: '\e153';
}
.cont-title span.title-icon-contact, .cate-title span.title-icon-contact, .page-title span.title-icon-contact {
  background-color: #a46bac;
}
.cont-title span.title-icon-contact::before, .cate-title span.title-icon-contact::before, .page-title span.title-icon-contact::before {
  content: '\e158';
}
.cont-title span.title-icon-privacy, .cate-title span.title-icon-privacy, .page-title span.title-icon-privacy, .cont-title span.title-icon-404, .cate-title span.title-icon-404, .page-title span.title-icon-404 {
  background-color: #67b785;
}
.cont-title span.title-icon-privacy::before, .cate-title span.title-icon-privacy::before, .page-title span.title-icon-privacy::before {
  content: '\e897';
}
.cont-title span.title-icon-404::before, .cate-title span.title-icon-404::before, .page-title span.title-icon-404::before {
  content: '\e645';
}
.page-title sub {
  display: block;
  font-size: 20px !important;
  font-weight: bold;
  line-height: 24px;
  padding: 16px 0 0 0;
}
.title-center {
  line-height: 64px;
  height: auto !important;
  position: relative;
  padding: 96px 0 0 0;
  text-align: center;
}
.title-center span {
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
}
.shoulder-name {
  font-size: 70%;
}
.btn_link1 a, .btn_link1-tb a {
  width: 100%;
  font-weight: bold;
  line-height: 50px;
  text-align: left;
  display: block;
  padding: 2px 0 0 24px !important;
  background-color: #fff;
  border: solid 2px;
  border-radius: 28px;
  position: relative;
}
.btn_link1 a::after, .btn_link1-tb a::after {
  content: '\e5c8';
  font-family: "Material Icons Round";
  font-size: 24px;
  font-weight: normal;
  display: inline-block;
  position: absolute;
  top: 1px;
  right: 20px;
}
.btn_link1 a::after {
  content: '\e5c8';
}
.btn_link1-tb a::after {
  content: '\e89e';
}
.btn_link1 a:hover, .btn_link1-tb a:hover {
  color: #fff !important;
  text-decoration: none;
}
.btn_link2 {
  width: 240px;
  margin: 0 auto 0 auto;
}
.btn_link2 a {
  width: 100%;
  font-weight: bold;
  line-height: 60px;
  color: #fff;
  text-align: center;
  display: block;
  padding: 2px 8px 0 8px;
  background-color: #67b785;
  border-radius: 32px;
}
.btn_link2 a span {
  font-weight: bold;
}
.btn_link2 a span::after {
  content: '\e5c8';
  font-family: "Material Icons Round";
  font-size: 24px;
  font-weight: normal;
  display: inline-block;
  vertical-align: -5px;
  margin: 0 0 0 4px;
}
.btn_link2 a:hover {
  text-decoration: none;
  background-color: #339966;
}
.color_corporation a {
  color: #9bb867;
  border-color: #9bb867;
}
.color_corporation a:hover {
  background-color: #9bb867;
}
.color_facility a {
  color: #d9af42;
  border-color: #e3b94b;
}
.color_facility a:hover {
  background-color: #e3b94b;
}
.color_recruit a {
  color: #e39962;
  border-color: #e39962;
}
.color_recruit a:hover {
  background-color: #e39962;
}
.color_news a {
  color: #6bb0ba;
  border-color: #6bb0ba;
}
.color_news a:hover {
  background-color: #6bb0ba;
}
span.new::after {
  content: '\e05e';
  font-family: "Material Icons Round";
  font-size: 32px;
  line-height: 32px;
  color: #fe78ab;
  margin: 0 4px 0 0;
  vertical-align: -8px;
}
/*768px以下*/
@media screen and (max-width: 768px) {
  body {
    min-width: initial; /* レスポンシブ時の右側の余白を解消するbodyのmin-widthをリセット */
    min-width: auto; /* レスポンシブ時の右側の余白を解消するbodyのmin-widthをリセット（IE用） */
    font-size: 18px;
    line-height: 1.8;
  }
  p {
    text-align: left;
  }
  a:hover {
    text-decoration: none;
  }
  a:hover img {
    opacity: 1;
  }
  li {
    font-size: 18px;
  }
  hr {
    margin: 40px 0px 40px 0px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .br {
    display: none;
  }
  .br_sp {
    display: inline;
  }
  .anchor-point {
    margin-top: -88px !important;
    padding-top: 88px !important;
  }
  .cont-title, .cate-title, .page-title {
    font-size: 28px;
    line-height: 64px;
    height: 64px;
    margin: 0 0 16px 0;
    padding: 0;
  }
  .cont-title span, .cate-title span, .page-title span {
    width: 63px;
    line-height: 64px;
    height: 64px;
    border-radius: 32px;
    margin: 0 8px 0 0;
    padding: 0;
  }
  .cont-title span::before, .cate-title span::before, .page-title span::before {
    font-size: 32px;
  }
  .page-title sub {
    font-size: 16px !important;
    padding: 8px 0 0 0;
  }
  .title-center {
    line-height: 56px;
    padding: 68px 0 0 0;
  }
  .title-center span {
    top: 0;
  }
  .btn_link1 a {
    padding-top: 0 !important;
  }
  .btn_link1 a::after {
    top: 0;
  }
  .btn_link2 a {
    padding-top: 0;
  }
  .btn_link2 a:hover {
    background-color: #67b785;
  }
  .btn_cta, .btn_call {
    width: auto;
    margin: 0 auto 0 auto;
  }
  .btn_cta a, .btn_call a {
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    line-height: 52px;
    color: #5d3719;
    background-color: #f4f1eb;
    border: solid 2px #e6e1d4;
    border-radius: 28px;
  }
  .btn_cta a::before, .btn_call a::before {
    font-family: "Material Icons Round";
    font-size: 36px;
    font-weight: normal;
    margin-right: 4px;
    margin-left: -8px;
    display: inline-block;
    vertical-align: middle;
  }
  .btn_cta a::before {
    content: '\eaaa';
  }
  .btn_call a::before {
    content: '\e8a8';
  }
  .color_corporation a:hover {
    color: #9bb867 !important;
    background-color: #fff;
  }
  .color_facility a:hover {
    color: #d9af42 !important;
    background-color: #fff;
  }
  .color_recruit a:hover {
    color: #e39962 !important;
    background-color: #fff;
  }
  .color_news a:hover {
    color: #6bb0ba !important;
    background-color: #fff;
  }
}
/*##################################################
 *wrap*/
#wrap {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
}
/*##################################################
 *header*/
#header {
  width: 100%;
  min-width: 1104px; /* レスポンシブ時の右側の余白解消の設定に合わせる */
  position: fixed;
  z-index: 1000;
  padding: 0 30px 0 30px;
}
#header .hbox_fix {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto 0 auto;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
#header .hbox_fix .sitename {
  width: 264px;
  padding: 4px 0 8px 6px;
  float: left;
  text-align: left;
}
#header .hbox_fix .sitename .logo {
  width: 248px;
}
#header .hbox_fix .sitename .logo img {
  width: 100%;
  height: auto;
}
#header .hbox_fix .sitename .logo a:hover img {
  opacity: 1;
}
#header .hbox_fix .btn_menu_sp {
  display: none;
}
#header .hbox_fix .gnav {
  float: right;
  width: calc(100% - 264px);
}
#header .hbox_fix .gnav a {
  font-weight: bold;
  display: block;
}
#header .hbox_fix .gnav a:hover {
  text-decoration: none;
}
#header .hbox_fix .gnav .primarynav {
  float: right;
  width: 100%;
}
#header .hbox_fix .gnav .primarynav ul {
  overflow: hidden;
}
#header .hbox_fix .gnav .primarynav ul li {
  float: left;
  font-size: 16px;
  font-weight: bold;
  line-height: 32px;
  width: calc(100% / 7);
  height: 100px;
  border-left: 1px solid #dcdcdc;
  border-bottom: 8px solid;
}
#header .hbox_fix .gnav .primarynav ul li a {
  padding: 18px 0 10px 0;
}
#header .hbox_fix .gnav .primarynav ul li a span {
  font-weight: bold;
}
#header .hbox_fix .gnav .primarynav ul li a span.icons::before {
  font-family: "Material Icons Round";
  display: block;
  font-size: 40px;
  font-weight: normal;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-home {
  border-bottom-color: #67b785;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-home a {
  color: #67b785;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-home a:hover {
  background-color: #f0f8f3;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-home a span.icons::before {
  content: '\e88a';
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-news {
  border-bottom-color: #6bb0ba;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-news a {
  color: #6bb0ba;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-news a:hover {
  background-color: #f1f8f9;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-news a span.icons::before {
  content: '\e153';
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-access {
  border-bottom-color: #6e8dae;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-access a {
  color: #6e8dae;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-access a:hover {
  background-color: #f1f4f8;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-access a span.icons::before {
  content: '\e55e';
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-contact {
  border-bottom-color: #a46bac;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-contact a {
  color: #a46bac;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-contact a:hover {
  background-color: #f7f1f8;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-contact a span.icons::before {
  content: '\e158';
}
#header .hbox_fix .gnav .primarynav ul li.dropdown span.dd-onclick {
  display: block;
  padding: 18px 0 10px 0;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}
#header .hbox_fix .gnav .primarynav ul li.dropdown span.dd-onclick::after {
  content: '\e5cf';
  font-family: "Material Icons Round";
  font-size: 24px;
  font-weight: normal;
  display: inline-block;
  vertical-align: middle;
}
#header .hbox_fix .gnav .primarynav ul li.dropdown span.icons {
  font-weight: bold;
}
#header .hbox_fix .gnav .primarynav ul li.dropdown span.icons::before {
  font-family: "Material Icons Round";
  display: block;
  font-size: 40px;
  font-weight: normal;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-corporation {
  color: #9bb867;
  border-bottom-color: #9bb867;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-corporation span.dd-onclick:hover {
  background-color: #f6f9f1;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-corporation span.icons::before {
  content: '\e8d0';
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-facility {
  color: #d9af42;
  border-bottom-color: #e3b94b;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-facility span.dd-onclick:hover {
  background-color: #fdfaf0;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-facility span.icons::before {
  content: '\e87d';
  color: #e3b94b;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-recruit {
  color: #e39962;
  border-bottom-color: #e39962;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-recruit span.dd-onclick:hover {
  background-color: #fdf6f0;
}
#header .hbox_fix .gnav .primarynav ul li.btn_menu-recruit span.icons::before {
  content: '\e87c';
}
#header .hbox_fix .gnav .primarynav ul li.dropdown .layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 116px 30px 0 30px;
  display: none;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
  backdrop-filter: blur(3px);
}
#header .hbox_fix .gnav .primarynav ul li.dropdown .secondarynav {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto 0 auto;
  padding: 32px 32px 40px 32px;
  background-color: rgba(255, 255, 255, 0.96);
  border-radius: 32px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
#header .hbox_fix .gnav .primarynav ul li.dropdown .secondarynav .catebox {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto 0 auto;
  overflow: hidden;
}
#header .hbox_fix .gnav .primarynav ul li.dropdown .secondarynav .catebox .cate-title {
  float: left;
}
#header .hbox_fix .gnav .primarynav ul li.dropdown .secondarynav .catebox .cate-close {
  float: right;
}
#header .hbox_fix .gnav .primarynav ul li.dropdown .secondarynav .catebox .cate-close span {
  font-size: 18px;
  line-height: 88px;
  color: #5d3719;
  padding: 2px 0 0 0;
  cursor: pointer;
  transition: all 0.3s;
}
#header .hbox_fix .gnav .primarynav ul li.dropdown .secondarynav .catebox .cate-close span::before {
  content: '\e5cd';
  font-family: "Material Icons Round";
  font-size: 20px;
  margin-right: 4px;
  vertical-align: -4px;
}
#header .hbox_fix .gnav .primarynav ul li.dropdown .secondarynav .catebox .cate-close span:hover {
  color: #339966;
}
#header .hbox_fix .gnav .primarynav ul li.dropdown .secondarynav .catebox ul {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#header .hbox_fix .gnav .primarynav ul li.dropdown .secondarynav .catebox ul::after {
  content: "";
  display: block;
  width: calc((100% - 64px) / 3);
  max-width: 320px;
}
#header .hbox_fix .gnav .primarynav ul li.dropdown .secondarynav .catebox ul li {
  font-size: 20px;
  width: calc((100% - 64px) / 3);
  max-width: 320px;
  height: auto !important;
  margin: 0 0 16px 0;
  padding: 0;
  position: relative;
  border: none;
}
#header .hbox_fix .gnav .primarynav ul li.dropdown .secondarynav .catebox ul li a {
  padding: 0;
}
#header .hbox_fix .gnav .primarynav ul li.dropdown_sp {
  display: none;
}
#header .hbox_fix .gnav .primarynav .cta-contact_sp {
  display: none;
}
/* 12801px以下 */
@media screen and (max-width: 1280px) {
  #header .hbox_fix .gnav .primarynav ul li {
    font-size: 15px;
  }
}
/* 768px以下 */
@media screen and (max-width: 768px) {
  #header {
    min-width: initial;
    min-width: auto;
    padding: 0;
  }
  #header .hbox_fix {
    max-width: inherit;
    background-color: #fff;
    border-radius: 0;
  }
  #header .hbox_fix .sitename {
    width: 193px;
    padding: 1px 0 7px 13px;
  }
  #header .hbox_fix .sitename .logo {
    width: 100%;
  }
  #header .hbox_fix .btn_menu_sp {
    display: block;
    float: right;
  }
  #header .hbox_fix .btn_menu_sp a {
    display: block;
    width: 80px;
    height: 72px;
    font-size: 14px;
    font-weight: bold;
    line-height: 26px;
    color: #5d3719;
    padding: 12px 0 0 0;
  }
  #header .hbox_fix .btn_menu_sp a::before {
    content: '\e5d2';
    font-family: "Material Icons Round";
    font-size: 32px;
    font-weight: normal;
    display: block;
  }
  #header .hbox_fix .gnav {
    display: none;
    float: none;
    width: 100%;
    height: auto;
    padding: 0 0 80px 0;
    border-top: 2px solid #e6e1d4;
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE,Edgeでスクロールバーを消す */
    scrollbar-width: none; /* Firefoxでスクロールバーを消す */
    height: calc(100vh - 72px); /* メニュー部分の高さを決める */
  }
  #header .hbox_fix .gnav::-webkit-scrollbar { /* Chrome,Safariでスクロールバーを消す */
    display: none;
  }
  #header .hbox_fix .gnav .primarynav {
    float: none;
  }
  #header .hbox_fix .gnav .primarynav ul {
    width: auto;
    clear: both;
    margin-top: 0;
  }
  #header .hbox_fix .gnav .primarynav ul li {
    float: none;
    font-size: 18px;
    line-height: 56px;
    width: auto;
    height: auto;
    border-left: none;
    border-bottom: 2px solid #e6e1d4;
    text-align: left;
    position: relative;
  }
  #header .hbox_fix .gnav .primarynav ul li a {
    line-height: 56px;
    height: 56px;
    padding: 0 0 0 14px;
  }
  #header .hbox_fix .gnav .primarynav ul li a span.icons::before, #header .hbox_fix .gnav .primarynav ul li span.icons::before {
    font-family: "Material Icons Round";
    display: inline-block;
    font-size: 28px;
    line-height: 56px;
    font-weight: normal;
    margin: -3px 6px 0 0;
    vertical-align: middle;
  }
  #header .hbox_fix .gnav .primarynav ul li.btn_menu-home, #header .hbox_fix .gnav .primarynav ul li.btn_menu-news, #header .hbox_fix .gnav .primarynav ul li.btn_menu-access {
    border-bottom-color: #e6e1d4;
  }
  #header .hbox_fix .gnav .primarynav ul li.btn_menu-contact {
    display: none;
  }
  #header .hbox_fix .gnav .primarynav ul li.btn_menu-home a:hover, #header .hbox_fix .gnav .primarynav ul li.btn_menu-news a:hover, #header .hbox_fix .gnav .primarynav ul li.btn_menu-access a:hover {
    background-color: #fff;
  }
  #header .hbox_fix .gnav .primarynav ul li.btn_menu-home a::after, #header .hbox_fix .gnav .primarynav ul li.btn_menu-news a::after, #header .hbox_fix .gnav .primarynav ul li.btn_menu-access a::after {
    content: '\e5c8';
    font-family: "Material Icons Round";
    font-size: 24px;
    font-weight: normal;
    display: inline-block;
    position: absolute;
    right: 30px;
  }
  #header .hbox_fix .gnav .primarynav ul li.btn_menu-corporation_sp, #header .hbox_fix .gnav .primarynav ul li.btn_menu-corporation_sp .secondarynav ul li a {
    color: #9bb867;
  }
  #header .hbox_fix .gnav .primarynav ul li.btn_menu-corporation_sp span.icons::before {
    content: '\e8d0';
  }
  #header .hbox_fix .gnav .primarynav ul li.btn_menu-facility_sp, #header .hbox_fix .gnav .primarynav ul li.btn_menu-facility_sp .secondarynav ul li a {
    color: #d9af42;
  }
  #header .hbox_fix .gnav .primarynav ul li.btn_menu-facility_sp span.icons::before {
    content: '\e87d';
    color: #e3b94b;
  }
  #header .hbox_fix .gnav .primarynav ul li.btn_menu-recruit_sp, #header .hbox_fix .gnav .primarynav ul li.btn_menu-recruit_sp .secondarynav ul li a {
    color: #e39962;
  }
  #header .hbox_fix .gnav .primarynav ul li.btn_menu-recruit_sp span.icons::before {
    content: '\e87c';
  }
  #header .hbox_fix .gnav .primarynav ul li.btn_menu-corporation_sp span.icons, #header .hbox_fix .gnav .primarynav ul li.btn_menu-facility_sp span.icons, #header .hbox_fix .gnav .primarynav ul li.btn_menu-recruit_sp span.icons {
    font-weight: bold;
  }
  #header .hbox_fix .gnav .primarynav ul li.dropdown {
    display: none;
  }
  #header .hbox_fix .gnav .primarynav ul li.dropdown_sp {
    display: block;
  }
  #header .hbox_fix .gnav .primarynav ul li.dropdown_sp span.dd-onclick {
    padding: 0 0 0 16px;
    font-weight: bold;
    line-height: 56px;
    height: 56px;
    display: block;
    cursor: pointer;
    position: relative;
  }
  #header .hbox_fix .gnav .primarynav ul li.dropdown_sp span.dd-onclick::after {
    content: '\e5cf';
    font-family: "Material Icons Round";
    font-size: 24px;
    font-weight: normal;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    right: 30px;
  }
  #header .hbox_fix .gnav .primarynav ul li.dropdown_sp .secondarynav {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 0 16px 0;
    width: 100%;
    display: none;
  }
  #header .hbox_fix .gnav .primarynav ul li.dropdown_sp .secondarynav ul li {
    border-bottom: none;
  }
  #header .hbox_fix .gnav .primarynav ul li.dropdown_sp .secondarynav ul li a {
    line-height: 40px;
    height: 40px;
    padding: 0 0 0 50px;
  }
  #header .hbox_fix .gnav .primarynav ul li.dropdown_sp .secondarynav ul li a::after {
    content: '\e5c8';
    font-family: "Material Icons Round";
    font-size: 24px;
    font-weight: normal;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    right: 30px;
  }
  #header .hbox_fix .gnav .primarynav ul li.dropdown_sp .secondarynav ul li a[target=_blank]::after {
    content: '\e89e' !important;
  }
  #header .hbox_fix .gnav .primarynav .cta-contact_sp {
    display: block;
    padding: 0 0 80px 0;
  }
  #header .hbox_fix .gnav .primarynav .cta-contact_sp .menu-contact {
    font-size: 18px;
    font-weight: bold;
    line-height: 56px;
    color: #a46bac;
    text-align: left;
    height: 56px;
    padding: 0 0 0 14px;
  }
  #header .hbox_fix .gnav .primarynav .cta-contact_sp .menu-contact span {
    font-weight: bold;
  }
  #header .hbox_fix .gnav .primarynav .cta-contact_sp .menu-contact span.icons::before {
    content: '\e158';
    font-family: "Material Icons Round";
    display: inline-block;
    font-size: 28px;
    line-height: 56px;
    font-weight: normal;
    margin: -3px 6px 0 0;
    vertical-align: middle;
  }
  #header .hbox_fix .gnav .primarynav .cta-contact_sp .btn_cta, #header .hbox_fix .gnav .primarynav .cta-contact_sp .btn_call {
    margin: 0 16px 8px 16px !important;
  }
}
/*##################################################
 *content */
#content {
  width: 100%;
  overflow: hidden;
  padding: 0 0 8px 0;
}
#content .cbox_pagehead {
  width: 100%;
  background-color: #f4f1eb;
}
#content .cbox_pagehead .pagefigu img {
  width: 100%;
  height: auto
}
#content .cbox_pagehead h1 {
  margin: -44px 0 36px 0;
}
#content .cbox_pagehead h1 span.shoulder-name {
  font-weight: bold;
  display: inline !important;
  float: none;
  width: auto;
  height: auto;
  border-radius: 0;
  line-height: inherit;
  margin: 0;
  padding: 0;
}
#content .cbox_pagehead .title-center span.shoulder-name {
  position: static;
}
#content .cbox_pagehead .breadcrumb {
  width: auto;
  text-align: left;
  padding: 8px 30px 0 30px;
  background-color: #fff;
}
#content .cbox_pagehead .breadcrumb ul li {
  font-size: 16px;
  line-height: 32px;
  color: #5d3719;
  margin-right: 8px;
  display: inline-block;
  /* はみ出したテキストの省略設定 */
  max-width: 20%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#content .cbox_pagehead .breadcrumb ul li:last-child {
  margin-right: 0px;
}
#content .cbox_pagehead .breadcrumb ul li a {
  color: #339966;
}
#content .cbox_pagehead .breadcrumb ul li a:hover {
  color: #339966;
}
#content .cbox_pagehead .breadcrumb ul li a::after {
  content: '\e5e1';
  font-family: "Material Icons Round";
  color: #5d3719;
  margin-left: 8px;
  display: inline-block;
  vertical-align: -2px;
}
#content .cbox_pagehead .breadcrumb ul li br {
  display: none;
}
#content .cbox_pagehead .breadcrumb ul li.icon_home span {
  font-size: 24px;
  vertical-align: -5px;
}
#content .cbox_wrap1 {
  width: 100%;
  padding: 88px 0 96px 0;
}
#content .cbox_wrap2 {
  width: 100%;
  padding: 88px 0 96px 0;
  background-color: #f4f1eb;
}
#content .cbox_wrap3 {
  width: 100%;
  padding: 63px 0 96px 0;
}
#content .cbox_layout1 {
  width: 1024px;
  margin: 0 auto 0 auto;
}
#content .cbox_layout2 {
  width: 880px;
  margin: 0 auto 0 auto;
}
#content .cbox_layout3 {
  width: 100%;
  margin: 0 auto 0 auto;
}
#content .cbox_nav {
  width: 100%;
  margin: 0 auto 0 auto;
  padding: 0 0 36px 0;
  border-bottom: 4px dotted #e6e1d4;
}
#content .cbox_nav .anchor-list {
  width: 100%;
  max-width: 1024px;
  height: 62px;
  margin: 0 auto 0 auto;
}
#content .cbox_nav .anchor-list ul {
  overflow: hidden;
  display: inline-block;
}
#content .cbox_nav .anchor-list ul li {
  line-height: 40px;
  float: left;
  margin: 0 10px 0 10px;
}
#content .cbox_nav .anchor-list ul li a {
  display: block;
  font-weight: bold;
  color: #5d3719;
  text-align: left;
  padding: 8px 16px 8px 4px;
  text-decoration: none;
  border-radius: 16px;
}
#content .cbox_nav .anchor-list ul li a::before {
  content: '\e258';
  font-family: "Material Icons Round";
  font-size: 32px;
  font-weight: normal;
  color: #cbc0aa;
  margin-right: 8px;
  display: inline-block;
  vertical-align: -6px;
}
#content .cbox_nav .anchor-list ul li a:hover {
  background-color: #f4f1eb;
  border-radius: 16px;
}
#content .cbox_nav .menu_facility ul li a::before {
  color: #e3b94b;
}
#content .cbox_nav .menu_facility ul li a:hover {
  background-color: #fdfaf0;
  color: #d9af42;
}
#content .cbox_nav .menu_recruit ul li a::before {
  color: #e39962;
}
#content .cbox_nav .menu_recruit ul li a:hover {
  background-color: #fdf6f0;
  color: #e39962;
}
#content .conttitle1 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  text-indent: 0.1em;
  letter-spacing: 0.1em;
  margin: 0 0 24px 0;
  padding: 0 0 16px 0;
  position: relative;
}
#content .conttitle1::before {
  content: '';
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 40px;
  height: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #e6e1d4;
  border-radius: 4px;
}
#content .conttitle2 {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  margin: 0 0 16px 0;
}
#content .conttitle2::before {
  content: '●';
  color: #e6e1d4;
}
#content .conttitle3 {
  width: calc(1024px * 0.6);
  font-weight: bold;
  line-height: 48px;
  text-align: center;
  display: inline-block;
  margin: 0 0 32px 0;
  padding: 0 64px 0 64px;
  background-color: #f4f1eb;
  border-radius: 24px;
}
#content .conttitle4 {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
}
#content .contfigu {
  border-radius: 16px;
  overflow: hidden;
}
#content .contfigu img {
  width: 100%;
  height: auto
}
#content .conttable1 {
  width: 100%;
  margin: 0 0 88px 0;
  padding: 20px;
  border: 2px solid #e6e1d4;
  border-radius: 16px;
}
#content .conttable1:last-of-type {
  margin-bottom: 0;
}
#content .conttable1 table {
  width: 100%;
}
#content .conttable1 table tr {
  vertical-align: top;
  border-bottom: 1px solid #e6e1d4;
}
#content .conttable1 table tr:first-child th {
  border-top-left-radius: 12px;
}
#content .conttable1 table tr:last-child {
  border-bottom: none;
}
#content .conttable1 table tr:last-child th {
  border-bottom-left-radius: 12px;
}
#content .conttable1 table tr th {
  width: 25%;
  text-align: center;
  padding: 16px 0 16px 0;
  background-color: #faf9f6;
}
#content .conttable1 table tr td {
  width: 75%;
  text-align: left;
  padding: 16px 0 16px 40px;
  border-left: 1px solid #e6e1d4;
}
#content .conttable2 {
  width: 100%;
  margin: 0 0 88px 0;
  padding: 20px;
  border: 2px solid #e6e1d4;
  border-radius: 16px;
}
#content .conttable2:last-of-type {
  margin-bottom: 0;
}
#content .conttable2 table {
  width: 100%;
}
#content .conttable2 table tr {
  vertical-align: top;
  border-bottom: 1px solid #e6e1d4;
}
#content .conttable2 table tr:first-child th {
  border-top-left-radius: 12px;
}
#content .conttable2 table tr:last-child {
  border-bottom: none;
}
#content .conttable2 table tr:last-child th {
  border-bottom-left-radius: 12px;
}
#content .conttable2 table tr th {
  text-align: center;
  padding: 16px 0 16px 0;
  background-color: #faf9f6;
}
#content .conttable2 table tr td {
  text-align: left;
  border-left: 1px solid #e6e1d4;
}
#content .conttable2 table.row-2cell th {
  width: 25%;
}
#content .conttable2 table.row-2cell td {
  width: 75%;
  padding: 16px 0 16px 40px;
}
#content .conttable2 table.row-3cell th {
  width: 32%;
}
#content .conttable2 table.row-3cell td {
  padding: 16px 0 16px 20px;
}
#content .conttable2 table.row-3cell td:nth-of-type(1) {
  width: 42%;
}
#content .conttable2 table.row-3cell td:nth-of-type(2) {
  width: 28%;
}
#content .conttable2 table tr td ul {
  display: flex;
  flex-wrap: wrap;
}
#content .conttable2 table tr td ul li {
  width: 46%;
}
#content .conttable2 table tr td ul li::before {
  content: '・'
}
#content .conttable2-swipe {
  display: none;
}
#content .block-items-2col, #content .block-items-3col {
  width: 100%;
  margin: 0 auto 0 auto;
  display: flex;
  flex-wrap: wrap;
}
#content .block-item {
  width: 320px;
}
#content .block-items-2col .block-item {
  margin: 32px 48px 0 0;
}
#content .block-items-2col .block-item:nth-child(2n) { /*2つごとに指定*/
  margin-right: 0;
}
#content .block-items-2col .block-item:nth-child(-n+2) { /*最初の2つを指定*/
  margin-top: 0;
}
#content .block-items-3col .block-item {
  margin: 24px 32px 0 0;
}
#content .block-items-3col .block-item:nth-child(3n) { /*3つごとに指定*/
  margin-right: 0;
}
#content .block-items-3col .block-item:nth-child(-n+3) { /*最初の3つを指定*/
  margin-top: 0;
}
#content .block-item a {
  color: #5d3719;
  display: block;
}
#content .block-item a:hover {
  color: #4f98a2;
  text-decoration: none;
}
#content .block-item .article-eyecatch {
  width: 320;
  height: auto;
  max-height: 200px;
  margin: 0 0 16px 0;
  background-color: #fff;
  border-radius: 16px;
  position: relative;
}
#content .block-item .article-eyecatch::after {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 62.5%; /* 高さ÷横幅×100（%） */
}
#content .block-item .article-eyecatch img {
  width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 16px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#content .block-item .article-title {
  font-weight: bold;
  line-height: 32px;
  text-align: left;
  margin: 0 0 8px 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 任意の行数を指定 */
}
#content .block-item .article-title-none {
  line-height: 32px;
  text-align: left;
}
#content .block-item .article-footer {
  overflow: hidden;
  color: #5d3719;
}
#content .block-item .article-footer p {
  float: left;
  width: 140px;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  border-right: 1px solid #5d3719;
}
#content .block-item .article-footer ul {
  float: right;
  width: 168px;
}
#content .block-item .article-footer ul li {
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  margin: 0 0 8px 0;
}
/* 768px以下 */
@media screen and (max-width: 768px) {
  #content {
    padding: 0 0 4px 0;
  }
  #content .cbox_pagehead {
    padding: 72px 0 12px 0;
  }
  #content .cbox_pagehead h1 {
    margin: -32px 0 0 0;
  }
  #content .cbox_pagehead h1 span.shoulder-name {
    font-size: 18px;
  }
  #content .cbox_pagehead .breadcrumb {
    display: none;
  }
  #content .cbox_wrap1 {
    padding: 40px 0 40px 0;
  }
  #content .cbox_wrap2 {
    padding: 40px 0 40px 0;
  }
  #content .cbox_wrap3 {
    padding: 40px 0 40px 0;
  }
  #content .cbox_layout1 {
    width: auto;
    margin: 0 16px 0 16px;
  }
  #content .cbox_layout2 {
    width: auto;
    margin: 0 16px 0 16px;
  }
  #content .cbox_layout3 {
    width: auto;
    margin: 0 16px 0 16px;
  }
  #content .cbox_nav {
    margin: 16px auto 0 auto;
    padding: 0 8px 16px 8px;
  }
  #content .cbox_nav .anchor-list {
    height: auto;
  }
  #content .cbox_nav .anchor-list ul {
    display: block;
  }
  #content .cbox_nav .anchor-list ul li {
    float: none;
    margin: 0;
  }
  #content .cbox_nav .anchor-list ul li a {
    padding: 0 0 0 4px;
    text-decoration: none;
  }
  #content .cbox_nav .anchor-list ul li a::before {
    content: '\e258';
    font-family: "Material Icons Round";
    font-size: 32px;
    font-weight: normal;
    margin-right: 8px;
    display: inline-block;
    vertical-align: -6px;
  }
  #content .cbox_nav .anchor-list ul li a:hover {
    background-color: transparent !important;
    color: inherit !important;
  }
  #content .conttitle1 {
    font-size: 24px;
    margin: 0 0 16px 0;
  }
  #content .conttitle2 {
    font-size: 20px;
  }
  #content .conttitle3 {
    width: 100%;
    line-height: 28px;
    display: block;
    margin: 0 0 24px 0;
    padding: 10px 12px 10px 12px;
  }
  #content .conttitle4 {
    font-size: 20px;
  }
  #content .contfigu {
    border-radius: 8px;
  }
  #content .conttable1 {
    margin: 0 0 40px 0;
    padding: 0;
    border-radius: 8px;
  }
  #content .conttable1 table tr:first-child th {
    border-radius: 8px 8px 0 0;
  }
  #content .conttable1 table tr:last-child th {
    border-bottom-left-radius: 0;
  }
  #content .conttable1 table tr th {
    width: 100%;
    text-align: left;
    padding: 8px 8px 8px 16px;
    font-weight: bold;
    border-bottom: 1px solid #e6e1d4;
    display: block;
  }
  #content .conttable1 table tr td {
    width: 100%;
    padding: 12px 8px 12px 16px;
    border-left: none;
    display: block;
  }
  #content .conttable2 {
    width: auto;
    margin: 0 0 40px 0;
    padding: 0px;
    border-radius: 8px;
    overflow-y: hidden;
    overflow-x: auto;
  }
  #content .conttable2 table {
    width: 768px;
  }
  #content .conttable2 table tr:first-child th {
    border-top-left-radius: 8px;
  }
  #content .conttable2 table tr:last-child th {
    border-bottom-left-radius: 8px;
  }
  #content .conttable2 table tr th {
    text-align: left;
    padding: 8px 8px 8px 16px;
    font-weight: bold;
  }
  #content .conttable2 table tr td {
    text-align: left;
    border-left: 1px solid #e6e1d4;
  }
  #content .conttable2 table.row-2cell th {
    width: 192px;
    padding: 8px 4px 8px 16px;
  }
  #content .conttable2 table.row-2cell td {
    width: 576px;
    padding: 8px 4px 8px 16px;
  }
  #content .conttable2 table.row-3cell th {
    width: 192px;
    padding: 8px 4px 8px 16px;
  }
  #content .conttable2 table.row-3cell td {
    padding: 8px 4px 8px 16px;
  }
  #content .conttable2 table.row-3cell td:nth-of-type(1) {
    width: 352px;
  }
  #content .conttable2 table.row-3cell td:nth-of-type(2) {
    width: 224px;
  }
  #content .conttable2 table tr td ul li {
    width: 46%;
  }
  #content .conttable2-swipe {
    display: block;
    font-size: 16px;
    font-weight: bold;
    line-height: 40px;
    color: #888;
    text-align: center;
    margin: -16px 0 0 0;
  }
  #content .conttable2-swipe::before {
    content: '\e8d4';
    font-family: "Material Icons Round";
    font-size: 32px;
    font-weight: normal;
    vertical-align: -9px;
  }
  #content .block-items-2col, #content .block-items-3col {
    max-width: 440px
  }
  #content .block-item {
    width: 100%;
    margin: 24px 0 0 0;
    padding: 0 0 16px 0;
    border-bottom: 2px solid #e6e1d4;
  }
  #content .block-items-2col .block-item {
    margin: 24px 0 0 0;
  }
  #content .block-items-2col .block-item:nth-child(-n+2) {
    margin-top: 24px;
  }
  #content .block-items-2col .block-item:first-child {
    margin-top: 0;
  }
  #content .block-items-3col .block-item {
    margin-right: 0;
  }
  #content .block-items-3col .block-item:nth-child(-n+3) {
    margin-top: 24px;
  }
  #content .block-items-3col .block-item:nth-child(-n+2) {
    margin-top: 24px;
  }
  #content .block-items-3col .block-item:first-child {
    margin-top: 0;
  }
  #content .block-item:first-of-type {
    margin-top: 0;
  }
  #content .block-item a:hover {
    color: #5d3719;
  }
  #content .block-item .article-eyecatch {
    width: 440;
    max-height: 275px;
  }
  #content .block-item .article-eyecatch img {
    max-height: none;
  }
  #content .block-item .article-footer p {
    float: none;
    width: auto;
    border-right: none;
    margin: 0 0 8px 0;
  }
  #content .block-item .article-footer ul {
    float: none;
    width: auto;
    overflow: hidden;
  }
  #content .block-item .article-footer ul li {
    margin: 0 16px 8px 0;
    float: left;
  }
}
/*##################################################
 *footer*/
#footer {
  width: 100%;
  background-color: #fff;
}
#footer .fbox_contact {
  width: 100%;
  padding: 40px 0 56px 0;
  background-color: #f4f1eb;
  overflow: hidden;
}
#footer .fbox_contact .cta {
  width: 1024px;
  margin: 0 auto 0 auto;
  overflow: hidden;
}
#footer .fbox_contact .cta .cta-guidance {
  float: left;
  width: 560px;
}
#footer .fbox_contact .cta .cta-guidance h1 {
  text-align: left;
}
#footer .fbox_contact .cta .cta-guidance p {
  font-weight: bold;
  text-align: left;
}
#footer .fbox_contact .cta .cta-contact {
  float: right;
  width: 420px;
  padding: 32px 0 0 0;
}
#footer .fbox_contact .cta .cta-contact .btn_cta {
  width: 360px;
  margin: 0 0 16px 0;
}
#footer .fbox_contact .cta .cta-contact .btn_cta span, #footer .fbox_contact .cta .cta-contact .btn_cta a {
  display: block;
  width: 100%;
  font-weight: bold;
  color: #5d3719;
  background-color: #fff;
  border: solid 2px #e6e1d4;
  border-radius: 40px;
}
#footer .fbox_contact .cta .cta-contact .btn_cta span {
  font-size: 26px;
  line-height: 73px;
  padding: 3px 0 0 0;
}
#footer .fbox_contact .cta .cta-contact .btn_cta span::before {
  content: '\e8a8';
  font-family: "Material Icons Round";
  font-size: 48px;
  font-weight: normal;
  margin-right: 4px;
  display: inline-block;
  vertical-align: middle;
}
#footer .fbox_contact .cta .cta-contact .btn_cta a {
  line-height: 76px;
}
#footer .fbox_contact .cta .cta-contact .btn_cta a::before {
  content: '\eaaa';
  font-family: "Material Icons Round";
  font-size: 48px;
  font-weight: normal;
  margin-right: 4px;
  display: inline-block;
  vertical-align: middle;
}
#footer .fbox_contact .cta .cta-contact .btn_cta a:hover {
  color: #fff;
  background-color: #5d3719;
  border-color: #5d3719;
  text-decoration: none;
}
#footer .fbox_contact .cta .cta-contact .btn_call_sp {
  display: none;
}
#footer .fbox_corporation {
  width: 1024px;
  margin: 0 auto 0 auto;
  padding: 40px 0 0 0;
  position: relative
}
#footer .fbox_corporation .office {
  overflow: hidden;
}
#footer .fbox_corporation .office .logo {
  float: left;
  width: 248px;
  margin: 0 36px 16px -4px;
}
#footer .fbox_corporation .office .logo img {
  width: 100%;
  height: auto;
}
#footer .fbox_corporation .office .word {
  float: left;
  padding: 24px 0 0 0;
}
#footer .fbox_corporation .office .word p {
  font-size: 24px;
  font-weight: bold;
  line-height: 48px;
  padding: 0 4px 0 4px;
  border-bottom: dashed 4px #e6e1d4;
}
#footer .fbox_corporation .address {
  font-size: 16px;
  line-height: 36px;
  text-align: left;
}
#footer .fbox_corporation .address span::before {
  content: '/ ';
}
#footer .fbox_corporation .exlink {
  position: absolute;
  top: 72px;
  right: 0;
}
#footer .fbox_corporation .exlink ul {
  overflow: hidden;
}
#footer .fbox_corporation .exlink ul li {
  float: left;
  height: 40px;
  margin: 0 0 0 16px;
}
#footer .fbox_corporation .exlink ul li img {
  width: auto;
  height: 100%;
}
#footer .fbox_menu {
  width: 100%;
  padding: 40px 0 0 0;
}
#footer .fbox_menu .sitemap {
  width: 1024px;
  margin: 0 auto 48px auto;
  overflow: hidden;
}
#footer .fbox_menu .sitemap .page-list {
  float: left;
}
#footer .fbox_menu .sitemap .page-list:nth-child(1), #footer .fbox_menu .sitemap .page-list:nth-child(3) {
  width: 224px;
}
#footer .fbox_menu .sitemap .page-list:nth-child(2) {
  width: 512px;
  margin: 0 32px 0 32px;
  overflow: hidden;
}
#footer .fbox_menu .sitemap .list-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  width: 100%;
  margin: 0 0 16px 0;
  border-radius: 20px;
}
#footer .fbox_menu .sitemap .page-list:nth-child(1) .list-title {
  background-color: #9bb867;
}
#footer .fbox_menu .sitemap .page-list:nth-child(2) .list-title {
  background-color: #e3b94b;
}
#footer .fbox_menu .sitemap .page-list:nth-child(3) .list-title {
  background-color: #e39962;
}
#footer .fbox_menu .sitemap .page-list ul {
  width: 224px;
  padding: 0 0 0 8px;
  float: left;
}
#footer .fbox_menu .sitemap .page-list ul li {
  font-size: 16px;
  line-height: 40px;
  text-align: left;
  display: block;
}
#footer .fbox_menu .sitemap .page-list ul li::before {
  content: '─';
  font-weight: normal;
  margin-right: 8px;
}
#footer .fbox_menu .sitemap .page-list ul li a {
  color: #5d3719;
  display: inline-block;
  width: calc(100% - 26px);
}
#footer .fbox_menu .sitemap .page-list ul li a:hover {
  color: #339966;
}
#footer .fbox_menu .sitemap .page-list ul li a span.shoulder-name {
  font-size: 13px;
}
#footer .fbox_menu .sitemap .page-list:nth-child(2) ul:nth-of-type(1) {
  width: 192px;
}
#footer .fbox_menu .sitemap .page-list:nth-child(2) ul:nth-of-type(2) {
  width: calc(100% - 192px);
}
#footer .fbox_menu .sitemap-sub {
  background-color: #f4f1eb;
}
#footer .fbox_menu .sitemap-sub .page-list {
  width: 1024px;
  margin: 0 auto 0 auto;
  text-align: center;
}
#footer .fbox_menu .sitemap-sub .page-list ul {
  display: flex;
  justify-content: center;
}
#footer .fbox_menu .sitemap-sub .page-list ul li {
  font-size: 16px;
  line-height: 64px;
  padding: 0 16px 0 16px;
}
#footer .fbox_menu .sitemap-sub .page-list ul li a {
  color: #5d3719;
}
#footer .fbox_menu .sitemap-sub .page-list ul li a:hover {
  color: #339966;
}
#footer .fbox_copyright {
  width: 100%;
  background-color: #e6e1d4;
}
#footer .fbox_copyright p {
  font-size: 16px;
  line-height: 64px;
  text-align: center;
}
#footer .fbox_fix {
  position: fixed;
  width: auto;
  right: 0px;
  z-index: 900;
}
#footer .fbox_fix .btn_return-top {
  width: 80px;
  margin: 0 40px 24px 0;
}
#footer .fbox_fix .btn_return-top a {
  width: 100%;
  height: 80px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  display: block;
  padding: 16px 0 0 0;
  background-color: #67b785;
  border-radius: 40px;
}
#footer .fbox_fix .btn_return-top a::before {
  content: '\e55d';
  font-family: "Material Icons Round";
  font-size: 16px;
  display: block;
}
#footer .fbox_fix .btn_return-top a:hover {
  background-color: #339966;
  text-decoration: none;
}
#footer hr {
  margin: 0 !important;
}
/* 768px以下 */
@media screen and (max-width: 768px) {
  #footer .fbox_contact {
    padding: 32px 16px 48px 16px;
  }
  #footer .fbox_contact .cta {
    width: auto;
  }
  #footer .fbox_contact .cta .cta-guidance {
    float: none;
    width: auto;
    margin: 0 0 16px 0;
  }
  #footer .fbox_contact .cta .cta-contact {
    float: none;
    width: auto;
    padding: 0;
  }
  #footer .fbox_contact .cta .cta-contact .btn_cta {
    width: auto;
  }
  #footer .fbox_contact .cta .cta-contact .btn_cta span, #footer .fbox_contact .cta .cta-contact .btn_cta a {
    border-radius: 32px;
  }
  #footer .fbox_contact .cta .cta-contact .btn_cta a {
    line-height: 60px;
  }
  #footer .fbox_contact .cta .cta-contact .btn_cta a::before {
    font-size: 36px;
  }
  #footer .fbox_contact .cta .cta-contact .btn_cta a:hover {
    color: #5d3719;
    background-color: #fff;
    border: solid 2px #e6e1d4;
  }
  #footer .fbox_contact .cta .cta-contact .tel {
    display: none;
  }
  #footer .fbox_contact .cta .cta-contact .btn_call_sp {
    display: block;
    width: auto;
  }
  #footer .fbox_contact .cta .cta-contact .btn_call_sp a {
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    line-height: 60px;
    color: #5d3719;
    background-color: #fff;
    border: solid 2px #e6e1d4;
    border-radius: 32px;
  }
  #footer .fbox_contact .cta .cta-contact .btn_call_sp a::before {
    content: '\e8a8';
    font-family: "Material Icons Round";
    font-size: 36px;
    font-weight: normal;
    margin-right: 4px;
    margin-left: -8px;
    display: inline-block;
    vertical-align: middle;
  }
  #footer .fbox_corporation {
    width: auto;
    padding: 32px 16px 40px 16px;
  }
  #footer .fbox_corporation .office .logo {
    float: none;
  }
  #footer .fbox_corporation .office .word {
    display: inline-block;
    margin: 0 0 16px 0;
    padding: 0;
  }
  #footer .fbox_corporation .office .word p {
    font-size: 20px;
    line-height: 32px;
    padding: 0 2px 0 2px;
  }
  #footer .fbox_corporation .address {
    line-height: 32px;
    margin: 0 0 16px 0;
  }
  #footer .fbox_corporation .address span {
    display: block;
  }
  #footer .fbox_corporation .address span::before {
    content: none;
  }
  #footer .fbox_corporation .exlink {
    position: static;
  }
  #footer .fbox_corporation .exlink ul li {
    margin: 0 16px 0 0;
  }
  #footer .fbox_menu {
    padding: 0;
  }
  #footer .fbox_menu .sitemap {
    display: none;
  }
  #footer .fbox_menu .sitemap-sub {
    padding: 0 0 0 16px;
  }
  #footer .fbox_menu .sitemap-sub .page-list {
    width: auto;
  }
  #footer .fbox_menu .sitemap-sub .page-list ul {
    display: inherit;
  }
  #footer .fbox_menu .sitemap-sub .page-list ul li {
    display: none;
  }
  #footer .fbox_menu .sitemap-sub .page-list ul li:last-child {
    display: inherit;
    font-size: 16px;
    line-height: 48px;
    padding: 0;
    text-align: left;
  }
  #footer .fbox_menu .sitemap-sub .page-list ul li a:hover {
    color: #5d3719;
  }
  #footer .fbox_copyright {
    padding: 0 0 0 16px;
  }
  #footer .fbox_copyright p {
    line-height: 48px;
    text-align: left;
  }
  #footer .fbox_fix .btn_return-top {
    width: 64px;
    margin: 0 8px 16px 0;
  }
  #footer .fbox_fix .btn_return-top a {
    height: 64px;
    line-height: 22px;
    padding: 10px 0 0 0;
    border-radius: 32px;
  }
  #footer .fbox_fix .btn_return-top a:hover {
    background-color: #67b785;
  }
}
/*##################################################
 *トップページ 40周年記念コンテンツ */
#footer .fbox_fix .anniv-40th_bnr {
  display: none;
}
/* 768px以下 */
@media screen and (max-width: 768px) {
  #footer .fbox_fix {
    display: flex;
    align-items: center;
    width: 100% !important;
  }
  #footer .fbox_fix .anniv-40th_bnr {
    display: block;
    width: calc(100% - 96px);
    min-width: 232px;
    margin: 0 8px 16px 8px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  #footer .fbox_fix .anniv-40th_bnr img {
    width: 100%;
    height: auto;
    border-radius: 4px;
  }
  #footer .fbox_fix .anniv-40th_bnr.hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
  }
  #footer .fbox_fix .btn_return-top {
    margin-left: auto !important; /* 右端に寄せる */
  }
  /*##################################################
 *印刷用の簡易CSS*/
  @media print {
    #header {
      position: absolute;
    }
    #header .hbox_fix .sitename {
      position: absolute;
    }
    #header .hbox_fix .gnav .primarynav {
      display: none;
    }
    #footer .fbox_fix {
      display: none;
    }
  }
  /*##################################################
 *コンテンツ*/
  .xxxxx_xxxxx {}
  /* 1280px以下 */
  @media screen and (max-width: 1280px) {}
  /* 1024px以下 */
  @media screen and (max-width: 1024px) {}
  /* 980px以下 */
  @media screen and (max-width: 908px) {}
  /* 768px以下 */
  @media screen and (max-width: 768px) {}
  /*560px以下*/
  @media screen and (max-width: 560px) {}