@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: 16px;
  line-height: 2;
  text-align: center;
  width: 100%;
  text-shadow: none;
  /* 個別設定 */
  color: #333;
  background-color: #499649;
  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: underline;
  color: #009900;
  transition: all 0.3s;
}
a:hover {
  text-decoration: none;
}
a img {
  transition: opacity 0.3s;
}
a:hover img {
  opacity: 0.7;
}
a[target=_blank] {
  padding-right: 24px;
  background-image: url("../../image/common_icon-target_blank.png");
  background-repeat: no-repeat;
  background-position: right 2px top 1px;
  background-size: 20px;
}
a.t_b-icon-none[target=_blank] {
  padding-right: 0;
  background-image: none;
}
ol, ul {
  list-style: none;
  font-size: 0;
}
li {
  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: 16px;
  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: 1px solid #bbb;
  width: 24px; /*チェックボックスの横幅*/
  height: 24px; /*チェックボックスの縦幅*/
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}
input[type="checkbox"]::after {
  border-bottom: 2px solid #fff; /*チェックの太さ*/
  border-left: 2px solid #fff; /*チェックの太さ*/
  opacity: 0; /*チェック前は非表示*/
  height: 8px; /*チェックの高さ*/
  width: 16px; /*チェックの横幅*/
  transform: rotate(-45deg);
  top: -4px; /*チェック時の位置調整*/
  bottom: 0; /*チェック時の位置調整*/
  left: 4px; /*チェック時の位置調整*/
  margin: auto; /*チェック時の位置調整*/
}
input[type="checkbox"]:checked::before {
  border-color: #009900; /*チェック後表示*/
  background-color: #009900; /*チェック後表示*/
}
input[type="checkbox"]:checked::after {
  opacity: 1; /*チェック後表示*/
}
input[type="checkbox"]:checked + span {
  color: #009900;
}
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: 1px solid #bbb;
  width: 24px; /*ラジオボタンの横幅*/
  height: 24px; /*ラジオボタンの縦幅*/
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}
input[type="radio"]::after {
  background: #009900; /*中丸の色*/
  border-radius: 50%;
  opacity: 0; /*チェック前は非表示*/
  height: 16px; /*中丸の高さ*/
  width: 16px; /*中丸の横幅*/
  transform: translateY(-50%); /*チェック時の位置調整*/
  top: 50%; /*チェック時の位置調整*/
  left: 4px; /*チェック時の位置調整*/
}
input[type="radio"]:checked::before {
  border-color: #009900; /*チェック後表示*/
  background-color: #fff; /*チェック後表示*/
}
input[type="radio"]:checked::after {
  opacity: 1; /*チェック後表示*/
}
input[type="radio"]:checked + span {
  color: #009900;
}
input[type="submit"] {
  cursor: pointer;
  color: #333;
}
input[type="button"] {
  cursor: pointer;
}
input[type="reset"] {
  cursor: pointer;
}
input[type="text"] {
  background-color: #fdfdf9;
  border: 1px solid #ccc;
}
input[type="text"]:focus {
  border: 1px solid #009900;
}
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: #fdfdf9;
  border: 1px solid #ccc;
}
textarea:focus {
  border: 1px solid #009900;
}
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;
}
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 1em;
  color: #333;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../../image/common_icon-select.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 20px;
  vertical-align: middle;
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
label {
  cursor: pointer;
}
iframe {
  vertical-align: bottom;
}
hr {
  display: block;
  margin: 0;
  padding: 0;
  border: 0; /*念のため*/
}
hr.hr1 {
  height: 8px;
  background: -moz-linear-gradient(left, #6ec171, #199d91);
  background: -webkit-linear-gradient(left, #6ec171, #199d91);
  background: linear-gradient(to right, #6ec171, #199d91);
}
hr.hr2 {
  height: 1px;
  background-color: #ddd;
}
sup {
  font-size: 60%;
  vertical-align: top;
}
sub {
  font-size: 60%;
  vertical-align: bottom;
}
.clearfix {
  overflow: hidden;
  zoom: 1;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.pc {
  display: inline;
}
.sp {
  display: none;
}
.br {
  display: inline;
}
.br_sp {
  display: none;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.note {
  font-size: 14px !important;
  line-height: 24px !important;
}
.anchor-point {
  margin-top: -112px;
  padding-top: 112px;
}
/* 768px以下 */
@media screen and (max-width: 768px) {
  body {
    min-width: initial; /* レスポンシブ時の右側の余白を解消するbodyのmin-widthをリセット */
    min-width: auto; /* レスポンシブ時の右側の余白を解消するbodyのmin-widthをリセット（IE用） */
  }
  p {
    text-align: left;
  }
  a:hover {
    text-decoration: underline;
  }
  a:hover img {
    opacity: 1;
  }
  .pc {
    display: none;
  }
  .sp {
    display: inline;
  }
  .br {
    display: none;
  }
  .br_sp {
    display: inline;
  }
  .kutoten {
    display: inline;
  }
  .anchor-point {
    margin-top: -80px;
    padding-top: 80px;
  }
}
/*##################################################
 *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;
}
#header .hbox_fix {
  width: 100%;
  overflow: hidden;
  background-color: #499649;
}
#header .hbox_fix .sitename {
  width: 260px;
  margin: 35px 0 35px 40px;
  float: left;
}
#header .hbox_fix .sitename .logo {
  width: 260px;
  line-height: 0;
}
#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;
}
#header .hbox_fix .gnav a {
  font-weight: bold;
  color: #fff;
  display: block;
  text-decoration: none;
}
#header .hbox_fix .gnav a:hover {
  text-decoration: none;
  color: #c9e0c9;
}
#header .hbox_fix .gnav .primarynav {
  position: absolute;
  top: 0;
  right: 224px;
}
#header .hbox_fix .gnav .primarynav ul {
  width: auto;
}
#header .hbox_fix .gnav .primarynav ul li {
  display: inline-block;
  font-size: 16px;
  line-height: 102px;
  margin: 0 32px 0 0;
}
#header .hbox_fix .gnav .primarynav ul li:last-child {
  display: none;
}
#header .hbox_fix .gnav .primarynav ul li a {
  padding: 0 16px 0 16px;
}
#header .hbox_fix .gnav .primarynav ol {
  display: none;
}
#header .hbox_fix .gnav .primarynav-sub {
  width: 200px;
  float: right;
}
#header .hbox_fix .gnav .primarynav-sub ul {
  width: auto;
}
#header .hbox_fix .gnav .primarynav-sub ul li {
  display: inline-block;
  vertical-align: top;
}
#header .hbox_fix .gnav .primarynav-sub ul li a {
  color: #fff;
}
#header .hbox_fix .gnav .primarynav-sub ul li.btn_contact {
  width: 200px;
  height: 102px;
  background: -moz-linear-gradient(left, #6ec171, #199d91);
  background: -webkit-linear-gradient(left, #6ec171, #199d91);
  background: linear-gradient(to right, #6ec171, #199d91);
}
#header .hbox_fix .gnav .primarynav-sub ul li.btn_contact a {
  width: 100%;
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 102px;
}
#header .hbox_fix .gnav .primarynav-sub ul li.btn_contact a:hover {
  background-color: #007700;
}
#header .hbox_fix .gnav .primarynav-sub_sp {
  display: none;
}
/* 768px以下 */
@media screen and (max-width: 768px) {
  #header {
    min-width: initial;
    min-width: auto;
  }
  #header .hbox_fix .sitename {
    width: 163px;
    height: 20px;
    margin: 22px 0 22px 16px;
  }
  #header .hbox_fix .sitename .logo {
    width: 163px;
  }
  #header .hbox_fix .btn_menu_sp {
    display: block;
    float: right;
  }
  #header .hbox_fix .btn_menu_sp a {
    display: block;
    width: 64px;
    height: 64px;
    font-size: 10px;
    font-weight: bold;
    line-height: 18px;
    color: #fff;
    padding: 38px 0 0 0;
    background-image: url("../../image/common_icon-menu.png");
    background-repeat: no-repeat;
    background-position: top 16px center;
    background-size: 20px;
    text-decoration: none;
  }
  #header .hbox_fix .gnav {
    display: none;
    width: 100%;
    padding: 0;
    border-top: 1px solid #e8e8e8;
    background-color: #fafaf2;
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE,Edgeでスクロールバーを消す */
    scrollbar-width: none; /* Firefoxでスクロールバーを消す */
    height: calc(100vh - 64px); /* メニュー部分の高さを決める */
    /* -webkit-overflow-scrolling: touch; SP（iOS）で慣性スクロールを有効にする iOS13からいらない */
  }
  #header .hbox_fix .gnav::-webkit-scrollbar { /* Chrome,Safariでスクロールバーを消す */
    display: none;
  }
  #header .hbox_fix .gnav a {
    color: #333;
  }
  #header .hbox_fix .gnav a:hover {
    color: #333;
  }
  #header .hbox_fix .gnav .primarynav {
    width: 100%;
    position: static;
  }
  #header .hbox_fix .gnav .primarynav ul {
    width: auto;
  }
  #header .hbox_fix .gnav .primarynav ul li {
    display: block;
    line-height: 48px;
    margin: 0;
    text-align: left;
    border-bottom: solid 1px #ddd;
  }
  #header .hbox_fix .gnav .primarynav ul li:last-child {
    display: block;
    border-bottom: none;
  }
  #header .hbox_fix .gnav .primarynav ul li a {
    padding: 0 0 0 16px;
    background-image: url("../../image/common_icon-arw-r.png");
    background-repeat: no-repeat;
    background-position: right 22px center;
    background-size: 20px;
  }
  #header .hbox_fix .gnav .primarynav-sub {
    display: none;
  }
  #header .hbox_fix .gnav .primarynav-sub_sp {
    display: block;
    width: 100%;
    float: none;
    padding: 0 16px 0 16px;
  }
  #header .hbox_fix .gnav .primarynav-sub_sp ul {
    width: auto;
  }
  #header .hbox_fix .gnav .primarynav-sub_sp ul li {
    width: 100%;
    margin: 0 0 16px 0;
    font-size: 16px;
    color: #71c16e;
  }
  #header .hbox_fix .gnav .primarynav-sub_sp ul li a {
    display: block;
    font-size: 20px;
    line-height: 64px;
    color: #fff;
    background: -moz-linear-gradient(left, #6ec171, #199d91);
    background: -webkit-linear-gradient(left, #6ec171, #199d91);
    background: linear-gradient(to right, #6ec171, #199d91);
    border-radius: 32px;
  }
  #header .hbox_fix .gnav .primarynav-sub_sp ul li.btn_call a span.icon {
    font-weight: bold;
    padding: 0 0 0 24px;
    background-image: url("../../image/common_icon-phone-w.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 22px;
  }
  #header .hbox_fix .gnav .primarynav-sub_sp ul li.btn_call p {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 8px 0 12px 0;
  }
  #header .hbox_fix .gnav .primarynav-sub_sp ul li.btn_call .telnumber {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
  }
}
/*##################################################
 *content */
