@charset "UTF-8";

/* -----------------------------------
   Heroセクション
----------------------------------- */
.p-article__kv{
	margin:115px 0px 100px;
	height:221px;
	overflow: hidden;
	align-content: center;
}

@media screen and (max-width:1023px) {
	.p-article__kv{
		margin:0px 0px 80px;
		height:120px;
		width:auto;
	}
}

.p-article__kv img{
	width:100%;
	height: 100%;
	object-fit: cover;
}

.p-article__toc {
    width: 100%;
    margin-bottom: 4em;
}

.p-article__toc h5 {
    font-family: "Prata", serif;
}

.p-article__toc ul {
    font-size: 14px;
    padding: 2em;
    line-height: 2.5;
    border: 1px solid #ac9b70;
}

@media screen and (min-width: 768px) {
    .p-article__toc ul {
        font-size: 16px;
        padding: 2em 5em;
    }
}

.p-article__toc li {
    border-bottom: 1px solid #faf8f2;
}
	
.p-article__subtitle{
	margin-bottom: 10px;
	font-size: 19px;
	font-family: "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", "MS PMincho", serif;
  }
@media screen and (max-width: 767px) {
  .p-article__subtitle {
    font-size: 16px;
  }
}

.p-article__bold{
	font-weight: 600;
}

.p-article__underline {
	background:linear-gradient(transparent 70%, #e2caa2 0%);
}

.p-article__caption {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
  text-align: right;
}

@media screen and (max-width: 767px) {
	.p-article__caption {
   		text-align: left;		
	}
}

.p-article__link{
	color:#ac9b70;
	display:inline;
}

.p-listContainer{
	margin-bottom: 30px;
}

/* -----------------------------------
   図（figure）
----------------------------------- */
.p-article__image {
/*  margin: 40px 0;*/
  text-align: center;
}
.p-article__image img {
  max-width: 100%;
  height: auto;
}

.p-article__image.-large img {
  width: 100%;
}

/* -----------------------------------
   表（table）
----------------------------------- */
.p-article__tableWrap {
  margin: 0 0 30px;
  overflow-x: auto;
}
.p-article__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 300px;
}
.p-article__table th,
.p-article__table td {
  border: 1px solid #ddd;
  padding: 20px;
  text-align: center;
}
.p-article__table th {
  background-color: #efefef;
  color: #333;
}

@media screen and (max-width: 767px) {
  .p-article__table th,
  .p-article__table td {
    font-size: 14px;
    padding: 10px;
  }
}

/* -----------------------------------
   引用（blockquote）
----------------------------------- */
.p-article__body blockquote {
	background: #f7f7f7;
	border-left: 4px solid #ac9b70;
	padding: 20px;
	font-style: italic;
	font-size: 14px;
	line-height: 1.8;
}

.p-article__body blockquote p{
	margin-top:0;
}

@media screen and (max-width: 767px) {
  .p-article__body blockquote {
    padding: 15px;
	
  }
}

/*-------------------------------------
  FAQアコーディオン
--------------------------------------*/

.p-faqAccordion {
  margin: 0 auto;
}

/* 各アイテム */
.p-faqAccordion__item {
	position: relative;	
	margin-top:15px;	
}

/* チェックボックス非表示 */
.p-faqAccordion__toggle {
	display: none;
}

/* 質問部分 */
.p-faqAccordion__question {
  	display: block;	
  	position: relative;
	border: 1px solid #ac9b70;
	padding: 20px 56px;
  	font-weight: bold;
  	font-size: 14px;
	text-indent:-1.8em;
  	color: #ac9b70;
  	cursor: pointer;
  	padding-right: 30px;
  	transition: color 0.2s ease;
}

.p-faqAccordion__question:hover {
  color: #8e7d50;
}

/* ＋／−アイコン */
.p-faqAccordion__question::after {
	content: "＋";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 20px;
	font-weight: 100;
	color: #ac9b70;
	transition: transform 0.3s ease, content 0.3s ease;
}

/* 回答部分 */
.p-faqAccordion__answer {
	max-height: 0;
	overflow: hidden;
	display:none;
	color: #444;
	font-size: 14px;
	line-height: 1.8;
    padding: 20px 20px 20px 56px;
	transition: all 0.3s ease;
	text-indent: -1.8em;
	border: 1px solid transparent;
}

/* チェックON時の展開 */
.p-faqAccordion__toggle:checked + .p-faqAccordion__question::after {
	content: "－";
}

.p-faqAccordion__toggle:checked + .p-faqAccordion__question + .p-faqAccordion__answer {
	max-height: 500px;
	display: block;
}

/* Q / A のマーク */
.c-faq__mark {
	margin-right: 10px;
	font-family: "Marcellus", serif;
	font-weight: 400;
	font-size: 18px;
	letter-spacing: 0.08em;
}
.c-faq__mark.-answer {
  color: #444444;
  margin-right: 10px;
}

/* セクションタイトル */
.c-section__title.-sub {
  font-size: 26px;
  text-align: center;
  margin-bottom: 60px;
  color: #333;
}

/* レスポンシブ */
@media screen and (max-width: 767px) {
  .p-faqAccordion__question {
    font-size: 16px;
    padding-right: 48px;
	padding: 10px 40px;
  }
  .p-faqAccordion__answer {
    font-size: 15px;
  	padding: 10px 10px 10px 38px;
  }
  .c-section__title.-sub {
    font-size: 22px;
    margin-bottom: 40px;
  }
}

/* -----------------------------------
   ボタン
----------------------------------- */
.p-btnContainer {
	display:flex;
	justify-content:center;
	margin: 30px auto;
}
.c-btn {
	display: inline-block;
	background: #ac9b70;
	color: #fff;
	padding: 12px 30px;
	border-radius: 24px;
	font-size: 15px;
	text-align: center;
	width:100%;
	max-width:500px; 
	letter-spacing: 0.05em;
	text-decoration: none;
	transition: 0.3s ease;
}
.c-btn:hover {
  opacity: 0.8;
}