@charset "UTF-8";
/* common
====================================================================================================================================== */
/*非表示*/
.none {
  display: none !important;
}

.visible-off {
  display: none;
}

/*スマホ・PC振り分け*/
.sp {
  display: none !important;
}

.sp_inline {
  display: none !important;
}

.hide {
  display: none;
}

img {
  height: auto;
}

/*取り消し線を引く*/
.deleted {
  text-decoration: line-through;
}

/* スクロールして画面に入ったらフェードイン */
.scroll_fadein {
  opacity: 0;
  translate: 0 50px;
  transition: 1.3s ease-out;
  transition-delay: 0.2s;
}

.scroll_fadein.window_in {
  opacity: 1;
  translate: 0;
}

.scroll_opacity {
  opacity: 0;
  transition: 1.7s ease-out;
  transition-delay: 0.2s;
}

.scroll_opacity.window_in {
  opacity: 1;
}

/*左寄せ・右寄せ対策*/
img.left_align_img {
  margin-right: 15px;
}

img.right_align_img {
  margin-left: 15px;
}

iframe {
  max-width: 100%;
}

/*画像背景のボタン*/
.bg_img_btn a,
a.bg_img_btn {
  display: block;
  background: no-repeat;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*center button list*/
.btn_center_box {
  clear: both;
  overflow: hidden;
  width: 100%;
  margin: 0 0 10px;
}

.btn_center_box:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.btn_center_box ul {
  position: relative;
  left: 50%;
  float: left;
  margin: 0;
  overflow: visible;
  list-style: none;
  list-style-position: inside;
}

.btn_center_box ul:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.btn_center_box li {
  position: relative;
  left: -50%;
  float: left;
  list-style: none;
  display: inline;
}

.btn_center_box li:first-child {
  margin: 0;
}

.btn_center_box li a {
  margin: 0 10px 10px;
}

.button_area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 2.5rem;
}

.button_area a,
.button_area #enquete_verify,
.button_area #enquete_send,
.button_area #enquete_back,
.button_area input.button_back,
.button_area input.button_submit {
  display: block;
  width: fit-content;
  min-width: 270px;
  text-align: center;
  transition: .2s;
  padding: 1.4em 1.7em;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.5;
  background: #F1B579 url(../images/icon/button_arrpw.svg) no-repeat right 20px center;
  background-size: 6px auto;
}

.button_area a, .button_area a:link,
.button_area #enquete_verify,
.button_area #enquete_verify:link,
.button_area #enquete_send,
.button_area #enquete_send:link,
.button_area #enquete_back,
.button_area #enquete_back:link,
.button_area input.button_back,
.button_area input.button_back:link,
.button_area input.button_submit,
.button_area input.button_submit:link {
  text-decoration: none;
  color: #453E3B;
}

.button_area a:hover,
.button_area #enquete_verify:hover,
.button_area #enquete_send:hover,
.button_area #enquete_back:hover,
.button_area input.button_back:hover,
.button_area input.button_submit:hover {
  color: #453E3B;
  opacity: 0.7;
}

.button_area #enquete_back,
.button_area input.button_back {
  background: #EDE6D5;
}

.button_area #enquete_verify:hover,
.button_area #enquete_send:hover,
.button_area #enquete_back:hover,
.button_area input.button_back:hover,
.button_area input.button_submit:hover {
  cursor: pointer;
}

.view_more {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 2.5rem;
}

.view_more a {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  padding: 0 1.8em 1em;
  border-bottom: 1px solid #D1C9BC;
}

.view_more a:after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 8px;
  margin-left: 1em;
  background-color: #453E3B;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.view_more a, .view_more a:link {
  text-decoration: none;
  color: #453E3B;
}

@media (hover: hover) {
  .view_more a:hover {
    opacity: 0.8;
  }
}

/*list*/
#conts ul {
  background: none;
  list-style-type: none;
  list-style-position: outside;
  padding: 0;
  margin-bottom: 2.5rem;
}

#conts ul li {
  position: relative;
  font-size: 0.9rem;
  line-height: 1.7;
  padding-left: 0.85em;
  margin-bottom: 0.6em;
}

#conts ul li:last-child {
  margin-bottom: 0;
}

#conts ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5lh;
  translate: 0 -50%;
  background-color: #453E3B;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

#conts ol {
  counter-reset: orderd_num;
  background: none;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

#conts ol li {
  text-indent: -1.1em;
  padding-left: 1.1em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}

