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

/* ------------------------------
   #tabAccordion
------------------------------ */
#tabAccordion {
    margin: 0 auto 0;
    position: relative;
}
 
#tabAccordion dl {
    width: 100%;
}
 
#tabAccordion dl dt {
    position: absolute;
    top: 0;
    left: 0;
    width: 228px;
    font-weight: bold;
    background: #ffffff;
    box-sizing: border-box;
	border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
}
 
#tabAccordion dl:nth-child(2) dt {
    left: 244px;
}
 
#tabAccordion dl:nth-child(3) dt {
    left:488px;
}
 
#tabAccordion dl:nth-child(4) dt {
    left: 732px;
    border-right: none;
}
 
#tabAccordion dl dt a {
    padding: 15px 0;
	font-size:18px;
    font-weight: bold;
    display: block;
    text-align: center;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
	text-decoration:none;
}

#tabAccordion dl dt a:link , #tabAccordion dl dt a:visited {
	color:#f65669;
	}
 
#tabAccordion dl dt.btnAcv {
    border-bottom: none;
    background: #f65669;
}

#tabAccordion dl dt.btnAcv a {
	color:#ffffff;
	}
 
#tabAccordion dl dt i {
	font-size:22px;
	position:relative;
	top:1px;
	}

#tabAccordion dl dt:hover > a {
        background: #f65669;
		color:#ffffff;
		border-radius: 5px 5px 0 0;
		-webkit-border-radius: 5px 5px 0 0;
		-moz-border-radius: 5px 5px 0 0;
}
 
#tabAccordion dl dd {
    position:relative;
    top: 54px;
    left: 0;
    padding: 20px 0;
    width: 100%;
    height:auto;
    text-align: left;
    overflow-y: auto;
    display: none;
    box-sizing: border-box;
	border-top: solid 3px #f65669;
	z-index:2;
}
 
#tabAccordion dl dd p {
    padding-bottom: 2em;
    line-height: 2em;
}
  
/* ------------------------------
   スマホレイアウト/アコーディオン
------------------------------ */
@media only screen and (max-width: 640px) {
    #tabAccordion {
        width: 100%;
        height: auto;
        border: none;
    }
 
    #tabAccordion dl {
        top: auto;
        left: auto;
        width: 100%;
        position: relative;
    }
 
    #tabAccordion dl dt {
        top: auto;
        left: auto;
        width: 100%;
        position: relative;
        border-bottom: #eeeeee 1px solid;
        border-right: none;
		border-radius: 0;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
    }
 
    #tabAccordion dl:first-child dt {
        
    }
 
    #tabAccordion dl:nth-child(2) dt,
    #tabAccordion dl:nth-child(3) dt,
    #tabAccordion dl:nth-child(4) dt {
        left: auto;
    }
 
    #tabAccordion dl dt a {
        padding: 20px;
        height: auto;
        line-height: 1em;
        text-align: left;
    }
	
	#tabAccordion dl dt:hover > a {
		border-radius: 0;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
}
 
    #tabAccordion dl dt a:after {
        content: '';
        margin-top: -4px;
        top: 50%;
        right: 15px;
        width: 8px;
        height: 8px;
        font-size: 1em;
        font-weight: bold;
        line-height: 1.2em;
        display: block;
        position: absolute;
        border-top: 2px solid #666;
        border-right: 2px solid #666;
        -moz-transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
 
    #tabAccordion dl dt.btnAcv {
        
        background: #f65669;
    }
 
    #tabAccordion dl dt.btnAcv a:after {
        content: none;
    }
 
    #tabAccordion dl dd {
        top: auto;
        left: auto;
        padding: 15px;
        width: 100%;
        height: auto;
        position: relative;
		border-top:none;
    }
}