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


/**, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}*/

a:link {
    color: #403c39;
    text-decoration: none;
}


/*
**************************************************************** */



/*FAQページ*/
#faq_01 {
    margin-bottom: 40px;
}
#faq_02 {
    margin-bottom: 40px;
}
#faq_03 {
    margin-bottom: 40px;
}
#faq_04 {
    margin-bottom: 40px;
}
#faq_05 {
    margin-bottom: 40px;
}
#faq_06 {
    margin-bottom: 40px;
}
#faq_07 {
    margin-bottom: 40px;
}
#faq_08 {
    margin-bottom: 40px;
}
#faq_09 {
    margin-bottom: 40px;
}
#faq_10 {
    margin-bottom: 40px;
}

.faqContents a {
    color: #ed7089;
}
.faqContents h2 {
    font-size: 1.5em;
    margin-bottom: 30px;
}
.faq_nav {
    margin-bottom: 30px;
}
.faqContents ul {
    overflow: hidden;
    width: 100%;
}
.faqContents ul li {
    width: 233px;
    float: left;
    margin-right: 13px;
    margin-bottom: 10px;
	padding: 10px;
	border: solid 1px #f96a86;
	font-weight: bold;
    font-size: 1.1em;
}
.faqContents ul li:nth-child(3n) {
    margin-right: 0;
}
.faqContents h3 {
    text-align: left;
    border-bottom: solid 2px #d71518;
    padding: 5px;
    font-size: 1.3em;
    background: #ffffff;
    color: #333;
    margin-bottom: 10px;
}
p.item_faq {
    border: solid 2px #d71318;
    padding: 10px;
    width: 50%;
    text-align: center;
    color: #d71318 !important;
    font-size: 1.2em;
    font-weight: bold;
}
p.item_faq:hover {
    background: #d71518;
    color: #fff !important;
}


/*アコーディオン*/
.cp_actab {
position: relative;
overflow: hidden;
width: 100%;
margin: 0 auto;
color: #333333;
margin-bottom: 10px;
}
.cp_actab input {
position: absolute;
z-index: -1;
opacity: 0;
}
.cp_actab label {
font-weight: bold;
line-height: 3;
position: relative;
display: block;
padding: 0 0 0 1em;
cursor: pointer;
margin: 0 0 1px 0;
background: #ececec;
text-align: left;
}
.cp_actab .cp_actab-content {
overflow: hidden;
max-height: 0;
-webkit-transition: max-height 0.35s;
transition: max-height 0.35s;
color: #333333;
background: #f7f7f7;
}
.cp_actab .cp_actab-content p {
margin: 1em;
}
/* :checked */
.cp_actab input:checked ~ .cp_actab-content {
max-height: 20em;
}
/* Icon */
.cp_actab label::after {
line-height: 3;
position: absolute;
top: 0;
right: 0;
display: block;
width: 3em;
height: 3em;
-webkit-transition: all 0.35s;
transition: all 0.35s;
text-align: center;
}
.cp_actab input[type=checkbox] + label::after {
content: '+';
}
.cp_actab input[type=checkbox]:checked + label::after {
transform: rotate(315deg);
}