@charset "UTF-8";
/* common
--------------------------------------------------------- */
a {
  color: #27a7ce;
}
a:hover {
  color: #9ce0e5;
}

.wrap {
  width: 1166px;
  max-width: 100%;
}

.gf {
  font-family: "Concert One", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

body {
  font-family: Arial, helvetica, sans-serif, 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "Hiragino Kaku Gothic ProN";
  font-size: 103%;
}

/* animation */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.9;
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
}
@keyframes blink {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.9;
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
}
.fadeIn {
  -webkit-animation: fadeIn 0.3s ease 0s 1 both;
          animation: fadeIn 0.3s ease 0s 1 both;
}

.fadeIn,
.fadeInUp {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.fadeInUp {
  -webkit-animation: fadeInUp 0.7s ease 0s 1 both;
          animation: fadeInUp 0.7s ease 0s 1 both;
}

.fadeInDown {
  -webkit-animation: fadeInDown 0.6s ease 0s 1 both;
          animation: fadeInDown 0.6s ease 0s 1 both;
}

.delay-0_2s {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay-0_4s {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-0_5s {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-0_6s {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.delay-0_8s {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.delay-1s {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

/* =========================================================
 Footer
========================================================= */
.footer {
  background-color: #666;
  color: #cacaca;
}
.footer a {
  color: #fff;
}

/* Go to top
--------------------------------------------------------- */
.go-to-top-button {
  background: rgba(102, 102, 102, 0.5);
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 3px;
  text-align: center;
  line-height: 55px;
}

/* =========================================================
 Header
========================================================= */
/* ----- header description ----- */
.alternativeHeadline {
  font-size: 10px;
  margin: 4px 0 0;
}

.header-in {
  position: relative;
  padding: 10px 0;
}
.header-in a {
  -webkit-transition: all 0.7 ease-out;
  -o-transition: all 0.7 ease-out;
  transition: all 0.7 ease-out;
}
.header-in a:hover {
  color: #fff;
  opacity: 0.7;
}

.tagline {
  font-size: 10px;
  margin: 4px 0 0;
  color: #ffeee2;
}

/* ヘッダーナビ
--------------------------------------------------------- */
.menu-header {
  font-size: 13px;
}

#navi .navi-in > ul li {
  width: auto;
  line-height: 1.4;
  height: auto;
}
#navi .navi-in > ul li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0px;
  -webkit-transition: 0.25s ease-out;
  -o-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
  width: 0;
  border-bottom: 2px solid;
}
#navi .navi-in > ul li a:hover {
  opacity: 0.7;
}
#navi .navi-in > ul li a:hover::after {
  left: 0;
  width: 100%;
}
#navi .navi-in a {
  font-size: 13px;
  padding: 9px 13px;
}
#navi .navi-in a:hover {
  background: transparent;
}

@media only screen and (max-width: 767px) {
  /* SP gnavi Scroll Style */
  #navi {
    display: block;
    width: 100%;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    position: relative;
    max-width: 1166px;
    padding: 0.2em 0 0.2em 0.5em;
    font-size: 70%;
    font-weight: bold;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #navi a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 9px 13px;
    background: rgba(255, 255, 255, 0.11);
    border-radius: 1em;
  }

  .navi-in > ul {
    width: 100%;
    margin: 0;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    overflow-x: scroll;
    white-space: nowrap;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navi-in > ul:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 160%;
    content: "";
    color: #fff;
    position: absolute;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    right: 3px;
    margin-top: -0.22em;
    opacity: 0.5;
    -webkit-animation: blink 1.2s ease infinite alternate;
            animation: blink 1.2s ease infinite alternate;
  }
  .navi-in > ul .sub-menu,
.navi-in > ul .gf {
    display: none;
  }
  .navi-in > ul .menu-item {
    padding-right: 0.8em;
    white-space: nowrap;
    line-height: 2em;
  }
}
/* ボタンナビ
--------------------------------------------------------- */
.nav_btn {
  width: 3em;
  padding: 8px 0;
  border: none;
  background: none;
  text-align: center;
  color: #fff;
  display: block;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  position: absolute;
  top: 0.3em;
}
.nav_btn.menu_btn {
  left: 0;
}
.nav_btn.search_btn {
  right: 0;
}

.nav_btn:before,
.search_btn:before {
  font-family: "skticon";
  content: "";
  font-size: 125%;
  height: 1.25em;
  width: 100%;
  display: block;
}

.search_btn:before,
.widget_search button::before,
#main .entry-content .searchform button::before,
.searchbox .searchform button::before {
  font-family: "skticon";
  content: "";
}

.nav_btn .text {
  font-size: 9px;
  display: block;
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

/* アピールパネル
--------------------------------------------------------- */
.appeal-in {
  background: transparent;
  min-height: 1px;
  padding: 0;
}
.appeal-in.wrap {
  width: 100%;
}
.appeal-content {
  padding: 0;
  background: transparent;
  width: 100%;
  max-width: 100%;
}
.appeal a {
  color: #fff;
  text-decoration: none;
  background: -o-linear-gradient(315deg, #0088ff, #ff00bb);
  background: linear-gradient(135deg, #0088ff, #ff00bb);
  font-size: 75%;
  padding: 0.5em;
  display: block;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.appeal a:hover {
  opacity: 0.9;
}

/* =========================================================
 Content
========================================================= */
.content-in {
  background: #fff;
  padding: 2% 3%;
  width: 1166px;
  max-width: 100%;
  -webkit-box-shadow: 0 0 15px rgba(102, 102, 102, 0.2);
          box-shadow: 0 0 15px rgba(102, 102, 102, 0.2);
}
@media screen and (min-width: 981px) {
  .content-in {
    padding: 35px;
  }
}

/* Main
--------------------------------------------------------- */
.main {
  width: 728px;
  padding: 0;
}
@media screen and (max-width: 1165px) {
  .main {
    width: auto;
  }
}

/* =========================================================
 Archive
========================================================= */
.cat-label {
  background-color: #e52054;
  padding: 2px 6px;
  color: #fff;
  opacity: 0.88;
  border: none;
  top: 0;
  left: auto;
  right: 0;
  font-size: 12px;
}

.ect-vertical-card .entry-card-wrap {
  width: calc(50% - .7em);
}
@media screen and (max-width: 480px) {
  .ect-vertical-card .entry-card-wrap {
    width: 100%;
  }
}

.entry-card-wrap {
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  padding: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.entry-card-wrap:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  background: transparent;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}
.entry-card-title {
  padding: 16px 16px 8px;
}
.entry-card-snippet {
  color: rgba(13, 13, 13, 0.6);
  font-size: 12px;
  padding: 8px 16px;
}
.entry-card-meta {
  padding: 8px 16px 16px;
}

/* Pagination
--------------------------------------------------------- */
.pagination-next a {
  border: 2px solid rgba(39, 167, 206, 0.945);
  color: rgba(39, 167, 206, 0.945);
  background: #fff;
  border-radius: 4px;
}
.pagination-next a:hover {
  background: rgba(39, 167, 206, 0.945);
  color: #fff;
}
.pagination a {
  border: 2px solid rgba(39, 167, 206, 0.945);
  color: rgba(39, 167, 206, 0.945);
  background: #fff;
  border-radius: 4px;
  font-size: 14px;
}
.pagination a:hover {
  background: rgba(39, 167, 206, 0.945);
  color: #fff;
}
.pagination span.dots {
  border: 2px solid rgba(39, 167, 206, 0.945);
  border-radius: 4px;
  background: #fff;
  border-radius: 4px;
}
.pagination span.current {
  border: 2px solid rgba(39, 167, 206, 0.945);
  border-radius: 4px;
  background: rgba(39, 167, 206, 0.945);
  color: #fff;
}

/* =========================================================
 Sidebar
========================================================= */
.sidebar {
  width: 336px;
  padding: 0;
  font-size: 14px;
}
@media screen and (max-width: 1165px) {
  .sidebar {
    width: 100%;
  }
}
.sidebar h3 {
  background: #636363;
  color: #fff;
  font-size: 14px;
}
.sidebar .widget_categories li {
  border-bottom: 1px dotted rgba(125, 125, 125, 0.3);
}

.field,
input[type=color],
input[type=date],
input[type=datetime-local],
input[type=datetime],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select,
textarea {
  display: block;
  padding: 10px 2%;
  font-size: 1em;
  color: #666;
  border: 3px solid rgba(66, 66, 66, 0.3);
  border-radius: 1px;
  max-width: 96%;
  background-color: #fff;
  -webkit-transition: background-color 0.24s ease-in-out;
  -o-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
}

#main textarea {
  width: 100%;
}

input[type=password] {
  letter-spacing: 0.3em;
}

textarea {
  max-width: 100%;
  min-height: 90pt;
  line-height: 1.5;
}

select {
  -webkit-appearance: none;
  background-image: url(images/select_arrow.png);
  background-repeat: no-repeat;
  background-position: 97.5% center;
  background-size: 9px;
}

@media only screen and (max-width: 480px) {
  #main .field,
#main input[type=color],
#main input[type=date],
#main input[type=datetime],
#main input[type=datetime-local],
#main input[type=email],
#main input[type=month],
#main input[type=number],
#main input[type=password],
#main input[type=search],
#main input[type=tel],
#main input[type=text],
#main input[type=time],
#main input[type=url],
#main input[type=week],
#main select,
#main textarea {
    width: auto;
  }
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .field,
input[type=color],
input[type=date],
input[type=datetime-local],
input[type=datetime],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select,
textarea {
    width: 92%;
    max-width: 92%;
  }
}
fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

button,
input,
select,
textarea {
  margin: 0;
}

button,
input {
  line-height: normal;
}

button,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-transform: none;
}

select::-ms-expand {
  display: none;
}

select {
  line-height: 1.2;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  font-size: 0.95em;
  padding: 8px 20px;
  background: #666;
  color: #fff;
  border: 0;
  border-radius: 5px;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
          appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* コメントエリア
--------------------------------------------------------- */
.article-footer .comment-area a {
  background: transparent;
}
.article-footer .comment-area .comment-title {
  display: none;
}
.article-footer .comment-area .comment-reply-title {
  border: none;
  padding: 0;
  font-size: 21.424px;
}

/*
==================================================
js remodal style
==================================================
*/
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

.remodal,
[data-remodal-id] {
  display: none;
}

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
  background: rgba(43, 46, 56, 0.9);
}

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  text-align: center;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px 20px 0;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 1em;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
  text-align: left;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

.remodal.searchbox {
  background: none;
  color: #fff;
}

.remodal.searchbox .remodal-close {
  color: #fff;
}

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
          animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
          animation-name: remodal-overlay-closing-keyframes;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
          animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
          animation-name: remodal-closing-keyframes;
}

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

