@charset "utf-8";
/* CSS Document */

/* ====================================
よくある質問
====================================== */
.faqTtlLine {
    position: relative;
    display: block;
    width: 100%;
    padding: 13px 20px;
    margin-bottom: 2px;
    background-color: #ffc815;
    cursor: pointer;
}

.faqTtlLine p {
    display: inline-block;
    vertical-align: middle;
}

.faqTtlLine .itmName {
	font-size: 2.0rem;
	font-weight: bold;
	letter-spacing: 0.1em;
}

.boxQ,
.boxA {
    width: 44px;
    height: 44px;
    padding: 8px 0;
    margin-right: 18px;
    font-size: 2.0rem;
    font-weight: bold;
    text-align: center;
    border: 2px solid #000;
}

.faqListAns {
    display: none;
    padding: 20px;
    margin-bottom: 60px;
}

.faqListAns .boxA {
    float: left;
    width: 44px;
    margin-right: 0;
}

.faqListAns .ansConts {
    float: right;
    width: 980px;
    padding-top: 0.5em;
}
@media screen and (max-width:1150px) {
  .faqListAns .ansConts { width: 92%;}
}

.ansConts p {
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

.faqListAns a {
    border-bottom: 1px solid #000;
    transition: all .3s ease-in-out;
}

.faqListAns a:hover {
    color: #ffc815;
    border-color: #ffc815;
}

.panel {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 44px;
    height: 44px;
    padding: 9px;
    margin-top: -22px;
    background-color: #000;
}

/* 開閉ボタン */
.prcTrigger,
.prcTrigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.prcTrigger {
  position: relative;
  width: 100%;
  height: 100%;
}
.prcTrigger span {
  position: absolute;
  left: 0;
  background-color: #ffc815;
}
.prcTrigger span:nth-of-type(1) {
  top: 50%;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.prcTrigger span:nth-of-type(2) {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.active .prcTrigger span:nth-of-type(1) { opacity: 0;}
.active .prcTrigger span:nth-of-type(2) { transform: rotate(90deg); }