 
.myfaq-container {
	max-width:1380px;
	background: rgba(255, 255, 255, 0.1); /* 白色 50% 透明 */
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	font-family: Arial, sans-serif;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	margin-top: auto;
	margin-right: 10px;
	margin-bottom: 20px;
	margin-left: 15px;
  }
  
  .myfaq-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: left;  
    color: #fff;
    border-bottom: 1px solid #fff; 
    padding-bottom: 10px;
  }
  .myfaq-item {
    border-bottom: 1px solid #3A3A3A;
    padding: 25px 0;
  }
  .myfaq-item:last-child {
    border-bottom: none;
  }
  .myfaq-question {
    cursor: pointer;
    font-weight: bold;
    position: relative;
    padding-right: 20px;   font-size: 18px;	color: #A7A7A7;
  }
  .myfaq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 22px;
    transition: transform 0.3s;
  }
  .myfaq-question.active::after {
    content: '-';
	  font-size: 22px;
    transform: rotate(180deg);
  }
  .myfaq-answer {
    display: none;
    padding-top: 10px; font-size: 15px;
    color: #C2C2C2;font-size: 16px;
	line-height: 180%;
  }
  
  .myfaq-item:first-child .myfaq-question.active + .myfaq-answer { font-size: 15px;
    display: block;
  }
  
 