/*==========================
select-game
==========================*/

.select-game {
  font-size: 0;
}

.game-item {
  display: inline-block;
  margin-right: 10px;
}

.game-item a {
  background: var(--tertiary-color);
  border-radius: 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: auto;
  padding: 0 40px 0 0;
  position: relative;
  transition: .2s;
}

.game-item a svg {
  fill: var(--text-light);
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4px;
  margin: auto;
  transition: .2s;
}

.game-item a .game-item_media {
  width: 50px;
  height: 50px;
}

.game-item a .game-item_media .media-inner {
  border-radius: 6px 0 0 6px;
  overflow: hidden;
}

.game-item a .game-item_media .media-inner img {
  width: 100%;
  height: auto;
  display: block;
}

.game-item a .game-item_content {
  color: var(--text-light);
  width: auto;
  height: auto;
  font-size: 14px;
  font-weight: bold;
  padding-left: 15px;
  transition: .2s;
}

.game-item a:hover {
  background: #f0effb;
}

.game-item a:hover .game-item_content {
  color: var(--primary-color);
}

.game-item a:hover svg {
  fill: var(--primary-color);
}

@media screen and (max-width: 799px) {
  .sp-select_game {
    padding: 20px 0 5px 15px;
  }
  .sp-select_game.nowrap {
    padding-right: 0;
  }
  .select-game {
    height: 50px;
    overflow-y: hidden;
  }
  .game-list {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

/*==========================
slect-category
==========================*/

.l-header_item .category-list_wrapper {
  height: 42px;
  overflow-y: hidden;
}

.l-header_item .category-list {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  font-size: 0;
}

.category-list li {
  display: inline-block;
  margin-right: 6px;
}

.category-list li:last-child {
  margin-right: 0;
}

.sub-block .category-list li {
  margin-bottom: 10px;
}

@media screen and (max-width: 499px) {
  .sub-block .category-list {
    padding: 15px 15px 0 15px;
  }
}

.category-list li a {
  background: var(--tertiary-color);
  border-radius: 6px;
  color: var(--text-light);
  display: block;
  font-size: 12px;
  font-weight: bold;
  padding: 15px 30px;
  transition: .2s;
}

.category-list li a:hover {
  background: #f0effb;
  color: var(--primary-color);
}

.category-list li.current-cat a {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
}

/*==========================
user-menu
==========================*/

.user-menu_box {
  float: right;
  margin: 4px 0;
}

.user-menu_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.user-menu_item {
  display: block;
  margin-right: 10px;
}

.user-menu_item:last-child {
  margin-right: 0;
}

.user-menu_item.user-icon {
  width: 34px;
  height: 34px;
}

.user-menu_item.user-icon a {
  border-radius: 50%;
  display: block;
  overflow: hidden;
}

.user-menu_item.user-icon a img {
  display: block;
  width: 100%;
  height: auto;
}

/*==========================
search-container
==========================*/

.search-container {
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 1000;
  overflow: hidden;
  width: 100vw;
  height: 100%;
  color: var(--text-light);
  background-color: var(--background-light);
  touch-action: none;
  -webkit-transition: top .6s cubic-bezier(.19,1,.22,1);
  transition: top .4s cubic-bezier(.19,1,.22,1);
}

.search-container.is-open {
  top: 0;
}

.search-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.search-header {
  background-color: var(--background-light);
  border-bottom: 1px solid var(--border-light);
  width: 100%;
  height: 54px;
  padding: 0 15px;
  position: sticky;
  top: 0;
}

.search-header #searchform {
  box-sizing: border-box;
  float: left;
  width: calc(100% - 40px);
  height: 54px;
  padding: 7px 0;
  position: relative;
}

.search-header #searchform input {
  background-color: var(--tertiary-color);
  border-radius: 999px;
  width: 100%;
  height: 40px;
  padding: 10px 15px 10px 45px;
}

.search-header #searchform .icon-search svg {
  fill: var(--label-light);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 15px;
  left: 15px;
}

.search-header .search-toggle {
  width: 30px;
  height: 54px;
  float: right;
  position: relative;
}