.remodal .widget {
  margin: 0 0 1em;
}

.remodal-close {
  display: block;
  overflow: visible;
  margin: 1em auto;
  padding: 0.5em;
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  text-decoration: none;
  text-align: center;
  color: initial;
  border: 0;
  outline: 0;
  background: none;
  font-size: 1.5em;
  position: static !important;
}

.remodal-close:not(:hover):not(:focus) {
  opacity: 0.5;
}

.remodal-close:before {
  font-family: "skticon";
  content: "";
  display: inline-block;
  position: relative;
  top: 3px;
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.remodal-close .text {
  margin-left: 0.5em;
  font-size: 0.8em;
  display: inline-block;
}

.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: block;
  overflow: visible;
  min-width: 150px;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  -o-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    opacity: 0;
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    opacity: 0;
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}
@media only screen and (max-width: 480px) {
  .remodal {
    padding: 0.5em;
    font-size: 0.88em;
  }
}
/* IE */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

@media only screen and (min-width: 1166px) {
  .pickup_content__ul {
    margin: 10px -7px -5px;
  }
}
/* pickup content */
.pickup_content {
  margin: 0.5em auto;
  max-width: 1166px;
}
.pickup_content img {
  margin: 0;
  padding: 0;
  border: none;
}

.pickup_content__ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  font-size: 80%;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .pickup_content__ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.pickup_content__ul .pickup_content__li {
  width: 33%;
  margin: 0.5em;
  padding: 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .pickup_content__ul .pickup_content__li {
    width: calc(50% - 1.5em);
    font-size: 80%;
  }
}
.pickup_content__ul .pickup_content__li::before,
.pickup_content__ul .pickup_content__li::after {
  content: none;
}

.pickup_content__link {
  display: block;
  color: #fff;
  text-decoration: none;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.pickup_content__link img {
  vertical-align: top;
}
.pickup_content__link:hover {
  color: #fff;
}
.pickup_content__link::before, .pickup_content__link::after {
  position: absolute;
  z-index: 2;
  content: "";
  display: inline-block;
  width: 3em;
  height: 3em;
  border-color: #fff;
  border-width: 1px;
}
.pickup_content__link::before {
  border-top-style: solid;
  border-left-style: solid;
  top: 5px;
  left: 5px;
}
.pickup_content__link::after {
  border-bottom-style: solid;
  border-right-style: solid;
  bottom: 5px;
  right: 5px;
}

.pickup_content__text__label,
.pickup_content__link::before,
.pickup_content__link::after {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.pickup_content__text {
  position: absolute;
  font-weight: bold;
  top: 0;
  left: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(14, 14, 14, 0.4);
}

.pickup_content__text__label {
  border-radius: 2em;
  border: 1px solid;
  padding: 0.4em 0.8em;
  text-align: center;
  line-height: 1.2;
  min-width: 50%;
  max-width: 90%;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px -4px;
          box-shadow: 0 0 10px -4px;
  text-shadow: 0 1px 4px #111;
}

.pickup_content__text__label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.25;
}

@media only screen and (min-width: 768px) {
  .pickup_content__link:hover {
    -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
  }
  .pickup_content__link:hover .pickup_content__text__label {
    -webkit-box-shadow: 0 0 20px 3px;
            box-shadow: 0 0 20px 3px;
  }
  .pickup_content__link:hover::before, .pickup_content__link:hover::after {
    width: 4em;
    height: 4em;
  }
}
/* =========================================================
 吹き出し
========================================================= */
.voice {
  margin: 1em 0 1.3em;
  font-size: 95%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.voice.r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}

.voice .voicecomment {
  border: 5px solid rgba(213, 213, 213, 0.5);
  margin-top: 1em;
  padding: 2.5%;
  position: relative;
  border-radius: 0.6em;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.voice .voicecomment:after {
  content: "";
  position: absolute;
  top: 7px;
  left: -19px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-right-color: inherit;
  border-width: 7px;
}

.voice.r .voicecomment:after {
  left: auto;
  right: -19px;
  border-color: transparent;
  border-left-color: inherit;
  border-width: 7px;
}

.voice.fb .voicecomment,
.voice.comment_blue .voicecomment {
  background: #418ed8;
  border-color: #418ed8;
  color: #fff;
}

.voice.line .voicecomment,
.voice.comment_green .voicecomment {
  background: #7ACC40;
  border-color: #7ACC40;
  color: #fff;
}

.voice.comment_gray .voicecomment {
  background: #eee;
  border-color: #eee;
  color: #222;
}

.voice.comment_pink .voicecomment {
  background: #ffecec;
  border-color: #ffecec;
}

.voice.comment_yellow .voicecomment {
  background: #fbf79f;
  border-color: #fbf79f;
}

.voice .voicecomment p {
  margin-bottom: 1em;
}

.voice .icon {
  width: 12%;
  min-width: 80px;
  text-align: center;
}

.voice.l .icon {
  margin-right: 2%;
}

.voice.r .icon {
  margin-left: 2%;
}

.voice .voice_icon__img {
  border-radius: 50%;
  margin: 0;
  border: 4px solid #f5f5f5;
}

.voice.icon_red .voice_icon__img {
  border-color: #ec6565;
}

.voice.icon_blue .voice_icon__img {
  border-color: #418ed8;
}

.voice.icon_yellow .voice_icon__img {
  border-color: #fbf79f;
}

.voice.icon_black .voice_icon__img {
  border-color: #222;
}

.voice .icon .name {
  font-size: 0.65em;
  padding: 0.4em 0;
}

.voice.big .icon {
  width: 18%;
}

/*
==================================================
widget
==================================================
*/
.widget:not(.widget_text):not(.widget_recent_comments):not(.widget_calendar) a {
  text-decoration: none;
  color: inherit;
}
.widget:not(.widget_text):not(.widget_recent_comments):not(.widget_calendar) a:hover {
  color: inherit;
  opacity: 0.7;
}

.widgettitle {
  font-size: 100%;
  padding: 0.65em 0.8em;
  margin-top: 0;
  margin-bottom: 0;
}

.widget_text .widgettitle,
.widget_search .widgettitle,
.widget_media_video .widgettitle,
.widget_media_gallery .widgettitle {
  margin-bottom: 0.75em;
}

#footer-top .widgettitle {
  font-size: 110%;
  padding: 0.4em 0.1em;
  background: none;
}

.widget {
  margin: 0 0 2.5em;
}

.homewidget.widget:last-child,
.titleunder .widget:last-child {
  margin-bottom: 1em;
}

.widget ul {
  margin: 0;
}

.widget_rss li a {
  font-weight: bold;
}

.widget_rss li .rssSummary,
.widget_rss li .rss-date,
.widget_rss li cite {
  font-size: 88%;
  opacity: 0.6;
}

.widget_categories ul,
.widget_recent_entries__ul,
.widget_newentryimagewidget ul,
.widget_nav_menu ul,
.widget_pages ul,
.widget_archive ul,
.widget_mycategoryorder ul {
  margin-top: 0;
  margin-left: 0;
  list-style: none;
}

.widget_categories .cat-item,
.widget_recent_entries__li,
.widget_newentryimagewidget__li,
.widget_nav_menu .menu-item,
.widget_pages .page_item,
.widget_archive li,
.widget_mycategoryorder li {
  border-bottom: 1px dotted rgba(125, 125, 125, 0.3);
  margin: 0;
  padding: 0;
}

.widget .children li:first-child,
.widget .sub-menu li:first-child {
  border-top: 1px dotted rgba(125, 125, 125, 0.3);
}

.widget_newentryimagewidget__li::before {
  content: none;
}

.widget_categories .cat-item a,
.widget_recent_entries__link,
.widget_newentryimagewidget__link,
.widget_nav_menu .menu-item a,
.widget_pages .page_item a,
.widget_archive li a,
.widget_mycategoryorder li a {
  display: block;
  padding: 1em 1.3em 1em 0.3em;
  margin: 0;
  position: relative;
}

.widget li a .countpost {
  opacity: 0.9;
  border-radius: 1em;
  background: rgba(50, 50, 50, 0.1);
  font-size: 89%;
  padding: 0 0.5em;
  margin-left: 0.3em;
}

.widget_categories .cat-item:last-child,
.widget_recent_entries__li:last-child,
.widget_newentryimagewidget__li:last-child,
.widget_nav_menu .menu-item:last-child,
.widget_pages .page_item:last-child,
.widget_archive li:last-child,
.widget_mycategoryorder li:last-child {
  border-bottom: none;
}

.widget_categories .cat-item a::after,
.widget_recent_entries__link::after,
.widget_newentryimagewidget__li a::after,
.widget_nav_menu .menu-item a::after,
.widget_pages .page_item a::after,
.widget_archive li a::after,
.widget_mycategoryorder li a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  position: absolute;
  right: 6px;
  line-height: 1;
  font-size: 1em;
  top: 50%;
  margin-top: -0.5em;
  -webkit-transition: 0.15s ease-in-out;
  -o-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
}

