@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: #333;
  background-color: #00a73c;
  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: #00a73c;
  transition: all 0.3s;
}
a:hover {
  text-decoration: underline;
  color: #007e41;
}
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: #ff8040;
  background-color: #ff8040;
}
input[type="checkbox"]:checked::after {
  opacity: 1;
}
input[type="checkbox"]:checked + span {
  color: #ff8040;
}
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: #ff8040;
  border-radius: 50%;
  opacity: 0;
  height: 16px;
  width: 16px;
  transform: translateY(-50%);
  top: 50%;
  left: 4px;
}
input[type="radio"]:checked::before {
  border-color: #ff8040;
  background-color: #fff;
}
input[type="radio"]:checked::after {
  opacity: 1;
}
input[type="radio"]:checked + span {
  color: #ff8040;
}
input[type="submit"] {
  cursor: pointer;
  color: #333;
}
input[type="button"] {
  cursor: pointer;
}
input[type="reset"] {
  cursor: pointer;
}
input[type="text"] {
  background-color: #fbfbfb;
  border: 1px solid #ccc;
}
input[type="text"]:focus {
  border: 1px solid #ff8040;
}
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: #fbfbfb;
  border: 1px solid #ccc;
}
textarea:focus {
  border: 1px solid #ff8040;
}
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: 12px;
  background-color: #00a73c;
}
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: -16px;
  padding-top: 16px;
}
.hover-animate {
  transition: transform 0.3s ease; /* ホバー時の動き */
}
.hover-animate:hover {
  transform: translateX(4px); /* 右へ動く */
}
.common_cta {
  width: 100%;
}
.common_cta .cta-btn {
  width: 100%;
  padding: 40px 0 40px 0;
  background-color: #007e41;
  display: flex;
  justify-content: center;
}
.common_cta .cta-btn div {
  width: 360px;
  margin: 0 24px 0 24px;
  border-radius: 50px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
}
.common_cta .cta-btn div a {
  display: block;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}
