@charset "utf-8";


/* CSS Document */
h5{
	margin-bottom:10px;
	}

/*質問一覧*/
.ichiran{
	margin-bottom:20px;
	margin-left:80px;
	}
	
h6 {
	margin-bottom:10px;
	}

.ichiran li{
	margin-bottom:5px;
	}

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

/*QandA本文*/

.qanda dt{
	font-size:16px;
	font-weight:bold;
	margin-bottom:5px;
	margin-left:20px;
	margin-right:40px;
	}

.qanda dd{
	font-size:13px;
	line-height:1.5;
	margin-bottom:2em;
	margin-left:40px;
	margin-right:40px;
	}
	
.qanda a {
	text-decoration:none;
	font-weight:bold;
	color:#DD660B;
	}
.qanda a:hover{
	color:#EAA16A;
	}
	
.red{
	color:#FF2626;
	}

.campaign {
    width: 602px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding-top: 10px;
	}

.campain_box {
	width:582px;
	height:55px;
	font-size:13px;
	line-height:1.5;
	padding:7px 10px 6px 10px;
	border:1px solid #392113;
	position:relative;
	margin-bottom:5px;
	}
.campaign .link_btn {
    margin-top: 12px;
}
.campaign .link_btn a {
    color: #D76502;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
}
.campaign .link_btn a:hover {
    opacity: 0.7;
}
	
.off20{
	position:absolute;
	top:-6px;
	right:20px;
	}

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

	
.contents_end{
	margin-bottom:150px;
	}
#reser  {
    padding-top: 25px;
}
/*アコーディオン*/
.accordion-container {
    max-width: 630px;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 35px;
    font-family: sans-serif;
    font-size: 15px;
  }

  .accordion-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
  }

  .accordion-summary {
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    list-style: none; /* デフォルトの三角を非表示 */
    display: flex;
    align-items: center;
    gap: 15px; /* プラスとテキストの間のスペース */
  }

  /* ブラウザ標準の三角形を完全に消すための記述 */
  .accordion-summary::-webkit-details-marker {
    display: none;
  }

  /* プラスボタンの作成 */
  .accordion-summary::before {
    content: "+";
    font-size: 1.5rem;
    transition: transform 0.3s;
    display: inline-block;
    width: 20px; /* 位置を揃えるための幅 */
    text-align: center;
  }

  /* 開いた時に回転させる */
  details[open] .accordion-summary::before {
    transform: rotate(45deg);
  }

  .accordion-content {
    padding: 0 15px 15px 45px; /* プラスの分を考慮して左側に余白を追加 */
    color: #555;
    line-height: 1.6;
  }
