@charset "utf-8";
<style>

/* ─────────── テーマ切替用 CSS 変数定義 ─────────── */
/* １）CSS変数の宣言は :root でも可能です。 */
/* ============================================
   ダーク／ライト変数定義を :root に移動
   ============================================ */
:root.theme-light {
  --bg:   #ffffff;
  --text: #000000;
}
:root.theme-dark {
  --bg:   #1a1a1a;
  --text: #ffffff;
}

/* ============================================
   全体共通スタイル
   ============================================ */
body,main {
  background-color: var(--bg) !important;
  color:            var(--text) !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ============================================
   テキスト＆背景色強制適用
   ============================================ */
/* プラグイン未制御の要素（例: .body-text）にも適用 */
body,
.body-text, .body-text *,
.post-title,
.card-text,
.footer-text,
.entry-content,
h1, h2, h3, h4, h5, h6,div,
p, li, span, label,
a, button {
  background-color: var(--bg) !important;
  color:            var(--text) !important;
}

/* ============================================
   入力欄・ボタン・フォーム要素
   ============================================ */
input, textarea, select, button {
  background-color: var(--bg) !important;
  color:            var(--text) !important;
  border:           1px solid var(--text) !important;
}

/* ============================================
   コードブロック
   ============================================ */
pre, code, .wp-block-code {
  background-color: var(--bg) !important;
  color:            var(--text) !important;
  border:           1px solid var(--text) !important;
}

/* ============================================
   テーブル
   ============================================ */
table {
  border-collapse: collapse;
  background-color: var(--bg) !important;
}
th, td {
  border: 1px solid var(--text) !important;
  color:  var(--text) !important;
}

/* ============================================
   ブロック引用
   ============================================ */
blockquote {
  border-left: 4px solid var(--text) !important;
  background-color: var(--bg) !important;
  color: var(--text) !important;
  padding-left: 1em;
}

/* ============================================
   リスト
   ============================================ */
ul, ol {
  color: var(--text) !important;
}

/* ============================================
   リンク
   ============================================ */
a {
  color:            var(--text) !important;
  text-decoration: underline;
}





.kawa {  
  background-color: #fff;
  border-radius: 10px;
  font-weight: bold;
  color: #000;
  text-align: center;
  font-size: 30px;
  margin: 0 auto; /* 水平方向に中央揃え */
  width: 50%; /* 画面幅の50%に設定 */
  transition: transform 0.3s ease, background-color 0.3s ease; /* スムーズな変化を追加 */
}

.kawa:hover {
  transform: scale(1.05);
  background-color: #f0f0f0;
}

.suki {
  background-color: transparent;
  display: flex;
  flex-direction: row;
  position: relative;
  height: auto;
  justify-content: center; /* 要素を水平方向に中央揃え */
  transition: background-color 0.3s ease;
}

.suki:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.my-link {
  font-weight: bold;
  text-decoration: none;
  color: white;
  background-color: #000;
  padding: 10px 20px;
  transition: background-color 0.3s ease, transform 0.3s ease; /* スムーズな変化を追加 */
}

.my-link:hover, .my-link.active {
  background-color: #333;
  transform: scale(1.1);
}

.my-link:active {
  transform: scale(0.95);
}

.jas {
  background-color: transparent;

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template: cocoon-master
Version: 1.1.2
*/

/* General Styles */

* {
  box-sizing: border-box;
}

h2 {
  color: #75787b;
  font-size: .75rem;
  line-height: 1.5;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
}

section {
  margin-bottom: 2rem;
}

button {
  background: transparent;
  outline: none;
  position: relative;
  border: 2px solid #111;
  padding: 15px 50px;
  overflow: hidden;
  transition: all .3s ease-in-out;
}

button:hover {
  cursor: pointer;
}

button::before {
  content: attr(data-hover);
  position: absolute;
  top: 1.1em;
  left: 0;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  font-size: .8em;
  opacity: 0;
  transform: translate(-100%, 0);
}

button:hover::before {
  opacity: 1;
  transform: translate(0, 0);
}

button div {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  font-size: .8em;
  transition: all .3s ease-in-out;
}

button:hover div {
  opacity: 0;
  transform: translate(100%, 0);
}

/* Utility Classes */
/* For all devices */
/* すべてのデバイスに適用 */
.my-allwidth-image {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media (min-aspect-ratio: 16/10) {
  .my-allwidth-image {
     margin-left: calc(50% - 50vw );
  　margin-right: calc(50% - 50vw);
  }
}



.eye-catch-wrap {
  margin-left: -27px;
  margin-right: -27px;
}

@media screen and (max-width: 834px) {
  .eye-catch-wrap {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.TextTyping {
  text-align: center;
  margin: 20px 0;
  font-size: 1.5rem;
  letter-spacing: .5em;
  word-break: break-all;
}

.TextTyping span {
  display: none;
}

.TextTyping::after {
  content: "|";
  animation: typinganime .8s ease infinite;
}

@keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Progress Bar */
.progress-bar {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.progress-bar li {
  flex: 2;
  position: relative;
  padding: 0 0 14px 0;
  font-size: .875rem;
  line-height: 1.5;
  color: #53a318;
  font-weight: 600;
  white-space: nowrap;
  overflow: visible;
  min-width: 0;
  text-align: center;
  border-bottom: 2px solid #e8e8e8;
}

.progress-bar li:first-child,
.progress-bar li:last-child {
  flex: 1;
}

.progress-bar li:last-child {
  text-align: right;
}

.progress-bar li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #e8e8e8;
  border-radius: 50%;
  border: 2px solid #fff;
  position: absolute;
  left: calc(50% - 6px);
  bottom: -7px;
  z-index: 3;
  transition: all .2s ease-in-out;
}

.progress-bar li:first-child::before {
  left: 0;
}

.progress-bar li:last-child::before {
  right: 0;
  left: auto;
}

.progress-bar span {
  transition: opacity .3s ease-in-out;
}

.progress-bar li:not(.is-active) span {
  opacity: 0;
}

.progress-bar .is-complete:not(:first-child)::after,
.progress-bar .is-active:not(:first-child)::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  bottom: -2px;
  left: -50%;
  z-index: 2;
  border-bottom: 2px solid #53a318;
}

.progress-bar li:last-child span {
  width: 200%;
  display: inline-block;
  position: absolute;
  left: -100%;
}

.progress-bar .is-complete:last-child::after,
.progress-bar .is-active:last-child::after {
  width: 200%;
  left: -100%;
}

.progress-bar .is-complete::before {
  background-color: #53a318;
}

.progress-bar .is-active::before,
.progress-bar li:hover::before,
.progress-bar .is-hovered::before {
  background-color: #fff;
  border-color: #53a318;
}

.progress-bar li:hover::before,
.progress-bar .is-hovered::before {
  transform: scale(1.33);
}

.progress-bar li:hover span,
.progress-bar li.is-hovered span {
  opacity: 1;
}

.progress-bar:hover li:not(:hover) span {
  opacity: 0;
}

/* Custom Elements */
.memox {
  position: relative;
  background: #fffde7;
  width: 85%;
  margin: 2em auto;
  padding: 1.5em 1em;
  transform: rotate(-2deg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  color: #795548;
}

.memox::before {
  content: 'ここがポイント';
  position: relative;
  display: inline-block;
  border-bottom: 3px solid #795548;
  border-radius: 0 0 40% 5% / 0 0 15% 20%;
  padding: 0 1em 0.1em 0.2em;
  font-size: 110%;
  font-weight: bold;
  transform: rotate(-5deg);
}

.memox::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -15px;
  margin-left: -75px;
  width: 150px;
  height: 30px;
  background: rgba(245, 245, 245, 0.7);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  transform: rotate(-4deg);
}

.memox ol {
  margin: 1em 0.5em 0 2em;
  padding: 0;
}

.memox ol li {
  margin-bottom: 0.5em;
}

/* Box Styles */
.box21 {
  padding: 0.5em 1em;
  background: linear-gradient(to right, #ffb03c, #ff708d);
  color: #FFF;
}

.box21 p {
  margin: 0;
  padding: 0;
  font-size: 40px;
}

.box17 {
  margin: 2em 0;
  position: relative;
  padding: 0.5em 1.5em;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}

.box17::before, .box17::after {
  content: '';
  position: absolute;
  top: -10px;
  width: 2px;
  height: calc(100% + 20px);
  background-color: black;
}

.box17::before {
  left: 10px;
}

.box17::after {
  right: 10px;
}

.box17 p {
  margin: 0;
  padding: 0;
}

.punch-box-a {
  position: relative;
  margin: 2em auto;
  padding: 40px 20px 15px;
  width: 90%;
  background-color: #f7f7f7;
  color: #666666;
  border: 1px solid #ccc;
  box-shadow: 1px 1px 2px #ccc;
}

.punch-box-a::before,
.punch-box-a::after {
  position: absolute;
  content: '';
  top: 10px;
  width: 18px;
  height: 18px;
  background-color: #fff;
  box-shadow: -1px -1px 8px #cccccc inset;
  border: 1px solid #ccc;
  border-radius: 50%;
}

.punch-box-a::before {
  left: 80px;
}

.punch-box-a::after {
  right: 80px;
}

/* List Styles */
ol.sample1 {
  counter-reset: list;
  list-style-type: none;
  font: 14px/1.6 'arial narrow', sans-serif;
  padding: 0;
}

ol.sample1 li {
  position: relative;
  margin: 7px 0;
  padding-left: 43px;
  font-weight: bold;
  font-size: 16px;
  line-height: 30px;
  border: 2px solid #756C67;
  color: #756C67;
}

ol.sample1 li::before {
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  line-height: 30px;
  background: #756C67;
  top: 50%;
  transform: translateY(-50%);
}

ol.sample1 li::after {
  content: "";
  display: block;
  position: absolute;
  left: 30px;
  height: 0;
  width: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #756C67;
  top: 50%;
  transform: translateY(-50%);
}

/* Accordion Styles */
.s_04 .accordion_one {
  max-width: 1024px;
  margin: 0 auto;
}

.s_04 .accordion_one .accordion_header {
  background-color: #ed6b6b;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  padding: 20px 11%;
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition-duration: 0.2s;
}

.s_04 .accordion_one:nth-of-type(2) .accordion_header {
  background-color: #7cb872;
}

.s_04 .accordion_one:nth-of-type(3) .accordion_header {
  background-color: #393b39;
}

.s_04 .accordion_one:nth-of-type(4) .accordion_header {
  background-color: #7aabcf;
}

.s_04 .accordion_one:nth-of-type(5) .accordion_header {
  background-color: #d58af2;
}

.s_04 .accordion_one:nth-of-type(6) .accordion_header {
  background-color: #cfa770;
}

.s_04 .accordion_one:nth-of-type(7) .accordion_header {
  background-color: #c4cf70;
}

.s_04 .accordion_one:nth-of-type(8) .accordion_header {
  background-color: #6bc986;
}

.s_04 .accordion_one:nth-of-type(9) .accordion_header {
  background-color: #75d9cf;
}

.s_04 .accordion_one:nth-of-type(10) .accordion_header {
  background-color: #8a53cf;
}

.s_04 .accordion_one .accordion_header:hover {
  opacity: .8;
}

.s_04 .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  margin-top: -20px;
  box-sizing: border-box;
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}

.s_04 .accordion_one .accordion_header.stay .i_box {
  transform: rotate(0deg);
}

.s_04 .accordion_one .accordion_header.open .i_box {
  transform: rotate(-360deg);
}

.s_04 .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}

.s_04 .accordion_one .accordion_header.stay .i_box .one_i {
  transform: rotate(0deg);
}

.s_04 .accordion_one .accordion_header.open .i_box .one_i {
  transform: rotate(45deg);
}

.s_04 .accordion_one .accordion_header .i_box .one_i::before,
.s_04 .accordion_one .accordion_header .i_box .one_i::after {
  display: flex;
  content: '';
  background-color: #fff;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  transform: rotate(0deg);
  transform-origin: center center;
}

.s_04 .accordion_one .accordion_header .i_box .one_i::before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}

.s_04 .accordion_one .accordion_header.stay .i_box .one_i::before {
  content: none;
}

.s_04 .accordion_one .accordion_header.open .i_box .one_i::before {
  content: none;
}

.s_04 .accordion_one .accordion_header.stay.open .i_box .one_i::before {
  content: "";
}

.s_04 .accordion_one .accordion_header.open .i_box .one_i::after {
  transform: rotate(-45deg);
}

.s_04 .accordion_one .accordion_header.stay.open .i_box .one_i::after {
  transform: rotate(0deg);
}

.s_04 .accordion_one .accordion_inner {
  display: none;
  padding: 30px 30px;
  border-left: 2px solid #f08080;
  border-right: 2px solid #f08080;
  border-bottom: 2px solid #f08080;
  box-sizing: border-box;
}

.s_04 .accordion_one .accordion_inner.stay {
  display: block;
}

.s_04 .accordion_one:nth-of-type(2) .accordion_inner {
  border-left: 2px solid #2da6e3;
  border-right: 2px solid #2da6e3;
  border-bottom: 2px solid #2da6e3;
}

.s_04 .accordion_one:nth-of-type(3) .accordion_inner {
  border-left: 2px solid #526066;
  border-right: 2px solid #526066;
  border-bottom: 2px solid #526066;
}

.s_04 .accordion_one .accordion_inner .box_one {
  height: 300px;
}

.s_04 .accordion_one .accordion_inner p.txt_a_ac {
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .s_04 .accordion_one .accordion_header {
    font-size: 18px;
  }
  .s_04 .accordion_one .accordion_header .i_box {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}

@media screen and (max-width: 767px) {
  .s_04 .accordion_one .accordion_header {
    font-size: 16px;
    text-align: left;
    padding: 15px 60px 15px 15px;
  }
}

/* Info Box */
.info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 12.5em;
  background-color: #ffffff;
  height: auto;
  margin: auto;
  overflow-y: scroll;
}

@media (min-width:768px) {
  .info {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.info dd, .info dt {
  box-sizing: border-box;
  width: 12.5em;
  padding-bottom: auto;
  padding-left: auto;
}

.info dt {
  font-style: normal;
  font-weight: initial;
}

@media (min-width:768px) {
  .info dt {
    width: 12.5em;
    margin-bottom: .5em;
    border-bottom: 1px dotted #343a40;
  }
}

.info dt:first-of-type {
  padding-top: .5em;
  border-top: 1px dotted #343a40;
}

.info dt time {
  margin-right: .5em;
}

.info dt span {
  box-sizing: border-box;
  display: inline-block;
  width: 7em;
  margin-right: .5em;
  padding: 0 .5em;
  background-color: #009688;
  color: #fff;
  font-size: .8em;
  line-height: 1.75;
  text-align: center;
}

.info time {
  color: #adb5bd;
}

.info dd {
  margin-left: 0;
  margin-bottom: .5em;
  border-bottom: 1px dotted #343a40;
}

@media (min-width:768px) {
  .info dd {
    width: calc(100% - 12.5em);
  }
  .info dd:first-of-type {
    padding-top: .5em;
    border-top: 1px dotted #343a40;
  }
}

.info dd:nth-of-type(-n+3) {
  position: relative;
}

/* Widget Categories */
.cf .widget_categories ul {
  font-size: 18px;
}

.cf .widget_categories > ul > li > ul {
  padding-left: 1.75em;
}

.cf .widget_categories > ul > li > ul > li ul {
  padding-left: 1.55em;
}

.cf .widget_categories a {
  padding: 4px;
  color: #686868;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
}

.cf .widget_categories a:hover {
  color: #686868;
  background-color: transparent;
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.3), 0px 0px 4px 1px rgba(0, 0, 0, 0.3);
}

.cf .widget_categories > ul > li > a {
  padding-top: 6px;
  font-size: 1.1em;
  padding-left: 2.1em;
}

.cf .widget_categories > ul > li > ul > li > a {
  padding-top: 5px;
  font-size: 1em;
  padding-left: 2em;
}

.cf .widget_categories > ul > li > ul > li > ul li a {
  font-size: 0.9em;
  padding-left: 2em;
}

/* Timeline Customization */
.timeline-item::before {
  background: #000;
  top: 22px;
  width: 17px;
  height: 17px;
  left: 103px;
}

.timeline-item-content {
  border-left: 3px rgba(25, 25, 25, .12) solid;
}

.timeline-box {
  border: initial;
}

.timeline-item-label {
  color: rgba(25, 25, 25, .7);
}

@media screen and (max-width: 480px) {
  .timeline-item-content {
    border-left: initial;
  }
  .timeline>li.timeline-item {
    border-left: 3px rgba(25, 25, 25, .12) solid;
  }
  .timeline-item::before {
    left: -10px;
  }
}

/* Animation Keyframes */
@keyframes timeline_circle {
  100% {
    opacity: 1;
    transform: scale(1.3, 1.3);
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes anicreUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aUpAnime {
  from {
    opacity: 0;
    filter: blur(12px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    transform: translateY(10%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

@keyframes Down {
  from {
    transform: translateY(-10%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

@keyframes Right {
  from {
    transform: translateX(10%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}

/* Typography */
h1::first-letter {
  background-color: #000;
  border-radius: 50%;
  padding: 10px;
  font-size: 26px;
  color: #fff;
  margin-right: 5px;
}

/* Sidebar */
.sidebar .toc {
  background: transparent !important;
  border: initial !important;
  box-shadow: initial !important;
  margin-bottom: initial !important;
  width: initial !important;
  border-radius: initial !important;
  padding-top: initial !important;
}

.sidebar .toc li li::before {
  color: #000;
}

/* Breadcrumb */
.breadcrumb .fa-home {
  display: none;
}

/* Entry Card */
.entry-card-wrap {
  transition: all .3s ease;
  margin-bottom: 1em !important;
  background-color: white;
  border-radius: 4px;
}

.entry-card-wrap:hover {
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* List Styles */
.list-3 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-3 li {
  position: relative;
  margin: 0.5em 0 !important;
  padding-left: 25px;
}

.list-3 li::before {
  font-family: FontAwesome;
  content: "\f058";
  color: #ffa952;
  position: absolute;
  left: 0;
}

.list-box-4 {
  background: #f5f9fc;
  border-radius: 4px;
  max-width: 600px;
  padding: 2em;
  margin: 0 auto;
  border: 4px double #0e7ac4;
}

/* Social Share Buttons */
.sns-share-buttons a {
  border-radius: 50%;
  height: 40px;
  margin: 8px;
}

.sns-share-buttons {
  animation: fadeInAnime 5s forwards;
  opacity: 0;
}

.sns-share.ss-top.ss-col-6 a,
.sns-share.ss-bottom.ss-col-6 a {
  width: 40px;
}

.sns-share.ss-top .sns-share-buttons a .button-caption,
.sns-share.ss-bottom .sns-share-buttons a .button-caption {
  display: none;
}

.sns-share.ss-bottom {
  display: none;
}

.sns-share-buttons .social-icon,
.sns-share-buttons .button-caption {
  font-size: 22px;
  padding-top: 0;
}

/* Appeal Area */
.appeal {
  padding: .1em 0 .2em;
  box-shadow: 0px 1px 4px 0 rgba(0, 0, 0, .1);
}

div#appeal-in.appeal-in.wrap {
  padding: 0;
  min-height: 0px;
  max-height: 30px;
}

div.appeal-content {
  padding: 0;
  background-color: #b5b5b5;
  margin: auto;
  max-width: 100%;
  opacity: 1;
  line-height: 1.6;
}

a.appeal-button {
  color: #fff !important;
  font-size: .85em;
  padding: 0 23em;
  margin: 0;
  max-width: 100%;
  white-space: nowrap;
  box-shadow: none;
}

a.appeal-button:hover {
  transform: none;
  box-shadow: none;
}

@media screen and (max-width: 1023px) {
  a.appeal-button {
    padding: 0 18em;
  }
}

@media screen and (max-width: 834px) {
  a.appeal-button {
    padding: 0 13em;
  }
}

@media screen and (max-width: 652px) {
  a.appeal-button {
    padding: 0 8em;
  }
}

@media screen and (max-width: 500px) {
  a.appeal-button {
    padding: 0 6em;
  }
}

@media screen and (max-width: 420px) {
  a.appeal-button {
    padding: 0 3em;
  }
}

/* Keyframes for Animation */
.anicreUp {
  animation-name: anicreUpAnime;
  animation-duration: 2s;
  font-family: YuGothic, 游ゴシック, "Yu Gothic", "Noto Sans Japanese", sans-serif;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin-top: 50px;
  animation-fill-mode: forwards;
  opacity: 0;
}

.aUp {
  animation-name: aUpAnime;
  animation-duration: 2s;
  font-family: YuGothic, 游ゴシック, "Yu Gothic", "Noto Sans Japanese", sans-serif;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin-top: 50px;
  animation-fill-mode: forwards;
  opacity: 0;
}

/* Media Queries */
@media screen and (max-width: 1023px) {
  /* Add necessary responsive styles here */
}

@media screen and (max-width: 834px) {
  /* Add necessary responsive styles here */
}

@media screen and (max-width: 480px) {
  .entry-header .eye-catch {
    margin-left: -1em;
    margin-right: -1em;
    max-width: none;
    width: auto;
  }
}

.appeal {
  padding: .1em 0 .2em;
  box-shadow: 0px 1px 4px 0 rgba(0, 0, 0, .1);
}

div#appeal-in.appeal-in.wrap {
  padding: 0;
  min-height: 0px;
  max-height: 30px;
}

div.appeal-content {
  padding: 0;
  background-color: #b5b5b5;
  margin: auto;
  max-width: 100%;
  opacity: 1;
  line-height: 1.6;
}

a.appeal-button {
  color: #fff !important;
  font-size: .85em;
  padding: 0 23em;
  margin: 0;
  max-width: 100%;
  white-space: nowrap;
  box-shadow: none;
}

a.appeal-button:hover {
  transform: none;
  box-shadow: none;
}

@media screen and (max-width: 1023px) {
  a.appeal-button {
    padding: 0 18em;
  }
}

@media screen and (max-width: 834px) {
  a.appeal-button {
    padding: 0 13em;
  }
}

@media screen and (max-width: 652px) {
  a.appeal-button {
    padding: 0 8em;
  }
}

@media screen and (max-width: 500px) {
  a.appeal-button {
    padding: 0 6em;
  }
}

@media screen and (max-width: 420px) {
  a.appeal-button {
    padding: 0 3em;
  }
}