.common_cta .cta-btn div a::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.common_cta .cta-btn div a:hover::after {
  opacity: 1;
}
.common_cta .cta-btn div a img {
  width: 100%;
  height: auto;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  display: block;
}
.common_cta .cta-btn div a:hover img {
  opacity: 1;
}
.common_cta .cta-btn div.btn-mail a {
  background: linear-gradient(90deg, #84c6e1, #409bc8);
}
.common_cta .cta-btn div.btn-mail a::after {
  background: linear-gradient(90deg, #409bc8, #84c6e1);
}
.common_cta .cta-btn div.btn-line a {
  background: linear-gradient(90deg, #95db96, #66c85f);
}
.common_cta .cta-btn div.btn-line a::after {
  background: linear-gradient(90deg, #66c85f, #95db96);
}
.common_cta .cta-tel {
  width: 100%;
  padding: 28px 0 28px 0;
  background-color: #00a73c;
  display: flex;
  justify-content: center;
}
.common_cta .cta-tel div {
  height: 64px;
  margin: 0 8px 0 8px;
}
.common_cta .cta-tel div img {
  width: auto;
  height: 64px;
}
.common_cta .cta-tel div.btn_sp {
  display: none;
}
/*768px未満*/
@media screen and (max-width: 767px) {
  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;
    color: #ff8040;
  }
  a:hover img {
    opacity: 1;
  }
  .pc {
    display: none;
  }
  .sp {
    display: inline;
  }
  .br {
    display: none;
  }
  .br_sp {
    display: inline;
  }
  .kutoten {
    display: inline;
  }
  .hover-animate:hover {
    transform: none; /* 右へ動く */
  }
  .common_cta .cta-btn {
    padding: 24px 16px 24px 16px;
    display: block;
  }
  .common_cta .cta-btn div {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 0 auto;
    border-radius: 50px;
  }
  .common_cta .cta-btn div:first-child {
    margin-bottom: 16px;
  }
  .common_cta .cta-btn div.btn-mail a::after {
    background: none;
  }
  .common_cta .cta-btn div.btn-line a::after {
    background: none;
  }
  .common_cta .cta-tel {
    padding: 24px 16px 24px 16px;
    display: block;
  }
  .common_cta .cta-tel div.btn_sp {
    display: block;
    width: 100%;
    height: auto;
    max-width: 360px;
    margin: 0 auto 0 auto;
    border-radius: 50px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
  }
  .common_cta .cta-tel div.btn_sp a {
    display: block;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #ffffdf, #f8f6c5);
  }
  .common_cta .cta-tel div.btn_sp a img {
    width: 100%;
    height: auto;
    border-radius: 50px;
  }
}
/*##################################################
 *wrap*/
#wrap {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
}
/*##################################################
 *header*/
#header {
  width: 100%;
}
#header .hbox_menu {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}
#header .hbox_menu .sitename {
  width: auto;
  margin: 15px 0 0 40px;
  float: left;
  display: flex;
}
#header .hbox_menu .sitename .logo {
  width: 238px;
}
#header .hbox_menu .sitename .logo img {
  width: 100%;
  height: auto;
}
#header .hbox_menu .sitename .logo a:hover img {
  opacity: 1;
}
#header .hbox_menu .sitename .desc {
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  margin: 20px 0 0 16px;
}
#header .hbox_menu .contact {
  width: auto;
  float: right;
  display: flex;
}
#header .hbox_menu .contact .tel {
  width: 262px;
  line-height: 0;
  text-align: right;
  padding: 22px 16px 0 0;
}
#header .hbox_menu .contact .tel img.num {
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}
#header .hbox_menu .contact .tel img.hour {
  width: 102px;
  height: auto;
}
#header .hbox_menu .contact .btn {
  width: 224px;
  height: 102px;
}
#header .hbox_menu .contact .btn a {
  display: block;
  width: 100%;
  height: 102px;
  background-color: #f08300;
  padding: 14px 0 0 0;
}
#header .hbox_menu .contact .btn a:hover {
  text-decoration: none;
  background-color: #df5623;
}
#header .hbox_menu .contact .btn a p {
  font-size: 16px;
  font-weight: bold;
  line-height: 22px;
  color: #fff;
}
#header .hbox_menu .contact .btn a div {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  line-height: 32px;
  color: #ffff00;
  padding: 2px 20px 0 20px;
  background-image: url("../../image/common_icon-arw-r-y.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 20px;
}
#header .hbox_menu .btn_menu_sp {
  display: none;
}
#header .hbox_menu .gnav {
  clear: both;
}
#header .hbox_menu .gnav a {
  font-weight: bold;
  color: #fff;
  display: block;
}
#header .hbox_menu .gnav a:hover {
  text-decoration: none;
  color: #fff100;
}
#header .hbox_menu .gnav .primarynav {
  background-color: #00a73c;
}
#header .hbox_menu .gnav .primarynav ul {
  width: auto;
}
#header .hbox_menu .gnav .primarynav ul li {
  display: inline-block;
}
#header .hbox_menu .gnav .primarynav ul li a {
  padding: 26px 0 26px 0;
}
#header .hbox_menu .gnav .primarynav ul li a:hover {
  background-color: #007e41;
}
#header .hbox_menu .gnav .primarynav ul li a span {
  font-size: 20px;
  font-weight: bold;
  line-height: 26px;
  display: block;
  padding: 2px 40px 0 40px;
  border: solid #67bf7e;
  border-width: 0 1px 0 1px;
}
#header .hbox_menu .gnav .primarynav ul li:first-child a span {
  border-left: 0;
}
#header .hbox_menu .gnav .primarynav ul li:last-child a span {
  border-right: 0;
}
#header .hbox_menu .gnav .primarynav .contact_sp {
  display: none;
}
/* 1200px未満 */
@media screen and (max-width: 1199px) {
  #header .hbox_menu .sitename .desc {
    display: none;
  }
}
/* 768px未満 */
@media screen and (max-width: 767px) {
  #header .hbox_menu .sitename {
    width: calc(100% - 104px);
    margin: 13px 0 0 16px;
  }
  #header .hbox_menu .sitename .logo {
    width: 100%;
    max-width: 160px;
  }
  #header .hbox_menu .contact {
    display: none;
  }
  #header .hbox_menu .btn_menu_sp {
    display: block;
    float: right;
    background-color: #00a73c;
  }
  #header .hbox_menu .btn_menu_sp a {
    display: block;
    width: 72px;
    height: 72px;
    font-size: 12px;
    font-weight: bold;
    line-height: 18px;
    color: #fff;
    padding: 44px 0 0 0;
    background-image: url("../../image/common_icon-menu.png");
    background-repeat: no-repeat;
    background-position: top 20px center;
    background-size: 20px;
  }
  #header .hbox_menu .gnav {
    display: none;
    width: 100%;
    padding: 0;
    /* 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_menu .gnav::-webkit-scrollbar { */ /* Chrome,Safariでスクロールバーを消す */
  /*   display: none; */
  /* } */
  #header .hbox_menu .gnav a:hover {
    color: #fff;
  }
  #header .hbox_menu .gnav .primarynav {
    width: 100%;
    position: static;
  }
  #header .hbox_menu .gnav .primarynav ul {
    width: auto;
  }
  #header .hbox_menu .gnav .primarynav ul li {
    display: block;
    line-height: 48px;
    text-align: left;
  }
  #header .hbox_menu .gnav .primarynav ul li a {
    padding: 0 16px 0 16px;
    background-image: url("../../image/common_icon-arw-r-w.png");
    background-repeat: no-repeat;
    background-position: right 26px center;
    background-size: 20px;
  }
  #header .hbox_menu .gnav .primarynav ul li a:hover {
    background-color: inherit;
  }
  #header .hbox_menu .gnav .primarynav ul li a span {
    line-height: 72px;
    padding: 0 0 0 8px;
    border: solid #67bf7e;
    border-width: 0 0 1px 0;
  }
  #header .hbox_menu .gnav .primarynav ul li:last-child a span {
    border-width: 0;
  }
  #header .hbox_menu .gnav .primarynav .contact_sp {
    display: block;
    width: 100%;
    padding: 24px 16px 32px 16px;
    background-color: #fff;
  }
  #header .hbox_menu .gnav .primarynav .contact_sp .btn {
    width: auto;
    margin-bottom: 32px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
    border-radius: 16px;
  }
  #header .hbox_menu .gnav .primarynav .contact_sp .btn a {
    display: block;
    width: 100%;
    background-color: #f08300;
    padding: 16px 16px 8px 16px;
    border-radius: 16px;
  }
  #header .hbox_menu .gnav .primarynav .contact_sp .btn a p {
    font-weight: bold;
    font-size: 16px;
    line-height: 32px;
    color: #fff;
    text-align: center;
  }
  #header .hbox_menu .gnav .primarynav .contact_sp .btn a div {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    line-height: 40px;
    color: #ffff00;
    padding: 0 24px 0 0;
    background-image: url("../../image/common_icon-arw-r-y.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 20px;
  }
  #header .hbox_menu .gnav .primarynav .contact_sp .tel {
    width: 100%;
    padding: 0;
    margin: 0 auto 0 auto;
  }
  #header .hbox_menu .gnav .primarynav .contact_sp .tel img {
    display: block;
    margin: 0 auto 0 auto;
  }
  #header .hbox_menu .gnav .primarynav .contact_sp .tel img.num {
    width: 266px;
    height: auto;
    margin-bottom: 8px;
  }
  #header .hbox_menu .gnav .primarynav .contact_sp .tel img.hour {
    width: 120px;
    height: auto;
  }
  #header .hbox_menu .gnav .primarynav .contact_sp .tel .btn_call {
    width: auto;
    margin: 16px auto 0 auto;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
    border-radius: 28px;
  }
  #header .hbox_menu .gnav .primarynav .contact_sp .tel .btn_call a {
    display: block;
    width: 100%;
    font-weight: bold;
    line-height: 56px;
    color: #fff;
    background-color: #00a73c;
    border-radius: 28px;
  }
  #header .hbox_menu .gnav .primarynav .contact_sp .tel .btn_call a span {
    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 */
