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

.faq .cont {
    padding: 15px 20px 30px 19px;
}
.faq-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 25px;
}
.faq-nav a {
    color: #44A8CD;
    border: 1px solid #44A8CD;
    border-radius: 8px;
    padding: 10px 10px 8px;
    text-align: center;
    width: 45%;
    margin-bottom: 10px;
    transition: 0.3s;
    position: relative;
}
.faq-nav a::after {
    content: "\f078";
    font-family: "FontAwesome";
    color: #44A8CD;
    position: absolute;
    top: 8px;
    right: 10px;
}
.faq-nav a:hover {
    text-decoration: none;
    background: #ecfaff;
    transition: 0.3s;
}
.faq-nav a:hover::after {
    animation: fluffy1 3s ease infinite;
}
@keyframes fluffy1 {
  0% { transform:translateY(0) }
  10% { transform:translateY(-3px) }
  15% { transform:translateY(0) }
  20% { transform:translateY(3px) }
  30% { transform:translateY(0) }
  50% { transform:translateY(0) }
  100% { transform:translateY(0) }
}
.faq h2 {
    background-color: #F5F5F5;
    border-bottom: 3px solid #44A8CD;
    font-size: 23px;
    padding: 15px 15px 10px;
    margin-top: 70px;
    margin-bottom: 25px;
    text-indent: 0;
}
.faq .cont dl dt:first-child {
    border-top: 1px solid #d8d8d8;
}
.faq .cont dt {
    font-size: 16px;
    border-bottom: 1px solid #d8d8d8;
    padding: 10px 45px 8px 10px;
    text-indent: -1.6em;
    padding-left: 2.5em;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}
.faq .cont dt::before {
    content: "\f059";
    font-family: "FontAwesome";
    color: #44A8CD;
    margin-right: 10px;
    font-size: 18px;
}
.faq .cont dt::after {
    content: "\f107";
    font-family: "FontAwesome";
    color: #44A8CD;
    font-size: 25px;
    position: absolute;
    top: 4px;
    right: 5px;
    transition: 0.3s;
	font-weight: bold;
	white-space: pre;
	text-align: center;
}
.faq .cont dt.open::after {
    transform: rotateX(180deg);
    transition: 0.3s;
}
.faq .cont dt:hover {
    background-color: #ecfaff;
    transition: 0.3s;
}
.faq .cont dt.open {
    background-color: #ecfaff;
    border-bottom: 3px solid #44A8CD;
}
.faq .cont dd {
    padding: 15px 0 30px;
    line-height: 1.8;
    border-bottom: 1px solid #d8d8d8;
    display: none;
    font-size: 16px;
}
.faq .cont dd p {
    padding: 0 2.6em;
    margin-bottom: 15px;
}
.faq .cont dd ul {
    padding: 0 2.6em;
    margin-bottom: 15px;
}
.faq .cont dd li {
    margin-bottom: 10px;
    line-height: 1.6;
}
.faq .cont dd p.img {
    text-align: center;
}
.faq .cont dd p:last-child {
    margin-bottom: 0;
}

#pagetopBtn {
	height: 77px;
}

#pagetopBtn p {
	padding-top: 41px;
	background: url(/img/common/column2_bg_btm.gif) no-repeat left top;
}
