/* HEADER */
nav {
  font-size: 1.3rem;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, .1);
}

.header_line_top {
  text-align: center;
  background-color: #26993A;
  color: #ffffff;
  font-weight: bold;
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, .2); */
}

.header_news {
  display: flex;
  font-size: 1.3rem;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px 0;
  background-color: #D8D8D8;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, .1);
}

.header_news a {
  text-decoration: underline;
}

.header_submenu {
  font-size: 1.2rem;
  color: #6b6b6b;
  display: none;
  align-items: center;
  justify-content: right;
  gap: 24px;
  max-width: 1064px;
  padding: 8px 32px;
  padding-top: 16px;
  margin: auto;
}

.header_submenu_container {
  display: flex;
  gap: 16px;
}
.ol_header_submenu {
  width: 100%;
  padding: 8xp 16px;
}
.ol_header_submenu_container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.ol_header_submenu .header_submenu_item {
  padding: 4px 0;
}
.header_submenu_item:before {
  content: url(../images/sample/icon_triangle.png);
  margin-right: 8px;
}

.header_nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px;
  position: sticky;
  top: 16px;
  height: 50px;
}
.ol_header_nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px;
}
.ol_header_nav ul {
  padding: 8xp 16px;
  width: 100%;
}
.ol_header_nav .header_nav_menu_item {
  padding: 8px 0;
  border-top: 1px solid #E9E9E9;
}
.ol_header_nav .header_nav_menu_item:last-child {
  border-bottom: 1px solid #E9E9E9;
}
.ol_header_nav .header_nav_menu_item a {
  display: block;
  width: 100%;
}
.header_nav_menu {
  display: none;
  flex-direction: column;
}

.header_nav_menu_item:before {
  content: "|";
  margin: 0 16px;
  color: #E3E3E3;
}

.ol_header_nav .header_nav_menu_item:before {
  content: none;
}

.header_nav_menu_item:after:last-child {
  content: "|";
  margin: 0 16px;
  color: #E3E3E3;
}

.header_nav_menu_item,
.header_nav_menu_item a {
  display: flex;
  align-items: center;
}

.header_nav_menu_item img {
  width: 20px;
  margin-right: 4px;
}

.header_nav_menu_item span {
  font-weight: 700;
  font-size: 1.6rem;
  color: #26993A;
}

@media screen and (min-width: 768px) {
  .header_nav {
    height: 65px;
  }
  .header_nav {
    flex-direction: row;
  }
  .header_news {
    gap: 24px;
  }
  .header_nav_menu {
    display: flex;
    flex-direction: row;
  }
  .header_nav {
    justify-content: center;
  }
  .header_submenu {
    display: flex;
  }
}

/* FAQ */
.faq dt {
  display: flex;
  gap: 16px;
}

.faq_icon {
  display: none;
}

.faq_icon img {
  width: 60px;
}

.faq_comment_number {
  display: flex;
  align-items: center;
}

.faq_comment_number img:first-child {
  width: 20px;
  margin-left: 16px;
  margin-right: 8px;
  display: block;
}

.faq_comment_number img:nth-child(2) {
  width: 20px;
  margin-left: 16px;
  margin-right: 8px;
  display: none;
}

dt:hover .faq_comment_number img:first-child {
  display: none;
}

dt:hover .faq_comment_number img:nth-child(2) {
  display: block;
}

.open .faq_comment_number img:first-child {
  display: none;
}

.open .faq_comment_number img:nth-child(2) {
  display: block;
}

.faq_counter {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .faq_icon {
    display: block;
  }

  .faq dt {
    display: flex;
    gap: 24px;
  }
}

/* TOPIC */
.topic_special {
  background-color: #313131;
}

/* SPECIAL */
.topic_special {
  padding-top: 80px;
}

/* ARTICLE ANSWER */
.answer_item {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 24px;
  border-radius: 3px;
  border: 2px solid #26993A;
  margin-bottom: 24px;
  gap: 0px;
}