#content {
  width: 100%;
  padding-bottom: 96px;
}
#content > .no-padding-bottom {
  margin-bottom: -96px;
}
#content .cbox_pagehead {
  width: 100%;
  background-image: url("../../image/index_firstview-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
#content .cbox_pagehead .pagetitle {
  display: inline-block;
  height: 80px;
  font-size: 32px;
  font-weight: bold;
  line-height: 76px;
  color: #fff;
  text-align: center;
  text-indent: 0.1em;
  letter-spacing: 0.1em;
  margin: 80px 0 80px 0;
  padding: 4px 32px 0 32px;
  background-color: #00a73c;
  border-radius: 8px;
}
#content .cbox_pagehead .breadcrumb {
  width: 100%;
  height: 40px;
  padding: 0 40px 0 40px;
  background-color: #fff;
}
#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_nav {
  width: 100%;
  margin: 0 auto 0 auto;
  padding: 0 0 24px 0;
  border-bottom: solid 2px #e2e0d1;
}
#content .cbox_nav .anchor-list {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto 0 auto;
}
#content .cbox_nav .anchor-list ul {
  display: flex;
  justify-content: center;
}
#content .cbox_nav .anchor-list ul li {
  font-size: 20px;
  line-height: 28px;
  height: 56px;
  border-left: solid 2px #e2e0d1;
}
#content .cbox_nav .anchor-list ul li:last-child {
  border-right: solid 2px #e2e0d1;
}
#content .cbox_nav .anchor-list ul li a {
  position: relative;
  display: block;
  width: 100%;
  font-weight: bold;
  color: #007e41;
  padding: 0 0 28px 0;
  text-decoration: none;
  transition: transform 0.3s ease; /* ホバー時の動き */
}
#content .cbox_nav .anchor-list ul li a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../../image/common_icon-arw-maru-d-g.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px;
  transition: opacity 0.3s ease;
}
#content .cbox_nav .anchor-list ul li a::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../../image/common_icon-arw-maru-d-o.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#content .cbox_nav .anchor-list ul li a:hover {
  color: #f08300;
  transform: translateY(3px); /* 下へ動く */
}
#content .cbox_nav .anchor-list ul li a:hover::before {
  opacity: 1;
}
#content .cbox_nav .anchor-list ul li a:hover::after {
  opacity: 0;
}
#content .cbox_nav .anchor-list ul.col2 li {
  width: 360px;
}
#content .cbox_nav .anchor-list ul.col3 li {
  width: calc(100% / 3);
}
#content .cbox_wrap1 {
  width: 100%;
  padding: 64px 0 64px 0;
}
#content .cbox_wrap2 {
  width: 100%;
  padding: 64px 0 64px 0;
  background-color: #f9f8f2;
}
#content .cbox_layout1 {
  width: 1024px;
  margin: 0 auto 0 auto;
}
#content .cbox_layout2 {
  width: 880px;
  margin: 0 auto 0 auto;
}
#content .conttitle-plane {
  font-size: 20px;
  font-weight: bold;
}
#content .conttitle-shoulder1 {
  font-size: 20px;
  font-weight: bold;
  line-height: 24px;
  color: #00a73c;
  margin: 0 0 12px 0;
  letter-spacing: 0.1em;
  text-align: left;
  position: relative;
}
#content .conttitle-shoulder1:after {
  position: absolute;
  top: calc(50% - 1px);
  width: 200px;
  content: '';
  height: 1px;
  background-color: #00a73c;
  margin-left: 8px;
}
#content .conttitle-shoulder1 span {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0.1em 0 0.1em;
}
#content .conttitle-link1 {
  font-size: 36px;
  line-height: 48px;
  text-align: left;
  display: inline-block;
}
#content .conttitle-link1 a {
  position: relative;
  font-weight: bold;
  color: #007e41;
  padding-right: 40px;
  text-decoration: none;
}
#content .conttitle-link1 a::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 0;
  width: 32px;
  height: 32px;
  background-image: url("../../image/common_icon-arw-maru-r-g.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 32px;
  transition: opacity 0.3s ease;
}
#content .conttitle-link1 a::before {
  content: "";
  position: absolute;
  top: 9px;
  right: 0;
  width: 32px;
  height: 32px;
  background-image: url("../../image/common_icon-arw-maru-r-o.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#content .conttitle-link1 a:hover {
  color: #f08300;
}
#content .conttitle-link1 a:hover::before {
  opacity: 1;
}
#content .conttitle-link1 a:hover::after {
  opacity: 0;
}
#content .conttitle1 {
  font-size: 40px;
  font-weight: bold;
  line-height: 64px;
  color: #007e41;
  text-align: center;
  display: inline-block;
  margin: 0 0 16px 0;
  padding: 0 72px 0 72px;
  background:
    url("../../image/common_conttitle1-bg-l.png") left top 8px / 64px auto no-repeat, url("../../image/common_conttitle1-bg-r.png") right top 8px / 64px auto no-repeat;
}
#content .conttitle2 {
  font-size: 48px;
  font-weight: bold;
  line-height: 64px;
  color: #007e41;
  letter-spacing: 0.1em;
  text-align: left;
  margin: 0 0 16px 0;
}
#content .conttitle3 {
  font-size: 36px;
  font-weight: bold;
  line-height: 56px;
  color: #007e41;
}
#content .conttitle4 {
  font-size: 24px;
  font-weight: bold;
  line-height: 48px;
  margin: 0 0 16px 0;
}
#content .conttitle5 {
  font-size: 24px;
  font-weight: bold;
  line-height: 44px;
  color: #fff;
  text-align: center;
  width: 56%;
  height: 48px;
  margin: 0 auto 0 auto;
  padding: 4px 0 0 0;
  background-color: #00a73c;
  border-radius: 24px;
}
#content .conttable1 {
  width: 100%;
  border-top: 2px solid #e2e0d1;
}
#content .conttable1 tr {
  border-bottom: 2px solid #e2e0d1;
}
#content .conttable1 tr th {
  width: 24%;
  padding: 16px;
  vertical-align: top;
  background-color: #f9f8f2;
}
#content .conttable1 tr td {
  width: 76%;
  padding: 16px 16px 16px 32px;
  text-align: left;
  vertical-align: top;
  border-left: 2px solid #e2e0d1;
}
#content .btn_view-detail1 {
  width: auto;
  max-width: 480px;
  border-radius: 36px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
}
#content .btn_view-detail1 a {
  width: 100%;
  display: block;
  font-size: 22px;
  font-weight: bold;
  line-height: 70px;
  color: #fff;
  text-align: center;
  padding: 2px 0 0 0;
  letter-spacing: 0.1em;
  background-color: #007e41;
  background-image: url("../../image/common_icon-arw-maru-r-w.png");
  background-repeat: no-repeat;
  background-position: right 32px center;
  background-size: 32px;
  border-radius: 36px;
}
#content .btn_view-detail1 a:hover {
  text-decoration: none;
  background-color: #f08300;
}
/* 768px未満 */
@media screen and (max-width: 767px) {
  #content {
    padding-bottom: 24px;
  }
  #content > .no-padding-bottom {
    margin-bottom: -24px;
  }
  #content .cbox_pagehead {
    background-size: 120%;
  }
  #content .cbox_pagehead .pagetitle {
    height: 56px;
    font-size: 24px;
    line-height: 56px;
    margin: 24px 0 24px 0;
    padding: 0 12px 0 12px;
  }
  #content .cbox_pagehead .breadcrumb {
    display: none;
  }
  #content .cbox_nav {
    width: auto;
    padding: 16px;
  }
  #content .cbox_nav .anchor-list {
    width: auto;
  }
  #content .cbox_nav .anchor-list ul {
    display: block;
  }
  #content .cbox_nav .anchor-list ul li {
    font-size: 20px;
    line-height: inherit;
    height: auto;
    border-left: none;
    text-align: left;
  }
  #content .cbox_nav .anchor-list ul li:last-child {
    border-right: none;
  }
  #content .cbox_nav .anchor-list ul li a {
    position: static;
    padding: 4px 0 4px 28px;
    transition: none;
    background-image: url("../../image/common_icon-arw-maru-d-g.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 24px;
  }
  #content .cbox_nav .anchor-list ul li a::after {
    content: none;
  }
  #content .cbox_nav .anchor-list ul li a::before {
    content: none;
  }
  #content .cbox_nav .anchor-list ul li a:hover {
    color: #007e41;
    transform: none;
  }
  #content .cbox_nav .anchor-list ul.col2 li {
    width: auto;
  }
  #content .cbox_nav .anchor-list ul.col3 li {
    width: auto;
  }
  #content .cbox_wrap1 {
    padding: 40px 0 40px 0;
  }
  #content .cbox_wrap2 {
    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 .conttitle-shoulder1:after {
    top: 50%;
    width: 8%;
  }
  #content .conttitle-link1 {
    font-size: 24px;
    line-height: 36px;
    text-align: left;
    display: block;
  }
  #content .conttitle-link1 a {
    position: static;
    padding-right: 32px;
    background-image: url("../../image/common_icon-arw-maru-r-g.png");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
  }
  #content .conttitle-link1 a::after {
    content: none;
  }
  #content .conttitle-link1 a::before {
    content: none;
  }
  #content .conttitle-link1 a:hover {
    color: #007e41;
  }
  #content .conttitle-link1 a:hover::before, #content .conttitle-link1 a:hover::after {
    content: none;
  }
  #content .conttitle1 {
    font-size: 28px;
    line-height: 40px;
    padding: 0 52px 0 52px;
    background:
      url("../../image/common_conttitle1-bg-l.png") left top 4px / 48px auto no-repeat, url("../../image/common_conttitle1-bg-r.png") right top 4px / 48px auto no-repeat;
  }
  #content .conttitle2 {
    font-size: 32px;
    line-height: 48px;
  }
  #content .conttitle3 {
    font-size: 24px;
    line-height: 36px;
  }
  #content .conttitle4 {
    font-size: 20px;
    line-height: 36px;
    margin: 0 0 8px 0;
  }
  #content .conttitle5 {
    font-size: 22px;
    line-height: 32px;
    width: 100%;
    height: auto;
    min-height: 40px;
    padding: 4px 8px 4px 8px;
    border-radius: 48px;
  }
  #content .conttable1 tr {
    border-bottom: 2px solid #e2e0d1;
  }
  #content .conttable1 tr th {
    display: block;
    width: 100%;
    padding: 8px 16px 8px 16px;
    text-align: left;
    font-weight: bold;
  }
  #content .conttable1 tr td {
    display: block;
    width: 100%;
    padding: 8px 16px 8px 16px;
    border-left: none;
    border-top: 1px solid #e2e0d1;
  }
  #content .btn_view-detail1 {
    width: 100%;
    border-radius: 28px;
  }
  #content .btn_view-detail1 a {
    font-size: 18px;
    line-height: 56px;
    padding: 0;
    background-position: right 16px center;
    border-radius: 28px;
  }
  #content .btn_view-detail1 a:hover {
    background-color: #007e41;
  }
}
/*##################################################
 *footer*/
