:root {
  --color-main: #f44e4e;
  --color-white: #FFFFFF;
}

/* ******************************
 *
 * RESPONSIVE MIXIN
 *
 * ****************************** */
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
@font-face {
  font-family: "Chillax";
  src: url("../fonts/Chillax-Light.eot") format("embedded-opentype"), url("../fonts/Chillax-Light.ttf") format("truetype"), url("../fonts/Chillax-Light.woff") format("woff"), url("../fonts/Chillax-Light.woff2") format("woff2");
  font-weight: 300;
}
@font-face {
  font-family: "Chillax";
  src: url("../fonts/Chillax-Regular.eot") format("embedded-opentype"), url("../fonts/Chillax-Regular.ttf") format("truetype"), url("../fonts/Chillax-Regular.woff") format("woff"), url("../fonts/Chillax-Regular.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Chillax";
  src: url("../fonts/Chillax-Medium.eot") format("embedded-opentype"), url("../fonts/Chillax-Medium.ttf") format("truetype"), url("../fonts/Chillax-Medium.woff") format("woff"), url("../fonts/Chillax-Medium.woff2") format("woff2");
  font-weight: 500;
}
@font-face {
  font-family: "Chillax";
  src: url("../fonts/Chillax-Semibold.eot") format("embedded-opentype"), url("../fonts/Chillax-Semibold.ttf") format("truetype"), url("../fonts/Chillax-Semibold.woff") format("woff"), url("../fonts/Chillax-Semibold.woff2") format("woff2");
  font-weight: 600;
}
@font-face {
  font-family: "Chillax";
  src: url("../fonts/Chillax-Bold.eot") format("embedded-opentype"), url("../fonts/Chillax-Bold.ttf") format("truetype"), url("../fonts/Chillax-Bold.woff") format("woff"), url("../fonts/Chillax-Bold.woff2") format("woff2");
  font-weight: 700;
}
@font-face {
  font-family: "Quentin";
  src: url("../fonts/Quentin.ttf") format("truetype");
}
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
@media screen and (min-width: 320px) {
  .articleHeader {
    padding: 10rem 2.5vw 0;
  }
}
@media screen and (min-width: 1025px) {
  .articleHeader {
    padding: 30rem 12.5vw 0;
  }
}
.articleHeader .breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 320px) {
  .articleHeader .breadcrumb ul {
    gap: 0 1rem;
    margin-top: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleHeader .breadcrumb ul {
    gap: 0 3rem;
    margin-top: 2rem;
  }
}
.articleHeader .breadcrumb ul li {
  position: relative;
}
@media screen and (min-width: 320px) {
  .articleHeader .breadcrumb ul li {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleHeader .breadcrumb ul li {
    font-size: 1.76rem;
    letter-spacing: 0.03rem;
  }
}
.articleHeader .breadcrumb ul li::before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}
@media screen and (min-width: 320px) {
  .articleHeader .breadcrumb ul li::before {
    top: calc(50% - 0.1rem);
    width: 0.2rem;
    height: 0.2rem;
    right: -0.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleHeader .breadcrumb ul li::before {
    top: calc(50% - 0.15rem);
    width: 0.3rem;
    height: 0.3rem;
    right: -1.5rem;
  }
}
.articleHeader .breadcrumb ul li:nth-last-child(1)::before {
  content: none;
}
.articleHeader .breadcrumb ul span {
  opacity: 0.8;
}
.articleHeader .breadcrumb ul a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
@media screen and (min-width: 320px) {
  .articleHeader .breadcrumb ul a {
    text-underline-offset: 0.1rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleHeader .breadcrumb ul a {
    text-underline-offset: 0.3rem;
  }
}
.articleHeader .breadcrumb ul a span {
  opacity: 0.3;
}

.articleInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 320px) {
  .articleInfo {
    font-size: 1.2rem;
    gap: 0 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleInfo {
    font-size: 1.4rem;
    gap: 0 2rem;
  }
}
.articleInfo .category {
  color: #f44e4e;
  border: 1px solid;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 320px) {
  .articleInfo .category {
    border-radius: 0.2rem;
    padding: 0.1rem 0.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleInfo .category {
    border-radius: 0.4rem;
    padding: 0.2rem 0.6rem;
  }
}
.articleInfo .category:hover {
  background-color: #f44e4e;
  color: #FFFFFF;
}
.articleInfo .date {
  opacity: 0.8;
  font-family: "Chillax", sans-serif;
  font-weight: 500;
}

@media screen and (min-width: 320px) {
  .articleTitle {
    font-size: 2rem;
    margin-top: 0.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleTitle {
    font-size: 5rem;
    margin-top: 1rem;
  }
}

.articleContents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 320px) {
  .articleContents {
    padding: 5rem 2.5vw 0;
  }
}
@media screen and (min-width: 1025px) {
  .articleContents {
    padding: 10rem 12.5vw 0 0;
  }
}

.snsWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 320px) {
  .snsWrapper {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 8rem;
  }
}
@media screen and (min-width: 1025px) {
  .snsWrapper {
    width: 12.5vw;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: unset;
  }
}

.snsLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 320px) {
  .snsLink {
    gap: 0 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .snsLink {
    position: sticky;
    bottom: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem 0;
    padding-right: 5vw;
  }
}

.snsText {
  opacity: 0.8;
  font-family: "Chillax", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 320px) {
  .snsText {
    font-size: 1.4rem;
    margin: 0 1rem 0 -6.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .snsText {
    font-size: 1.6rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    margin: 0 0 1rem;
  }
}

.snsBtn {
  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;
  border-radius: 50%;
}
@media screen and (min-width: 320px) {
  .snsBtn {
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (min-width: 1025px) {
  .snsBtn {
    width: 6rem;
    height: 6rem;
  }
}
.snsBtn.x {
  background: #000000;
}
.snsBtn.facebook {
  background: #0765ff;
}
.snsBtn.line {
  background: #00B900;
}

.snsSvg {
  fill: #FFFFFF;
  height: 50%;
}

@media screen and (min-width: 320px) {
  .articleMain {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (min-width: 1025px) {
  .articleMain {
    width: 55vw;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media screen and (min-width: 320px) {
  .thumbnailImg {
    border-radius: 0.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .thumbnailImg {
    border-radius: 0.8rem;
  }
}

@media screen and (min-width: 320px) {
  .articleText {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleText {
    margin-top: 3rem;
  }
}
.articleText h1, .articleText h2 {
  font-weight: 600;
}
@media screen and (min-width: 320px) {
  .articleText h1, .articleText h2 {
    font-size: 2.1rem;
    margin-top: 4rem;
    letter-spacing: 0.03rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleText h1, .articleText h2 {
    font-size: 4.2rem;
    margin-top: 10rem;
    letter-spacing: 0.05rem;
  }
}
.articleText h3 {
  font-weight: 500;
}
@media screen and (min-width: 320px) {
  .articleText h3 {
    font-size: 1.6rem;
    margin-top: 3.5rem;
    letter-spacing: 0.02rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleText h3 {
    font-size: 3.2rem;
    margin-top: 5.3rem;
    letter-spacing: 0.03rem;
  }
}
.articleText ol {
  counter-reset: num;
}
@media screen and (min-width: 320px) {
  .articleText ol {
    padding-left: 2rem;
    margin-top: 1.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleText ol {
    padding-left: 3.5rem;
    margin-top: 2.4rem;
  }
}
.articleText ol li {
  position: relative;
  line-height: 1.75;
}
@media screen and (min-width: 320px) {
  .articleText ol li {
    font-size: 1.3rem;
    padding-left: 2.5rem;
    letter-spacing: 0.03rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleText ol li {
    font-size: 2.1rem;
    padding-left: 4rem;
    letter-spacing: 0.05rem;
  }
}
.articleText ol li::before {
  position: absolute;
  counter-increment: num;
  content: counter(num) ".";
  top: 0;
}
@media screen and (min-width: 320px) {
  .articleText ol li::before {
    left: 0;
  }
}
@media screen and (min-width: 1025px) {
  .articleText ol li::before {
    left: 0;
  }
}
.articleText ol li ul, .articleText ol li ol {
  counter-reset: num;
  opacity: 0.8;
}
@media screen and (min-width: 320px) {
  .articleText ol li ul, .articleText ol li ol {
    margin: 0.5rem 0 1rem 0;
  }
}
@media screen and (min-width: 1025px) {
  .articleText ol li ul, .articleText ol li ol {
    margin: 0.5rem 0 1rem 0;
  }
}
@media screen and (min-width: 320px) {
  .articleText ul {
    padding-left: 2rem;
    margin-top: 1.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleText ul {
    padding-left: 3.5rem;
    margin-top: 2.4rem;
  }
}
.articleText ul li {
  position: relative;
  line-height: 1.75;
}
@media screen and (min-width: 320px) {
  .articleText ul li {
    font-size: 1.3rem;
    padding-left: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleText ul li {
    font-size: 2.1rem;
    padding-left: 3rem;
  }
}
.articleText ul li::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  background: #f44e4e;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 320px) {
  .articleText ul li::before {
    width: 0.6rem;
    height: 0.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleText ul li::before {
    width: 1rem;
    height: 1rem;
  }
}
.articleText ul li ul, .articleText ul li ol {
  opacity: 0.8;
}
@media screen and (min-width: 320px) {
  .articleText ul li ul, .articleText ul li ol {
    margin: 0.5rem 0 1rem 0;
  }
}
@media screen and (min-width: 1025px) {
  .articleText ul li ul, .articleText ul li ol {
    margin: 0.5rem 0 1rem 0;
  }
}
.articleText p {
  opacity: 0.8;
  line-height: 1.583;
}
@media screen and (min-width: 320px) {
  .articleText p {
    font-size: 1.3rem;
    margin-top: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleText p {
    font-size: 2.1rem;
    margin-top: 1.6rem;
  }
}
.articleText .wp-block-preformatted {
  opacity: 0.8;
  line-height: 1.583;
  white-space: normal;
}
@media screen and (min-width: 320px) {
  .articleText .wp-block-preformatted {
    font-size: 1.3rem;
    margin: 1rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .articleText .wp-block-preformatted {
    font-size: 2.1rem;
    margin: 1.6rem 0 0;
  }
}
@media screen and (min-width: 320px) {
  .articleText img {
    margin: 2rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .articleText img {
    width: 80%;
    margin: 3rem auto 0;
  }
}

.sidebarWrapper {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (min-width: 320px) {
  .sidebarWrapper {
    width: 100%;
    padding: 4rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .sidebarWrapper {
    width: 20vw;
    padding: 0 0 0 5vw;
  }
}

/* SwiftUI-like Table for WordPress Block Editor
   Target: <figure class="wp-block-table"> ... </figure>
   Features: rounded container, soft shadows, sticky header, zebra rows, hover, responsive
*/
/* reset default borders */
.wp-block-table table,
.wp-block-table th,
.wp-block-table td,
.wp-block-table tr,
.wp-block-table thead {
  border: none !important;
}

/* Container: card-like wrapper */
.wp-block-table {
  display: block;
  margin: 2rem 0;
  border-radius: 1rem;
  background: #ffffff;
  -webkit-box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06), 0 10px 20px rgba(16, 24, 40, 0.06);
          box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06), 0 10px 20px rgba(16, 24, 40, 0.06);
  overflow-x: auto; /* horizontal scroll on small screens */
  -webkit-overflow-scrolling: touch;
  /* subtle inner gradient like SwiftUI Material */
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.7)), to(rgba(255, 255, 255, 0.9)));
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.9));
}
@media screen and (min-width: 320px) {
  .wp-block-table {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1025px) {
  .wp-block-table {
    font-size: 2.1rem;
  }
}

/* The table element */
.wp-block-table table {
  width: 100%;
  border-spacing: 0;
  min-width: 640px; /* keep structure; scrolls in narrow view */
  color: #111827; /* neutral-900 */
  background: transparent;
}

/* Head cells */
.wp-block-table thead th {
  position: sticky; /* keep header visible */
  top: 0;
  z-index: 2;
  background: #f8fafc; /* slate-50-ish */
  -webkit-backdrop-filter: saturate(150%) blur(2px);
          backdrop-filter: saturate(150%) blur(2px);
  text-align: left;
  font-weight: 700;
  line-height: 1.4;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  letter-spacing: 0.01em;
}

/* Body cells */
.wp-block-table tbody td {
  font-size: 88%;
  line-height: 1.6;
  color: #111827;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #eef2f7;
  background: #ffffff;
}

/* Zebra striping */
.wp-block-table tbody tr:nth-child(odd) td {
  background: #fcfdff;
}

/* Hover state: subtle lift + tint */
.wp-block-table tbody tr:hover td {
  background: #f5faff;
  -webkit-box-shadow: inset 0 0 0 9999px rgba(59, 130, 246, 0.05);
          box-shadow: inset 0 0 0 9999px rgba(59, 130, 246, 0.05); /* primary tint */
}

/* Rounded corners for the outer cells */
.wp-block-table thead th:first-child {
  border-top-left-radius: 0.75rem;
}

.wp-block-table thead th:last-child {
  border-top-right-radius: 0.75rem;
}

.wp-block-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 0.75rem;
}

.wp-block-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 0.75rem;
}

/* Tight layout when .has-fixed-layout is used (WordPress adds fixed widths) */
.wp-block-table table.has-fixed-layout th,
.wp-block-table table.has-fixed-layout td {
  word-break: break-word;
}

/* Caption style (if used) */
.wp-block-table figcaption {
  margin-top: 0.75rem;
  color: #6b7280; /* gray-500 */
  text-align: left;
}

/* Responsive: compact padding on small screens */
@media (max-width: 640px) {
  .wp-block-table {
    padding: 0.75rem;
    border-radius: 0.875rem;
  }
  .wp-block-table thead th,
  .wp-block-table tbody td {
    padding: 0.7rem 0.75rem;
    font-size: 0.92rem;
  }
  .wp-block-table table {
    min-width: 520px;
  }
}
/* Dark mode */
@media (prefers-color-scheme: dark) {
  .wp-block-table {
    background: #0f1115;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 32, 36, 0.6)), to(rgba(16, 18, 22, 0.9)));
    background-image: linear-gradient(180deg, rgba(31, 32, 36, 0.6), rgba(16, 18, 22, 0.9));
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 12px 28px rgba(0, 0, 0, 0.35);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 12px 28px rgba(0, 0, 0, 0.35);
  }
  .wp-block-table table {
    color: #e5e7eb;
  }
  .wp-block-table thead th {
    background: rgba(30, 41, 59, 0.8);
    color: #f1f5f9;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  }
  .wp-block-table tbody td {
    color: #e5e7eb;
    background: #12151a;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  }
  .wp-block-table tbody tr:nth-child(odd) td {
    background: #101319;
  }
  .wp-block-table tbody tr:hover td {
    background: #0f172a;
    -webkit-box-shadow: inset 0 0 0 9999px rgba(59, 130, 246, 0.08);
            box-shadow: inset 0 0 0 9999px rgba(59, 130, 246, 0.08);
  }
  .wp-block-table figcaption {
    color: #94a3b8;
  }
}
/* Optional: subtle focus styles for accessibility when table is keyboard scrolled */
.wp-block-table:focus-within {
  outline: 2px solid rgba(59, 130, 246, 0.35);
  outline-offset: 4px;
  border-radius: 1rem;
}

/* Optional: tighten strong/b tags inside cells */
.wp-block-table td strong,
.wp-block-table th strong {
  font-weight: 800;
}/*# sourceMappingURL=single.css.map */