.entry-content .widget_categories li:before,
.entry-content .widget_recent_entries__li:before,
.entry-content .widget_newentryimagewidget__li:before,
.entry-content .widget_nav_menu .menu-item:before,
.entry-content .widget_pages .page_item:before,
.entry-content .widget_archive li:before,
.entry-content .widget_mycategoryorder li:before {
  content: none;
}

.widget li a:hover::after {
  right: 3px;
}

.widget select {
  margin-top: 1em;
  width: 100%;
  max-width: 100%;
}

.widget_categories label,
.widget_archive label {
  display: none;
}

.widget_nav_menu .sub-menu,
.widget_pages .children,
.widget_categories .children {
  padding: 0;
  margin: 0;
}

.widget_nav_menu .sub-menu a::before,
.widget_pages .children a::before,
.widget_categories .children a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  display: inline-block;
  margin-right: 5px;
  opacity: 0.15;
}

.widget_nav_menu .sub-menu,
.widget_pages .children,
.widget_categories .children {
  background: rgba(125, 125, 125, 0.02);
}

.widget_nav_menu .sub-menu .sub-menu a::before,
.widget_pages .children .children a::before,
.widget_categories .children .children a::before {
  content: "ー";
}

.widget_nav_menu .sub-menu a::after,
.widget_pages .children a::after,
.widget_categories .children a::after {
  content: none;
}

.widget_nav_menu .sub-menu .sub-menu a,
.widget_pages .children .children a,
.widget_categories .children .children a {
  padding-left: 1.6em;
}

.widget_nav_menu .sub-menu li a,
.widget_pages .children .page_item a {
  padding-left: 0.5em;
}

.widget_recent_comments ul {
  margin-top: 0;
}

.widget_recent_comments .recentcomments {
  border-bottom: 1px dotted #ccc;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
  margin: 0;
  padding: 0.5em 0;
}

.widget_recent_comments .recentcomments:first-child {
  border-top: none;
}

.widget_recent_comments .recentcomments:last-child {
  border-bottom: none;
}

.wp-block-search .wp-block-search__label {
  display: block;
}
.wp-block-search .wp-block-search__input {
  display: initial;
}

.widget_search .searchform,
#main .entry-content .searchform {
  position: relative;
  height: 45px;
  margin: 0 auto 1.5em;
  max-width: 500px;
  text-align: center;
}

.widget_search input[type=search],
#main .entry-content .searchform input[type=search] {
  position: absolute;
  width: 100% !important;
  max-width: 100%;
  padding: 12px 1%;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.widget_search button,
#main .entry-content .searchform button {
  position: absolute;
  right: 3px;
  border: 0;
  background: none;
  display: inline-block;
  height: 100%;
  padding: 0.6em;
  font-size: 150%;
  color: initial;
  line-height: 1;
}

@media only screen and (min-width: 1100px) {
  #main .entry-content .searchform input[type=search] {
    line-height: 1.8;
  }

  #main .entry-content .searchform button {
    font-size: 170%;
    height: 60px;
  }
}
.widget_calendar .wp-calendar-table {
  width: 100%;
}

.widget_calendar .wp-calendar-table,
.widget_calendar .wp-calendar-table th,
.widget_calendar .wp-calendar-table td,
.widget_calendar .wp-calendar-nav {
  text-align: center;
}

.tag-cloud-link {
  padding: 0.1em 0.6em;
  margin: 0 0.2em 0.3em 0;
  display: inline-block;
  font-size: 12px !important;
  border-radius: 3px;
  color: inherit;
  -webkit-box-shadow: 0 0 1px;
          box-shadow: 0 0 1px;
  opacity: 0.8;
}

.tag-cloud-link::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-right: 3px;
}

@media only screen and (min-width: 768px) {
  .tag-cloud-link:hover {
    opacity: 0.7;
    -webkit-box-shadow: 0 0 5px;
            box-shadow: 0 0 5px;
  }

  .tag-cloud-link:active {
    -webkit-box-shadow: 0 0 2px;
            box-shadow: 0 0 2px;
  }
}
.widget_nav_menu .menu-item a span {
  display: none;
}

.widget_newentryimagewidget__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.widget_newentryimagewidget__eyecatch {
  width: 30%;
  max-width: 140px;
  margin-right: 3%;
  overflow: hidden;
  text-align: center;
}

.widget_newentryimagewidget__meta {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

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

.widget_newentryimagewidget__li .ttl {
  overflow: hidden;
}

.widget_newentryimagewidget__li .ttl p,
.widget_recent_entries__li p {
  margin: 0;
}

.widget li .time__date {
  padding: 0 0.3em;
  font-size: 0.9em;
  opacity: 0.5;
  display: inline-block;
}

.widget_categories .cat-item,
.widget_nav_menu .menu-item,
.widget_pages .page_item {
  position: relative;
}

.widget li.accordionMenu > a {
  padding-right: 2em;
}

.widget li.accordionMenu > a::after {
  content: none;
}

.accordionBtn {
  width: 2.2em;
  height: 2.2em;
  line-height: 2.2em;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 0.75em;
  right: 1px;
  color: #ffffff;
  background: #56a1d8;
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.accordionBtn.active {
  background: #9eccef;
}

.accordionBtn::before {
  font-weight: bold;
  font-family: "skticon";
  content: "";
  display: inline-block;
}

.accordionBtn.active {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media only screen and (min-width: 768px) {
  .accordionBtn {
    width: 1.9em;
    height: 1.9em;
    line-height: 1.9em;
    top: 1em;
  }
}
/* =========================================================
 Articles
========================================================= */
/* TOC
--------------------------------------------------------- */
@media only screen and (max-width: 480px) {
  #toc_container {
    font-size: 90%;
  }
}
#toc_container {
  width: 100% !important;
  padding: 1.2em;
  border: 5px solid rgba(100, 100, 100, 0.2);
}

#toc_container li {
  margin: 1em 0;
  font-weight: 700;
}

#toc_container li li {
  font-weight: 400;
  margin: 0.5em 0;
}

#toc_container li:before {
  content: none;
}

#toc_container .toc_number {
  display: inline-block;
  font-weight: 700;
  font-size: 75%;
  background: #3e3e3e;
  color: #fff;
  min-width: 2.1em;
  min-height: 2.1em;
  line-height: 2.1;
  text-align: center;
  border-radius: 1em;
  margin-right: 0.3em;
  padding: 0 7px;
}

#toc_container a {
  color: inherit;
  text-decoration: none;
}

#toc_container a:hover {
  text-decoration: underline;
}

#toc_container p.toc_title {
  max-width: 580px;
  font-weight: 700;
  text-align: left;
  margin: 0 auto;
  font-size: 100%;
  vertical-align: middle;
}

#toc_container .toc_title:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-right: 0.8em;
  margin-left: 0.4em;
  -webkit-transform: scale(1.4);
      -ms-transform: scale(1.4);
          transform: scale(1.4);
  color: initial;
}

#toc_container .toc_title .toc_toggle {
  font-size: 80%;
  font-weight: 400;
  margin-left: 0.2em;
}

#toc_container .toc_list {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

#toc_container .toc_list > li {
  padding-left: 0;
}

/* entry header
--------------------------------------------------------- */
.entry-header .cat-label {
  right: auto;
  left: -48px;
  top: -24px;
  opacity: 1;
  font-size: 13px;
  padding: 3px 7px;
}
@media screen and (max-width: 480px) {
  .entry-header .cat-label {
    position: relative;
    left: auto;
    top: auto;
  }
}
.entry-header .entry-title {
  font-size: 32px;
  line-height: 1.5;
}

.ect-vertical-card .byline {
  padding: 0 16px;
}

.byline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}
.byline img {
  vertical-align: top;
}
.byline .date-tags {
  width: 50%;
  text-align: left;
  margin: 0;
  font-size: 18px;
}
.byline .writer {
  width: 50%;
  text-align: right;
  display: block;
  margin-right: 0;
  margin-left: auto;
  font-size: 90%;
}
.byline .writer .avatar {
  display: inline-block;
  border-radius: 50%;
  width: 22px;
  margin: 0 3px 0 auto;
  border: 1px solid #fff;
  -webkit-box-shadow: 0 0 5px rgba(102, 102, 102, 0.3);
          box-shadow: 0 0 5px rgba(102, 102, 102, 0.3);
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* Level 2
--------------------------------------------------------- */
#authorbox {
  padding: 4% 5% 1%;
  margin-bottom: 2%;
  border: solid 5px #eee;
}
#authorbox a {
  background: transparent;
}
#authorbox a:hover {
  background: transparent;
}