#content {
  width: 100%;
  padding: 102px 0 0 0;
}
#content .cbox_pagehead {
  width: 100%;
  background-repeat: no-repeat;
  background-position: right 10% center;
  background-size: 480px 240px;
  background-color: #fafaf2;
}
#content .cbox_pagehead .pagetitle {
  width: 1024px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: bold;
  color: #499649;
  text-align: center;
  text-indent: 0.1em;
  letter-spacing: 0.1em;
  margin: 0 auto 0 auto;
}
#content .cbox_pagehead .breadcrumb {
  width: 100%;
  height: 40px;
  margin: 0 0 40px 0;
  padding: 0 40px 0 40px;
}
#content .cbox_pagehead .breadcrumb ul {
  width: 100%;
  text-align: left;
}
#content .cbox_pagehead .breadcrumb ul li {
  font-size: 12px;
  line-height: 40px;
  text-align: left;
  margin: 0 10px 0 0;
  padding: 0 16px 0 0;
  display: inline-block;
  background-image: url("../../image/common_icon-arw-breadcrumb.png");
  background-repeat: no-repeat;
  background-position: right center;
}
#content .cbox_pagehead .breadcrumb ul li:last-child {
  margin: 0;
  padding: 0;
  background-image: none;
}
#content .cbox_wrap1 {
  width: 100%;
  padding: 144px 0 0 0;
  background: -webkit-linear-gradient(bottom, #fff 90%, #fafaf2 100%);
  background: -moz-linear-gradient(bottom, #fff 90%, #fafaf2 100%);
  background: linear-gradient(to top, #fff 90%, #fafaf2 100%);
}
#content .cbox_wrap2 {
  width: 100%;
  padding: 144px 0 0 0;
  background: -webkit-linear-gradient(bottom, #fafaf2 90%, #fff 100%);
  background: -moz-linear-gradient(bottom, #fafaf2 90%, #fff 100%);
  background: linear-gradient(to top, #fafaf2 90%, #fff 100%);
}
#content .cbox_layout1 {
  width: 1024px;
  margin: 0 auto 0 auto;
}
#content .cbox_layout2 {
  width: 840px;
  margin: 0 auto 0 auto;
}
#content .cbox_figure {
  width: 100%;
  display: flex;
  justify-content: center;
}
#content .cbox_figure figure {
  width: auto;
}
#content .cbox_figure figure img {
  width: 100%;
  height: auto;
}
#content .cbox_nav {
  width: 100%;
  margin: 0 auto 176px auto;
}
#content .cbox_nav .anchor-list {
  width: 1024px;
  margin: 0 auto 0 auto;
}
#content .cbox_nav .anchor-list ul {
  overflow: hidden;
  border: solid 1px #71c16e;
  border-radius: 8px;
}
#content .cbox_nav .anchor-list ul li {
  font-size: 16px;
  line-height: 48px;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  float: left;
  border-right: solid 1px #71c16e;
}
#content .cbox_nav .anchor-list ul li:last-child {
  border-right: none;
}
#content .cbox_nav .anchor-list ul.nav-2col li {
  width: 50%;
}
#content .cbox_nav .anchor-list ul.nav-3col li {
  width: calc(100% / 3);
}
#content .cbox_nav .anchor-list ul.nav-4col li {
  width: calc(100% / 4);
}
#content .cbox_nav .anchor-list ul li a {
  display: block;
  font-weight: bold;
  color: #71c16e;
  text-align: center;
  text-decoration: none;
  padding: 16px;
  background-color: #ecf4ec;
  background-image: url("../../image/common_icon-arw-d.png");
  background-repeat: no-repeat;
  background-position: right 24px center;
  background-size: 20px;
}
#content .cbox_nav .anchor-list ul li a:hover {
  color: #499649;
  background-color: #dbeadb;
}
#content .cbox_pagefoot-cta {
  width: 100%;
}
#content .cbox_pagefoot-cta .cta-contact {
  width: 100%;
  padding: 48px 0 48px 0;
  background: -moz-linear-gradient(left, #6ec171, #199d91);
  background: -webkit-linear-gradient(left, #6ec171, #199d91);
  background: linear-gradient(to right, #6ec171, #199d91);
}
#content .cbox_pagefoot-cta .cta-contact h2 {
  color: #fff;
}
#content .cbox_pagefoot-cta .cta-contact p {
  color: #fff;
  font-weight: bold;
}
#content .cbox_pagefoot-cta .cta-contact .telnumber {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 48px;
  font-weight: bold;
  line-height: 52px;
  color: #fff;
  text-align: center;
  margin: 16px 0 16px 0;
}
#content .cbox_pagefoot-cta .cta-contact .btn_call {
  display: none;
}
#content .cbox_pagefoot-cta .cta-contact .btn_contact {
  width: 320px;
  margin: 28px auto 0 auto;
  background-color: #fff;
  border-radius: 36px;
}
#content .cbox_pagefoot-cta .cta-contact .btn_contact a {
  width: 100%;
  display: block;
  font-size: 24px;
  font-weight: bold;
  line-height: 69px;
  color: #71c16e;
  text-decoration: none;
  padding: 3px 0 0 0;
  background-image: url("../../image/common_icon-arw-r.png");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 20px;
  border-radius: 36px;
}
#content .cbox_pagefoot-cta .cta-contact .btn_contact a:hover {
  color: #fff;
  background-color: #007700;
  background-image: url("../../image/common_icon-arw-r-w.png");
}
#content .conttitle-h11 {
  font-size: 20px;
  font-weight: bold;
  color: #71c16e;
  margin: 0 0 8px 0;
  letter-spacing: 0.1em;
  text-align: left;
}
#content .conttitle-h12 {
  font-size: 20px;
  font-weight: bold;
  color: #71c16e;
  margin: 0 0 16px 0;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
}
#content .conttitle1 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: bold;
  line-height: 56px;
  color: #499649;
  letter-spacing: 0.1em;
  text-align: left;
  margin: 0 0 20px 0;
}
#content .conttitle2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: bold;
  line-height: 48px;
  color: #499649;
  text-align: center;
  text-indent: 0.1em;
  letter-spacing: 0.1em;
  margin: 0 0 28px 0;
  padding: 0 0 32px 0;
  background-image: url("../../image/common_decoration_conttitle2.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 45px;
}
#content .conttitle3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 36px;
  color: #499649;
  margin: 0 0 24px 0;
}
#content .conttitle4 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
#content .conttable1 {
  width: 100%;
  padding: 16px;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 8px;
}
#content .conttable1 table {
  width: 100%;
}
#content .conttable1 table tr {
  border-bottom: 1px solid #ddd;
}
#content .conttable1 table tr:last-child {
  border-bottom: none;
}
#content .conttable1 table tr th {
  width: 20%;
  padding: 24px 16px 24px 16px;
  vertical-align: top;
}
#content .conttable1 table tr td {
  width: 80%;
  padding: 24px 16px 24px 32px;
  text-align: left;
  vertical-align: top;
  border-left: 1px solid #ddd;
}
#content .conttable1 table tr td ul li {
  font-size: 16px;
  line-height: 28px;
  padding: 2px 0 2px 16px;
  background-image: url("../../image/common_icon-list-maru.png");
  background-repeat: no-repeat;
  background-position: left -2px top 6px;
  background-size: 20px;
}
#content .telnumber {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: bold;
  line-height: 56px;
  color: #71c16e;
  text-align: center;
  margin: 8px 0 8px 0
}
#content .btn_call_sp {
  display: none;
}
#content .btn_view-detail1 {
  width: 320px;
  background-color: #fff;
  background: -moz-linear-gradient(left, #6ec171, #199d91);
  background: -webkit-linear-gradient(left, #6ec171, #199d91);
  background: linear-gradient(to right, #6ec171, #199d91);
  border-radius: 36px;
}
#content .btn_view-detail1 a {
  width: 100%;
  display: block;
  font-size: 24px;
  font-weight: bold;
  line-height: 69px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 3px 0 0 0;
  background-image: url("../../image/common_icon-arw-r-w.png");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 20px;
  border-radius: 36px;
}
#content .btn_view-detail1 a:hover {
  background-color: #007700;
}
/* 768px以下 */
@media screen and (max-width: 768px) {
  #content {
    padding: 64px 0 0 0;
  }
  #content .cbox_pagehead {
    padding: 40px 0 40px 0;
    background-position: top 24px center;
  }
  #content .cbox_pagehead .pagetitle {
    width: 100%;
    font-size: 28px;
    line-height: 48px;
    text-align: center;
  }
  #content .cbox_pagehead .breadcrumb {
    display: none;
  }
  #content .cbox_wrap1 {
    padding: 72px 0 0 0;
    background: -webkit-linear-gradient(bottom, #fff 96%, #fafaf2 100%);
    background: -moz-linear-gradient(bottom, #fff 96%, #fafaf2 100%);
    background: linear-gradient(to top, #fff 96%, #fafaf2 100%);
  }
  #content .cbox_wrap2 {
    padding: 72px 0 0 0;
    background: -webkit-linear-gradient(bottom, #fafaf2 96%, #fff 100%);
    background: -moz-linear-gradient(bottom, #fafaf2 96%, #fff 100%);
    background: linear-gradient(to top, #fafaf2 96%, #fff 100%);
  }
  #content .cbox_layout1 {
    width: auto;
    margin: 0 16px 0 16px;
  }
  #content .cbox_layout2 {
    width: auto;
    margin: 0 16px 0 16px;
  }
  #content .cbox_figure {
    display: block;
  }
  #content .cbox_figure figure {
    width: 100%;
  }
  #content .cbox_nav {
    margin: 0 auto 56px auto;
  }
  #content .cbox_nav .anchor-list {
    width: auto;
    margin: 0 16px 0 16px;
  }
  #content .cbox_nav .anchor-list ul li {
    line-height: 32px;
    text-indent: 0;
    float: none;
    border-right: none;
    border-bottom: solid 1px #71c16e;
  }
  #content .cbox_nav .anchor-list ul li:last-child {
    border-bottom: none;
  }
  #content .cbox_nav .anchor-list ul.nav-2col li {
    width: 100%;
  }
  #content .cbox_nav .anchor-list ul.nav-3col li {
    width: 100%;
  }
  #content .cbox_nav .anchor-list ul.nav-4col li {
    width: 100%;
  }
  #content .cbox_nav .anchor-list ul li a {
    text-align: left;
    padding: 8px 8px 8px 48px;
    background-color: #ecf4ec;
    background-image: url("../../image/common_icon-arw-d.png");
    background-repeat: no-repeat;
    background-position: left 16px center;
    background-size: 20px;
  }
  #content .cbox_nav .anchor-list ul li a:hover {
    color: #71c16e;
    background-color: #ecf4ec;
  }
  #content .cbox_pagefoot-cta .cta-contact {
    padding: 36px 16px 36px 16px;
  }
  #content .cbox_pagefoot-cta .cta-contact p {
    text-align: center;
  }
  #content .cbox_pagefoot-cta .cta-contact .telnumber {
    font-size: 28px;
    line-height: 28px;
    margin: 8px 0 8px 0;
  }
  #content .cbox_pagefoot-cta .cta-contact .btn_call {
    display: block;
    width: 100%;
    margin: 16px auto 0 auto;
    background-color: #fff;
    border-radius: 32px;
  }
  #content .cbox_pagefoot-cta .cta-contact .btn_call a {
    width: 100%;
    display: block;
    font-size: 20px;
    line-height: 64px;
    color: #71c16e;
    text-decoration: none;
    padding: 0;
    background-image: url("../../image/common_icon-arw-r.png");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    border-radius: 32px;
  }
  #content .cbox_pagefoot-cta .cta-contact .btn_call a:hover {
    color: #71c16e;
    background-color: transparent;
    background-image: url("../../image/common_icon-arw-r.png");
  }
  #content .cbox_pagefoot-cta .cta-contact .btn_call a span.icon {
    font-weight: bold;
    padding: 0 0 0 24px;
    background-image: url("../../image/common_icon-phone.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 22px;
  }
  #content .cbox_pagefoot-cta .cta-contact .btn_contact {
    width: 100%;
    margin: 16px auto 0 auto;
    border-radius: 32px;
  }
  #content .cbox_pagefoot-cta .cta-contact .btn_contact a {
    width: 100%;
    display: block;
    font-size: 20px;
    font-weight: bold;
    line-height: 64px;
    padding: 0;
    background-position: right 16px center;
    border-radius: 32px;
  }
  #content .cbox_pagefoot-cta .cta-contact .btn_contact a:hover {
    color: #71c16e;
    background-color: transparent;
    background-image: url("../../image/common_icon-arw-r.png");
  }
  #content .conttitle-h11 {
    font-size: 16px;
    margin: 0;
  }
  #content .conttitle-h12 {
    font-size: 16px;
  }
  #content .conttitle1 {
    font-size: 32px;
    line-height: 40px;
    margin: 0 0 8px 0;
  }
  #content .conttitle2 {
    font-size: 24px;
    line-height: 36px;
  }
  #content .conttitle3 {
    font-size: 22px;
    line-height: 36px;
    margin: 0 0 16px 0;
  }
  #content .conttable1 {
    width: 100%;
    padding: 8px;
  }
  #content .conttable1 table tr th {
    display: block;
    width: 100%;
    padding: 16px 16px 4px 16px;
    text-align: left;
    font-weight: bold;
  }
  #content .conttable1 table tr td {
    display: block;
    width: 100%;
    padding: 4px 16px 16px 32px;
    border-left: none;
  }
  #content .telnumber {
    line-height: 40px;
  }
  #content .btn_call_sp {
    display: block;
  }
  #content .btn_call_sp a {
    display: block;
    width: 100%;
    font-size: 20px;
    line-height: 64px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background: -moz-linear-gradient(left, #6ec171, #199d91);
    background: -webkit-linear-gradient(left, #6ec171, #199d91);
    background: linear-gradient(to right, #6ec171, #199d91);
    border-radius: 32px;
  }
  #content .btn_call_sp a span.icon {
    font-weight: bold;
    padding: 0 0 0 24px;
    background-image: url("../../image/common_icon-phone-w.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 22px;
  }
  #content .btn_view-detail1 {
    width: 100%;
    border-radius: 32px;
  }
  #content .btn_view-detail1 a {
    font-size: 20px;
    line-height: 64px;
    padding: 0;
    background-position: right 16px center;
    border-radius: 32px;
  }
  #content .btn_view-detail1 a:hover {
    background-color: transparent;
  }
}
/*##################################################
 *footer*/