#footer {
  width: 100%;
  background-color: #fff;
}
#footer .fbox_area {
  width: 100%;
  margin: 0 auto 0 auto;
  padding: 40px 0 40px 0;
  background-image: url("../../image/common_footer_area-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
#footer .fbox_area .area-box {
  width: 1024px;
  margin: 0 auto 0 auto;
  background: linear-gradient(to bottom, #00a73c 0, #00a73c 80px, #f9f8f2 80px, #f9f8f2 100%);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  border-radius: 16px;
}
#footer .fbox_area .area-box h2 {
  width: 920px;
  height: 76px;
  margin: 0 auto 32px auto;
  display: flex;
  align-items: center; /* 縦中央 */
  justify-content: center;
}
#footer .fbox_area .area-box h2 img {
  width: 100%;
  height: auto;
}
#footer .fbox_area .area-box h3 {
  font-size: 32px;
  font-weight: bold;
  line-height: 48px;
  color: #007e41;
  text-align: left;
  padding-bottom: 4px;
}
#footer .fbox_area .area-box p {
  font-size: 24px;
  font-weight: bold;
  line-height: 40px;
  color: #007e41;
  text-align: left;
}
#footer .fbox_area .area-box .area-list {
  display: table;
  height: 144px;
  margin-top: 16px;
}
#footer .fbox_area .area-box .area-list h4 {
  display: table-cell;
  vertical-align: middle;
  font-weight: bold;
  color: #fff;
  width: 144px;
  height: 144px;
  background-color: #00a73c;
  border-radius: 72px;
}
#footer .fbox_area .area-box .area-list ul {
  display: table-cell;
  vertical-align: middle;
  overflow: hidden;
}
#footer .fbox_area .area-box .area-list ul li {
  display: table-cell;
  float: left;
  font-size: 20px;
  font-weight: bold;
  line-height: 48px;
  margin-left: 24px;
}
#footer .fbox_area .area-box .area-list ul li:nth-child(5n+1) {
  clear: left;
}
#footer .fbox_area .area-box-border {
  width: 100%;
  padding: 0 32px 32px 32px;
  background-image: url("../../image/common_footer_area-map.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 344px;
  border: solid 4px #00a73c;
  border-radius: 16px;
}
#footer .fbox_menu {
  width: 1024px;
  margin: 0 auto 0 auto;
  padding: 40px 0 36px 0;
  overflow: hidden;
}
#footer .fbox_menu .sitename {
  width: 162px;
  float: left;
}
#footer .fbox_menu .sitename .logo {
  width: 238px;
}
#footer .fbox_menu .sitename .logo img {
  width: 100%;
  height: auto;
}
#footer .fbox_menu .office {
  width: 664px;
  float: right;
}
#footer .fbox_menu .office .spot {
  margin: 16px 0 32px 0;
  display: flex;
  justify-content: space-between;
}
#footer .fbox_menu .office .spot .address, #footer .fbox_menu .office .spot .sns {
  display: flex;
}
#footer .fbox_menu .office .spot .address div, #footer .fbox_menu .office .spot .sns div {
  font-size: 16px;
  font-weight: bold;
  line-height: 46px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  width: 100px;
  height: 48px;
  padding-top: 2px;
  background-color: #00a73c;
  border-radius: 24px;
}
#footer .fbox_menu .office .spot .address p {
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  margin-left: 16px;
}
#footer .fbox_menu .office .spot .sns ul {
  overflow: hidden;
}
#footer .fbox_menu .office .spot .sns ul li {
  width: 48px;
  float: left;
  margin-left: 8px;
}
#footer .fbox_menu .office .spot .sns ul li a img {
  width: 100%;
  height: auto;
}
#footer .fbox_menu .office .sitemap {
  border-top: solid 1px #ddd;
  padding: 32px 0 0 4px;
}
#footer .fbox_menu .office .sitemap ul.primarypage {
  overflow: hidden;
}
#footer .fbox_menu .office .sitemap ul.primarypage li {
  font-size: 16px;
  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: #00a73c;
}
#footer .fbox_copyright {
  width: 100%;
  background-color: #00a73c;
}
#footer .fbox_copyright p {
  width: 1024px;
  margin: 0 auto 0 auto;
  padding: 26px 0 22px 0;
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  text-align: left;
}
#footer .fbox_fix {
  position: fixed;
  width: auto;
  right: 0px;
  z-index: 900;
}
#footer .fbox_fix .btn_return-top {
  width: 80px;
  margin: 0 40px 40px 0;
  border-radius: 40px;
}
#footer .fbox_fix .btn_return-top a {
  width: 100%;
  height: 80px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 34px 0 0 0;
  background-color: #00a73c;
  background-image: url("../../image/common_icon-arw-u-w.png");
  background-repeat: no-repeat;
  background-position: center 16px;
  background-size: 20px;
  border-radius: 40px;
  box-shadow: 0 0 4px 0 rgba(255, 255, 255, 1);
}
#footer .fbox_fix .btn_return-top a:hover {
  background-color: #007e41;
}
#footer .fbox_fix .cta-btn_sp {
  display: none;
}
/* 768px未満 */
@media screen and (max-width: 767px) {
  #footer .fbox_area {
    padding: 24px 16px 24px 16px;
  }
  #footer .fbox_area .area-box {
    width: 100%;
    background: linear-gradient(to bottom, #00a73c 0, #00a73c 104px, #f9f8f2 104px, #f9f8f2 100%);
  }
  #footer .fbox_area .area-box h2 {
    width: 100%;
    max-width: 400px;
    height: 100px;
    margin: 0 auto 24px auto;
  }
  #footer .fbox_area .area-box h3 {
    font-size: 28px;
  }
  #footer .fbox_area .area-box p {
    width: calc(100% - 264px);
    font-size: 18px;
    line-height: 32px
  }
  #footer .fbox_area .area-box .area-list {
    display: block;
    height: auto;
    margin-top: 32px;
    width: calc(100% - 264px);
  }
  #footer .fbox_area .area-box .area-list h4 {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 16px;
    padding: 4px 16px 4px 16px;
    text-align: center;
  }
  #footer .fbox_area .area-box .area-list ul {
    display: block;
  }
  #footer .fbox_area .area-box .area-list ul li {
    display: block;
    margin-left: 0;
    width: calc(100% / 3);
    text-align: center;
    font-size: 18px;
    line-height: 32px
  }
  #footer .fbox_area .area-box .area-list ul li:nth-child(5n+1) {
    clear: none;
  }
  #footer .fbox_area .area-box .area-list ul li:nth-child(3n+1) {
    clear: left;
  }
  #footer .fbox_area .area-box-border {
    width: 100%;
    padding: 0 16px 24px 16px;
    background-position: top right -104px;
    background-size: 440px;
    border: solid 3px #00a73c;
  }
  #footer .fbox_menu {
    width: 100%;
    padding: 24px 16px 24px 16px;
  }
  #footer .fbox_menu .sitename {
    width: 160px;
    float: none;
    margin: 0 0 8px 0;
  }
  #footer .fbox_menu .sitename .logo {
    width: 160px;
  }
  #footer .fbox_menu .office {
    width: auto;
    float: none;
  }
  #footer .fbox_menu .office .spot {
    margin: 0 0 24px 0;
    display: block;
  }
  #footer .fbox_menu .office .spot .address, #footer .fbox_menu .office .spot .sns {
    display: block;
  }
  #footer .fbox_menu .office .spot .address div, #footer .fbox_menu .office .spot .sns div {
    display: none;
  }
  #footer .fbox_menu .office .spot .address p {
    margin: 16px 0 16px 0;
  }
  #footer .fbox_menu .office .spot .sns ul li {
    width: 40px;
    margin: 0 8px 0 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 {
    padding: 8px 0 8px 0;
  }
  #footer .fbox_menu .office .sitemap ul.primarypage li a:hover {
    color: #333;
  }
  #footer .fbox_copyright p {
    width: auto;
    padding: 8px 16px 80px 16px;
  }
  #footer .fbox_fix {
    width: 100%;
  }
  #footer .fbox_fix .btn_return-top {
    width: 56px;
    margin: 0 8px 20px 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: #00a73c;
  }
  #footer .fbox_fix .cta-btn_sp {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    height: 72px;
    clear: both;
  }
  #footer .fbox_fix .cta-btn_sp li {
    display: inline-block;
    width: calc(100% / 3);
  }
  #footer .fbox_fix .cta-btn_sp li a {
    display: block;
    padding: 12px 2px 12px 2px;
  }
  #footer .fbox_fix .cta-btn_sp li a img {
    width: 100%;
    max-width: 112px;
    height: auto;
  }
  #footer .fbox_fix .cta-btn_sp li.btn_mail a {
    background: linear-gradient(90deg, #84c6e1, #409bc8);
  }
  #footer .fbox_fix .cta-btn_sp li.btn_line a {
    background: linear-gradient(90deg, #95db96, #66c85f);
  }
  #footer .fbox_fix .cta-btn_sp li.btn_tel a {
    background: linear-gradient(90deg, #ffffdf, #f8f6c5);
  }
}
/*560px未満*/
@media screen and (max-width: 559px) {
  #footer .fbox_area .area-box {
    background: linear-gradient(to bottom, #00a73c 0, #00a73c 88px, #f9f8f2 88px, #f9f8f2 100%);
  }
  #footer .fbox_area .area-box h2 {
    max-width: 304px;
    height: 80px;
    margin-bottom: 120%;
  }
  #footer .fbox_area .area-box p {
    width: 100%;
  }
  #footer .fbox_area .area-box .area-list {
    margin-top: 24px;
    width: 100%;
  }
  #footer .fbox_area .area-box .area-list ul li:nth-child(5n+1) {
    clear: none;
  }
  #footer .fbox_area .area-box .area-list ul li:nth-child(3n+1) {
    clear: left;
  }
  #footer .fbox_area .area-box-border {
    background-position: top 0 right 0;
    background-size: contain;
  }
}
/*##################################################
 *印刷用の簡易CSS*/
@media print {
  #header {
    position: absolute;
  }
  #header .hbox_menu .sitename {
    position: absolute;
  }
  #header .hbox_menu .gnav .primarynav {
    display: none;
  }
  #footer .fbox_fix {
    display: none;
  }
}
/*##################################################
 *コンテンツ*/
.xxxxx_xxxxx {}
/* 1280px未満 */
@media screen and (max-width: 1279px) {}
/* 1025px未満 */
@media screen and (max-width: 1024px) {}
/* 980px未満 */
@media screen and (max-width: 979px) {}
/* 768px未満 */
@media screen and (max-width: 767px) {}
/*560px未満*/
@media screen and (max-width: 559px) {}
/*360px未満*/
@media screen and (max-width: 359px) {}