﻿@charset "UTF-8";
/*=========================
2016年6月15日更新
faq改修：アコーディオン構造変更
=========================*/
.clearfix {
  display: inline-block;
  min-height: 0; }
  .clearfix:after {
    content: "";
    height: 0;
    clear: both;
    display: block;
    font-size: 0;
    line-height: 0;
    visibility: hidden; }

* html .clearfix {
  height: 0%; }

.anchor {
  margin-bottom: 30px; }

@media only screen and (max-width: 960px) {
  .inr {
    width: 100% !important; }

  section#sec01 > .inr {
    padding: 0 10px; }
    section#sec01 > .inr > ul {
      display: block;
      width: 100%; }
      section#sec01 > .inr > ul > li {
        text-align: left; }
        section#sec01 > .inr > ul > li > a > span {
          text-align: left; } }
@media only screen and (max-width: 750px) {
  section#sec01 > .inr > ul {
    display: none; }
    section#sec01 > .inr > ul > li {
      width: 100%;
      height: auto;
      margin: 0;
      border-right: none;
      border-top: 1px solid #cccccc;
      float: none;
      background: #d7e6f3; }
      section#sec01 > .inr > ul > li:last-child {
        border-bottom: 1px solid #cccccc; }
      section#sec01 > .inr > ul > li:hover {
        position: static; }
        section#sec01 > .inr > ul > li:hover:after {
          display: none; }
      section#sec01 > .inr > ul > li > a {
        display: block;
        width: 100%;
        height: auto; }
        section#sec01 > .inr > ul > li > a > span {
          display: table-cell;
          height: auto;
          padding: 10px 0 10px 30px;
          vertical-align: middle;
          background: url(images/allow.png) left center no-repeat;
          background-position: 10px center; }
      section#sec01 > .inr > ul > li:nth-of-type(4n + 1) {
        border-left: none; } }
section#sec01 > .inr > p {
  display: block;
  width: 100%;
  margin: 20px 0 40px;
  font-size: 14px;
  color: #454545; }
  section#sec01 > .inr > p > span {
    display: block; }
section#sec01 > .inr > ul {
  display: block;
  width: 100%; }
  section#sec01 > .inr > ul > li {
    display: block;
    width: 25%;
    height: 60px;
    margin: 0 0 10px;
    color: #000;
    border-right: 1px solid #cccccc;
    float: left; }
    section#sec01 > .inr > ul > li:hover {
      position: relative; }
    section#sec01 > .inr > ul > li > a {
      display: block;
      width: 100%;
      height: 60px; }
    section#sec01 > .inr > ul > li:nth-of-type(4n + 1) {
      border-left: 1px solid #cccccc; }
section#sec01 > .inr > .faqDetail {
  display: block;
  margin-bottom: 50px;
  width: 100%; }
  section#sec01 > .inr > .faqDetail > ul {
    display: block;
    width: 100%; }
    section#sec01 > .inr > .faqDetail > ul > li {
      display: block;
      width: 100%; }

/*=========================
2016年6月15日改修追加コードはここから
=========================*/
.hide {
  display: none; }

.accordion > li {
  margin-bottom: 30px;
   border: 6px solid #00b800;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: #fffdeb;
}

.accordion .cat {
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  padding: 20px;
  position: relative;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 750px) {
  .accordion .cat {
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px 10px;
    position: relative;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
}
  .accordion .cat span {
    display: inline-block;
    background: #00b800;
    color: #fff;
    margin-right: 10px;
    width: 2em;
    height: 2em;
    line-height: 2em;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    -moz-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
  }

  .accordion .cat:after {
    content: "";
    background: url(../images/angle-down-b.png) no-repeat center center;
    -moz-background-size: contain;
    -o-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -0.5em;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .accordion .cat.selected:after {
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }

  .accordion .cat:hover {
    color: #333;
  }
    .accordion .cat:hover span {
      background: #ff9648;
      color: #fff
    }
    
.accordion .items {
  padding: 0 20px;
}
  .accordion .items > li {
    margin-bottom: 20px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    overflow: hidden;
  }
 .accordion .items .question {
    background: #00b800;
    color: #FFF;
    font-weight: bold;
    padding: 10px 30px 10px 10px;
    -moz-border-radius: 3px 3px 0 0;
    -webkit-border-radius: 3px;
    border-radius: 3px 3px 0 0;
    font-size: 16px;
    position: relative;
    cursor: pointer;
    -moz-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
    .accordion .items .question:after {
      content: "";
      background: url(../images/angle-down-w.png) no-repeat center center;
      -moz-background-size: contain;
      -o-background-size: contain;
      -webkit-background-size: contain;
      background-size: contain;
      width: 14px;
      height: 14px;
      position: absolute;
      right: 15px;
      top: 50%;
      margin-top: -0.5em;
      -moz-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
    }
    .accordion .items .question.selected:after {
      -moz-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
      -webkit-transform: rotate(-180deg);
      transform: rotate(-180deg);
    }
    .accordion .items .question:hover {
      background: #00b80073;
    }
  .accordion .items .answer {
    background: #FFF;
    padding: 20px 10px;
    padding-left: 35px;
    text-indent: -22px;
  }
    .accordion .items .answer:before {
      content: "A.";
      width: 1em;
      height: 1em;
      display: inline;
      font-size: 16px;
      font-weight: bold;
      color: #f37410;
    }
