
#qa {
  margin:0px 10px;
}

@media screen and (max-width: 768px){
  #qa {
    margin:0;
  }
}

.p_b{
  text-align: center;
  font-size: 24px;
}

/* section p img{
  width:100%;
  max-width: 500px;
} */

.t_h2 h2{
  margin: 2rem 0 1rem;
  padding:5px 8px;
  border-left:5px solid #f93;
  border-bottom:none;
  font-size: 25px;
  font-weight:bold;
}

.p-qa_panel{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
  margin: 0 0 30px;
}

@media screen and (max-width: 768px){
  .p-qa_panel{
    width: 100%;
  }
}

.p-qa_panellist{
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  border: 1px solid #e0bd88;
  margin: 0;
  border-radius: 5px;
  background: #fff9f0;
}

.p-qa_panellist>a{
  display: flex;
  align-items: center;
  padding: 10px;
  width: 100%;
}

.p-qa_panellist>a>img{
  width: 30%;
  margin: 0 10px 0 0;
}


/* =========================================================
Layout
========================================================= */





/* =========================================================
Compornent
========================================================= */


/* button
--------------------------------------------------------- */

.c-button {
  align-items: center;
  border-radius: 3px;
  background: #ccc;
  color:#333;
  display: -webkit-flex;
  display: flex;
  font-size: 1.4rem;
  font-weight: 500;
  height: 50px;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  transition: .1s;
  max-width: 500px;
  margin-left:auto;
  margin-right:auto;
  outline:0 solid #ccc;
}

.c-button--primary{
  background: #f90;
  outline:0 solid #f90;
}

.c-button:hover{
  outline:5px solid #ccc;
  border-radius: 0;
}

.c-button--primary:hover{
  outline:5px solid #f90;
}

/* =========================================================
Project
========================================================= */


/* drawer_menu
--------------------------------------------------------- */

/* 通常時は非表示 */

.p-drawer_menu {
  display: none;
  background: rgba(255, 255, 255, 0.98);
  font-weight: 600;
  margin: 0;
  padding: 0;
  width: 100%;
  z-index: 998;
  position: fixed;
  top:50px;
  left:0;
}

.p-drawer_menu__list {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  list-style: none;
  margin: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.0rem;
  font-weight: normal;
}

.p-drawer_menu__list:last-child {
  border-bottom: 2px solid #ff9900;
}

.p-drawer_menu__list>a,
.p-drawer_menu__list>span {
  color: #333;
  display: block;
  font-size: 1.6rem;
  margin: 0;
  padding: .6em 2.4rem;
  text-decoration: none;
  height: 100%;
  width: 100%;
}

/* ヘッダー ニュース
--------------------------------------------------------- */

.p-top_news {
  max-width: 1280px;
  margin: .5em auto 1em;
}


/* ヘッダー メニュー
--------------------------------------------------------- */

.p-main_menu {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 5px;
}

.p-main_menu__button {
  text-align: center;
  padding: 1.4rem 0;
  border-radius: 3px;
  background: #666;
  margin: 0 0 10px;
  font-size: 1.4rem;
  width: -webkit-calc(100% / 2 - 5px);
  width: calc(100% / 2 - 5px);
}

.p-main_menu__button>a {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
}

.p-main_menu__button:hover{
  background: #f90;
}

@media screen and (min-width: 800px) {
  .p-main_menu {
    flex-direction: row;
    justify-content: flex-start;
    margin: 0;
  }
  .p-main_menu__button {
    width: auto;
    padding: .6rem 1.4rem;
    border-radius: 0;
    margin: 0;
    font-size: 1.4rem;
    background: transparent;
  }

  .p-main_menu__button>a {
    color:#666;
  }

  .p-main_menu__button:hover{
    -webkit-filter:brightness(1.2);
  }

  .p-main_menu__button--new{
    background:#e65e21;
  }

  .p-main_menu__button--new>a{
    font-weight:bold;
    color:#fff;
  }

  .p-main_menu__button--login{
    background:#ccc;
    margin-left: auto;
  }

  .p-main_menu__button--login>a{
    color:#333;
  }
}

/* ヘッダー 検索ボックス
--------------------------------------------------------- */

.p-searchbox {
  display: -webkit-flex;
  display: flex;
  margin: 10px 5px;
  justify-content: space-between;
  overflow: hidden;
}