.search-header .search-toggle svg {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.search-content {
  margin-bottom: 40px;
}

.search-content_title {
  background-color: var(--tertiary-color);
  color: var(--text-light);
  font-size: 13px;
  font-weight: bold;
  padding: 15px;
}

.search-content ul.separate li:nth-child(odd) {
  border-right: 1px solid var(--border-light);
}

.search-content li {
  border-bottom: 1px solid var(--border-light);
}

.search-content li:last-child {
  border-bottom: none;
}

.search-content li a {
  color: var(--link-text);
  display: block;
  font-size: 14px;
  padding: 15px;
}

.search-content ul.separate {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.search-content ul.separate li {
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.search-content ul.separate li:nth-last-child(-n+2) {
  border-bottom: none;
}

.search-content ul:last-child {
  border-bottom: 1px solid var(--border-light);
}

/*==========================
article-group
==========================*/

.article-group {
  padding: 2% 1.6% 0;
}

.article-group .main-list {
  border-bottom: 2px solid var(--border-light);
  padding: 0;
}

.article-group:last-child .main-list {
  border-bottom: none;
}

.article-group_heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.article-group_heading a {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%233f8cff" d="M12.8414611,12 L10.1203717,8.82539569 C9.94066062,8.61573277 9.96494139,8.30008277 10.1746043,8.1203717 C10.3842672,7.94066062 10.6999172,7.96494139 10.8796283,8.17460431 L13.8796283,11.6746043 C14.0401239,11.8618492 14.0401239,12.1381508 13.8796283,12.3253957 L10.8796283,15.8253957 C10.6999172,16.0350586 10.3842672,16.0593394 10.1746043,15.8796283 C9.96494139,15.6999172 9.94066062,15.3842672 10.1203717,15.1746043 L12.8414611,12 Z"/></svg>');
  background-repeat: no-repeat;
  background-position: right;
  color: var(--link-text);
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  padding: 0 20px 0 10px;
}

@media screen and (max-width: 799px) {
  .article-group .main-list {
    border-bottom: none;
  }
  .article-group_heading a {
    display: none;
  }
}

@media screen and (max-width: 499px) {
  .article-group {
    padding: 20px 0 0;
  }
  .article-group:first-child {
    padding: 0;
  }
  .article-group_heading {
    padding: 0 15px;
  }
}

/*==========================
article-main
==========================*/

.main-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 2% 1.6% 0;
}

@media screen and (min-width: 500px) and (max-width: 887px) {
  .main-list {
    padding: 15px 15px 0;
  }
  .main-list .article-item {
    flex-basis: calc(98% / 2);
    margin: 0 2% 30px 0;
  }
  .main-list .article-item:nth-child(even) {
    margin: 0 0 30px 0;
  }
}

@media screen and (min-width: 888px) and (max-width: 1143px) {
  .main-list .article-item {
    flex-basis: calc(97% / 3);
    margin: 0 1.5% 40px 0;
  }

  .main-list .article-item:nth-child(3n) {
    margin: 0 0 40px 0;
  }

  .article-group .article-item:nth-last-child(-n+2) {
    display: none;
  }
}

@media screen and (min-width: 1144px) and (max-width: 1779px) {

  .main-list .article-item {
    flex-basis: calc(96% / 4);
    margin: 0 calc(4% / 3) 40px 0;
  }

  .main-list .article-item:nth-child(4n) {
    margin: 0 0 40px 0;
  }

}

@media screen and (min-width: 1780px) and (max-width: 1919px) {
  .main-list .article-item {
    flex-basis: calc(96% / 5);
    margin: 0 calc(4% / 4) 40px 0;
  }

  .main-list .article-item:nth-child(5n) {
    margin: 0 0 40px 0;
  }

  .article-group .article-item:nth-last-child(-n+3) {
    display: none;
  }
}

@media screen and (min-width: 1920px) {
  .main-list .article-item {
    flex-basis: calc(96% / 6);
    margin: 0 calc(4% / 5) 40px 0;
  }

  .main-list .article-item:nth-child(6n) {
    margin: 0 0 40px 0;
  }

  .article-group .article-item:nth-last-child(-n+2) {
    display: none;
  }
}

.main-list .article-item a {
  display: block;
  width: 100%;
  height: auto;
}

.main-list .article-item_media {
  width: 100%;
  height: auto;
  transition: .2s;
}

.article-item_media img {
  display: block;
  width: 100%;
  height: auto;
}

.main-list .article-item_content {
  width: 100%;
  height: auto;
  padding: 15px 10px 0 8px;
}

.main-list .article-item_title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .02em;
  margin-bottom: 5px;
  font-feature-settings: "palt";
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: box;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}

.meta-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.meta-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}

@media screen and (max-width: 499px) {
  .meta-item {
    margin-right: 6px;
  }
}

.meta-item:last-child {
  margin-right: 0;
}

.meta-item time {
  font-size: 13px;
  color: var(--label-light);
}

.meta-item svg {
  display: inline-block;
  fill: var(--label-light);
  width: 18px;
  height: 18px;
}

