@charset "utf-8";

/* アコーディオンstart */
.list_qaa > label {
    display: block;
    position: relative;
    width: 80%;
    padding: 0px;
    margin: auto;
    cursor: pointer;
}
.list_qaa > label > input {
    display: none;
}
.list_qaa > label > dt,
.list_qaa > label > label > dd {
    position: relative;
    padding: 1em 1em 1em 3.5em;
    /*font-size: 15px;*/
    border-bottom: 1px solid currentColor;
    background-color: #fff;
}
.list_qaa > label > dt::before,
.list_qaa > label > label > dd::before {
    position: absolute;
    top: 50%;
    left: 0.5em;
    transform: translateY(-50%);
    font-size: 2em;
}
.list_qaa > label > dt {
    z-index: 1;
}
.list_qaa > label > dt::before {
    content: "Q";
    display: inline-block;
    width: 50px; /* 円のサイズ調整 */
    height: 50px; /* 円のサイズ調整 */
    line-height: 45px; /* 中央揃えにする */
    text-align: center; /* テキストを中央揃えにする */
    border-radius: 50%; /* 円形にする */
    background-color: #F16D50; /* 背景色 */
    color: white; /* 文字色 */
    font-weight: bold; /* 文字を太くする */
	font-size: 30px;
}
.list_qaa > label > label > dd::before {
    content: "A";
}
.list_qaa > label > dt::after {
    display: inline-block;
    position: relative;
    top: 50%;
    right: -1em;
    transform: translateY(-50%) rotate(135deg);
    width: 0.5em;
    height: 0.5em;
    border-top: 2px solid #F16D50;
    border-right: 2px solid #F16D50;
    content: "";
}
.list_qaa > label > label > dd {
    position: absolute;
    top: 0px;
    left: 0px;
    transform: translateY(-2em);
    margin: 0px;
    visibility: hidden;
}
.list_qaa > label > input:checked ~ label > dd {
    position: relative;
    transform: translateY(0px);
    visibility: visible;
    transition: 0.5s;
}
/* アコーディオンend */


/* slicker start */
.prev-arrow,
.next-arrow {
  position: absolute;
  top: 50%;
  margin: 0;
  padding: 0;
  line-height: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  font-weight: bold;
  color:#777777;
  z-index: 1000;
}

.prev-arrow {
  left: 0%;
}

.next-arrow {
  right: 0%;
}

.slider img {
	height: auto;
	margin: auto;
}
.slider img.slick_sample {
	max-height: 600px;
	width: auto; 
}
/* slicker end */


/* モーダルstart */
#imageModal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}

#imageModal img {
    margin: auto;
    display: block;
    width: 98%;
    max-width: 700px;
}

#closeModal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
	color:#F16D50;
}

#closeModal:hover,
#closeModal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
/* モーダルend */


/* テーブルstart */
.table_design02 {
  border-collapse: collapse;
  width: 100%;
  max-width: 700px;
  margin-left: auto; /* 左の余白を自動で設定 */
  margin-right: auto; /* 右の余白を自動で設定 */
  color:#291400;
}
.table_design02 tr {
  background-color: #F7EAE8;
}
.table_design02 tr:nth-child(odd) {
  background-color: #fff;
}
.table_design02 th, .table_design02 td {
  padding: 1em;
}
.table_design02 th {
  font-weight: bold;
  text-align: center;
  width: 40%;
  min-width: 4em;
}
/* テーブルend */