@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;
}

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: 2px 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;
}
/* .btn:before {
  content: "";
  display: block;
  border-left: 10px solid white;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  padding-right: 8px;
} */

dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  border: 2px 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: 1;
}
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;
}

.flex_list {
  font-size: 15px;
  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;
  /* margin-bottom: 40px; */
}
.flex_list li {
  border-bottom: 1px solid #dddddd;
  color: #333;
  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:hover {
  background-color: rgba(0,0,0,0.2);
  transition: all  0.3s ease;
}
.flex_list li:nth-child(4n-4),.flex_list li:nth-child(4n-3){
  background-color: #f5f5f5;
}
.flex_list li:nth-child(4n-4):hover{
  background-color: rgba(0,0,0,0.2);
  transition: all  0.3s ease;
}
.flex_list li:nth-child(4n-3):hover{
  background-color: rgba(0,0,0,0.2);
  transition: all  0.3s ease;
}

/*-------------------------------
 ■レイアウト設定
 -------------------------------*/
#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.2);
  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;
}

.contents-wrap1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
  margin-bottom: -30px;
}
.contents-box1 {
  border: 2px solid #dddddd;
	margin-bottom: 30px;
	padding: 0px;
	width: 31.5%;
	background-color: #00af84;
  justify-content: center;
  position: relative;
}
.contents-box1 img {
	display: block;
	width: 100%;
	height: auto;
}
.contents-box1 h2 {
	margin: 10px 0px 10px 0px;
	font-size: 15px;
  /* font-weight: bold; */
  color: #fff;
	text-align: center;
}
/*.contents-box1:hover {
  background-color: rgba(0,0,0,0.5);
  transition: all  0.3s ease;
}*/
@media screen and (max-width: 768px){
	.contents-wrap1 {
		flex-direction: column;
	}
  }
.contents-wrap2{
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}
.contents-box2{
  margin: 0px 23px 0px 0px;
  border: 2px solid #dddddd;
  padding: 0px;
	width: 31.5%;
  background-color: #00af84;
  justify-content: center;
  position: relative;
}
.contents-box2 img {
  display: block;
  margin-bottom: 5px;
  width: 100%;
  height: auto;
}
.contents-box2 h2 {
  margin: 10px 0px 10px 0px;
  font-size: 15px;
  /* font-weight: bold; */
  color: #fff;
  text-align: center;
}
/*.contents-box2:hover {
  background-color: rgba(0,0,0,0.5);
  transition: all  0.3s ease;
}*/
@media screen and (max-width: 768px){
	.contents-wrap2 {
    flex-direction: column;
}
}
.copyright {
  padding: 20px 0;
  color: #fff;
  font-size: 11px;
  text-align: center;
  background: #000;
}

/*モーダル設定*/
* {
  box-sizing: border-box;
  }
.popup {
  background-color: rgba(0, 0, 0,.8);
  box-shadow: 0 0 0 0px ;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  /* height: 1000%; */
  scroll-behavior: auto;
  z-index: 2;
  overflow: hidden;
}
input.popup-on{
  /* display: none; */
  -webkit-appearance: checkbox;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  border: #ff3 5px solid;
  padding: 0;
  margin: 0;
}
.popup-on:checked+.popup{
  display: block;
}
/*.btn-open{
  cursor: pointer;
  margin: 0px auto;
  width: 100%;
  text-align: center;
}*/
.popup-content img{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 820px;
}
.popup-content img hover{
  opacity: 1;
}
.modal_wrap input{
    display: none;
}
.modal_overlay{
    display: flex;
    justify-content: center;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    /* transition: opacity 0.5s, transform 0s 0.5s; */
    transform: scale(0);
}
.modal_trigger{
    position: absolute;
    width: 100%;
    height: 100%;
}
.modal_content{
    align-self: center;
    width: 100%;
    max-width: 800px;
    padding: 30px 30px 15px;
    box-sizing: border-box;
    background: #fff;
    line-height: 1.4em;
    transform: scale(1.2);
    transition: 0.5s;
}
.close_button{
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 24px;
    cursor: pointer;
}
/* .modal_wrap input:checked ~ .modal_overlay{
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s;
}
.modal_wrap input:checked ~ .modal_overlay .modal_content{
    transform: scale(1);
} */

.space {
	margin-bottom: 30px;
}
#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;
}
body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
}
.fixing-base .fixing-box.fixed {
  position: fixed;
  top: 0;
  z-index: 9999;
}
#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;
}