.p-searchbox>input {
  width: -webkit-calc(100% - 55px);
  width: calc(100% - 55px);
  border: 0;
  background: inherit;
  border-top: 1px solid #ccc;
  border-right: 0;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  padding: .5em;
}

.p-searchbox>button {
  background: #ff9900;
  border: 0;
  color: #fff;
  width: 60px;
  font-size: 1.4rem;
  border-top: 1px solid #ff9900;
  border-right: 1px solid #ff9900;
  border-bottom: 1px solid #ff9900;
  border-left: 0;
  border-radius:  0 5px 5px 0;
}

.p-searchbox-sp>button {
  height: 50px;
}

.p-searchbox-sp {
  display: -webkit-flex;
  display: flex;
}

.p-searchbox-pc {
  display: none;
}

@media screen and (min-width: 800px) {
  .p-searchbox {
    width: 500px;
  }
  .p-searchbox-sp {
    display: none;
  }
  .p-searchbox-pc {
  display: -webkit-flex;
  display: flex;
  margin: 0 auto 0 20px;
  }
}


/* メインカラム
--------------------------------------------------------- */

.p-main_section {
  padding: 10px;
  background: #fff;
  margin: 0 0 10px;
}

/* 見出し
--------------------------------------------------------- */

.p-mainhead {
  font-size: 1.8rem;
  font-weight: 600;
  padding: .5rem 1rem;
  border-left: 10px solid #ff9900;
}

.p-subhead {
  padding: 0 0 5px;
  margin: 2rem 0 1em;
}

/* もっと見る
--------------------------------------------------------- */

.p-more {
  text-align: right;
}



/* =========================================================
qa
========================================================= */

/* .p-qa_head{
  margin: 3rem 0 1rem;
  font-size: 2.0rem;
  background: #F1F1F1 none repeat scroll 0 0;
  border-left: 5px solid #FF9933;
  font-weight: bold;
  padding: 5px 10px;
} */

/* .p-qa_list{
  font-size:14px;
}

.p-qa_list>li{
  line-height: 1.6;
  list-style: circle;
  margin: 0px 0 0 25px;
}

.p-qa_list>li>a{

} */



@media screen and (max-width: 650px) {
  .p-qa_panel {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 410px) {
  .p-qa_panel {
    grid-template-columns: 1fr;
  }
  .p-qa_panellist>a>img {
    width: 15%;
  }
}



/* =========================================================
qa_detail , qa_detail2
========================================================= */
h1.t_h1basic {
  padding: 20px;
  border-top: 5px solid #ff9900;
  border-bottom: 1px solid #ddd;
  line-height: 1.5;
  font-size: 20px;
  font-weight: bold;
}

h2.t_h2 {
  clear: both;
  margin: 10px 0px 7px;
  padding: 10px 5px;
  background: #f0f0f0;
  border-left: 10px solid #FF9900;
  font-size: 16px;
}

.qa_index> .m_qa h3{
  margin: 1.5em 0px;
  padding: 4px 7px;
  border-left: 4px solid #ff9900;
}

/* .qa_index>h3{
  margin:0px 0px 10px;
  padding:5px 10px;
  border-left:5px solid #f93;
  background:#f1f1f1;
  font-size: 13px;
  font-weight:bold;
} */

/* .qa_index>h3:first-child{
    font-size: 1.17em;
    border-left: 5px solid #FF9933;
    padding: 5px 10px;
    border-top: 0;
} */

.qa_index> .m_qa h3 a {
  text-decoration: none;
  color: #e65e21;
}

.qa_index> .m_qa p {
    margin: 1em;
    line-height: 1.8;
}

/*
p.imgqa {
    float: left;
    margin: 0 1em 2em 0;
    clear: both;
}
*/

.red {
    color: #c00;
}

/* FAQアコーディオン */
.qa_index h2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.qa_index h2:after {
  content: "";
  width:1em;
  min-width:1em;
  height:1em;
  min-height:1em;
  background-image: url(http://stage.cospa.com/images/common/icon/icon_plus.png);
  background-size: contain;
  vertical-align: middle;
  transition: transform 0.5s;
}

.qa_index h2.openSlide:after {
  background-image: url(http://stage.cospa.com/images/common/icon/icon_minus.png);
  transform-origin:center center 0;
  transform: rotate(-360deg);
  transition: transform 0.5s;
}
