@charset "UTF-8";
/* CSS設定 **************************/
/*-------------------------------
 共通スタイル
 -------------------------------*/
/* Reset CSS **************************/
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

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

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

textarea,
button,
input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  font-family: -apple-system, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, "游ゴシック Medium", sans-serif;
  font-size: inherit;
  resize: none;
}

/* base html ***********************************************/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-break: break-all;
}

html, body {
  font-family: -apple-system, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, "游ゴシック Medium", sans-serif;
  font-size: 18px;
  line-height: 1;
  color: #333333;
  position: relative;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}

img {
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

/*-------------------------------
 ■汎用スタイル
 -------------------------------*/
.base_width {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.base_box {
  background-color: #fff;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  padding: 40px;
  margin-top: 80px;
  margin-bottom: 80px;
  border-radius: 5px;
}
.base_box .base_box_title {
  text-align: center;
  font-weight: bold;
  font-size: 25px;
  padding-bottom: 8px;
  margin-bottom: 25px;
  border-bottom: 1px solid #dddddd;
  width: 100%;
}
.btn {
  background-color: #00af84;
  color: #fff;
  font-size: 17px;
  min-width: 180px;
  padding: 10px 12px;
  display: -webkit-inline-block;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 55px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
  border-bottom: solid 4px #009277;
  border-radius: 3px;
  cursor: pointer;
}
.btn:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);/*下に動く*/
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);/*影を小さく*/
  border-bottom: none;
    transition: all  0.3s ease;
}
.btn:hover {
  background-color: #00d6a1;
  transition: all  0.3s ease;
}
.btn[disabled="disabled"] {
  opacity: .7;
  pointer-events: none;
}
dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  border: 1px solid #dddddd;
  width: 100%;
  border-bottom: none;
  font-size: 15px;
}
dl dt, dl dd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  min-height: 40px;
  line-height: 140%;
}
dl dt {
  width: 30%;
  background-color: #00af84;
  color: #fff;
  /* font-weight: bold; */
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}
dl dd {
  width: 70%;
  border-bottom: 1px solid #dddddd;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.list_tit {
  background-color: #00af84;
  color: #fff;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
}

.list_tit2 {
  background-color: #403a3a;
  color: #fff;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
}

.flex_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  border-left: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
}
.flex_list li {
  font-size: 16px;
  border-bottom: 1px solid #dddddd;
  min-height: 40px;
  padding: 0px 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  background-color: #fff;
  border-right: 1px solid #dddddd;
}
.flex_list li:last-child {
  width: auto;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.flex_list li:nth-child(4n+3), .flex_list li:nth-child(4n+4) {
  background-color: #f5f5f5;
}

/*-------------------------------
 ■レイアウト設定
 -------------------------------*/
#common_header {
  height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#common_header h1 {
  background: url("../img/logo.png") 0 0 no-repeat;
  width: 341px;
  height: 65px;
}
#common_header h1 span {
  visibility: hidden;
}

#haeder_nav {
  background-color: #017f3f;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;

  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#haeder_nav a {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 180px;
  color: #fff;
  font-size: 15px;
  border-right: 1px solid #80c09e;
}
#haeder_nav a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transition: all  0.3s ease;
}
#haeder_nav a:first-child {
  border-left: 1px solid #80c09e;
}

#footer {
  background-color: #403a3a;
  color: #fff;
  height: 180px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#footer .footer_contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#footer .footer_contents address {
  width: 380px;
}
#footer .footer_contents address .footer_corpname {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
}
#footer .footer_contents address p {
  font-size: 15.5px;
  line-height: 1.6;
}
#footer .footer_contents address p a {
  color: #fff;
}
#footer .footer_contents .certification {
  width: 270px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#footer .footer_contents .certification li {
  background: url("../img/jab.png") 0 0 no-repeat;
  width: 250px;
  height: 100px;
  background-color: #403a3a;
  margin-right: 16px;
}

#message_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
#message_area .message {
  font-size: 16px;
  width: 900px;
  line-height: 1.8;
}
#message_area .message2 {
  font-size: 16px;
  padding: 20px 0px 30px 0px;
  width: 900px;
  line-height: 1.8;
}

#campany_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#campany_area dl {
  width: 570px;
}
#campany_area dl dt {
  width: 20%;
}

#map_area {
  padding: 30px 0px 0px 0px;
  /* line-height: 1.6; */
}
#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
#pageTop i {
  padding-top: 6px
}
#pageTop a {
  display: block;
  z-index: 999;
  padding: 8px 0px 0px 0px;
  border-radius: 30px;
  width: 50px;
  height: 50px;
  background-color: #80c09e;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#breadcrumb_area {
  width: 900px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -65px;
}
.breadcrumb {
  font-size: 15px;
  padding-left:0;
  margin-left:0;
}
.breadcrumb li{
  display:inline;/*横に並ぶように*/
  list-style: none;
}
.breadcrumb li:after {/* >を表示*/
  content: '>';
  padding: 0 2px;
  color: #9FA0A0;
}
.breadcrumb li:last-child:after {
  content: '';
}
.breadcrumb li a {
  text-decoration: none;
  color: #9FA0A0;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}
.target{
  pointer-events: none;
}
.copyright {
	padding: 20px 0;
	color: #fff;
	font-size: 11px;
	text-align: center;
	background: #000;
}