.meta-item:nth-child(3) svg {
  width: 15px;
  height: 15px;
  padding-right: 2px;
}

.meta-item span {
  color: var(--label-light);
  font-size: 12px;
  padding-top: 1px;
}

.article-item a:hover .article-item_media {
  opacity: .85;
}

@media screen and (max-width: 799px) {
  .main-list .article-item_content {
    padding: 10px 6px 0 4px;
  }
  .main-list .article-item_title {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 499px) {
  .main-list {
    padding: 0;
  }
  .main-list .article-item {
    flex-basis: 100%;
    border-bottom: 1px solid var(--border-light);
    padding: 15px;
  }
  .main-list .article-item:first-child {
    padding: 0 15px 15px 15px;
  }
  .main-list .article-item:last-child {
    border-bottom: none;
  }
  .article-item a:hover .article-item_media {
    opacity: 1;
  }
  /*.main-list .article-item:not(:nth-child(-n+5)) a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .main-list .article-item:not(:nth-child(-n+5)) .article-item_media {
    -webkit-flex-basis: 140px;
    -ms-flex-preferred-size: 140px;
    flex-basis: 140px;
    position: relative;
  }
  .main-list .article-item:not(:nth-child(-n+5)) .article-item_content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 0 13px;
    padding: 0;
  }*/
}

/*==========================
article sub
==========================*/

.sub-list {
  counter-reset: list;
}

.sub-list .article-item {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.sub-list .article-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sub-list .article-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.sub-list .article-item_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 0 15px;
}

.sub-list .article-item_content.content-only {
  margin: 0;
}

.sub-list .article-item_title {
  font-size: 14px;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1.5;
  margin-bottom: 4px;
}

.sub-list .article-item_date {
  color: var(--label-light);
  font-size: 13px;
}

.sub-list .article-item_media {
  -webkit-flex-basis: 180px;
  -ms-flex-preferred-size: 180px;
  flex-basis: 180px;
  position: relative;
  transition: .2s;
}

@media screen and (max-width: 1500px) {
  .sub-list .article-item_media {
    -webkit-flex-basis: 42%;
    -ms-flex-preferred-size: 42%;
    flex-basis: 42%;
  }
}

@media screen and (min-width: 888px) and (max-width: 1078px) {
  .sub-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sub-list .article-item {
    flex-basis: calc(97% / 3);
    margin-right: 1.5%;
    margin-bottom: 30px;
  }
  .sub-list .article-item:nth-child(3n) {
    margin-right: 0;
  }
  .sub-list .article-item a {
    display: block;
  }
  .sub-list .article-item_content {
    display: block;
    margin: 0;
    padding: 12px 8px 0;
  }
  .sub-list .article-item_media {
    width: 100%;
  }
}

@media screen and (min-width: 500px) and (max-width: 887px) {
  .sub-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sub-list .article-item {
    flex-basis: calc(98% / 2);
    margin-right: 2%;
    margin-bottom: 30px;
  }
  .sub-list .article-item:nth-child(even) {
    margin-right: 0;
  }
  .sub-list .article-item a {
    display: block;
  }
  .sub-list .article-item_content {
    display: block;
    margin: 0;
    padding: 12px 8px 0;
  }
  .sub-list .article-item_media {
    width: 100%;
  }
}

@media screen and (max-width: 499px) {
  .sub-list {
    display: block;
  }
  .sub-list .article-item {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 0;
    padding: 15px;
  }
  .sub-list .article-item .article-item_media {
    -webkit-flex-basis: 140px;
    -ms-flex-preferred-size: 140px;
    flex-basis: 140px;
    position: relative;
  }
  .sub-list .article-item .article-item_content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 0 13px;
    padding: 0;
  }
  /*.sub-list.ranking .article-item:nth-child(-n+5) a {
    display: block;
  }
  .sub-list.ranking .article-item:nth-child(-n+5) .article-item_media {
    width: 100%;
    margin-bottom: 10px;
  }
  .sub-list.ranking .article-item:nth-child(-n+5) .article-item_content {
    margin: 0;
  }*/
}

.sub-list .article-item a:hover .article-item_media {
  opacity: .8;
}

.ranking .article-item .article-item_media:before {
  background: var(--text-light);
  counter-increment: list;
  content: counter(list);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 13px;
  line-height: 30px;
  letter-spacing: 0;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 1;
}

.ranking .article-item:nth-child(1) .article-item_media:before {
  background: #f68e10;
}

.ranking .article-item:nth-child(2) .article-item_media:before {
  background: #828282;
}