.author_meta:not(.singlefoot_other) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 90%;
}

.author_meta .author_img {
  width: 90px;
  max-width: 30%;
  margin-right: 1em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.author_meta .avatar {
  border: 3px solid #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.author_info .author_name,
.author_info .author_name a {
  font-weight: bold;
  text-decoration: none;
}

.author_info .userposition {
  font-size: 70%;
  display: block;
  margin-bottom: 1.5em;
  font-weight: normal;
}

.author_info .author_description {
  margin-bottom: 1em;
}

.author_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.author_sns_li {
  margin: 2px 10px;
  padding: 0;
}

.author_sns .author_sns_li::before {
  content: none;
}

[class*=author_sns_li__link]::before {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  display: inline-block;
  margin-right: 0.3em;
  color: inherit;
  font-family: "Font Awesome 5 Brands", "Font Awesome 5 Free";
}

.author_sns_li__link__user_url::before {
  content: "";
  font-weight: 900;
}

.author_sns_li__link__twitter::before {
  content: "";
}

.author_sns_li__link__facebook::before {
  content: "";
}

.author_sns_li__link__googleplus::before {
  content: "";
}

.author_sns_li__link__instagram::before {
  content: "";
}

.author_sns_li__link__youtube::before {
  content: "";
}

.author_meta.singlefoot_other {
  overflow: hidden;
}

.author_meta.singlefoot_other .author_name {
  text-align: center;
}

.author_meta.singlefoot_other .author_img {
  margin: 2em auto;
}

.author_meta.singlefoot_other .avatar {
  border-radius: 50%;
  margin-bottom: 0;
}

.author_meta .author__bgimg {
  margin-bottom: -5em;
}

.author_meta.singlefoot_other .author_info {
  padding: 0 1.5em 1.5em;
}

.author_meta.singlefoot_other .socialname {
  display: none;
}

.author_meta.singlefoot_other .author_sns a::before {
  font-size: 140%;
  margin: 0;
  padding: 0 3px;
}

@media only screen and (max-width: 480px) {
  #authorbox {
    margin: auto -3%;
  }

  .author_profile .author_meta {
    display: block;
  }

  .author_meta .author_img {
    margin: 1em auto;
  }

  .author_meta .author_img img {
    width: 100%;
    margin: auto;
    border-radius: 50%;
    border: 2px solid #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  }

  .author_info {
    font-size: 90%;
  }

  .author_meta .author_name {
    text-align: center;
    margin-bottom: 0.8em;
  }
}
/* =========================================================
 _Content.scss
========================================================= */
/*********************
content style
*********************/
#inner-content {
  padding: 3% 4%;
}

#sidebar1 {
  margin-top: 1.5em;
}

#sidebar1:empty {
  display: none;
}

/* viral post */
#viral-header {
  position: relative;
  overflow: hidden;
  color: #fff;
  z-index: -1;
  background-position: center center;
  background-size: cover;
}
#viral-header::before {
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
}
#viral-header .wrap {
  max-width: 780px;
  padding: 11% 4%;
  position: relative;
}
#viral-header .entry-title {
  font-size: 200%;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.29);
  padding: 0;
}
#viral-header .byline .time__date {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.29);
}
#viral-header + #inner-content {
  padding-top: 0;
}

.wp-block-group.has-background {
  padding: 8% 4%;
}

.wp-block-group.alignfull:not(.has-background) {
  padding: 2% 4%;
}

#content .wp-block-group.stk-pd-0 {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}
#content .wp-block-group.stk-pd-0 :last-child {
  margin-bottom: 0;
}
#content .wp-block-group.stk-pd-s {
  padding-top: 2.5%;
  padding-bottom: 2.5%;
}
#content .wp-block-group.stk-pd-m {
  padding-top: 10%;
  padding-bottom: 10%;
}
#content .wp-block-group.stk-pd-l {
  padding-top: 15%;
  padding-bottom: 15%;
}

.wp-block-group.alignwide .wp-block-group__inner-container,
.wp-block-group.alignfull .wp-block-group__inner-container {
  max-width: 980px;
  margin: auto;
}
.wp-block-group.alignwide .wp-block-group__inner-container .wp-block-group__inner-container,
.wp-block-group.alignfull .wp-block-group__inner-container .wp-block-group__inner-container {
  max-width: initial;
}

.wp-block-group.has-background .wp-block-group__inner-container .wp-block-group__inner-container {
  max-width: initial;
}

.wp-block-cover {
  min-height: 40vh;
  padding: 5% 4%;
  width: inherit;
}

.wp-block-cover-image .wp-block-cover__inner-container,
.wp-block-cover .wp-block-cover__inner-container {
  max-width: 980px;
  width: calc(100% - 30px);
  z-index: 1;
  color: #fff;
}

@media only screen and (max-width: 1166px) {
  #inner-content.wide .alignwide,
#inner-content.wide .alignfull,
#inner-content.viral .alignwide,
#inner-content.viral .alignfull {
    width: calc(100% + 8.7%);
    max-width: calc(100% + 8.7%);
    margin-left: -4.35%;
  }
}
@media only screen and (min-width: 1167px) {
  .bgnormal #viral-header {
    max-width: 1166px;
    margin: 0 auto;
  }

  .bgnormal #breadcrumb {
    max-width: 1166px;
    margin: 25px auto;
  }

  #inner-content,
.bgfull #header,
.bgfull #footer,
.bgfull #page-top + #breadcrumb,
.bgnormal #inner-header,
.bgnormal #inner-footer,
.bgnormal #breadcrumb,
.bgnormal #viral-header {
    -webkit-box-shadow: 0 0 15px rgba(102, 102, 102, 0.2);
            box-shadow: 0 0 15px rgba(102, 102, 102, 0.2);
  }

  #inner-content.wide .alignwide,
#inner-content.viral .alignwide {
    width: calc(100% + 100px);
    max-width: calc(100% + 100px);
    margin-left: -50px;
  }

  #inner-content.wide .alignfull {
    width: calc(100% + 186px);
    max-width: calc(100% + 186px);
    margin-left: -93px;
  }

  #inner-content.viral .alignfull {
    width: calc(100% + 438px);
    max-width: calc(100% + 438px);
    margin-left: -219px;
  }

  .bgnormal #inner-footer {
    margin: 25px auto;
  }
}
@media only screen and (min-width: 981px) {
  #inner-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 35px;
  }

  #main {
    margin-right: 2%;
    width: 728px;
    max-width: 728px;
    min-width: 0;
  }

  #sidebar1 {
    font-size: 88%;
    width: 336px;
    max-width: 34%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-top: 0;
    margin-left: auto;
  }

  #scrollfix {
    position: -webkit-sticky !important;
    position: sticky !important;
    z-index: 9998;
    top: 4%;
  }

  .fixhead-active #scrollfix {
    top: 10%;
  }

  .sidebarleft #main {
    margin-right: 0;
    margin-left: 2%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .sidebarleft #sidebar1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-left: 0;
  }
}
@media only screen and (max-width: 980px) {
  .alignwide,
.alignfull {
    width: calc(100% + 8.7%);
    max-width: calc(100% + 8.7%);
    margin-left: -4.35%;
  }
}
@media only screen and (min-width: 768px) {
  #inner-content.wide #main {
    max-width: 980px;
    width: 100%;
    margin: auto;
  }

  #inner-content.viral #main {
    margin: auto;
  }
}
.byline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 95%;
}

.single .byline .cat-name,
.byline .time__date,
.byline .writer {
  margin-right: 0.6em;
}

.single .byline .time__date {
  font-size: 90%;
}

.time__date {
  opacity: 0.6;
}

.single .byline .cat-name a {
  text-decoration: none;
  color: inherit;
}

.time__date:before {
  font-family: "Font Awesome 5 Free";
  font-weight: normal;
  content: "";
  margin-right: 0.3em;
  display: inline-block;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.time__date.undo:before {
  content: "";
  font-weight: 900;
}

.byline .writer {
  margin-right: 0;
  margin-left: auto;
  font-size: 90%;
}

.byline .writer .fn {
  opacity: 0.7;
}

.byline .writer .avatar {
  display: inline-block;
  border-radius: 50%;
  width: 1.6em;
  margin: 0 3px 0 auto;
  border: 1px solid #fff;
  -webkit-box-shadow: 0 0 5px rgba(102, 102, 102, 0.3);
          box-shadow: 0 0 5px rgba(102, 102, 102, 0.3);
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}

#content p.byline {
  margin: 0;
}

.entry-header .entry-title,
.entry-header .eyecatch {
  margin: 0.4em 0;
}

.eyecatch-caption-text {
  opacity: 0.7;
  font-size: 80%;
}

@media only screen and (min-width: 1167px) {
  .single .byline {
    position: relative;
    padding-top: 10px;
  }

  .single .byline .cat-name {
    position: absolute;
    top: -1.7em;
    left: -3.3em;
  }

  .single.sidebarleft .byline .cat-name {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@media only screen and (max-width: 767px) {
  #content p.byline {
    font-size: 72%;
  }

  .entry-header .entry-title {
    font-size: 115%;
  }

  #viral-header .entry-title {
    font-size: 130%;
  }

  .wp-block-group.has-background {
    padding: 10% 4%;
  }
}
#content dl,
#content ol,
#content p,
#content ul {
  letter-spacing: 0.025em;
}