#conts ol li:last-child {
  margin-bottom: 0;
}

#conts ol li:before {
  counter-increment: orderd_num;
  content: counter(orderd_num) ".";
  border-radius: 50%;
  margin-right: 0.2em;
}

#conts ul.caution {
  margin-bottom: 2.5em;
}

#conts ul.caution li {
  margin-bottom: 0;
}

#conts ul.caution li:before {
  content: "※";
}

#conts ul.plane,
#conts ol.plane,
#conts ul.plane li,
#conts ol.plane li {
  list-style-type: none !important;
  padding: 0;
}

#conts ul.plane li:before,
#conts ol.plane li:before {
  display: none;
}

/*news list*/
#conts .article_list {
  padding: 0;
  margin-bottom: 1.8em;
}

#conts .article_list li {
  padding: 0;
  margin-bottom: 2.3em;
}

#conts .article_list li:last-child {
  margin-bottom: 0;
}

#conts .article_list li:before {
  display: none;
}

#conts .article_list li a, #conts .article_list li .no_link {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.4em;
  column-gap: 0.7em;
}

#conts .article_list li .no_link a {
  display: inline;
  text-decoration: underline;
}

#conts .article_list li a {
  text-decoration: none;
}

#conts .article_list li a[target="_blank"] .link_title {
  padding-right: 1.5em;
  background: url(../images/icon/link_out.svg) no-repeat right top 0.21em;
  background-size: 1em auto;
}

#conts .article_list li .link_title {
  display: block;
  width: 100%;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.6;
  color: #263940;
}

#conts .article_list li time, #conts .article_list li .origin {
  display: block;
  font-size: 0.7rem;
  font-weight: normal;
  line-height: 1;
}

#conts .article_list li time {
  color: #757575;
}

#conts .article_list li .origin {
  color: #263940;
}

@media (hover: hover) {
  #conts .article_list li a:hover .link_title {
    text-decoration: underline;
  }
  #conts .article_list li .no_link a:hover {
    text-decoration: none;
  }
}

/*default heading*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0 0 0.8em;
  line-height: 1.6;
}

h1.page_title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #FAF7F0;
  margin-bottom: 4.3rem;
}

h2 {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  padding-bottom: 0.6em;
  border-bottom: 1px solid #D1C9BC;
  margin-bottom: 2rem;
}

h2.with_english {
  font-size: 1.2rem;
  font-weight: normal;
  text-align: center;
  border: none;
  padding: 0;
  margin-bottom: 3.5rem;
}

h2.with_english span {
  display: block;
}

h2.with_english .en {
  width: 9.2em;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

h2.with_english .en:before {
  content: "";
  display: block;
  width: 12em;
  aspect-ratio: 1/1;
  background: url(../images/text/eng_title_bg.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  translate: -50% -50%;
}

h2.with_english .en img {
  width: 100%;
  vertical-align: bottom;
  position: relative;
  z-index: 2;
}

h2.with_english .ja {
  position: relative;
  z-index: 2;
}

h3 {
  font-size: 1rem;
  font-weight: bold;
  text-align: left;
  background-color: #EDE6D5;
  padding: 0.6em 1em;
  margin-bottom: 1.5rem;
}

h4 {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 1.5rem;
}

h5 {
  font-size: 1.05rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 1.5rem;
}

/*hr*/
hr {
  height: 1px;
  border-bottom: 1px solid #D1C9BC;
  background: none;
  margin: 2.5rem 0;
  clear: both;
  overflow: hidden;
}

/*段落*/
table p {
  margin-bottom: 0;
  line-height: 1.7;
}

/*カラー*/
.red {
  color: #c00;
}

.orange {
  color: #D97E00;
}