.answer_item_info {
  width: 150px;
  text-align: center;
}

.answer_item_info img {
  border-radius: 150px;
  object-fit: cover;
  width: 150px;
  height: 150px;
  margin-bottom: 24px;
}

.answer_item_content {
  flex: 1;
}

.answer_item_content {
  margin-top: 16px;
  flex: 1;
}

@media screen and (min-width: 768px) {
  .answer_item {
    flex-direction: row;
    padding: 24px;
    border-radius: 3px;
    border: 2px solid #26993A;
    margin-bottom: 48px;
    gap: 24px;
  }

  .answer_item_content {
    margin-top: 0;
    flex: 1;
  }
}

/* ARTICLE TOPIC */
.article_outline {
  padding: 16px;
  border-radius: 3px;
  margin-bottom: 24px;
  background-color: #F8F8F8;
}

.article_outline a {
  display: block;
}

.article_outline_l {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 8px 0;
  text-decoration: underline;
}

.article_outline_s {
  margin-left: 16px;
}

.article_outline .child_field {
  margin-bottom: 24px;
}

.article_content_talk_item {
  display: flex;
  align-items: start;
  gap: 8px;
  margin: 16px 0;
}

.article_content_talk_item_right {
  flex-direction: row-reverse;
}

.article_content_talk_item_speaker {
  width: 60px;
  height: 60px;
  border-radius: 60px;
}

.article_content_talk_item_script {
  flex: 1;
}

.article_content_talk_item_script strong {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(246,237,22,0.35)), to(rgba(168,246,22,0.35)));
  background-image: linear-gradient(90deg, rgba(246,237,22,0.35), rgba(168,246,22,0.35));
  background-size: 100% 0.5rem;
  background-position: left bottom;
  background-repeat: no-repeat;
  box-sizing: inherit;
  display: inline;
}

.article_content_talk_item_left .article_content_talk_item_speaker {
  background-color: #EBF5ED;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article_content_talk_item_left .article_content_talk_item_script {
  position: relative;
  background-color: #EBF5ED;
  padding: 0 16px;
}

.article_content_talk_item_left .article_content_talk_item_script p {
  margin: 8px 0;
  font-size: 1.3rem;
}

.article_content_talk_item_left .article_content_talk_item_script:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  margin-top: -15px;
  border: 10px solid transparent;
  border-right: 10px solid #EBF5ED;
}

.article_content_talk_item_right .article_content_talk_item_speaker {
  background-color: #FAF5EE;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article_content_talk_item_right .article_content_talk_item_script {
  position: relative;
  background-color: #FAF5EE;
  padding: 0 24px;
}

.article_content_talk_item_right .article_content_talk_item_script:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  margin-top: -10px;
  border: 10px solid transparent;
  border-left: 10px solid #FAF5EE;
}

@media screen and (min-width: 768px) {
  .article_outline {
    padding: 24px;
    margin-bottom: 48px;
  }

  .article_outline_l {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 8px 0;
  }

  .article_outline_s {
    margin-left: 24px;
  }

  .article_content_talk_item {
    display: flex;
    align-items: start;
    gap: 24px;
    margin: 32px 0;
  }

  .article_content_talk_item_speaker {
    width: 80px;
    height: 80px;
    border-radius: 80px;
  }

  .article_content_talk_item_left .article_content_talk_item_script {
    position: relative;
    background-color: #EBF5ED;
    padding: 0 24px;
  }

  .article_content_talk_item_left .article_content_talk_item_script p {
    margin: 16px 0;
    font-size: 1.4rem;
  }

  .article_content_talk_item_left .article_content_talk_item_script:before {
    content: "";
    position: absolute;
    top: 45px;
    left: -30px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 15px solid #EBF5ED;
  }

  .article_content_talk_item_right .article_content_talk_item_script:before {
    content: "";
    position: absolute;
    top: 45px;
    left: 100%;
    margin-top: -15px;
    border: 15px solid transparent;
    border-left: 15px solid #FAF5EE;
  }
}