.ranking .article-item:nth-child(3) .article-item_media:before {
  background: #7f6300;
}

/*==========================
single-heading
==========================*/

.single-heading {
  border-bottom: 1px solid var(--border-light);
  padding: 40px 0 20px 0;
}

@media screen and (max-width: 1585px) {
  .single-heading {
    padding: 20px 0 20px 0;
  }
}

@media screen and (max-width: 799px) {
  .single-heading {
    padding: 0;
  }
}

.single-heading_media {
  width: 100%;
  height: auto;
}

.single-heading img {
  display: block;
  width: 100%;
  height: auto;
}

.single-heading_content {
  padding: 20px 0 0 0;
}

.single-heading .content-title {
  font-size: 24px;
  font-weight: bold;
  font-feature-settings: "palt";
  line-height: 1.5;
}

.content-sub {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.content-label .content-label_cat {
  display: inline-block;
  padding-left: 10px;
}

.content-label .content-label_cat a {
  font-size: 15px;
  display: block;
}

.content-label .content-label_date {
  color: var(--label-light);
  display: inline-block;
  font-size: 15px;
}

.content-action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.single-body .content-action {
  margin-top: 60px;
  float: right;
}

@media screen and (max-width: 499px) {
  .single-body .content-action {
    margin-top: 40px;
  }
}

.content-action_item {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 15px;
  position: relative;
}

.content-action_item span {
  font-size: 13px;
  padding: 3px 0 0 3px;
}

.content-action_item svg {
  fill: var(--text-light);
  width: 22px;
  height: 22px;
}

@media screen and (max-width: 799px) {
  .single-heading_content {
    padding: 20px 15px;
  }
}

@media screen and (max-width: 499px) {
  .single-heading .content-title {
    font-size: 18px;
  }
  .content-label .content-label_date,
  .content-label .content-label_cat a {
    font-size: 12px;
  }
  .content-label .content-label_cat {
    padding-left: 6px;
  }
}

/*==========================
single-body_style
==========================*/

.single-wrapper {
  -webkit-flex-basis: 800px;
  -ms-flex-preferred-size: 800px;
  flex-basis: 800px;
  max-width: 800px;
  height: auto;
  padding: 0 0 30px;
  margin-right: 3%;
}

@media screen and (min-width: 1079px) and (max-width: 1144px) {
  .single-wrapper {
    -webkit-flex-basis: 640px;
    -ms-flex-preferred-size: 640px;
    flex-basis: 640px;
    max-width: 640px;
    flex-shrink: 0;
  }
}

@media screen and (max-width: 1078px) {
  .single-wrapper {
    margin-right: 0;
  }
}

.single-body {
  border-bottom: 1px solid var(--border-light);
  padding: 40px 0;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

@media screen and (max-width: 799px) {
  .single-body {
    padding: 20px 15px;
  }
}

.single-body h2,
.single-body h3,
.single-body h4,
.single-body h5 {
  font-weight: bold;
  line-height: 1.5;
}

.single-body h2{
  background: var(--tertiary-color);
  font-size: 24px;
  margin: 64px 0 40px;
  padding: 15px 20px;
}

.single-body h3 {
  font-size: 24px;
  margin: 64px 0 30px;
}

.single-body h4 {
  font-size: 20px;
  margin: 40px 0 30px;
}

.single-body h5 {
  font-size: 20px;
  margin: 64px 0 30px;
}

.single-body p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
}

.single-body strong {
  font-weight: bold;
}

.single-body p img {
  width: 100%;
  height: auto;
  display: block;
}

.single-body p a {
  color: var(--link-text);
  text-decoration: underline;
  transition: .2s;
}

.single-body p a:hover {
  color: var(--link-text);
  text-decoration: none;
}

.single-body ul,
.single-body ol {
  margin: 30px 0;
}

.single-body ol {
  counter-reset: list;
}

.single-body li {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 10px 0;
  padding: 0 0 0 46px;
  position: relative;
}

.single-body li:last-child {
  margin: 0;
}

.single-body ul li:before {
  content: "";
  background: #221f20;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: 15px;
}

.single-body ol li:before {
  counter-increment: list;
  content: counter(list);
  position: absolute;
  top: 2px;
  left: 15px;
  color: #221f20;
  font-size: 15px;
}

.single-body table {
  overflow-x: scroll;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  min-width: 100%;
  margin-bottom: 30px;
}

.single-body table tbody {
  border-collapse: collapse;
  min-width: 100%;
  display: table;
  text-align: center;
}

.single-body th,
.single-body td {
  border: 1px solid #d1d1d1;
  padding: 10px 20px;
}

.single-body th {
  background-color: var(--tertiary-color);
  color: #221f20;
  font-size: 14px;
  font-weight: bold;
}

.single-body td {
  font-size: 13px;
  font-weight: bold;
}

.single-body small {
  font-size: 11px;
  color: #b7b9c0;
  display: block;
  margin-top: 60px;
  letter-spacing: normal;
}

@media screen and (max-width: 499px) {
  .single-body h2{
    font-size: 20px;
    margin: 42px 0 22px;
    padding: 10px;
  }
  .single-body h3 {
    font-size: 22px;
    margin: 42px 0 22px;
  }
  .single-body h4 {
    font-size: 18px;
    margin: 30px 0 15px;
  }
  .single-body h5 {
    font-size: 16px;
    margin: 30px 0 15px;
  }
  .single-body p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .single-body ul,
  .single-body ol {
    margin: 20px 0;
  }
  .single-body li {
    font-size: 15px;
    margin: 0 0 8px 0;
    padding: 0 0 0 30px;
  }
  .single-body ul li:before {
    top: 10px;
    left: 10px;
  }
  .single-body ol li:before {
    top: 0;
    left: 10px;
  }
  .single-body table.table-scroll {
    display: block;
  }
}

/*==========================
toc
==========================*/

.toc-container {
  border-left: 2px solid #f1f1f1;
  padding-left: 20px;
}

.toc-title {
  font-size: 18px !important;
  font-weight: bold;
  margin: 0 0 15px 0 !important;
  padding: 0 0 0 30px;
  position: relative;
}

.toc-title svg {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.toc-list {
  margin: 0 !important;
}

.toc-container li:before {
  display: none !important;
}

.toc-item {
  margin: 0 0 15px 0 !important;
  padding: 0 0 0 20px !important;
}

.toc-item a {
  font-size: 16px;
  font-weight: bold;
  color: var(--link-text);
}

.toc-item ul {
  margin: 10px 0 !important;
}

.toc-item li {
  margin: 0 0 6px 0 !important;
  padding: 0 0 0 20px !important;
}

.toc-item li a {
  font-size: 14px;
  font-weight: normal;
}

@media screen and (max-width: 499px) {
  .toc-container {
    padding-left: 10px;
  }
  .toc-title {
    font-size: 16px !important;
    margin: 0 0 10px 0 !important;
  }
  .toc-item {
    margin: 0 0 10px 0 !important;
    padding: 0 0 0 10px !important;
  }
  .toc-item a {
    font-size: 15px;
  }
  .toc-item li {
    margin: 0 0 4px 0 !important;
    padding: 0 0 0 10px !important;
  }
}

/*==========================
single-body_components
==========================*/

.wp-caption {
  max-width: 100% !important; }

.wp-caption img {
  max-width: 100%;
  height: auto;
}

.wp-caption-text {
  font-size: 14px !important;
  color: #888 !important;
  line-height: 1.4 !important;
  margin-top: 8px; }

.youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%; }

.single-body .youtube {
  margin-bottom: 40px;
}

.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.l-single_content__in iframe {
  display: block;
  max-width: 100%; }

.alignleft img {
  text-align: left; }

.aligncenter {
  max-width: 100%;
  margin: 0 auto;
  text-align: center; }

.aligncenter img {
  display: block;
  margin: 1px auto;
  width: 100%;
  height: auto; }

.alignright img {
  display: block;
  margin: 1px 1px 1px auto; }

.wpap-tpl-detail {
  max-width: 100% !important; }

.wp-video {
  width: 100% !important;
  height: auto !important;
  margin-bottom: 30px; }
  .wp-video video {
    width: 100% !important;
    height: auto !important;  }

/*==========================
modal
==========================*/

.share-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: .2s;
}