/* マーカー スタイル */
.marker {
  display: inline;
  font-weight: bold;
  letter-spacing: 0.07em;
  background: linear-gradient(transparent 50%, #EBF1F2 0%);
}

.eng {
  font-family: "Arvo", serif;
}

.gothic {
  font-family: "Noto Sans JP", sans-serif;
}

/*画像*/
.wide_photo_image {
  position: relative;
  margin: 4.3em 0 0;
}

.wide_photo_image.in {
  margin: 3em 0 4em;
}

.wide_photo_image img {
  width: 100%;
  margin: 0;
}

.wide_photo_image .caption {
  color: #fff;
  position: absolute;
  right: 2.5%;
  bottom: 2%;
  font-size: 0.78em;
}

/*container*/
.section_box {
  clear: both;
  padding: 0;
  margin-bottom: 8.5rem;
}

.section_box .section_box {
  margin-bottom: 2.5rem;
}

.section_box *:last-child {
  margin-bottom: 0 !important;
}

.section_box .img_box {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section_box:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

/*3列ボックス*/
.box_3_column {
  overflow: hidden;
  margin: 0 -1.5% 1.5em;
}

.box_3_column .box {
  float: left;
  width: 33.3333333%;
  padding: 0 1.5%;
  margin-bottom: 2em;
}

/*2列ボックス*/
.box_2_column {
  overflow: hidden;
  margin: 0 -1.5% 1.5em;
}

.box_2_column .box {
  float: left;
  width: 50%;
  padding: 0 1.5%;
  margin-bottom: 3%;
}

.fig_box .image_area {
  margin-bottom: 1em;
  text-align: center;
}

.fig_box figcaption p {
  font-size: 1.0625rem;
  line-height: 1.8em;
  margin-bottom: 1em;
}

/*索引*/
.list_box {
  margin-bottom: 14px;
  line-height: 1.6;
}

.list_box a, .list_box .no_link {
  display: block;
  background-color: #F1B579;
  padding: 1.3em 1.5em;
}

.list_box a {
  color: #453E3B;
  font-weight: normal;
  text-decoration: none;
  position: relative;
  padding-right: 2em;
}

.list_box a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  width: 5px;
  height: 8px;
  background-color: #453E3B;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.list_box .title {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: underline;
}

.list_box .comment_text {
  display: block;
  margin-top: 0.3em;
  font-size: 0.8rem;
  font-weight: normal;
}

@media (hover: hover) {
  .list_box a:hover {
    color: #453E3B;
    opacity: 0.9;
  }
  .list_box a:hover .title {
    text-decoration: none;
  }
}

/*image背景ボタンリスト*/
.bg_img_btn a {
  display: block;
  background: no-repeat;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*image100%*/
.img_wide {
  width: 100%;
}

/*button design*/
/*ボタン*/
form input.submit_btn {
  display: inline-block;
  position: relative;
  display: inline-block;
  background: #ddc06e url(../images/icon.png) no-repeat 50px center;
  border: 0;
  min-width: 300px;
  padding: 0.9em 20px 0.9em 40px;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  vertical-align: middle;
  letter-spacing: 0.2em;
  border-radius: 0;
}

form input.submit_btn:hover {
  opacity: 0.8;
}

a.btn,
button.btn,
.btn a,
#myreset,
form input.submit_btn {
  display: inline-block;
  position: relative;
  display: inline-block;
  background: #000 url(../images/icon_arrow_white_r.png) no-repeat right 20px center;
  border: solid 2px #fff;
  width: 48%;
  padding: 0.9em 1em 0.9em 0.9em;
  margin: 0 0.9% 0.5em;
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
  vertical-align: middle;
  letter-spacing: 0.2em;
  border-radius: 0;
  color: #fff;
}

a.btn:hover,
button.btn:hover,
.btn a:hover,
#myreset:hover,
form input.submit_btn:hover {
  background: #fff url(../images/icon_arrow_black_r.png) no-repeat right 20px center;
  border: solid 2px #000;
  color: #000;
}

a.btn:link,
.btn a:link {
  color: #fff;
}

/* ２列ボタン */
.button_2_column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2em;
}

.button_2_column .btn {
  display: block;
  width: 48%;
  margin-bottom: 1.1em;
}

.button_2_column .btn a {
  display: block;
  margin: 0;
  width: 100%;
}

a.btn.gold_btn,
.btn.gold_btn a,
a.btn.gold_btn:hover,
.btn.gold_btn a:hover {
  background-color: #7b6737;
  background-image: url(../images/icon_w_r.png);
  color: #fff;
  border-color: #7b6737;
}

/*a.btn:before, #myreset:before { content:""; display:inline-block; background:url(../images/icon.png) no-repeat; width:9px; height:16px; margin-right:10px; vertical-align:middle; }*/
a.btn.btn_simple {
  background: #000;
  color: #fff;
  border: none;
  font-size: 1em;
  padding: 0.5em 3em;
  min-width: 0;
}

a.btn.btn_simple:hover {
  color: #fff;
}

/*戻る*/
a.btn.back,
button.btn.back,
.btn.back a,
button.btn.back:hover {
  margin-right: 20px;
  background: url(../images/icon_back.png) no-repeat 20px center;
  color: #7b6737;
  padding-left: 40px;
  padding-right: 20px;
  border: 0;
}

/*a.btn.back:before, #myreset:before { background-image:url(../images/icon_back.png); margin-right:14px; }*/
/*icon*/
.btn_icon {
  display: inline-block;
  background: url(../images/icon.png) no-repeat left center;
  padding: 2px 0 2px 30px;
  margin-top: 1.5em;
}

.btn_icon.btn_dl {
  background-image: url(../images/icon_dl.png);
}

/*wide*/
a.btn_wide {
  display: block;
  background: #000;
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 0.8em 10px;
  font-size: 1.9em;
  letter-spacing: 0.2em;
}

a.btn:hover,
button:hover,
.btn a:hover,
#myreset:hover,
.btn_icon:hover,
a.btn_wide:hover,
form input.submit_btn:hover {
  opacity: 0.8;
}

a.btn:hover,
.btn a:hover,
button:hover {
  color: #333;
}

/*table*/
/* テーブル */
table {
  width: 100%;
  padding: 0;
  margin-bottom: 2.5rem;
  border-collapse: collapse;
  vertical-align: top;
  border: 1px solid #D1C9BC;
  line-height: 1.6;
}

table caption {
  display: none;
}

table th, table td {
  border: 1px solid #D1C9BC;
  vertical-align: middle;
}

table th {
  padding: 0.6em 0.7em;
}

table td {
  padding: 0.7em 0.5em;
}

table thead th {
  background-color: #453E3B;
  color: #FAF7F0;
  font-weight: bold;
  text-align: center;
}

table tbody th, table tbody td {
  font-size: 0.9rem;
}

table tbody th {
  background-color: #F2EFE6;
  font-weight: bold;
  max-width: 6.5em;
  min-width: 4.8em;
}

/* color box
====================================================================================================================================== */
.point_box {
  border: solid 1px #ddc06e;
  padding: 25px;
  margin-bottom: 1em;
}

/*画像で見出しを作る用（スタイルを強制リセット）*/
h1.plane,
h2.plane,
h3.plane,
h4.plane,
h5.plane {
  background: none !important;
  border: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: !important;
}

h1.plane:after,
h2.plane:after,
h3.plane:after,
h4.plane:after,
h5.plane:after {
  display: none !important;
}

h1.plane img,
h2.plane img,
h3.plane img,
h4.plane img,
h5.plane img {
  margin: 0;
  max-width: none;
}

/*adjust*/
.clear {
  clear: both;
}

.ma0 {
  margin: 0 !important;
}

.mab0 {
  margin-bottom: 0 !important;
}

.mab5 {
  margin-bottom: 5px !important;
}

.mab10 {
  margin-bottom: 10px !important;
}

.mab20 {
  margin-bottom: 20px !important;
}

.mab30 {
  margin-bottom: 30px !important;
}

.mab40 {
  margin-bottom: 40px !important;
}

.mab1em {
  margin-bottom: 1em !important;
}

.mab15em {
  margin-bottom: 1.5em !important;
}

.mab2em {
  margin-bottom: 2em !important;
}

.mab25em {
  margin-bottom: 2.5em !important;
}

.mab3em {
  margin-bottom: 3em !important;
}

.mab35em {
  margin-bottom: 3.5em !important;
}

.mat0 {
  margin-top: 0 !important;
}

.mat5 {
  margin-top: 5px !important;
}

.mat10 {
  margin-top: 10px !important;
}

.mat20 {
  margin-top: 20px !important;
}

.mat30 {
  margin-top: 30px !important;
}

.mat-10 {
  margin-top: -10px !important;
}

.mat-20 {
  margin-top: -20px !important;
}

.mat-30 {
  margin-top: -30px !important;
}

.mar10,
.mr10 {
  margin-right: 10px !important;
}

.mar20,
.mr20 {
  margin-right: 20px !important;
}

.mal10,
.ml10 {
  margin-left: 10px !important;
}

.mal20,
.ml20 {
  margin-left: 20px !important;
}

.pa0 {
  padding: 0 !important;
}

.pat0 {
  padding-top: 0 !important;
}

.pab0 {
  padding-bottom: 0 !important;
}

.pat15 {
  padding-top: 15px !important;
}

/*font size*/
.font_xs {
  font-size: 0.8em;
}

.font_sm {
  font-size: 0.9em;
}

.font_la {
  font-size: 1.11em;
}

.font_lm {
  font-size: 1.6em;
}

.font_xl {
  font-size: 2em;
}

.font_normal {
  font-weight: normal;
}

.font_bold {
  font-weight: bold;
}

.text_center {
  text-align: center !important;
}

.text_right {
  text-align: right !important;
}

.text_left {
  text-align: left !important;
}

.font_0 {
  font-size: 0;
}

.font_plus {
  font-size: 1.07em;
}

/*kerning*/
.kerning0 {
  letter-spacing: 0;
}

.kerning {
  letter-spacing: -0.05em;
}

.kerning01 {
  letter-spacing: -0.1em;
}

.kerning02 {
  letter-spacing: -0.25em;
}

.kerning03 {
  letter-spacing: -0.5em;
}

.kerning_plus {
  letter-spacing: 0.25em;
}

/*行間詰め*/
.line_height_min {
  line-height: 1.6;
}

/*文字間*/
.letter {
  letter-spacing: 0.08em;
}

/*タイトル調整用*/
.kerning_tit {
  letter-spacing: 0.27em;
}

.kerning_tit_m {
  letter-spacing: 0.17em;
}

.kerning_tit_m02 {
  letter-spacing: 0.1em;
}

.font_num {
  font-size: 1.05em;
}

/*文字にアンチエイリアスを効かせる*/
.font_smoothing {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 文章枠用CSS
====================================================================================================================================== */
p, .text_box {
  margin-bottom: 2.5rem;
}

/*スタンダード（画像右／左寄せ）*/
.common_box {
  overflow: visible;
}

.common_box:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.common_box .img_box {
  float: left;
  margin-right: 20px;
  max-width: 47%;
  width: auto;
  margin-top: 0.6em;
  font-size: 12px;
  line-height: 1.7;
}

.common_box .img_box.auto_width img {
  width: auto;
}

.common_box .text_box {
  display: inline;
  overflow: hidden;
}

/*右*/
.common_box.right .img_box {
  float: right;
  margin-right: 0;
  margin-left: 20px;
}

/*画像3つ並び*/
.photo_3column {
  overflow: hidden;
  text-align: center;
}

.photo_3column img {
  float: left;
  width: 33.3333%;
}

/*画像3つ並び（ページ内）*/
.photo_3column_in {
  margin: 2em 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

.photo_3column_in img {
  width: 31.5%;
  height: auto;
}

/*画像2つ並び（ページ内）*/
.photo_2column_in {
  margin: 2em 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

.photo_2column_in img {
  width: 48%;
  height: auto;
}

/* ２列入力枠 */
.two_column_box {
  margin: 0 -1.5% 1.5em;
}

.two_column_box .half_box {
  float: left;
  width: 50%;
  padding: 0 1.5%;
}

.two_column_box:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

/* ページ内リンク
====================================================================================================================================== */
.qa_box {
  border-top: 1px solid #D1C9BC;
  border-bottom: 1px solid #D1C9BC;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  margin-bottom: -1px;
  text-align: left;
}

.qa_box.opened {
  border-left-color: #D1C9BC;
  border-right-color: #D1C9BC;
}

.qa_box.opened .qa_title p:after {
  display: none;
}

.qa_box .qa_title {
  padding: 1.5em 1.1em;
  transition: .2s;
  line-height: 1.8;
}

.qa_box .qa_title p {
  font-weight: bold;
  margin-bottom: 0;
  position: relative;
  padding-right: 1.1em;
}

.qa_box .qa_title p:before, .qa_box .qa_title p:after {
  content: "";
  display: block;
  width: 0.86em;
  height: 1px;
  background-color: #263940;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}

.qa_box .qa_title p:after {
  rotate: 90deg;
}

.qa_box .qa_answer {
  border-top: 1px solid #D1C9BC;
  padding: 1.1em 1.1em 1.5em;
}

.qa_box .qa_answer h3 {
  margin-bottom: 0.8rem;
}

.qa_box .qa_answer p {
  margin-bottom: 1.4rem;
}

.qa_box .qa_answer ul {
  margin-bottom: 1.4rem !important;
}

.qa_box .qa_answer > *:last-child {
  margin-bottom: 0 !important;
}

.qa_box .qa_answer .qa_section {
  margin-bottom: 1.8rem;
}

.qa_box .qa_answer .qa_section > *:last-child {
  margin-bottom: 0 !important;
}

@media (hover: hover) {
  .qa_box .qa_title:hover {
    cursor: pointer;
    opacity: 0.8;
  }
}

#cancellation_fee {
  margin-bottom: 0;
}