.entry-content p {
  margin: 0 0 1.6em;
  line-height: 1.8;
}

.entry-content a[target=_blank]::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  font-size: 95%;
  margin: 0 3px 0 2px;
}

.entry-content a.no-icon[target=_blank]::after {
  content: none;
}

a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}

.entry-content table {
  width: 100%;
  font-size: 90%;
  margin-bottom: 1.5em;
}

.entry-content td,
.entry-content th {
  padding: 0.8em 0.5em;
}

.entry-content td {
  border: 1px solid #ddd;
  border-color: rgba(102, 102, 102, 0.08);
}

.entry-content td input {
  margin: 3px 0;
}

.entry-content th {
  background-color: #f7f7f7;
  background-color: rgba(102, 102, 102, 0.05);
  border: 1px solid #ddd;
  border-color: rgba(102, 102, 102, 0.08);
}

.wp-block-table {
  margin-bottom: 1.5em;
}

.wp-block-table table {
  margin-bottom: 0;
}

.wp-block-table.is-style-stripes {
  margin-bottom: 1.5em;
  border-bottom: 0;
}

.wp-block-table.is-style-stripes th {
  background: none;
}

.wp-block-table.is-style-stripes thead {
  border-bottom: 2px solid #ddd;
  border-color: rgba(102, 102, 102, 0.08);
}

.wp-block-table.is-style-stripes tfoot {
  border-top: 2px solid #ddd;
  border-color: rgba(102, 102, 102, 0.08);
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: rgba(102, 102, 102, 0.05);
}

@media only screen and (max-width: 480px) {
  .stk-table-scroll table {
    margin-bottom: 0.5em;
    white-space: nowrap;
  }

  .stk-table-scroll .has-fixed-layout {
    table-layout: initial;
  }

  .stk-table-scroll {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 2em;
  }

  .stk-table-scroll::-webkit-scrollbar {
    height: 5px;
  }

  .stk-table-scroll::-webkit-scrollbar-track {
    background: #F1F1F1;
  }

  .stk-table-scroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
}
.entry-content blockquote {
  font-size: 90%;
  padding: 6% 4% 2%;
  margin: 2.5em 0 3em;
  position: relative;
  border: 1px solid;
  border-radius: 5px;
  opacity: 0.8;
}

.entry-content blockquote:before,
.entry-content blockquote:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  width: 1em;
  height: 1em;
  display: block;
  padding: 0.2em;
  text-align: center;
  font-size: 1.3em;
  line-height: 1;
  background: #fff;
}

.entry-content blockquote:before {
  content: "";
  left: -0.2em;
  top: -0.3em;
}

.entry-content blockquote:after {
  content: "";
  right: -0.2em;
  bottom: -0.4em;
}

.entry-content blockquote h2,
.entry-content blockquote h3,
.entry-content blockquote h4 {
  margin-top: 0 !important;
}

.wp-block-pullquote blockquote {
  border: none;
  border-top: 4px solid;
  border-bottom: 4px solid;
  border-radius: 0;
}

.wp-block-pullquote blockquote cite {
  font-size: 88%;
}

.wp-block-pullquote blockquote::before,
.wp-block-pullquote blockquote::after {
  content: none;
}

.entry-content dt {
  font-weight: bold;
  margin-bottom: 2%;
}

.entry-content dd {
  margin-left: 0;
}

.entry-content img {
  margin-bottom: 1.5em;
  max-width: 100%;
  height: auto;
}

.wp-block-media-text__media img {
  margin-bottom: 0;
}

@media only screen and (max-width: 600px) {
  .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
    margin-bottom: 1.5em;
  }

  .wp-block-media-text.is-stacked-on-mobile:not(.has-background) .wp-block-media-text__content {
    margin-bottom: 2em;
  }

  .wp-block-media-text.is-stacked-on-mobile:not(.alignwide):not(.alignfull):not(.has-background) .wp-block-media-text__content {
    padding-left: 0;
    padding-right: 0;
  }

  .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__media {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }

  .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__content {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}
.size-auto:not(.alignfull),
.size-full:not(.alignfull),
.size-large:not(.alignfull),
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

.entry-content pre:not(.prettyprint) {
  background: #555;
  background: rgba(0, 0, 0, 0.7);
  color: #f8f9fa;
  font-size: 85%;
  line-height: 1.3;
  padding: 1.2em 1.7em;
  margin: 0.2em 0 2.2em;
  border-radius: 5px;
}

.entry-content pre code {
  padding: 0;
  border-radius: 0;
  background: none;
  color: inherit;
}

.entry-content h2:not(.is-style-stylenone),
.homeadd_wrap h2 {
  position: relative;
  border: none;
  font-size: 125%;
  padding: 1em 1.1em;
  margin-top: 2.1em;
  margin-bottom: 1em;
  border-radius: 3px;
  background: #636363;
  color: #ffffff;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.homeadd_wrap.homeaddtop .widget:first-child h2.widgettitle {
  margin-top: 0;
}

.entry-content h3:not(.is-style-stylenone) {
  border: none;
  border-top: 4px solid;
  border-bottom: 4px solid;
  padding: 0.5em 0.2em;
  margin-top: 1.8em;
}

.entry-content h4:not(.is-style-stylenone) {
  border-left: 4px solid;
  padding: 0.5em 0 0.5em 0.8em;
  margin-top: 1.8em;
}

.h_boader .entry-content h2:not(.is-style-stylenone),
.h_boader .homeadd_wrap h2 {
  background: none;
  color: inherit;
  font-size: 140%;
  padding: 0.5em 0.2em;
  border-top: 4px solid;
  border-bottom: 4px solid;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.h_boader .entry-content h3:not(.is-style-stylenone) {
  border-width: 2px;
  border-top: none;
  font-size: 120%;
  padding: 0.1em;
}

.h_boader .entry-content h4:not(.is-style-stylenone) {
  border-width: 2px;
}

.h_balloon .entry-content h2:not(.is-style-stylenone)::after,
.h_balloon .homeadd_wrap h2:not(.is-style-stylenone)::after {
  content: "";
  position: absolute;
  border-top: 13px solid #13acca;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  bottom: -11px;
  left: 5%;
}

.h_stitch .entry-content h2:not(.is-style-stylenone),
.h_stitch .homeadd_wrap h2 {
  position: relative;
}

.h_stitch .entry-content h2:not(.is-style-stylenone)::before,
.h_stitch .entry-content h2:not(.is-style-stylenone)::after,
.h_stitch .homeadd_wrap h2::before,
.h_stitch .homeadd_wrap h2::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  border-top: 2px dashed #ffffff;
  opacity: 0.5;
}

.h_stitch .entry-content h2:not(.is-style-stylenone)::after,
.h_stitch .homeadd_wrap h2::after {
  top: auto;
  bottom: 3px;
}

.h_stitch .entry-content h3:not(.is-style-stylenone) {
  border-top-style: dotted;
  border-bottom-style: dotted;
}

.h_stitch .entry-content h4:not(.is-style-stylenone) {
  border-left-style: dotted;
}

h2.is-style-stylenone,
h3.is-style-stylenone,
h4.is-style-stylenone {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: static;
  border-radius: 0;
  margin: 2.5% 0;
}

h2.is-style-stylenone:not(.has-text-color):not(.has-background),
h3.is-style-stylenone:not(.has-text-color):not(.has-background),
h4.is-style-stylenone:not(.has-text-color):not(.has-background) {
  background: none;
  padding: 0;
}

h2.is-style-stylenone {
  font-size: 120%;
}

h3.is-style-stylenone {
  font-size: 110%;
}

h4.is-style-stylenone {
  font-size: 105%;
}

@media only screen and (min-width: 768px) {
  h2.is-style-stylenone {
    font-size: 130%;
  }

  h3.is-style-stylenone {
    font-size: 115%;
  }
}
@media only screen and (max-width: 480px) {
  .entry-content h2:not(.is-style-stylenone),
.homeadd_wrap h2,
#inner-content .widgettitle {
    margin-left: -0.5em;
    margin-right: -0.5em;
  }

  .h_boader .entry-content h2:not(.is-style-stylenone),
.h_boader .homeadd_wrap h2 {
    margin-left: 0;
    margin-right: 0;
    font-size: 110%;
  }

  .entry-content h1 {
    font-size: 125%;
  }

  .entry-content h2:not(.is-style-stylenone),
.entry-content h3:not(.is-style-stylenone),
.entry-content h4:not(.is-style-stylenone),
.h_boader .entry-content h3:not(.is-style-stylenone),
.homeadd_wrap h2 {
    font-size: 105%;
  }

  .entry-content h5:not(.is-style-stylenone),
.entry-content h6:not(.is-style-stylenone),
.entry-content h7:not(.is-style-stylenone) {
    font-size: 100%;
  }
}
/* content - list */
.entry-content ul {
  list-style: none;
  padding-left: 0;
}

.entry-content li {
  position: relative;
  padding-left: 1.35em;
  margin: 0.7em 0;
}

.entry-content li li {
  margin: 0.6em 0;
}

.entry-content ul li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  display: block;
  position: absolute;
  left: 2px;
  top: 1px;
  -webkit-transform: scale(0.6);
      -ms-transform: scale(0.6);
          transform: scale(0.6);
  color: #636363;
  background: none;
}

.entry-content li ul li:before {
  content: "";
}

.entry-content ol {
  counter-reset: number;
  list-style: none;
  padding-left: 0;
}

.entry-content ol[start] {
  counter-reset: unset;
}