.share-modal.is-show {
  opacity: 1;
  visibility: visible;
}

.share-modal_inner {
  width: 420px;
  height: 219px;
  padding: 30px 0 0 0;
  background-color: var(--background-light);
  z-index: 2;
}

@media screen and (min-width: 500px) {
  .share-modal_inner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}

.black-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.8);
  z-index: 1;
}

.share-modal_heading {
  font-size: 16px;
  padding: 0 30px;
}

.share-modal_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px 40px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.share-modal_item {
  width: 70px;
  height: auto;
}

.share-modal_item a {
  display: block;
  width: 100%;
  height: auto;
}

.share-modal_item .sns-icon {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  position: relative;
}

.share-modal_item .sns-icon img,
.share-modal_item .sns-icon svg {
  display: block;
  width: 60px;
  height: 60px;
}

.share-modal_item .sns-icon.link-copy {
  background: #a8abb0;
}

.share-modal_item .sns-icon.link-copy span {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 24 24"><path fill="%23ffffff" d="M12.1509114,11.8471512 C11.9561803,11.6513594 11.9570402,11.3347781 12.152832,11.140047 C12.3486238,10.9453159 12.6652051,10.9461758 12.8599362,11.1419675 C14.1569415,12.4460376 14.1552178,14.5533998 12.856081,15.8553464 L10.688307,18.0278091 C9.3951468,19.3237661 7.29827736,19.3325453 5.99431094,18.0474618 C4.69149253,16.763155 4.67648972,14.6664 5.96047544,13.3639073 L8.14392596,11.1489854 C8.33778599,10.9523311 8.65436038,10.9500659 8.85101464,11.143926 C9.0476689,11.337786 9.04993407,11.6543604 8.85607404,11.8510146 L6.67262352,14.0659366 C5.77635786,14.9751207 5.78683033,16.4387269 6.69601444,17.3349926 C7.60857323,18.2343365 9.07566605,18.2281941 9.98043674,17.3214665 L12.1482108,15.1490039 C13.0582922,14.2369541 13.0594996,12.7606885 12.1509114,11.8471512 Z M11.6878673,12.1529632 C11.8825984,12.3487549 11.8817385,12.6653363 11.6859467,12.8600673 C11.4901549,13.0547984 11.1735736,13.0539386 10.9788425,12.8581468 C9.6815949,11.553833 9.68192903,9.44650437 10.9795902,8.14260207 L13.0682259,6.04392106 C14.4153605,4.69030749 16.5980987,4.66396082 17.9775134,5.98466366 C18.0231051,6.02831479 18.0674283,6.07327174 18.1104279,6.11947844 C19.3455559,7.44672946 19.2708754,9.52394808 17.9436244,10.7590761 L15.679401,12.8661422 C15.4772494,13.0542628 15.1608713,13.0428883 14.9727508,12.8407366 C14.7846303,12.638585 14.7960047,12.3222069 14.9981564,12.1340864 L17.2623797,10.0270203 C18.1853275,9.16813328 18.237259,7.72367084 17.378372,6.80072308 C17.3484709,6.76859174 17.3176493,6.73732944 17.2859456,6.70697519 C16.3000074,5.76300139 14.7398929,5.7818327 13.777027,6.74932948 L11.6883913,8.84801049 C10.7789081,9.76186788 10.7786739,11.2388174 11.6878673,12.1529632 Z"/></svg>');
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.share-modal_item .sns-name {
  text-align: center;
  font-size: 12px;
}

.share-modal_close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 24px;
  right: 20px;
}

