@charset "utf-8";

html {
  overflow-x: hidden;
}

img {
    max-width: 100%;
}

body {
    letter-spacing: 0.03em;
}

/* コンテンツ幅 */
.wrapper_2 {
    max-width: 987px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}



/*
  アコーディオンそのものの横幅と余白を指定。
  開閉動作に影響なし。
*/
.accordion__list {
    width: 100%;
    max-width: 987px;
    padding: 10px;
    margin-top: 60px;
}

/*
  アコーディオンの2つ目以降、上に余白を取る。
  開閉動作に影響なし。
*/
.accordion__item:nth-child(n+2) {
    margin-top: 40px;
}

/*
  アコーディオンの開閉ボタンの装飾。 position: relative;が無いと、「+」「-」の位置がずれるので注意。
*/
.accordion__head {
    position: relative;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 45px;
    padding-right: 56px;
    color: #463625;
    border: .6px solid #463625;
    cursor: pointer;
}

.question {
    align-items: center;
    font-size: 20px;
    text-indent: -1.5em;
    padding-left: 1.5em;
}

.indent {
  text-indent: -1.5em;
  padding-left: 1.5em;
}



/* アコーディオンの開閉ボタンの右側に「+」を表示。*/
/* 縦の線 */
.accordion__head::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 24px;
  height: 1px;
  background: #000;
  transform: translateY(-50%) rotate(90deg);
  transition: all .25s ease;
}

/* 横の線 */
.accordion__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 24px;
  height: 1px;
  background: #000;
  transform: translateY(-50%);
}

/*アコーディオンが開いた際に、開閉ボタンの右側に「+」を「-」に変更する。*/
.accordion__item.active .accordion__head::before {
  transform: rotate(180deg);
}

/*アコーディオンの閉じている部分の装飾。height: 0; overflow: hidden;にすることで、通常時は表示されないようにする。*/
.accordion__body {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding: 0 45px;
  background: rgb(209, 133, 83, 0.1);
  font-size: 20px;
  transition: all .25s ease;
  border: .6px solid transparent;

}

/*アコーディオンが開いた際に、heightを0からautoに、paddingの上下を0から10に。*/
.accordion__item.active .accordion__body {
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  border: .6px solid #463625;
  border-top: .6px solid transparent;
}

/* アコーディオン開いた際、下線を透明に */
.accordion__item.active .accordion__head {
  border-bottom: .6px solid transparent;
}



/* ここからSP */
@media(max-width: 768px) {


.accordion__list {
  margin-top: 20px;
}

.question {
  font-size: 16px;
}

.accordion__body {
  font-size: 14px;
}

.accordion__head {
  padding-top: 23px;
  padding-bottom: 23px;
  padding-left: 20px;
  padding-right: 45px;
}

.accordion__body {
  padding: 0 20px;
}







}