.entry-content ol > li {
  padding-left: 1.8em;
}

.entry-content ol > li:before {
  font-family: inherit;
  counter-increment: number;
  content: counter(number);
  background: #636363;
  border: 1px solid #636363;
  color: #fff;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  font-weight: bold;
  display: block;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
  left: 1px;
  top: 0;
}

.entry-content li ol > li:before {
  background: none;
  content: counter(number) ".";
  border: none;
  color: inherit;
  opacity: 0.6;
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
  top: 3px;
}

.entry-content .stk-list-icon--stylenone,
.entry-content .stk-list-icon--stylenone ul,
.entry-content .stk-list-icon--stylenone ol {
  padding-left: 1.5em;
}

.entry-content .stk-list-icon--stylenone[class*=is-style-faq_type_] {
  padding-left: 2.9em;
}

.entry-content .stk-list-icon--stylenone li {
  padding-left: 0;
  list-style-type: inherit;
}

.entry-content .stk-list-icon--stylenone li::before {
  content: none;
}

.wp-block-social-links li {
  padding: 0;
  margin: initial;
  position: initial;
  list-style: initial;
}

.wp-block-social-links li::before {
  content: none !important;
}

.wp-block-latest-comments .wp-block-latest-comments__comment {
  padding: 0;
}

.wp-block-latest-comments .wp-block-latest-comments__comment::before {
  content: none;
}

/* content - image */
.wp-caption {
  max-width: 100%;
  background: #fff;
  padding: 5px;
  margin-bottom: 1.2em;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 3px;
}

.wp-caption img,
.entry-content .wp-caption img,
.entry-content .wp-block-image img {
  max-width: 100%;
  margin-bottom: 0;
}

.entry-content .wp-block-image.alignfull,
.entry-content .wp-block-image.alignwide {
  margin-bottom: 0;
}

.wp-block-image.is-style-stk_shadow_s img,
.wp-block-video.is-style-stk_shadow_s video {
  -webkit-box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
}

.wp-block-image.is-style-stk_shadow_l img,
.wp-block-video.is-style-stk_shadow_l video {
  -webkit-box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 1em;
}

.wp-block-image.is-style-stk_border figure,
figure.wp-block-image.is-style-stk_border,
.wp-block-video.is-style-stk_border video {
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 3px;
}

.gallery,
.wp-block-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  margin-bottom: calc(1.5 * 1rem);
}

.gallery-item,
.blocks-gallery-item {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.entry-content .gallery-item img {
  margin: 0;
}

.blocks-gallery-grid .blocks-gallery-image,
.blocks-gallery-grid .blocks-gallery-item,
.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item,
.blocks-gallery-grid .blocks-gallery-image:nth-of-type(2n),
.blocks-gallery-grid .blocks-gallery-item:nth-of-type(2n),
.wp-block-gallery .blocks-gallery-image:nth-of-type(2n),
.wp-block-gallery .blocks-gallery-item:nth-of-type(2n) {
  margin: 0 5px 5px 0 !important;
}

.gallery-columns-2 .gallery-item,
.wp-block-gallery.columns-2 .blocks-gallery-item {
  max-width: calc((100% - 5px * 1) / 2);
}

.gallery-columns-2 .gallery-item:nth-of-type(2n+2),
.wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n+2) {
  margin-right: 0 !important;
}

.gallery-columns-3 .gallery-item,
.wp-block-gallery.columns-3 .blocks-gallery-item {
  max-width: calc((100% - 5px * 2) / 3);
}

.gallery-columns-3 .gallery-item:nth-of-type(3n+3),
.wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n+3) {
  margin-right: 0 !important;
}

.gallery-columns-4 .gallery-item,
.wp-block-gallery.columns-4 .blocks-gallery-item {
  max-width: calc((100% - 5px * 3) / 4);
}

.gallery-columns-4 .gallery-item:nth-of-type(4n+4),
.wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n+4) {
  margin-right: 0 !important;
}

.gallery-columns-5 .gallery-item,
.wp-block-gallery.columns-5 .blocks-gallery-item {
  max-width: calc((100% - 5px * 4) / 5);
}

.gallery-columns-5 .gallery-item:nth-of-type(5n+5),
.wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n+5) {
  margin-right: 0 !important;
}

.gallery-columns-6 .gallery-item,
.wp-block-gallery.columns-6 .blocks-gallery-item {
  max-width: calc((100% - 5px * 5) / 6);
}

.gallery-columns-6 .gallery-item:nth-of-type(6n+6),
.wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n+6) {
  margin-right: 0 !important;
}

.gallery-columns-7 .gallery-item,
.wp-block-gallery.columns-7 .blocks-gallery-item {
  max-width: calc((100% - 5px * 6) / 7);
}

.gallery-columns-7 .gallery-item:nth-of-type(7n+7),
.wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n+7) {
  margin-right: 0 !important;
}

.gallery-columns-8 .gallery-item,
.wp-block-gallery.columns-8 .blocks-gallery-item {
  max-width: calc((100% - 5px * 7) / 8);
}

.gallery-columns-8 .gallery-item:nth-of-type(8n+8),
.wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n+8) {
  margin-right: 0 !important;
}

.gallery-item:last-of-type {
  padding-right: 0;
}

.gallery-caption {
  margin: 0;
  padding: 0.3em;
}

.gallery-item > div > a {
  display: block;
  line-height: 0;
  -webkit-box-shadow: 0 0 0 0 transparent;
          box-shadow: 0 0 0 0 transparent;
}

.entry-content .blocks-gallery-item {
  padding: 0;
  margin: 0;
}

.blocks-gallery-item img {
  margin-bottom: 0;
}

.blocks-gallery-item::before {
  content: none !important;
}

.cat-name {
  font-size: 85%;
  padding: 0.2em 0.5em;
}

.eyecatch {
  position: relative;
  text-align: center;
}

.eyecatch .cat-name {
  position: absolute;
  top: -0.1px;
  right: 0;
}

.archives-list .eyecatch .cat-name {
  font-size: 72%;
  opacity: 0.88;
}

.archives-list .eyecatch .cat-name:empty {
  display: none;
}

.cat-name.cat-id-page:before {
  content: "PICK UP";
}

/* CTA */
.cta-wrap .widget_text {
  margin-bottom: 0;
}

.cta-inner {
  background: #666666;
  color: #CACACA;
  padding: 1.5em 5%;
  margin-bottom: 1.5em;
}

.cta-inner:not(:first-child) {
  margin-top: -1.4em;
}

.page .cta-inner:last-child {
  margin-bottom: 0;
}

.cta-inner .inner {
  width: 94%;
  max-width: 780px;
  margin: auto;
}

.cta-inner .cta_ttl {
  text-align: center;
  color: inherit;
  margin: 1em 0;
  padding: 0;
  font-size: 160%;
  font-weight: bold;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.cta-inner .btn-wrap a {
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-top: 1em;
}

/* ページ内の最初の要素の余白調整 */
.single .entry-content > :first-child,
.page .entry-content > :first-child {
  margin-top: 0;
}

/* postunder recommend, writer */
#single_foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#related-box a,
#np-post a,
.author_name a,
#author-newpost a {
  color: inherit;
  text-decoration: none;
  background: transparent;
}

.author_sns a {
  text-decoration: none;
}

.author_sns a .socialname {
  color: initial;
}

#related-box ul,
#author-newpost ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -0.6em;
  list-style: none;
  padding: 0;
}
#related-box ul li,
#author-newpost ul li {
  margin: 0;
}

.related_newpost__li {
  width: 25%;
  margin: 0;
}

.related_newpost__li a {
  padding: 0.3em 0.6em 1em;
}

@media only screen and (max-width: 480px) {
  .related_newpost__li {
    width: 50%;
  }
}
#related-box .h_ttl {
  background: transparent;
  margin: 0;
}

#related-box .h_ttl::after,
.author_profile .h_ttl::after,
#author-newpost .h_ttl::after {
  font-size: 11px;
  margin-left: 1em;
  vertical-align: middle;
}

#related-box .h_ttl::after {
  content: "こちらの記事も人気です";
  font-family: Arial, helvetica, sans-serif, 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "Hiragino Kaku Gothic ProN";
}

#related-box.ga_recommend .h_ttl::after {
  content: "関連記事（広告を含む）";
  font-family: Arial, helvetica, sans-serif, 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "Hiragino Kaku Gothic ProN";
}

.author_profile .h_ttl {
  margin-top: 0;
  margin-bottom: 10px;
  padding: 0;
}

.author_profile .h_ttl::after {
  content: "この記事を書いた人";
  font-family: Arial, helvetica, sans-serif, 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "Hiragino Kaku Gothic ProN";
}

#authorbox h2 {
  background: transparent;
}
#authorbox ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#author-newpost .cat-name,
#related-box .cat-name {
  background-color: #e52054;
  color: #fff;
}

#author-newpost .h_ttl {
  margin: 0 0 10px;
  padding: 0;
}

#author-newpost .h_ttl::after {
  content: "このライターの最新記事";
  font-family: Arial, helvetica, sans-serif, 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "Hiragino Kaku Gothic ProN";
}

.related_newpost__li {
  line-height: 1.5;
}

.related_newpost__li .cat-name {
  font-size: 10px;
}

.related_newpost__li a {
  display: block;
  margin: 0;
}

.related_newpost__li .ttl {
  font-weight: bold;
  font-size: 75%;
}