.share-modal_close svg {
  width: 30px;
  height: 30px;
}

.share-modal_cancel {
  border-top: 1px solid var(--border-light);
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 15px;
  line-height: 15px;
  text-align: center;
}

@media screen and (max-width: 499px) {
  .share-modal_inner {
    border-radius: 15px 15px 0 0;
    width: 100%;
    height: auto;
    padding: 20px 0 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .share-modal_list {
    padding: 15px 20px;
  }
  .share-modal_heading {
    font-size: 14px;
    padding: 0 15px;
    text-align: center;
  }
  .share-modal_close {
    display: none;
  }
  .share-modal_item .sns-icon {
    margin: 0 auto 10px;
  }
}

/*==========================
single-footer
==========================*/

.single-footer {
  letter-spacing: .05rem;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  padding: 40px 0 20px;
}

@media screen and (max-width: 799px) {
  .single-footer {
    padding: 30px 15px;
  }
}

.single-footer:last-child {
  border-bottom: none;
}

.single-footer_heading {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 30px 0;
  position: relative;
}

.single-footer_heading span {
  font-size: 14px;
}

.single-footer_heading.with-icon {
  padding-left: 30px;
}

.single-footer_heading.with-icon svg {
  fill: var(--text-light);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

/*==========================
comment
==========================*/

.comment-form_container {
  background: var(--background-light);
  padding: 0 0 30px 0;
}

@media screen and (max-width: 799px) {
  .comment-form_container {
    padding: 0;
  }
}

.comment-form {
  width: 100%;
  position: relative;
}

.comment-form_item {
  margin-bottom: 20px;
}

.comment-form_item:last-child {
  margin-bottom: 0;
}

.comment-form_item input,
.comment-form_item textarea {
  background: var(--tertiary-color);
  border-radius: 6px;
  width: 100%;
  max-width: 100%;
  padding: 15px;
}

.comment-list {
  padding: 40px 0 0 0;
}

.comment-item {
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}

.comment-item:first-child {
  padding-top: 0;
}

.comment-item:last-child {
  border-bottom: none;
  padding: 20px 0 0 0;
}

.comment-user_media {
  border-radius: 50%;
  display: none;
  width: 40px;
  height: 40px;
  overflow: hidden;
  float: left;
}

.comment-user_media img {
  width: 100%;
  height: auto;
  display: block;
}

.comment-user_name {
  /*width: calc(100% - 40px);*/
  font-size: 15px;
  font-weight: bold;
  /*padding-left: 15px;*/
  /*line-height: 40px;*/
  /*float: right;*/
  float: left;
}

.comment-user_name time {
  color: var(--label-light);
  font-size: 13px;
  padding-left: 15px;
  line-height: 15px;
}

.comment-content {
  padding: 15px 0;
}

.comment-text {
  font-size: 15px;
  line-height: 1.7;
}

.comment-action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.comment-action .action-like {
  margin-right: 15px;
  padding-left: 22px;
  position: relative;
}

.comment-action .action-like svg {
  cursor: pointer;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.comment-action .action-like .like-count {
  font-size: 11px;
  display: inline-block;
  line-height: 16px;
}

.comment-action .action-reply span {
  color: var(--link-text);
  cursor: pointer;
  font-size: 13px;
}

.reply-toggle {
  cursor: pointer;
  display: inline-block;
  margin-top: 20px;
  position: relative;
}

.reply-toggle svg {
  fill: var(--link-text);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.reply-toggle.is-open svg {
  transform: rotate(180deg);
}

.reply-toggle span {
  color: var(--link-text);
  display: inline-block;
  font-size: 13px;
  line-height: 24px;
  padding-left: 28px;
}

.reply-content {
  display: none;
  padding: 20px 0 0 60px;
}

.reply-content.is-open {
  display: block;
}

/*==========================
under-contents
==========================*/

.under-wrapper {
  -webkit-flex-basis: 1000px;
  -ms-flex-preferred-size: 1000px;
  flex-basis: 1000px;
  height: auto;
  padding: 40px 0 0 0;
}

.under-body {
  background: var(--background-light);
  width: 100%;
  padding: 60px;
  font-feature-settings: "palt";
}

.under-body_block {
  margin-bottom: 80px;
}

.under-body_block:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 800px) and (max-width: 1330px) {
  .under-wrapper {
    -webkit-flex-basis: calc(100% - 40px);
    -ms-flex-preferred-size: calc(100% - 40px);
    flex-basis: calc(100% - 40px);
    margin: 0 auto;
    padding: 20px 0 0 0;
  }
  .under-body {
    padding: 40px;
  }
}

.under-body h2 {
  font-size: 30px;
  font-weight: bold;
  margin: 60px 0 32px;
}

.under-body h2:first-child {
  margin: 0 0 32px 0;
}

.under-body h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}

.under-body_caption {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 30px;
}

@media screen and (max-width: 799px) {
  .under-wrapper {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 0;
  }
  .under-body {
    padding: 20px 15px 0;
  }
  .under-body h2 {
    font-size: 21px;
    margin: 40px 0 20px;
  }
  .under-body h2:first-child {
    margin: 0 0 20px 0;
  }
  .under-body h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .under-body_caption {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.under-body table {
  width: 100%;
  border: 1px solid var(--border-light);
  border-collapse: collapse;
  text-align: left;
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-word;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  margin: 0 0 60px 0;
}

.under-body table tr {
  border-bottom: 1px solid var(--border-light);
}

.under-body table th {
  background: var(--tertiary-color);
  border-right: 1px solid var(--border-light);
  width: 25%;
  font-size: 15px;
  font-weight: bold;
  padding: 28px 30px;
}

.under-body td {
  width: 75%;
  white-space: normal;
  font-size: 14px;
  font-weight: normal;
  padding: 28px 34px;
}

.under-body ul {
  list-style: disc;
  padding: 0 0 0 30px;
  margin: 30px 0;
}

.under-body li {
  line-height: 1.7;
  margin-bottom: 10px;
}

@media screen and (max-width: 799px) {
  .under-body table {
    margin: 0;
  }
  .under-body table th,
  .under-body table td {
    padding: 20px;
  }
}

@media screen and (max-width: 499px) {
  .under-body table th,
  .under-body table td {
    font-size: 14px;
    padding: 15px 10px;
  }
  .under-body table th {
    width: 34%;
  }
  .under-body table td {
    width: 66%;
  }
  .under-body_block {
    margin-bottom: 50px;
  }
}

/*==========================
contact-form
==========================*/

.contact-form_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
}

.contact-form_head {
  max-width: 190px;
  -webkit-flex-basis: 190px;
  -ms-flex-preferred-size: 190px;
  flex-basis: 190px;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  margin: 15px 0 0 0;
}

.contact-form_head span {
  font-size: 12px;
  color: #e73439;
  padding: 0 0 0 6px;
}

.contact-form_input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 450px;
}

.wpcf7 {
  margin: 60px 0 0 0;
}

.wpcf7-text,
.wpcf7-textarea,
.wpcf7-select {
  background: var(--tertiary-color);
  padding: 15px 24px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .05rem;
}

.wpcf7-text::placeholder,
.wpcf7-textarea::placeholder {
  color: #7f8191;
}

.wpcf7-text,
.wpcf7-select {
  display: block;
  width: 450px;
}

.wpcf7-textarea {
  display: block;
  width: 100%;
}

.wpcf7-select {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%239092a0" d="M15.1746043,10.1203717 C15.3842672,9.94066062 15.6999172,9.96494139 15.8796283,10.1746043 C16.0593394,10.3842672 16.0350586,10.6999172 15.8253957,10.8796283 L12.3253957,13.8796283 C12.1381508,14.0401239 11.8618492,14.0401239 11.6746043,13.8796283 L8.17460431,10.8796283 C7.96494139,10.6999172 7.94066062,10.3842672 8.1203717,10.1746043 C8.30008277,9.96494139 8.61573277,9.94066062 8.82539569,10.1203717 L12,12.8414611 L15.1746043,10.1203717 Z"/></svg>');
  background-repeat: no-repeat;
  background-position: top 15px right 10px;
  background-size: 24px;
}

@media screen and (max-width: 799px) {
  .contact-form_item {
    display: block;
    margin-bottom: 40px;
  }
  .contact-form_head {
    max-width: 100%;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin: 0 0 15px 0;
  }
  .contact-form_input {
    min-width: 100%;
  }
  .wpcf7 {
    margin: 40px 0 0 0;
  }
  .wpcf7-text,
  .wpcf7-select {
    width: 100%;
  }
}

/*==========================
related-article
==========================*/

.related-article {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.related-article .article-item {
  box-sizing: border-box;
  border-bottom: 1px solid var(--border-light);
}

.related-article .article-item:nth-child(-n+2)  {
  flex-basis: calc(100% / 2);
}

.related-article .article-item:nth-child(1) {
  border-right: 1px solid var(--border-light);
  padding: 0 2% 15px 0;
}

.related-article .article-item:nth-child(2) {
  padding: 0 0 15px 2%;
}

.related-article .article-item:nth-child(n+3) {
  flex-basis: 100%;
  padding: 15px 0;
}

.related-article .article-item:last-child {
  border-bottom: none;
  padding: 15px 0 0 0;
}

.related-article .article-item:nth-child(-n+2) a {
  display: block;
  width: 100%;
  height: auto;
}

.related-article .article-item:nth-child(n+3) a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.related-article .article-item:nth-child(-n+2) .article-item_media {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.related-article .article-item:nth-child(n+3) .article-item_media {
  -webkit-flex-basis: 200px;
  -ms-flex-preferred-size: 200px;
  flex-basis: 200px;
  position: relative;
}

@media screen and (max-width: 499px) {
  .related-article .article-item:nth-child(n+3) .article-item_media {
    -webkit-flex-basis: 140px;
    -ms-flex-preferred-size: 140px;
    flex-basis: 140px;
  }
}

.related-article .article-item_media {
  transition: .2s;
}

.related-article .article-item:nth-child(-n+2) .article-item_content {
  width: 100%;
  height: auto;
}

.related-article .article-item:nth-child(n+3) .article-item_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 0 30px;
}

@media screen and (max-width: 1330px) {
  .related-article .article-item:nth-child(n+3) .article-item_content {
    margin: 0 0 0 20px;
  }
}

@media screen and (max-width: 499px) {
  .related-article .article-item:nth-child(n+3) .article-item_content {
    margin: 0 0 0 13px;
  }
}

.related-article .article-item_title {
  font-size: 16px;
  font-feature-settings: "palt";
  line-height: 1.7;
  margin: 5px 0;
}

@media screen and (max-width: 799px) {
  .related-article .article-item_title {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 4px 0;
  }
}

.related-article .article-item_date {
  font-size: 13px;
  color: var(--label-light);
}