/* FLEX */
.flex_list {
  display: flex;
  justify-content: center;
}

.flex_list_item {
  margin: 0 16px;
}

/* WP MEMBER */
#wpmem_login,
#wpmem_msg,
#wpmem_reg,
.wpmem_msg {
  width: 100% !important;
}

#wpmem_login input[type=password],
#wpmem_login input[type=text],
#wpmem_reg input[type=date],
#wpmem_reg input[type=email],
#wpmem_reg input[type=number],
#wpmem_reg input[type=password],
#wpmem_reg input[type=text],
#wpmem_reg input[type=url],
#wpmem_reg textarea {
  line-height: 24px;
  min-height: 24px;
}

/* TABLE FORM */
.tableForm {
  width: 100%;
  border-collapse: separate;
  border-spacing: 10px 20px;
}

.tableForm th {
  width: 100%;
  display: block;
  vertical-align: top;
  padding-top: 6px;
  text-align: left;
}

.tableForm td {
  width: 100%;
  display: block;
  margin-top: 10px;
}

.tableForm td span {}

.tableForm_2 th {
  width: 100%;
}

.tableForm_2 td {
  width: 100%;
}

.tableForm .header {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 5px;
  text-align: left;
  font-weight: 700;
  color: yellow;
}

.tableForm input,
.tableForm select {
  width: 100%;
  line-height: 40px;
  background-color: #ffffff;
  border: 1px solid #B3B3B3;
  text-indent: 20px;
  border-radius: 5px;
  color: #000000;
}

.tableForm input[type="checkbox"] {
  width: auto;
}

.tableForm input[type="radio"] {
  width: auto;
}

.tableForm input[type="file"] {
  background-color: transparent;
}

.tableForm_2 {
  width: 100%;
  margin-top: 50px;
}

.tableForm_2 th {
  width: 100%;
  font-weight: bold;
  display: inline-block;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 5px;
}

.tableForm_2 td {
  width: 100%;
  display: inline-block;
}

.tableForm .el_inlineBlock span {
  display: inline-block;
  margin-right: 8px;
}

input::placeholder {
  color: orange;
}

input#file-upload-button {
  height: 40px;
  line-height: 40px;
}

.tableForm input::placeholder,
.tableForm select::placeholder {
  color: #d3d3d3;
}

.tableForm textarea {
  width: 100%;
  line-height: 40px;
  background-color: #ffffff;
  border: 1px solid #B3B3B3;
  text-indent: 20px;
  border-radius: 5px;
}

.required {
  font-size: 1.2rem;
  line-height: 1.4rem;
  margin-right: 8px;
  padding: 3px 5px;
  background: #ff8d00;
  color: #ffffff;
  font-weight: bold;
  border-radius: 2px;
}

.attention {
  display: block;
  border-radius: 4px;
  padding: 16px;
  background-color: rgba(255, 255, 255, .2);
}

@media screen and (min-width: 768px) {
  .tableForm th {
    width: 25%;
    display: inline-block;
  }

  .tableForm td {
    width: 75%;
    display: inline-block;
    margin-top: 0;
  }
}

@media screen and (min-width: 896px) {}

@media screen and (min-width: 1030px) {}

@media screen and (min-width: 1110px) {}

/* .tableForm th {
    width: 100%;
    display: block;
    margin-bottom: 8px;
    text-align: left;
    vertical-align: top;
}

.tableForm td {
    line-height: 1.9em;
    text-align: left;
    width: 100%;
    display: block;
    margin-bottom: 16px;
} */

.mwform-radio-field label {
  display: inline-block;
}

.mw_wp_form .horizontal-item+.horizontal-item {
  margin-left: 0 !important;
}