.related_newpost__li .time__date {
  font-size: 70%;
}

@media only screen and (min-width: 768px) {
  #top_carousel li.slick-slide {
    padding-top: 2px;
  }
}
@media only screen and (max-width: 767px) {
  #inner-content .entry-header .eyecatch,
.cta-inner,
.fb-likebtn {
    margin-left: -4.35%;
    margin-right: -4.35%;
  }

  .cta-inner .cta_ttl {
    font-size: 120%;
  }

  .alignleft:not(.wp-block-latest-posts__featured-image),
img.alignleft,
.alignright:not(.wp-block-latest-posts__featured-image),
img.alignright {
    max-width: 55%;
  }

  .alignleft,
img.alignleft,
.alignright,
img.alignright {
    margin-bottom: 0.5em;
  }
}
#authorbox {
  padding: 4% 5% 1%;
  margin-bottom: 2%;
  border: solid 5px #eee;
}

.author_meta:not(.singlefoot_other) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 90%;
}

.author_meta .author_img {
  width: 90px;
  max-width: 30%;
  margin-right: 1em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.author_meta .avatar {
  border: 3px solid #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.author_info .author_name,
.author_info .author_name a {
  font-weight: bold;
  text-decoration: none;
}

.author_info .userposition {
  font-size: 70%;
  display: block;
  margin-bottom: 1.5em;
  font-weight: normal;
}

.author_info .author_description {
  margin-bottom: 1em;
}

.author_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.author_sns_li {
  margin: 2px 10px;
  padding: 0;
}

.author_sns .author_sns_li::before {
  content: none;
}

[class*=author_sns_li__link]::before {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  display: inline-block;
  margin-right: 0.3em;
  color: inherit;
  font-family: "Font Awesome 5 Brands", "Font Awesome 5 Free";
}

.author_sns_li__link__user_url::before {
  content: "";
  font-weight: 900;
}

.author_sns_li__link__twitter::before {
  content: "";
}

.author_sns_li__link__facebook::before {
  content: "";
}

.author_sns_li__link__googleplus::before {
  content: "";
}

.author_sns_li__link__instagram::before {
  content: "";
}

.author_sns_li__link__youtube::before {
  content: "";
}

.author_meta.singlefoot_other {
  overflow: hidden;
}

.author_meta.singlefoot_other .author_name {
  text-align: center;
}

.author_meta.singlefoot_other .author_img {
  margin: 2em auto;
}

.author_meta.singlefoot_other .avatar {
  border-radius: 50%;
  margin-bottom: 0;
}

.author_meta .author__bgimg {
  margin-bottom: -5em;
}

.author_meta.singlefoot_other .author_info {
  padding: 0 1.5em 1.5em;
}

.author_meta.singlefoot_other .socialname {
  display: none;
}

.author_meta.singlefoot_other .author_sns a::before {
  font-size: 140%;
  margin: 0;
  padding: 0 3px;
}

@media only screen and (max-width: 480px) {
  #authorbox {
    margin: auto -3%;
  }

  .author_profile .author_meta {
    display: block;
  }

  .author_meta .author_img {
    margin: 1em auto;
  }

  .author_meta .author_img img {
    width: 100%;
    margin: auto;
    border-radius: 50%;
    border: 2px solid #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  }

  .author_info {
    font-size: 90%;
  }

  .author_meta .author_name {
    text-align: center;
    margin-bottom: 0.8em;
  }
}
/* post tags */
.np-post-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1em;
  font-size: 88%;
}

.np-post-list a .eyecatch {
  width: 55px;
  min-width: 55px;
}

.np-post-list a .ttl {
  overflow: hidden;
}

.np-post-list.prev a .eyecatch {
  margin-right: 0.7em;
}

.np-post-list.next a {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.np-post-list.next a .eyecatch {
  margin-left: 0.7em;
}

.np-post-list.prev a::before,
.np-post-list.next a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin: 0 0.5em;
  font-size: 120%;
}

.np-post-list.next a::after {
  content: "";
}

@media only screen and (max-width: 480px) {
  .np-post-list a .eyecatch {
    width: 40px;
    min-width: 40px;
  }

  .np-post-list .ttl {
    font-size: 90%;
  }
}
.article-footer .post-categories {
  margin: 0;
  display: inline-block;
}

.article-footer .post-categories li {
  display: inline-block;
}

.article-footer .post-categories li a {
  display: inline-block;
  padding: 0.35em 0.5em;
  margin-right: 0.3em;
  margin-bottom: 2px;
  text-decoration: none;
  line-height: 1.1;
  font-size: 75%;
  border: 1px solid;
  border-radius: 0.4em;
}

.article-footer a {
  background-color: transparent;
  border-color: #1bb4d3;
}

.article-footer .post-categories li a {
  color: #ffffff;
}

.article-footer .post-categories.tags a {
  background: none !important;
  color: #1bb4d3;
}

.article-footer .post-categories a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-right: 0.2em;
}

.article-footer .post-categories.tags a::before {
  content: "";
}

/* facebook LikeBox */
.fb-likebtn {
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
  margin-top: 1em;
}

.fb-likebtn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  opacity: 0.8;
  z-index: 1;
}

.fb-likebtn .inner {
  padding: 9% 3%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.fb-likebtn .fb-button {
  display: block;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  overflow: hidden;
}

.fb-likebtn .like_text {
  font-size: 180%;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.fb-likebtn .like_text::after {
  content: "この記事が気に入ったらフォローしよう！";
  display: block;
  padding: 3px;
  font-size: 10px;
  margin-bottom: 0;
  opacity: 0.7;
}

.followbtn {
  color: #ffffff;
  background: #04acee;
  font-size: 83%;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  line-height: 26px;
  padding: 0.1em 0.8em;
  margin: 0.4em 0.3em;
  border-radius: 3px;
}

.followbtn:hover {
  color: inherit;
}

.followbtn::before {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  margin-right: 0.4em;
  font-size: 110%;
}

.followbtn.btn_facebook::before {
  content: "";
}

.followbtn.btn_facebook {
  background: #1f6aba;
}

.followbtn.btn_twitter::before {
  content: "";
}

.followbtn.btn_feedly {
  background: #5fd043;
}

.followbtn.btn_youtube {
  background: #ff0000;
}

.followbtn.btn_youtube::before {
  content: "";
}

.followbtn.btn_instagram {
  background: #b900b4;
  background: -o-linear-gradient(225deg, #1400c8, #b900b4, #f50000);
  background: linear-gradient(-135deg, #1400c8, #b900b4, #f50000);
}

.followbtn.btn_instagram::before {
  content: "";
}

/* comment */
#comments-title {
  padding: 0.75em 0;
  margin: 0;
}

#comments-title::before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-size: 140%;
  margin-right: 7px;
}

.commentlist {
  margin: 0 0 1.5em;
  list-style-type: none;
}

.comment,
.pingback {
  clear: both;
  overflow: hidden;
  padding: 3.5%;
  margin-bottom: 1em;
  font-size: 90%;
  border: 5px solid #efefef;
}

.comment .comment {
  font-size: 1em;
  border: none;
  padding-right: 0 !important;
}

.comment .comment-meta,
.pingback .comment-meta {
  padding: 0;
}

.comment .comment-meta a {
  color: inherit;
  text-decoration: none;
}

.comment .comment-author {
  border: 0;
}

.comment .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}

.comment-metadata {
  font-size: 80%;
}

.comment .vcard .avatar {
  border-radius: 50%;
}

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

.comment .children,
.pingback .children {
  margin: 0;
}

.comment.depth-1,
.pingback.depth-1 {
  margin-left: 0;
  margin-top: 0;
}

.comment:not(.depth-1),
.pingback:not(.depth-1) {
  margin-top: 0;
}

.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}

.comment-reply-link {
  font-size: 90%;
  font-weight: bold;
  display: block;
  text-align: right;
  text-decoration: none;
}

.comment-reply-link::before {
  font-family: "Font Awesome 5 Free";
  content: "";
  margin-right: 5px;
  font-size: 130%;
}

.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 90%;
}

.comment-navigation {
  text-align: center;
  padding: 1em;
}

/* SNS */
.sharewrap h3 {
  margin-bottom: 0;
}

.sharewrap h3::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  display: inline-block;
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  margin: 0 0.3em;
}

.sns_btn {
  margin: 1em 0;
}

.sns_btn > ul,
.sns_btn__ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  font-size: 80%;
  font-weight: bold;
}

.sns_btn li {
  width: 25%;
  margin: 4px;
}

.sns_btn li:first-child {
  margin-left: 0;
}

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

.sns_btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  padding: 0.4em 0.2em;
  border-radius: 0.3em;
  position: relative;
}

.sns_btn a,
.sns_btn a:hover {
  color: #ffffff;
}

.sns_btn a .count {
  position: absolute;
  right: 3px;
  top: 2px;
  font-size: 10px;
  -webkit-transform: scale(0.85);
      -ms-transform: scale(0.85);
          transform: scale(0.85);
  margin: 0;
  min-width: 1.5em;
}

.sns_btn a::before {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  display: inline-block;
  margin-right: 3px;
  text-align: center;
  font-size: 155%;
  width: 1.2em;
}

/* Twitter */
.sns_btn .twitter a {
  background: #00acee;
  -webkit-box-shadow: 0 3px 0 #0092ca;
          box-shadow: 0 3px 0 #0092ca;
}

.sns_btn .twitter a::before {
  content: "";
}