#footer {
  width: 100%;
  background-color: #fff;
}
#footer .fbox_menu {
  width: 1024px;
  margin: 0 auto 0 auto;
  padding: 48px 0 48px 0;
  overflow: hidden;
}
#footer .fbox_menu .sitename {
  width: 260px;
  float: left;
}
#footer .fbox_menu .sitename .logo {
  width: 260px;
  line-height: 0;
}
#footer .fbox_menu .sitename .logo img {
  width: 100%;
  height: auto;
}
#footer .fbox_menu .office {
  width: 640px;
  float: right;
}
#footer .fbox_menu .office .spot {
  margin: 0 0 24px 0;
  font-size: 14px;
  line-height: 28px;
}
#footer .fbox_menu .office .spot p {
  text-align: left;
}
#footer .fbox_menu .office .sitemap {
  border-top: solid 1px #ddd;
  padding: 24px 0 0 0;
}
#footer .fbox_menu .office .sitemap ul.primarypage {
  overflow: hidden;
}
#footer .fbox_menu .office .sitemap ul.primarypage li {
  font-size: 14px;
  line-height: 28px;
  text-align: left;
  float: left;
  margin: 0 28px 0 0;
}
#footer .fbox_menu .office .sitemap ul.primarypage li a {
  display: block;
  color: #333;
  text-decoration: none;
}
#footer .fbox_menu .office .sitemap ul.primarypage li a:hover {
  color: #009900;
}
#footer .fbox_copyright {
  width: 100%;
  background-color: #499649;
}
#footer .fbox_copyright p {
  width: 1024px;
  margin: 0 auto 0 auto;
  padding: 22px 0 22px 0;
  font-size: 14px;
  line-height: 28px;
  color: #fff;
  text-align: left;
}
#footer .fbox_fix {
  position: fixed;
  width: auto;
  right: 0px;
  z-index: 900;
}
#footer .fbox_fix .btn_return-top {
  width: 72px;
  margin: 0 40px 36px 0;
  background: -moz-linear-gradient(left, #6ec171, #199d91);
  background: -webkit-linear-gradient(left, #6ec171, #199d91);
  background: linear-gradient(to right, #6ec171, #199d91);
  border-radius: 36px;
}
#footer .fbox_fix .btn_return-top a {
  width: 100%;
  height: 72px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 32px 0 0 0;
  background-image: url("../../image/common_icon-arw-u-w.png");
  background-repeat: no-repeat;
  background-position: center 16px;
  background-size: 20px;
  border-radius: 36px;
}
#footer .fbox_fix .btn_return-top a:hover {
  background-color: #007700;
}
/* 768px以下 */
@media screen and (max-width: 768px) {
  #footer .fbox_menu {
    width: 100%;
    padding: 28px 16px 24px 16px;
  }
  #footer .fbox_menu .sitename {
    width: 163px;
    float: none;
    margin: 0 0 8px 0;
  }
  #footer .fbox_menu .sitename .logo {
    width: 163px;
  }
  #footer .fbox_menu .office {
    width: auto;
    float: none;
  }
  #footer .fbox_menu .office .spot {
    margin: 0 0 16px 0;
  }
  #footer .fbox_menu .office .sitemap {
    padding: 0;
  }
  #footer .fbox_menu .office .sitemap ul.primarypage li {
    width: auto;
    float: none;
    margin: 0;
    border-bottom: solid 1px #ddd;
  }
  #footer .fbox_menu .office .sitemap ul.primarypage li a {
    margin: 8px 0 8px 0;
  }
  #footer .fbox_menu .office .sitemap ul.primarypage li a:hover {
    color: #333;
  }
  #footer .fbox_copyright p {
    width: auto;
    padding: 16px;
  }
  #footer .fbox_fix {
    width: 100%;
  }
  #footer .fbox_fix .btn_return-top {
    width: 56px;
    margin: 0 8px 32px 0;
    float: right;
  }
  #footer .fbox_fix .btn_return-top a {
    height: 56px;
    font-size: 12px;
    padding: 24px 0 0 0;
    background-position: center 8px;
    border-radius: 28px;
  }
  #footer .fbox_fix .btn_return-top a:hover {
    background-color: transparent;
  }
}
/*##################################################
 *印刷用の簡易CSS*/
@media print {
  body {
    background-color: transparent;
  }
  #header {
    position: absolute;
  }
  #header .hbox_fix .sitename {
    position: absolute;
  }
  #header .hbox_fix .gnav .primarynav {
    display: none;
  }
  #header .hbox_fix .gnav .primarynav-sub ul li a {
    color: transparent;
  }
  #header .hbox_fix .gnav .primarynav-sub ul li.btn_contact {
    background: transparent;
  }
  #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: 980px) {}
/* 768px以下 */
@media screen and (max-width: 768px) {}
/*560px以下*/
@media screen and (max-width: 560px) {}
/*360px以下*/
@media screen and (max-width: 360px) {}