@charset "utf-8";


/* ----------↓ LIST ↓---------- */

#main ul, #main li {
  list-style-type: none;
}

#main ul {
  margin-bottom: 4em;
}

#main ul.last {
  margin-bottom: 3em;
}

#main ul li {
  background: url("../image/icon_lkbox.gif") no-repeat 10px 4px;
  padding-left: 2em;
  padding-bottom: 0.5em;
}

#main ul.clm3 {
  margin-top: 1em;
}

#main ul.clm3 li {
  background: url("../image/icon_lkbox.gif") no-repeat 10px 6px;
  padding-left: 2em;
  padding-bottom: 0.5em;
  float: left;
  width: 29%;
}

#main ul.clm3 li:last-child {
  margin-bottom: 1.6em;
}

#main ul.clm3: after {
  content: "";
  clear: both;
  display: block;
}

@media screen and (max-width: 980px) {

#main ul.clm3 li {
  width: 40%;
}
}

/* ----------↓ TABLE ↓---------- */
#main table {
  width: 100%;
  margin-bottom: 2em;
}

#main table.last {
  margin-bottom: 4em;
}

#main table tr {
  border-top: 1px solid #CCCCCC;
  border-left: 1px solid #CCCCCC;
}

#main table th, #main table td {
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
}


#main table th {
  background-color: #A1AFDD;
  padding: 7px;
  color: #FFFFFF;
  vertical-align: middle;
  white-space: nowrap;
}

#main table td {
  text-align: left;
  vertical-align: middle;
  padding: 9px 7px 7px 7px;
  line-height: 1.4em;
}

#main table td.cp {
  text-align: center;
  padding: 8px 8px 8px 12px;
  background-color: #EEEEEE;
}

#main table td.cntr {
  text-align: center;
}

#main table td.nowrap {
  white-space: nowrap;
}

#main table td.w-20 {
  width: 20%;
}

#main table td.w-50 {
  width: 50%;
}


/* ----------↓ #CONTACT ↓---------- */

/* ----------↓ TABLE ↓---------- */
#contact table {
  width: 100%;
  margin-bottom: 4em;
}

#contact table tr {
  border-top: 1px solid #CCCCCC;
  border-left: none;
}

#contact table tr:last-child {
  border-bottom: 1px solid #CCCCCC;
}

#contact table th, #contact table td {
  line-height: 1.3em;
  vertical-align: middle;
  padding: 13px;
  border-right: none;
}

#contact table th {
  white-space: nowrap;
  font-weight: normal;
  background-color: #F6F6F6;
  punctuation-trim: adjacent;
  text-align: left;
  width: 30%;
  color: #303030;
}


/* ----------↓ ACCORDION(アコーディオンメニュー) ↓---------- */

#accordion {
  margin: 3em auto;
}
#accordion .toggle {
  display: none;
}

#accordion .title,
#accordion .content {
  -webkit-backface-visibility: hidden;
	backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}
#accordion .title {
	border: solid 1px #ccc;
	padding: 1em;
	display: block;
	color: #556EC0;
}
#accordion .title:after, .title:before {
  content: "";
  position: absolute;
  right: 2em;
  top: 1em;
  width: 2px;
  height: 1.3em;
  background-color: #556EC0;
  transition: all 0.3s;
}
#accordion .title:after {
  transform: rotate(90deg);
}
#accordion .content {
  max-height: 0;
  overflow: hidden;
}
#accordion .toggle:checked + .title + .content {
	min-height: 450px;
	transition: all .8s;
}
#accordion .toggle:checked + .title:before {
	transform: rotate(90deg) !important;
}

@media screen and (max-width: 980px) {

#accordion .title {
	padding: 15px 50px 15px 15px ;
}

#accordion .toggle:checked + .title + .content {
	min-height: 600px;
	transition: all .8s;
}

}