/* Facebook */
.sns_btn .facebook a {
  background: #1f6aba;
  -webkit-box-shadow: 0 3px 0 #2c4373;
          box-shadow: 0 3px 0 #2c4373;
}

.sns_btn .facebook a::before {
  content: "";
}

/* hatebu */
.sns_btn .hatebu a {
  background: #2f70be;
  -webkit-box-shadow: 0 3px 0 #43638b;
          box-shadow: 0 3px 0 #43638b;
}

.sns_btn .hatebu a:before {
  content: "B!";
  font-family: inherit;
  font-weight: bold;
}

/* LINE */
.sns_btn .line a {
  background: #25af00;
  -webkit-box-shadow: 0 3px 0 #219900;
          box-shadow: 0 3px 0 #219900;
}

.sns_btn .line a::before {
  content: "";
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

/* copy */
.article-footer a.copy-button {
  background: #909090;
}

/* Pocket */
.sns_btn .pocket a {
  background: #ec2136;
  -webkit-box-shadow: 0 3px 0 #c0392b;
          box-shadow: 0 3px 0 #c0392b;
}

.sns_btn .pocket a::before {
  content: "";
}

@media only screen and (max-width: 767px) {
  .sns_btn a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: wrap column;
            flex-flow: wrap column;
    line-height: 1.2;
    padding: 0.7em 0.1em 0.4em;
  }

  .sns_btn a::before {
    margin: 0 auto 2px;
    display: block;
  }

  .sns_btn a .text {
    font-size: 10px;
    -webkit-transform: scale(0.85);
        -ms-transform: scale(0.85);
            transform: scale(0.85);
    display: block;
  }
}
/* hover style */
@media only screen and (min-width: 768px) {
  .pickup_content__link:hover,
.archives-list:not(.big-list) .post-list a:hover {
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px);
  }

  .btn-wrap a:hover,
.wp-block-button a:hover,
.followbtn:hover,
.sns_btn a:hover {
    -webkit-transform: translate3d(0, -3px, 0);
            transform: translate3d(0, -3px, 0);
  }

  #top_carousel a:hover,
.related_newpost__li a:hover,
.np-post-list.prev a:hover,
.np-post-list.next a:hover,
.cat_postlist__link:hover,
.related_article a:hover {
    -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
            transform: translateY(-2px);
  }

  .article-footer a:hover,
.tag-cloud-link:hover {
    -webkit-transform: translateY(-1px);
        -ms-transform: translateY(-1px);
            transform: translateY(-1px);
  }

  .sns_btn a:hover,
.followbtn:hover {
    opacity: 0.8;
  }
}
/* block common */
.entry-content .has-small-font-size {
  font-size: 80%;
}

.entry-content .has-medium-font-size {
  font-size: 120%;
}

.entry-content .has-large-font-size {
  font-size: 150%;
}

.entry-content .has-huge-font-size {
  font-size: 200%;
}

@media only screen and (max-width: 599px) {
  .wp-block-column:not(:last-child) {
    margin-bottom: 28px;
  }
}
.wp-block-column :last-child {
  margin-bottom: 0;
}

.wp-block-latest-posts {
  overflow: hidden;
}

.wp-block-latest-posts li {
  padding: 0;
}

.wp-block-latest-posts li:before {
  content: none !important;
}

.wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
.wp-block-latest-posts .wp-block-latest-posts__post-date {
  font-size: 80%;
}

.wp-block-latest-posts__featured-image img {
  margin-bottom: initial;
}

.wp-block-latest-posts__featured-image:not(.aligncenter) {
  margin-bottom: 0.5em;
}

.wp-caption .wp-caption-text,
.wp-block-image figcaption {
  margin: 4px;
}

/* editor */
/* マーカー */
.span-stk-maker-yellow,
.span__stk_maker_yellow,
.span-stk-maker-pink,
.span__stk_maker_pink,
.span-stk-maker-blue,
.span__stk_maker_blue,
.span-stk-maker-green {
  display: inline;
  background-position: left -100% center;
  background-repeat: repeat-x;
  background-size: 200% 0.6em;
  padding-bottom: 0.6em;
}

.span-stk-maker-yellow,
.span__stk_maker_yellow {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50%, #ff6));
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0) 50%, #ff6 50%);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #ff6 50%);
}

.span-stk-maker-pink,
.span__stk_maker_pink {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50%, #ffd5d5));
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0) 50%, #ffd5d5 50%);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #ffd5d5 50%);
}

.span-stk-maker-blue,
.span__stk_maker_blue {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50%, #b5dfff));
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0) 50%, #b5dfff 50%);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #b5dfff 50%);
}

.span-stk-maker-green {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50%, #cff7c7));
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0) 50%, #cff7c7 50%);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #cff7c7 50%);
}

/* ラベル */
[class*=span-stk-label-] {
  font-size: 0.9em;
  padding: 0.2em 0.5em;
  border-radius: 0.2em;
  color: #fff;
}

[class*=span-stk-label-] + [class*=span-stk-label-] {
  margin-left: 0.1em;
  margin-right: 0.1em;
}

.span-stk-label-yellow {
  background-color: #f5f512;
  color: #333;
}

.span-stk-label-pink {
  background-color: #f7b2b2;
}

.span-stk-label-red {
  background-color: #e77373;
  color: #fff;
}

.span-stk-label-blue {
  background-color: #82c8e2;
}

.span-stk-label-green {
  background-color: #79e37c;
}

.span-stk-label-gray {
  background-color: #9c9c9c;
}

.span-stk-label-black {
  background-color: #222;
  color: #fff;
}

/* フォントサイズ */
.span-stk-fs-ss {
  font-size: 70%;
}

.span-stk-fs-s {
  font-size: 90%;
}

.span-stk-fs-m {
  font-size: 120%;
}

.span-stk-fs-l {
  font-size: 150%;
}

.span-stk-fs-ll {
  font-size: 180%;
}

.page-template-page-wide-php #custom_header {
  margin-bottom: 0;
}

#lp-containar {
  max-width: 1166px;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 1px #ccc;
          box-shadow: 0 0 1px #ccc;
}

#lp-containar #content {
  margin: 0;
  width: 100%;
}

#lp-containar #inner-content {
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 4%;
}

#lp-containar #main {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  float: none;
}

#lp-containar #inner-content .eyecatch.lp {
  width: 100%;
  margin: auto;
  text-align: center;
}

#lp-containar .catchcopy {
  text-align: center;
  margin: 1.5em 0.3em;
  padding: 0;
  font-size: 2em;
  background: none;
}

@media only screen and (max-width: 767px) {
  #lp-containar .catchcopy {
    font-size: 1.8em;
  }
}
@media only screen and (max-width: 480px) {
  #lp-containar .catchcopy {
    font-size: 1.4em;
  }
}
@media only screen and (min-width: 801px) {
  #lp-containar #main {
    width: 100%;
    max-width: 980px;
  }
}
#lp-containar.fullwide {
  -webkit-box-shadow: none;
          box-shadow: none;
}

#lp-containar.fullwide #inner-content {
  padding: 0;
}

@media only screen and (min-width: 1166px) {
  #lp-containar.fullwide .alignwide {
    margin-left: -93px;
    margin-right: -93px;
    max-width: initial;
  }
}
@media only screen and (min-width: 981px) {
  #lp-containar.fullwide .alignfull {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}
@media only screen and (max-width: 980px) {
  #lp-containar.fullwide #inner-content {
    padding: 0 4%;
  }
}
/* Supl
--------------------------------------------------------- */
.supplement,
[class*=is-style-supplement-] {
  border: 2px solid;
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #766341;
  position: relative;
  font-size: 93%;
  margin: 1.5em 0 2em;
  border-radius: 4px;
}

.supplement,
[class*=is-style-supplement-],
[class*=is-style-supplement-].has-background:not(.is-style-supplement-border) {
  padding: 4% 4% 4% 50px;
}

[class*=is-style-supplement-].has-text-color {
  border-color: inherit;
}

.supplement p {
  margin-bottom: 0.8em;
}

.supplement.warning,
.supplement.is-style-warning,
.is-style-supplement-warning {
  background-color: #fce3e3;
  border-color: #facccc;
  color: #764141;
}

.supplement.succes,
.supplement.is-style-succes,
.is-style-supplement-succes {
  background-color: #cff7c7;
  border-color: #a3cc72;
  color: #466348;
}

.supplement::before,
[class*=is-style-supplement-]::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 1;
  content: "";
  display: inline-block;
  font-size: 1.1em;
}

.supplement:not(.boader)::before,
[class*=is-style-supplement-]::before {
  font-size: 26px;
  position: absolute;
  left: 0.5em;
}

.supplement.warning::before,
.supplement.is-style-warning::before,
.is-style-supplement-warning::before {
  content: "";
}

.supplement.succes::before,
.supplement.is-style-succes::before,
.is-style-supplement-succes::before {
  content: "";
}

.supplement.boader::before,
.supplement.border::before,
.supplement.is-style-border::before,
.is-style-supplement-border::before {
  content: none;
}

.supplement.noicon::before {
  content: none;
}

.supplement.boader,
.supplement.border,
.supplement.is-style-border,
.is-style-supplement-border {
  background: none;
  color: inherit;
  border-color: #d4d4d4;
}

.supplement.boader,
.supplement.border,
.supplement.is-style-border,
.supplement.noicon,
.is-style-supplement-border {
  padding: 3% 4%;
}