@charset "UTF-8";@import "kiso.css";
/* リキッドレイアウト対応 */

.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}

.u-text__inline-block {
  display: inline-block;
}

.u-text__indent {
  padding-inline-start: 1em;
  text-indent: -1em;
}

@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
:root {
  /* inner */
  --inner: 1080px;
  --padding-pc: 25px;
  --padding-sp: 15px;
  /* color */
  --color-white: #fff;
  --color-black: #000b29;
  --color-blue: #2294d4;
  --color-yellow: #e99215;
  --color-gray: #e1e1e1;
  --color-light-gray: #f8f7f6;
  /* font-weight */
  --regular: 300;
  --normal: 400;
  --medium: 500;
  --bold: 700;
  /* font-family */
  --base-font-family: "IBM Plex Sans JP", sans-serif;
  --second-font-family: "Roboto Condensed", sans-serif;
  --academic-fontdamily: "Noto Serif JP", serif; /* 8pxを余白の基準とした余白ルール */
  /* 参考：https://www.tak-dcxi.com/article/use-line-height-trim-as-css-variable/ */
  --leading-trim: calc((1em - 1lh) / 2);
  --spacing-unit: 0.5rem;
  --spacing-xs: calc(var(--spacing-unit) / 2);
  --spacing-sm: var(--spacing-unit);
  --spacing-md: calc(var(--spacing-unit) * 2);
  --spacing-lg: calc(var(--spacing-unit) * 3);
  --spacing-lg-2: calc(var(--spacing-unit) * 4);
  --spacing-xl: calc(var(--spacing-unit) * 5);
  --spacing-xl-2: calc(var(--spacing-unit) * 6);
  --spacing-2xl: calc(var(--spacing-unit) * 8);
  --spacing-3xl: calc(var(--spacing-unit) * 13);
  /* line-height分の余白を打ち消す */
  --spacing-xs-trim: calc(var(--spacing-xs) + var(--leading-trim));
  --spacing-sm-trim: calc(var(--spacing-sm) + var(--leading-trim));
  --spacing-md-trim: calc(var(--spacing-md) + var(--leading-trim));
  --spacing-lg-trim: calc(var(--spacing-lg) + var(--leading-trim));
  --spacing-xl-trim: calc(var(--spacing-xl) + var(--leading-trim));
  --spacing-2xl-trim: calc(var(--spacing-2xl) + var(--leading-trim));
  --spacing-3xl-trim: calc(var(--spacing-3xl) + var(--leading-trim));
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
    /* `px`などの単位が必要 */
  }
}
html {
  font-size: 16px;
}
@media (max-width: 1080px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

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

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent; /* 強調をなくす */
}

a:hover {
  text-decoration: none;
}

img,
svg {
  vertical-align: middle;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

*,
::before,
::after {
  --clamp-root-font-size: 16;
  --clamp-slope: calc(
    (var(--clamp-max) - var(--clamp-min)) / (var(--clamp-viewport-max) - var(--clamp-viewport-min))
  );
  --clamp-y-axis-intersection: calc(
    var(--clamp-min) - (var(--clamp-slope) * var(--clamp-viewport-min))
  );
  --clamp-preffered-value: calc(
    var(--clamp-y-axis-intersection) * (1rem / var(--clamp-root-font-size)) +
      (var(--clamp-slope) * 100vi)
  );
  --clamp: clamp(
    calc(var(--clamp-min) * (1rem / var(--clamp-root-font-size))),
    var(--clamp-preffered-value),
    calc(var(--clamp-max) * (1rem / var(--clamp-root-font-size)))
  );
  font-size: var(--clamp);
}

/* bodyにデフォルト値を設定する */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(208 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: calc(112 * var(--to-rem));
  }
}

body {
  font-family: var(--base-font-family);
  color: var(--color-black);
  font-size: calc(16 * var(--to-rem));
  background-image: url("../../images/common/bg.webp");
  background-repeat: repeat;
  background-size: 10%;
}

main {
  overflow-x: hidden;
}

/* 👍使い方 */
@media (max-width: 767px) {
  [data-device=pc] {
    display: none;
  }
}

@media (min-width: 768px) {
  [data-device=sp] {
    display: none;
  }
}

:where(:any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:focus:not(:focus-visible) {
  outline: none;
}

input[type=text] {
  font-size: 1rem; /* = 16px */
}

textarea {
  field-sizing: content;
}

html {
  box-sizing: border-box;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
}

*,
::before,
::after {
  background-repeat: no-repeat;
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
  box-sizing: border-box;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
     # General elements
     # ================================================================= */
hr {
  overflow: visible;
  /* Show the overflow in Edge and IE */
  height: 0;
  /* Add the correct box sizing in Firefox */
  color: inherit;
  /* Correct border color in Firefox. */
}

details,
main {
  display: block;
  /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: none;
  /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0;
  /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

/* # =================================================================
     # Forms
     # ================================================================= */
input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
  /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  -webkit-appearance: textfield;
  appearance: none;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  appearance: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor;
  /* Internet Explorer 11+ */
}

legend {
  border: 0;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
  /* Change font properties to `inherit` in Chrome and Safari */
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* # =================================================================
     # Specify media element style
     # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

/* # =================================================================
     # Accessibility
     # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
  list-style: "";
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.l-404 {
  padding: calc(100 * var(--to-rem)) 0;
}

.l-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.l-inner {
  max-width: calc(var(--inner) + var(--padding-pc) * 2);
  padding-right: var(--padding-pc);
  padding-left: var(--padding-pc);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: var(--padding-sp);
    padding-left: var(--padding-sp);
  }
}

.l-latest {
  padding-bottom: calc(80 * var(--to-rem));
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-latest {
    padding-bottom: calc(60 * var(--to-rem));
  }
}

.l-page {
  padding-block: calc(120 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .l-page {
    padding-block: calc(40 * var(--to-rem));
  }
}

.l-section {
  padding: calc(80 * var(--to-rem)) 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: calc(60 * var(--to-rem)) 0;
  }
}

.l-top__about {
  margin-block-start: var(--spacing-xl);
}
@media screen and (max-width: 767px) {
  .l-top__about {
    margin-block-start: var(--spacing-3xl);
  }
}

.l-two-column {
  padding-block: calc(120 * var(--to-rem));
  max-width: calc(1250 * var(--to-rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr calc(300 * var(--to-rem));
  gap: calc(40 * var(--to-rem)) calc(116 * var(--to-rem));
  padding-inline: calc(25 * var(--to-rem));
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-two-column {
    padding-block: calc(40 * var(--to-rem)) calc(60 * var(--to-rem));
    grid-template-columns: 1fr;
    padding-inline: calc(16 * var(--to-rem));
  }
}

.l-two-column__main {
  position: relative;
}

.l-two-column__side {
  display: flex;
  flex-direction: column;
  gap: calc(48 * var(--to-rem));
  position: relative;
  align-self: start;
  padding-bottom: calc(120 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .l-two-column__side {
    position: relative;
    top: initial;
    padding-bottom: 0;
  }
}

.c-2colcard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(48 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .c-2colcard {
    grid-template-columns: 1fr;
    gap: calc(24 * var(--to-rem));
  }
}

.c-archivetitle {
  font-size: calc(32 * var(--to-rem));
  font-weight: 500;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .c-archivetitle {
    font-size: calc(24 * var(--to-rem));
  }
}

.c-archivetitle__color {
  font-size: calc(32 * var(--to-rem));
  color: var(--color-blue);
}
@media screen and (max-width: 767px) {
  .c-archivetitle__color {
    font-size: calc(24 * var(--to-rem));
  }
}

.c-archivetitle__taxonomy {
  display: block;
  margin-top: calc(8 * var(--to-rem));
  font-family: var(--base-font-family);
  color: var(--color-black);
  font-size: calc(16 * var(--to-rem));
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-archivetitle__taxonomy {
    margin-top: calc(12 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}

.c-banner {
  background: var(--color-white);
}
@media screen and (max-width: 767px) {
  .c-banner {
    max-width: calc(300 * var(--to-rem));
    margin-inline: auto;
  }
}

.c-banner a {
  display: block;
}

.c-banner img {
  transition: 0.3s;
}

.c-banner a:hover img {
  opacity: 0.7;
}

.c-bg {
  position: relative;
}

.c-bg:before {
  content: "";
  width: 100%;
  height: 100dvh;
  background-image: url(../../images/common/section_bg.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: right top;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-bg:before {
    background-image: url(../../images/common/section_bg-sp.webp);
    background-size: 50%;
    top: calc(-280 * var(--to-rem));
  }
}

@media screen and (max-width: 767px) {
  .home .c-bg:before {
    display: none;
  }
}

.c-bgColored {
  background-color: var(--color-blue); /* 背景色 */
  /* 1. 左右に画面幅よりも巨大な影（背景色と同じ色）を落とす */
  box-shadow: 0 0 0 100vmax var(--color-blue);
  /* 2. 上下の影は切り取り、左右の影だけを表示させる */
  clip-path: inset(0 -100vmax);
  /* 以下はレイアウト調整用 */
  position: relative;
  z-index: 0; /* サイドバーとの重なり順を制御 */
}

.home {
  overflow-x: clip;
}

.c-button {
  text-align: center;
}

.c-button a {
  padding: calc(19 * var(--to-rem)) calc(46 * var(--to-rem));
  position: relative;
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-black);
  outline: 1px solid var(--color-black);
  background-color: var(--color-white);
  border-radius: 50px;
  overflow: hidden;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-button a {
    padding: calc(16 * var(--to-rem)) calc(40 * var(--to-rem));
  }
}

.c-button a span {
  padding-right: calc(40 * var(--to-rem));
  position: relative;
  z-index: 1;
  font-size: calc(16 * var(--to-rem));
}

.c-button a span::before {
  content: "";
  width: calc(10 * var(--to-rem));
  height: calc(16 * var(--to-rem));
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url("../../images/common/icon_arrow.svg");
  background: var(--color-black);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.c-button a::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.25s ease;
  transition-property: transform;
}

.c-button a:hover {
  color: var(--color-white);
}

.c-button a:hover span::before {
  background: var(--color-white);
}

.c-bgColored .c-button a::after {
  background-color: var(--color-black);
}

.c-button a:hover::after {
  transform: scaleX(1);
}

.c-category {
  padding: calc(8 * var(--to-rem)) calc(12 * var(--to-rem)) calc(4 * var(--to-rem));
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: calc(13 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0;
  transition: 0.3s;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-category {
    font-size: calc(10 * var(--to-rem));
    padding: calc(4 * var(--to-rem)) calc(6 * var(--to-rem));
  }
}

.c-category__features {
  background-color: var(--color-yellow);
  color: var(--color-text);
}

.c-date {
  font-family: var(--scond-font-family);
  font-size: calc(12 * var(--to-rem));
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  display: inline-block;
}

.c-featuresCard {
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-featuresCard {
    display: grid;
    grid-template-columns: 40% 55%;
    justify-content: space-between;
  }
}

.c-featuresCard a {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 1;
}

.c-featuresCard__image {
  border-radius: calc(8 * var(--to-rem));
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  background: var(--color-white);
}
.c-featuresCard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.c-featuresCard__text {
  margin-top: calc(24 * var(--to-rem));
  font-size: calc(20 * var(--to-rem));
  color: var(--color-white);
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-featuresCard__text {
    margin-top: 0;
    font-size: calc(12 * var(--to-rem));
  }
}

.c-featuresCard:hover .c-featuresCard__image img {
  transform: scale(1.1);
}

.c-image-text {
  display: grid;
  align-items: center;
  grid-template: "image gutter text margin" auto/41.6666666667% 16px 1fr max((100% - var(--inner)) / 2, 32px);
}

.c-image-text--reverse {
  grid-template: "margin text gutter image" auto/max((100% - var(--inner)) / 2, 32px) 1fr 16px 41.6666666667%;
}

.c-image-text__image {
  grid-area: image;
}

.c-image-text__image img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.c-image-text__text {
  grid-area: text;
}

.c-image-text02 {
  display: grid;
  align-items: center;
  grid-template: "image text margin" auto/41.6666666667% 1fr max((100% - var(--inner)) / 2, 32px);
}

.c-image-text02--reverse {
  grid-template: "margin text image" auto/max((100% - var(--inner)) / 2, 32px) 1fr 41.6666666667%;
}

.c-image-text02__image {
  grid-area: image;
}

.c-image-text02__image img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.c-image-text02__text {
  grid-area: text;
  padding: 20px 0 20px 20px;
  margin-left: -100px;
  background: #fff;
}

.c-image-text02--reverse .c-image-text02__text {
  padding: 20px 20px 20px 0;
  margin-left: auto;
  margin-right: -100px;
}

.c-more {
  text-transform: uppercase;
  font-size: calc(16 * var(--to-rem));
  letter-spacing: 0;
  font-family: var(--second-font-family);
  position: relative;
  padding-right: calc(26 * var(--to-rem));
  display: inline-block;
}

.c-more::before {
  content: "";
  width: calc(10 * var(--to-rem));
  height: calc(16 * var(--to-rem));
  background-image: url("../../images/common/icon_arrow.svg");
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-45%);
}

.c-pagetitle {
  font-size: calc(40 * var(--to-rem));
  font-family: var(--second-font-family);
  font-weight: 400;
  line-height: 1;
  color: var(--color-blue);
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-pagetitle {
    font-size: calc(24 * var(--to-rem));
  }
}

.c-pagetitle span {
  display: block;
  margin-top: calc(8 * var(--to-rem));
  font-family: var(--base-font-family);
  color: var(--color-black);
  font-size: calc(16 * var(--to-rem));
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-pagetitle span {
    margin-top: calc(12 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}

.c-sectiontitle {
  padding-bottom: calc(16 * var(--to-rem));
  border-bottom: 1px solid var(--color-black);
}
@media screen and (max-width: 767px) {
  .c-sectiontitle {
    text-align: center;
  }
}

.c-sectiontitle .en {
  font-size: calc(64 * var(--to-rem));
  font-family: var(--second-font-family);
  font-weight: 600;
  line-height: 1;
  color: var(--color-blue);
  letter-spacing: 0;
  padding-left: calc(60 * var(--to-rem));
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-sectiontitle .en {
    font-size: calc(40 * var(--to-rem));
    padding-left: 0;
  }
}

.c-sectiontitle .en:before {
  content: "";
  width: calc(44 * var(--to-rem));
  height: calc(48 * var(--to-rem));
  background: url("../../images/common/sectiontitle_img.svg") no-repeat center center/contain;
  position: absolute;
  top: 6px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-sectiontitle .en:before {
    width: calc(30 * var(--to-rem));
    height: calc(30 * var(--to-rem));
    top: 50%;
    transform: translate(-120%, -50%);
  }
}

@media screen and (max-width: 767px) {
  .c-sectiontitle .en:after {
    content: "";
    width: calc(30 * var(--to-rem));
    height: calc(30 * var(--to-rem));
    background: url("../../images/common/sectiontitle_img.svg") no-repeat center center/contain;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(120%, -50%);
  }
}

.c-sectiontitle .jp {
  font-family: var(--base-font-family);
  color: var(--color-black);
  font-size: calc(16 * var(--to-rem));
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  padding-left: calc(16 * var(--to-rem));
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-sectiontitle .jp {
    font-size: calc(14 * var(--to-rem));
    display: block;
    margin-top: calc(16 * var(--to-rem));
  }
}

.c-bgColored .c-sectiontitle .en,
.c-bgColored .c-sectiontitle .jp {
  color: var(--color-white);
}

.c-bgColored .c-sectiontitle .en::before,
.c-bgColored .c-sectiontitle .en::after {
  mask-image: url("../../images/common/sectiontitle_img.svg");
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  background: var(--color-white);
}

.c-sideCard {
  position: relative;
  display: grid;
  grid-template-columns: 36% 60%;
  justify-content: space-between;
}

.c-sideCard__link {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.c-sideCard__image {
  border-radius: calc(4 * var(--to-rem));
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.c-sideCard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.c-sideCard__category {
  display: inline-block;
}

.c-sideCard__category a {
  padding: calc(4 * var(--to-rem)) calc(6 * var(--to-rem));
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: calc(10 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0;
  margin-right: calc(4 * var(--to-rem));
  transition: 0.3s;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.c-sideCard__category__yellow a {
  background-color: var(--color-yellow);
  color: var(--color-black);
}

.c-sideCard__category:hover {
  opacity: 0.7;
}

.c-sideCard__date {
  font-family: var(--scond-font-family);
  font-size: calc(12 * var(--to-rem));
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  display: inline-block;
}

.c-sideCard__tags {
  margin-top: calc(4 * var(--to-rem));
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.c-sideCard__title {
  margin-top: calc(8 * var(--to-rem));
  font-size: calc(12 * var(--to-rem));
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 600;
}

.c-sideCard:hover .c-sideCard__image img {
  transform: scale(1.1);
}

.c-sideTitle {
  font-size: calc(40 * var(--to-rem));
  font-family: var(--second-font-family);
  font-weight: 400;
  line-height: 1;
  color: var(--color-blue);
  letter-spacing: 0;
  padding: 0 0 calc(16 * var(--to-rem));
  border-bottom: 1px solid var(--color-black);
  position: relative;
  text-align: center;
  -webkit-text-stroke: 1px var(--color-white);
  text-stroke: 1px var(--color-white);
  paint-order: stroke;
}
@media screen and (max-width: 767px) {
  .c-sideTitle {
    font-size: calc(40 * var(--to-rem));
  }
}

.c-sideTitle span {
  margin-top: calc(12 * var(--to-rem));
  font-family: var(--base-font-family);
  color: var(--color-black);
  font-size: calc(14 * var(--to-rem));
  font-weight: 500;
  line-height: 75%;
  letter-spacing: 0;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-sideTitle span {
    font-size: calc(14 * var(--to-rem));
  }
}

.c-bgColored .c-sectiontitle {
  color: var(--color-white);
}

.c-bgColored .c-sectiontitle::before {
  mask-image: url("../../images/common/sectiontitle_img.svg");
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  background-color: var(--color-white);
}

.c-sliderCard {
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  border-radius: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .c-sliderCard {
    flex-direction: column-reverse;
  }
}

.c-sliderCard__link {
  display: flex;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.c-sliderCard__image {
  border-radius: calc(8 * var(--to-rem));
  overflow: hidden;
  aspect-ratio: 740/454;
  width: 66.0714285714%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-sliderCard__image {
    width: 100%;
  }
}

.c-sliderCard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.c-sliderCard__body {
  width: 33.9285714286%;
  padding: calc(40 * var(--to-rem));
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-sliderCard__body {
    width: 100%;
    padding: calc(24 * var(--to-rem)) calc(16 * var(--to-rem));
  }
}

.c-sliderCard__category {
  padding: calc(6 * var(--to-rem)) calc(12 * var(--to-rem));
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: calc(13 * var(--to-rem));
  line-height: 1;
  letter-spacing: 0;
  margin-right: calc(16 * var(--to-rem));
  display: inline-block;
}

.c-sliderCard__date {
  font-family: var(--scond-font-family);
  font-size: calc(12 * var(--to-rem));
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  display: inline-block;
}

.c-sliderCard__tags {
  margin-top: calc(8 * var(--to-rem));
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.c-sliderCard__tag a {
  font-size: calc(13 * var(--to-rem));
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  padding: calc(6 * var(--to-rem)) calc(12 * var(--to-rem));
  border-radius: 20px;
  border: 1px solid currentColor;
}

.c-sliderCard__meta {
  padding-bottom: calc(16 * var(--to-rem));
  border-bottom: 1px var(--color-black) solid;
}

.c-sliderCard__title {
  margin-top: calc(16 * var(--to-rem));
  font-size: calc(24 * var(--to-rem));
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-sliderCard__title {
    font-size: calc(20 * var(--to-rem));
  }
}

.c-sliderCard:hover .c-sliderCard__image img {
  transform: scale(1.1);
}

.c-sliderCard__detail {
  margin-top: calc(16 * var(--to-rem));
}

.c-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .c-tags {
    gap: 4px;
  }
}

.c-tag a {
  font-size: calc(13 * var(--to-rem));
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  padding: calc(10 * var(--to-rem)) calc(12 * var(--to-rem)) calc(7 * var(--to-rem));
  border-radius: 20px;
  border: 1px solid currentColor;
  transition: 0.3s;
  display: inline-block;
  white-space: nowrap;
  background: var(--color-white);
}
@media screen and (max-width: 767px) {
  .c-tag a {
    font-size: calc(10 * var(--to-rem));
    padding: calc(5 * var(--to-rem)) calc(12 * var(--to-rem));
  }
}

.c-tag a:hover {
  opacity: 0.7;
}

.p-card .c-tag a {
  padding: calc(6 * var(--to-rem)) calc(12 * var(--to-rem)) calc(4 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-card .c-tag a {
    padding: calc(4 * var(--to-rem)) calc(6 * var(--to-rem));
  }
}

.c-sideCard .c-tag a {
  font-size: calc(10 * var(--to-rem));
  padding: calc(4 * var(--to-rem)) calc(6 * var(--to-rem));
}

.c-triangle {
  aspect-ratio: 1/1;
  width: 4rem;
  background-color: var(--color-black);
  display: inline-block;
}

.c-triangle--top {
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.c-triangle--bottom {
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.c-triangle--left {
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.c-triangle--right {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.c-triangle--lower-left {
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.c-triangle--upper-left {
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.c-triangle--lower-right {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.c-triangle--upper-right {
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.p-404 {
  text-align: center;
}

.p-404__title {
  font-family: var(--second-font-family);
  font-size: calc(48 * var(--to-rem));
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-404__title {
    font-size: calc(24 * var(--to-rem));
  }
}

.p-404__text {
  font-size: calc(20 * var(--to-rem));
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: calc(40 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-404__text {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-404__button {
  margin-top: calc(40 * var(--to-rem));
}

.p-archive__cards {
  margin-top: calc(40 * var(--to-rem));
}

.p-archive__title__features {
  margin-top: calc(40 * var(--to-rem));
}

.p-archive__detail {
  margin-top: calc(16 * var(--to-rem));
}

.p-archive__image img {
  border-radius: calc(8 * var(--to-rem));
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-authorbox {
  background-color: var(--color-light-gray);
  padding: calc(48 * var(--to-rem));
  display: grid;
  grid-template-columns: calc(160 * var(--to-rem)) auto;
  gap: calc(20 * var(--to-rem)) calc(48 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-authorbox {
    grid-template-columns: 1fr;
    padding: calc(20 * var(--to-rem));
  }
}

.p-authorbox__header {
  display: flex;
  justify-content: space-between;
}

.p-authorbox__image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  height: auto;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-authorbox__image img {
    width: calc(100 * var(--to-rem));
  }
}

.p-authorbox__name {
  font-size: calc(32 * var(--to-rem));
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-authorbox__name {
    font-size: calc(20 * var(--to-rem));
  }
}

.p-authorbox__title {
  margin-top: calc(12 * var(--to-rem));
  font-size: calc(12 * var(--to-rem));
}

.p-authorbox__detail {
  margin-top: calc(24 * var(--to-rem));
  font-size: calc(16 * var(--to-rem));
  line-height: 175%;
}
@media screen and (max-width: 767px) {
  .p-authorbox__detail {
    font-size: calc(14 * var(--to-rem));
    margin-top: calc(16 * var(--to-rem));
  }
}

.p-authoritem {
  text-align: center;
}

.p-authoritem__image {
  width: calc(100% - 40px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-authoritem__image {
    width: calc(100% - 10px);
  }
}

.p-authoritem__name {
  font-size: calc(16 * var(--to-rem));
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-authoritem__name {
    font-size: calc(14 * var(--to-rem));
  }
}

.p-authors__group {
  margin-top: calc(48 * var(--to-rem));
}

.p-authors__header {
  padding: calc(24 * var(--to-rem)) calc(40 * var(--to-rem));
  border-bottom: 1px solid var(--color-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px 8px 0 0;
  background: var(--color-light-gray);
}
@media screen and (max-width: 767px) {
  .p-authors__header {
    padding: calc(10 * var(--to-rem)) calc(20 * var(--to-rem));
  }
}

.p-authors__category-title {
  font-size: calc(24 * var(--to-rem));
  font-weight: 600;
  padding-left: calc(20 * var(--to-rem));
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-authors__category-title {
    font-size: calc(16 * var(--to-rem));
  }
}

.p-authors__category-title::before {
  content: "";
  width: calc(14 * var(--to-rem));
  height: calc(14 * var(--to-rem));
  background: var(--color-blue);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p-authors__slider {
  padding: calc(40 * var(--to-rem)) calc(60 * var(--to-rem));
  border-radius: 0 0 8px 8px;
  background: var(--color-light-gray);
}
@media screen and (max-width: 767px) {
  .p-authors__slider {
    padding: calc(20 * var(--to-rem)) calc(20 * var(--to-rem)) calc(50 * var(--to-rem));
  }
}
.p-authors__slider .splide__arrow--prev {
  left: -30px;
}
@media screen and (max-width: 767px) {
  .p-authors__slider .splide__arrow--prev {
    top: initial;
    bottom: -3.3rem;
    left: 0;
  }
}
.p-authors__slider .splide__arrow--next {
  right: -30px;
}
@media screen and (max-width: 767px) {
  .p-authors__slider .splide__arrow--next {
    top: initial;
    bottom: -3.3rem;
    right: 0;
  }
}
.p-authors__slider .splide__arrow {
  background: none;
}
.p-authors__slider .splide__pagination {
  bottom: -2rem;
  gap: 12px;
}
.p-authors__slider .splide__pagination__page {
  background: var(--color-black);
}
.p-authors__slider .splide__pagination__page.is-active {
  background: var(--color-black);
  transform: scale(1.2);
  position: relative;
}
.p-authors__slider .splide__pagination__page.is-active::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px var(--color-black) solid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-authors__unit ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: calc(40 * var(--to-rem)) calc(14 * var(--to-rem));
  padding: calc(40 * var(--to-rem));
  border-radius: 0 0 8px 8px;
  background: var(--color-light-gray);
}
@media screen and (max-width: 767px) {
  .p-authors__unit ul {
    padding: calc(20 * var(--to-rem));
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-brands__items {
  margin-top: calc(48 * var(--to-rem));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(48 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-brands__items {
    gap: calc(16 * var(--to-rem));
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-brands__item {
  position: relative;
}

.p-brands__image {
  width: calc(120 * var(--to-rem));
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  border: var(--color-gray) 1px solid;
  margin-inline: auto;
  display: block;
}

.p-brands__name {
  font-size: calc(16 * var(--to-rem));
  text-align: center;
  letter-spacing: 0;
  font-weight: 600;
}

.p-brands__button {
  margin-top: calc(48 * var(--to-rem));
}

.p-breadcrums {
  padding: calc(16 * var(--to-rem)) calc(40 * var(--to-rem));
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-breadcrums {
    padding: calc(8 * var(--to-rem)) calc(12 * var(--to-rem));
    width: 100%;
    overflow-x: auto;
  }
}
.p-breadcrums p strong {
  font-size: calc(13 * var(--to-rem));
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-breadcrums p strong {
    font-size: calc(10 * var(--to-rem));
  }
}
.p-breadcrums a {
  font-size: calc(13 * var(--to-rem));
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-breadcrums a {
    font-size: calc(10 * var(--to-rem));
  }
}
.p-breadcrums a:hover {
  color: var(--color-blue);
}

#breadcrumbs > span {
  display: flex;
  gap: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  #breadcrumbs > span {
    gap: calc(8 * var(--to-rem));
  }
}

.p-card {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-card {
    display: grid;
    grid-template-columns: 36% 60%;
    justify-content: space-between;
  }
}

.p-card__link {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.p-card__image {
  border-radius: calc(8 * var(--to-rem));
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-card__image {
    border-radius: calc(4 * var(--to-rem));
  }
}

.p-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.p-card__body {
  margin-top: calc(24 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-card__body {
    margin-top: 0;
  }
}

.p-card__data {
  display: block;
}

.p-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: calc(2 * var(--to-rem)) calc(8 * var(--to-rem));
}

.p-card__category {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.p-card__category:hover {
  opacity: 0.7;
}

.p-card__tags {
  margin-top: calc(8 * var(--to-rem));
  display: flex;
  gap: 2px 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-card__tags {
    gap: 4px;
    margin-top: calc(4 * var(--to-rem));
  }
}

.p-card__title {
  margin-top: calc(12 * var(--to-rem));
  font-size: calc(20 * var(--to-rem));
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-card__title {
    margin-top: calc(8 * var(--to-rem));
    font-size: calc(12 * var(--to-rem));
  }
}

.p-card:hover .p-card__image img {
  transform: scale(1.1);
}

.p-card__author-item {
  display: grid;
  grid-template-columns: calc(32 * var(--to-rem)) auto;
  align-items: center;
  gap: calc(12 * var(--to-rem));
  margin-top: calc(12 * var(--to-rem));
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-card__author-item {
    margin-top: calc(8 * var(--to-rem));
  }
}

.p-card__authorimg {
  width: calc(32 * var(--to-rem));
  aspect-ratio: 1;
  height: auto;
}

.p-card__authorimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.p-card__authorname {
  font-size: calc(14 * var(--to-rem));
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-card__authorname {
    font-size: calc(10 * var(--to-rem));
  }
}

.p-card__authorlink {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.p-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(24 * var(--to-rem)) calc(12 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-cards {
    grid-template-columns: 1fr;
    gap: calc(24 * var(--to-rem));
  }
}

.p-contents {
  text-align: left;
  font-weight: 400;
  line-height: 1.7;
  /* ネストされた ol: (1) (2) (3) */
  /* 左寄せ */
  /* 右寄せ */
  /* 中央寄せ (前回解説したもの) */
  /* floatの回り込みを解除するためのclearfix (親要素での使用) */
  /* .clearfix::after {
    content: "";
    display: block;
    clear: both;
  } */
  /* キャプション全体 (wp-caption) */
  /* キャプションテキスト (wp-caption-text) */
  /* キャプション付きの画像に対しても、配置クラスを適用可能 */
}
.p-contents #ez-toc-container {
  padding: calc(32 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-contents #ez-toc-container {
    padding: calc(20 * var(--to-rem));
  }
}
.p-contents div#ez-toc-container ul.ez-toc-list a:hover {
  color: #2294d4 !important;
}
.p-contents div img {
  max-width: 100%;
  width: unset;
}
.p-contents > *:first-child {
  margin-top: 0;
  padding-top: 0;
}
.p-contents > * {
  margin-top: 1.5em;
}
.p-contents h2 {
  margin: calc(30 * var(--to-rem)) 0 calc(24 * var(--to-rem));
  font-size: calc(24 * var(--to-rem));
  letter-spacing: 0.03em;
  line-height: 1.3;
  font-weight: 600;
  border-bottom: 1px solid var(--color-black);
  padding: calc(24 * var(--to-rem)) 0 calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-contents h2 {
    margin: calc(24 * var(--to-rem)) 0 calc(20 * var(--to-rem));
    padding: calc(20 * var(--to-rem)) 0 calc(8 * var(--to-rem));
    font-size: calc(20 * var(--to-rem));
  }
}
.p-contents h3 {
  margin-top: 1.8em;
  font-size: calc(20 * var(--to-rem));
  letter-spacing: 0.03em;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-contents h3 {
    margin-top: 1.5em;
    font-size: calc(18 * var(--to-rem));
  }
}
.p-contents h4 {
  margin-top: 1.8em;
  font-size: calc(18 * var(--to-rem));
  letter-spacing: 0.03em;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-contents h4 {
    margin-top: 1.5em;
    font-size: calc(16 * var(--to-rem));
  }
}
.p-contents p {
  margin-top: 1.5em;
  font-size: calc(16 * var(--to-rem));
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-contents p {
    margin-top: 1.2em;
    font-size: calc(14 * var(--to-rem));
  }
}
.p-contents p a,
.p-contents ol a,
.p-contents ul a {
  text-decoration: underline var(--color-blue);
  color: var(--color-blue);
}
.p-contents ul {
  margin: calc(32 * var(--to-rem)) 0 0 calc(24 * var(--to-rem));
  list-style: disc;
}
@media screen and (max-width: 767px) {
  .p-contents ul {
    margin: calc(24 * var(--to-rem)) 0 0 calc(20 * var(--to-rem));
  }
}
.p-contents ul li {
  font-size: calc(16 * var(--to-rem));
  line-height: 1.75;
  list-style-position: outside;
}
@media screen and (max-width: 767px) {
  .p-contents ul li {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-contents ul li:not(:first-of-type),
.p-contents ol li:not(:first-of-type) {
  margin-top: calc(8 * var(--to-rem));
}
.p-contents ol {
  margin: calc(32 * var(--to-rem)) 0 0 calc(24 * var(--to-rem));
  list-style: decimal;
}
@media screen and (max-width: 767px) {
  .p-contents ol {
    margin: calc(24 * var(--to-rem)) 0 0 calc(20 * var(--to-rem));
  }
}
.p-contents ol ol {
  list-style: decimal;
}
.p-contents ol li {
  font-size: calc(16 * var(--to-rem));
  position: relative;
  line-height: 1.75;
  list-style-position: outside;
}
@media screen and (max-width: 767px) {
  .p-contents ol li {
    font-size: calc(14 * var(--to-rem));
  }
}
.p-contents ol > li::marker {
  content: counter(list-item) ". ";
}
.p-contents ol ol > li::marker {
  content: "(" counter(list-item) ") ";
}
.p-contents figcaption {
  font-size: calc(14 * var(--to-rem));
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contents figcaption {
    font-size: calc(12 * var(--to-rem));
  }
}
.p-contents .wp-caption-text {
  font-size: calc(14 * var(--to-rem));
  text-align: center;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-contents .wp-caption-text {
    font-size: calc(12 * var(--to-rem));
  }
}
.p-contents blockquote {
  margin: calc(48 * var(--to-rem)) 0;
  background: #ededed;
  padding: calc(40 * var(--to-rem)) calc(32 * var(--to-rem));
  font-size: calc(16 * var(--to-rem));
  line-height: 1.75;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-contents blockquote {
    margin-top: calc(20 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
    padding: calc(20 * var(--to-rem));
  }
}
.p-contents blockquote *:first-child {
  margin-top: 0;
}
.p-contents .wp-block-list .wp-block-list {
  margin-top: calc(4 * var(--to-rem));
}
.p-contents .alignleft {
  float: left;
  /* 右隣のコンテンツとの間に余白を設ける */
  margin: 4px 16px 16px 0;
}
.p-contents .alignright {
  float: right;
  /* 左隣のコンテンツとの間に余白を設ける */
  margin: 4px 0 16px 16px;
}
.p-contents .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  /* float要素の回り込みを解除 */
  clear: both;
}
.p-contents .wp-caption {
  /* 画像とキャプションをブロックとして扱う */
  display: inline-block;
  /* キャプションの幅に合わせるため、max-widthを指定 */
  max-width: 100%;
  /* 枠線や背景色を付ける場合はここに記述 */
  /* border: 1px solid #ccc; */
}
.p-contents .wp-caption-text {
  /* フォントサイズを小さくしたり、色を薄くするなど */
  font-size: 0.9em;
  text-align: center;
  margin: 8px 0 4px 0;
  padding: 0 4px;
}
.p-contents .wp-caption.alignleft {
  /* .alignleftのfloatとmarginを適用 */
  /* .wp-caption自体に適用することで画像とキャプション全体が左寄せになる */
}

.c-academic .p-contents h2,
.c-academic .p-contents h3,
.c-academic .p-contents h4,
.c-academic .p-contents h5 {
  font-family: "Noto Serif JP", serif;
}

.c-balloon {
  display: grid;
  grid-template-columns: calc(56 * var(--to-rem)) auto;
  gap: calc(40 * var(--to-rem));
  align-items: flex-start;
  /* --- 矢印（枠線部分）::before --- */
  /* --- 矢印（塗りつぶし部分）::after --- */
}
@media screen and (max-width: 767px) {
  .c-balloon {
    grid-template-columns: calc(56 * var(--to-rem)) auto;
    gap: calc(20 * var(--to-rem));
  }
}
.c-balloon img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  height: auto;
  border-radius: 50%;
  margin: 0;
}
.c-balloon figure {
  margin: 0;
}
.c-balloon figcaption {
  font-size: calc(13 * var(--to-rem));
  line-height: 110%;
  font-weight: 500;
  margin-top: calc(4 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .c-balloon figcaption {
    font-size: calc(10 * var(--to-rem));
  }
}
.c-balloon .c-balloon__text {
  margin: 0;
  padding: calc(24 * var(--to-rem));
  font-size: calc(16 * var(--to-rem));
  line-height: 175%;
  font-weight: 500;
  border: var(--color-gray) 1px solid;
  background-color: var(--color-white);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-balloon .c-balloon__text {
    padding: calc(12 * var(--to-rem));
    font-size: calc(14 * var(--to-rem));
  }
}
.c-balloon .c-balloon__text::before {
  content: "";
  width: calc(16 * var(--to-rem));
  aspect-ratio: 1;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  background: var(--color-white);
  position: absolute;
  left: 0;
  top: calc(24 * var(--to-rem));
  transform: translateX(-97%);
}
.c-balloon .c-balloon__text::after {
  content: "";
  position: absolute;
  width: calc(18 * var(--to-rem));
  aspect-ratio: 1;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  background: var(--color-gray);
  position: absolute;
  left: 0;
  top: calc(23 * var(--to-rem));
  transform: translateX(-100%);
  z-index: -1;
}

.c-balloon.-right {
  grid-template-columns: auto calc(56 * var(--to-rem));
  /* --- 矢印（枠線部分）::before --- */
  /* --- 矢印（塗りつぶし部分）::after --- */
}
.c-balloon.-right .c-balloon__text::before {
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  right: 0;
  left: initial;
  transform: translateX(100%);
}
.c-balloon.-right .c-balloon__text::after {
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  right: 0;
  left: initial;
  transform: translateX(100%);
}

.c-balloon.-head {
  grid-template-columns: calc(72 * var(--to-rem)) auto;
  /* --- 矢印（枠線部分）::before --- */
  /* --- 矢印（塗りつぶし部分）::after --- */
}
@media screen and (max-width: 767px) {
  .c-balloon.-head {
    grid-template-columns: calc(56 * var(--to-rem)) auto;
  }
}
.c-balloon.-head h2 {
  margin: 0;
  padding: calc(24 * var(--to-rem));
  font-size: calc(20 * var(--to-rem));
  font-weight: 600;
  line-height: 175%;
  letter-spacing: 0.03em;
  border: var(--color-black) 1px solid;
  background-color: var(--color-white);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-balloon.-head h2 {
    padding: calc(12 * var(--to-rem));
    font-size: calc(16 * var(--to-rem));
  }
}
.c-balloon.-head h2::before {
  content: "";
  width: calc(16 * var(--to-rem));
  aspect-ratio: 1;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  top: calc(24 * var(--to-rem));
  transform: translateX(-97%);
}
.c-balloon.-head h2::after {
  content: "";
  position: absolute;
  width: calc(18 * var(--to-rem));
  aspect-ratio: 1;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  background: var(--color-black);
  position: absolute;
  left: 0;
  top: calc(23 * var(--to-rem));
  transform: translateX(-97%);
  z-index: -1;
}

.c-archive {
  border: 1px solid var(--color-black);
  padding: calc(20 * var(--to-rem));
  position: relative;
  margin-top: 5rem;
}
.c-archive > p:first-child {
  font-size: calc(20 * var(--to-rem));
  background-image: url("../../images/common/bg.webp");
  background-repeat: repeat;
  background-size: 10%;
  position: absolute;
  top: calc(-44 * var(--to-rem));
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-archive > p:first-child {
    font-size: calc(18 * var(--to-rem));
    top: calc(-36 * var(--to-rem));
  }
}
.c-archive .c-archive__title {
  font-weight: 600;
  font-family: var(--second-font-family);
  color: var(--color-blue);
}
.c-archive .c-archive__title ~ * {
  margin-top: calc(8 * var(--to-rem));
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-archive iframe {
    width: 100%;
  }
}
.c-archive .c-archive__spotify iframe {
  height: 152px;
}
.c-archive .c-archive__youtube iframe {
  aspect-ratio: 500/281;
  object-fit: cover;
  height: auto;
}

.p-drawer {
  position: fixed;
  top: calc(72 * var(--to-rem));
  left: 0;
  width: 100vw;
  max-width: 100%;
  height: calc(100dvh - 72 * var(--to-rem));
  z-index: 998;
  transform: translateX(100%);
  transition: transform 0.3s;
  padding: calc(40 * var(--to-rem)) calc(40 * var(--to-rem)) calc(40 * var(--to-rem));
  background: url("../../images/common/drawer-bg.webp") left bottom/100% no-repeat, url("../../images/common/bg.webp") 0 0/10% repeat;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.p-drawer.is-open {
  transform: translateX(0);
}

.p-features {
  position: relative;
}

.p-features::before {
  content: "";
  width: 100dvw;
  height: 100%;
  background-image: url("../../images/common/bgColored-bg.webp");
  background-size: min(86.0416666667vw, 1239 * var(--to-rem));
  background-position: 0 -72px;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: calc(-180 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-features::before {
    top: 0;
    left: calc(-16 * var(--to-rem));
    background-size: calc(1300 * var(--to-rem));
    background-position: 60% 0;
  }
}

.p-features__cards {
  margin-top: calc(48 * var(--to-rem));
  position: relative;
}

.p-features__button {
  margin-top: calc(48 * var(--to-rem));
}

.p-footer {
  background-color: var(--color-black);
  padding: calc(160 * var(--to-rem)) calc(80 * var(--to-rem)) calc(48 * var(--to-rem));
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: calc(64 * var(--to-rem)) calc(16 * var(--to-rem)) calc(80 * var(--to-rem));
  }
}

.p-footer__upper {
  display: flex;
  justify-content: space-between;
  padding-bottom: calc(48 * var(--to-rem));
  border-bottom: 1px solid var(--color-white);
}

.p-footer__logo {
  width: calc(240 * var(--to-rem));
  transition: 0.3s;
}
.p-footer__logo img {
  width: calc(240 * var(--to-rem));
  aspect-ratio: 240/56;
  object-fit: cover;
  height: auto;
}

.p-footer__logo:hover {
  opacity: 0.7;
}

.p-footer__logo-text {
  margin-top: calc(20 * var(--to-rem));
  font-family: var(--second-font-family);
  font-size: calc(14 * var(--to-rem));
  text-align: right;
}
.p-footer__logo-text img {
  display: inline-block;
  width: calc(100 * var(--to-rem));
  aspect-ratio: 100/33;
  object-fit: cover;
  height: auto;
  margin-left: calc(8 * var(--to-rem));
  vertical-align: bottom;
}

.p-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-footer__nav {
  display: flex;
  gap: calc(60 * var(--to-rem));
}

.p-footer__nav-list {
  display: block;
}

.p-footer__nav-list li a {
  color: var(--color-white);
  text-decoration: none;
  font-size: calc(16 * var(--to-rem));
  transition: opacity 0.3s;
  padding: calc(4 * var(--to-rem)) 0;
  display: flex;
}
.p-footer__nav-list li a:hover {
  opacity: 0.7;
}

.p-footer__lower {
  margin-top: calc(48 * var(--to-rem));
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__lower {
    flex-direction: column;
    margin-top: calc(32 * var(--to-rem));
  }
}

@media screen and (max-width: 767px) {
  .p-footer__sns {
    margin-bottom: calc(32 * var(--to-rem));
  }
}

.p-footer__copyright {
  font-size: 0.875rem;
  color: var(--color-white);
}

.p-footer__group {
  display: flex;
  gap: calc(24 * var(--to-rem));
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-footer__group {
    padding-top: calc(32 * var(--to-rem));
    border-top: 1px solid var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    gap: calc(16 * var(--to-rem));
  }
}

.p-footer__links {
  display: flex;
  gap: calc(24 * var(--to-rem));
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-footer__links {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(16 * var(--to-rem));
  }
}

.p-footer__links a {
  display: flex;
  font-size: calc(12 * var(--to-rem));
  transition: 0.3s;
}

.p-footer__links a:hover {
  opacity: 0.7;
}

.p-footer__copy {
  font-family: var(--second-font-family);
  font-size: calc(12 * var(--to-rem));
}

.p-header {
  height: calc(152 * var(--to-rem));
  position: sticky;
  top: 0;
  background-image: url("../../images/common/bg.webp");
  background-repeat: repeat;
  background-size: 10%;
  z-index: 100;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: calc(72 * var(--to-rem));
  }
}

.p-header__upper {
  height: calc(96 * var(--to-rem));
  border-bottom: 1px solid var(--color-gray);
}
@media screen and (max-width: 767px) {
  .p-header__upper {
    height: calc(72 * var(--to-rem));
    border-bottom: 1px solid var(--color-black);
  }
}

.p-header__inner {
  padding-inline: calc(40 * var(--to-rem));
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-inline: calc(20 * var(--to-rem));
  }
}

.p-header__logo {
  width: calc(200 * var(--to-rem));
  aspect-ratio: 200/47;
  height: auto;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 7.5rem;
  }
}

.p-header__logo:hover {
  opacity: 0.7;
}

.p-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-header__nav {
  border-bottom: 1px solid var(--color-black);
}

.p-header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: calc(64 * var(--to-rem));
  height: inherit;
  cursor: pointer;
  transition: 0.3s;
  right: calc(-20 * var(--to-rem));
}

.p-header__hamburger span {
  position: absolute;
  left: calc(18 * var(--to-rem));
  display: block;
  width: calc(28 * var(--to-rem));
  height: 2px;
  background-color: var(--color-black);
  transition: 0.5s;
  top: 50%;
  transform: translateY(-50%);
}

.p-header__hamburger span:nth-of-type(1) {
  transform: translateY(calc(-50% - 7px));
}

.p-header__hamburger span:nth-of-type(2) {
  transform: translateY(-50%);
}

.p-header__hamburger span:nth-of-type(3) {
  transform: translateY(calc(-50% + 7px));
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  transform: translateY(-50%) rotate(45deg) scaleX(1.2);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  transform: translateY(-50%) rotate(-45deg) scaleX(1.2);
}

.p-keywords__tags {
  margin-top: calc(48 * var(--to-rem));
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-keywords__tags {
    margin-top: calc(24 * var(--to-rem));
  }
}

.p-keywords__button {
  margin-top: calc(48 * var(--to-rem));
}

.p-latest {
  position: relative;
}

.p-latest__cards {
  margin-top: calc(48 * var(--to-rem));
}

.p-latest__button {
  margin-top: calc(48 * var(--to-rem));
}

.p-linkcard a {
  display: grid;
  grid-template-columns: calc(200 * var(--to-rem)) auto;
  border: 1px solid var(--color-gray);
  padding: calc(20 * var(--to-rem));
  gap: calc(20 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-linkcard a {
    grid-template-columns: 1fr;
  }
}

.p-linkcard__thumbnail img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  height: auto;
  border-radius: 4px;
}

.p-linkcard__title {
  font-size: calc(16 * var(--to-rem));
  font-weight: 700;
}

.p-linkcard__excerpt {
  font-size: calc(14 * var(--to-rem));
  margin-top: calc(4 * var(--to-rem));
}

.p-marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: calc(24 * var(--to-rem)) 0;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-marquee {
    padding: calc(16 * var(--to-rem)) 0;
  }
}

.p-marquee__inner {
  display: inline-flex;
  animation: scroll-left 30s linear infinite;
}
@media screen and (max-width: 767px) {
  .p-marquee__inner {
    animation: scroll-left 40s linear infinite;
    width: max-content;
  }
}

.p-marquee__tag {
  margin-left: calc(16 * var(--to-rem));
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .p-mv {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
  }
}

.p-mv__mv {
  position: relative;
  padding: calc(56 * var(--to-rem)) 0;
  background: no-repeat center/cover url("../../images/top/mv_bg.webp");
}
@media screen and (max-width: 767px) {
  .p-mv__mv {
    padding: calc(16 * var(--to-rem)) 0 calc(60 * var(--to-rem));
    background: var(--color-light-gray);
  }
}

.p-mv__inner {
  height: inherit;
  min-height: inherit;
}

.p-mv__title-wrap {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
  text-align: center;
}

.p-mv__main-title {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-mv__main-title {
    font-size: 3.75rem;
  }
}

.p-mv__sub-title {
  margin-top: 1.25rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-mv__sub-title {
    font-size: 2.1875rem;
  }
}

.p-mv__slider img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  height: auto;
  border-radius: 8px;
}

.p-mv__slider {
  position: relative;
  width: 100%;
  z-index: 5;
}
.p-mv__slider__arrow {
  background: rgba(var(--color-black), 0.8);
}
.p-mv__slider__arrow:hover {
  background: rgba(var(--color-black), 1);
}
.p-mv__slider__arrow svg {
  fill: #333;
}
.p-mv__slider .splide__pagination {
  bottom: -2rem;
  gap: 18px;
}
.p-mv__slider .splide__pagination__page {
  background: var(--color-black);
}
.p-mv__slider .splide__pagination__page.is-active {
  background: var(--color-black);
  transform: scale(1.8);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mv__slider .splide__pagination__page.is-active {
    transform: scale(1.4);
  }
}
.p-mv__slider .splide__pagination__page.is-active::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px var(--color-black) solid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-mv__slider .splide__arrow {
  background: none;
  transform: none;
  width: 2rem;
  height: 2rem;
  z-index: 100;
}
.p-mv__slider .splide__arrow--prev {
  left: calc(25% - 35px);
}
@media screen and (max-width: 767px) {
  .p-mv__slider .splide__arrow--prev {
    left: 10%;
  }
}
.p-mv__slider .splide__arrow--next {
  right: calc(25% - 35px);
}
@media screen and (max-width: 767px) {
  .p-mv__slider .splide__arrow--next {
    right: 10%;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__slider .splide__arrow {
    top: initial;
    bottom: -2rem;
    width: auto;
    height: auto;
  }
}

.p-page__inner {
  background-color: rgba(255, 255, 255, 0.7);
  padding: calc(60 * var(--to-rem)) calc(140 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-page__inner {
    padding: calc(40 * var(--to-rem)) calc(16 * var(--to-rem));
  }
}

.p-page__contents {
  margin-top: calc(48 * var(--to-rem));
}

.p-about p {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-about br {
    display: none;
  }
}

.p-page--about .p-page__image {
  max-width: calc(600 * var(--to-rem));
  margin-inline: auto;
}

.p-pcnav {
  position: relative;
  height: calc(56 * var(--to-rem));
}

.p-pcnav__list {
  display: flex;
  height: inherit;
  justify-content: center;
}

.p-pcnav__item {
  position: relative;
  height: inherit;
}

.p-pcnav__item + .p-pcnav__item::before {
  content: "";
  width: 1px;
  height: calc(16 * var(--to-rem));
  background: var(--color-gray);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p-pcnav__item > a {
  padding: 0 calc(40 * var(--to-rem));
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  transition: 0.3s;
}

.p-pcnav__item > a:hover {
  color: var(--color-blue);
}

.p-search {
  display: flex;
}

.p-search > input {
  border: 1px solid var(--color-black);
  border-radius: 4px 0 0 4px;
  width: calc(280 * var(--to-rem));
  padding: 2px 8px;
  background: var(--color-light-gray);
}

.p-search__button {
  background: var(--color-black);
  border-radius: 0 4px 4px 0;
  width: calc(40 * var(--to-rem));
  height: calc(40 * var(--to-rem));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.p-search__button img {
  width: calc(32 * var(--to-rem));
  height: calc(32 * var(--to-rem));
  object-fit: contain;
}

.p-search__button:hover {
  opacity: 0.7;
}

.p-sideRanking {
  margin-top: 2.5rem;
}

.p-sideRanking__item + .p-sideRanking__item {
  margin-top: 1.5rem;
}

.p-single__category {
  margin-right: calc(8 * var(--to-rem));
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-single__category {
    margin-right: calc(4 * var(--to-rem));
  }
}

.p-single__category:hover {
  opacity: 0.7;
}

.p-single__date {
  padding-right: calc(16 * var(--to-rem));
}

.p-single__tags {
  margin-top: calc(8 * var(--to-rem));
  position: relative;
  z-index: 2;
  max-width: calc(100% - 200 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-single__tags {
    gap: 4px;
    margin-top: calc(4 * var(--to-rem));
    max-width: 100%;
  }
}

.p-single__title {
  margin-top: calc(16 * var(--to-rem));
  font-size: calc(32 * var(--to-rem));
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-single__title {
    margin-top: calc(8 * var(--to-rem));
    font-size: calc(20 * var(--to-rem));
  }
}

.p-single__unit {
  padding-top: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-single__unit {
    padding-top: calc(4 * var(--to-rem));
  }
}

.p-single__eyecatch {
  margin-top: calc(40 * var(--to-rem));
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-single__eyecatch {
    margin-top: calc(20 * var(--to-rem));
  }
}

.p-single__eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(8 * var(--to-rem));
}

.p-single__share {
  display: flex;
  gap: 12px;
}

.p-single__share-btn {
  margin-top: 0;
  height: fit-content;
}

.p-single__share-btn img {
  width: calc(32 * var(--to-rem));
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  border: 1px solid var(--color-gray);
}

button.p-single__share-btn {
  padding-left: calc(12 * var(--to-rem));
  position: relative;
  border-radius: 50%;
}

button.p-single__share-btn::before {
  content: "";
  width: 1px;
  height: 16px;
  background: var(--color-gray);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p-single__contents {
  margin-top: calc(40 * var(--to-rem));
  border-bottom: 1px solid var(--color-black);
  padding-bottom: calc(40 * var(--to-rem));
}

.p-single__lowerunit {
  padding-top: calc(16 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-single__lowerunit {
    padding-top: calc(8 * var(--to-rem));
  }
}

.p-singleunit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-singleunit {
    flex-direction: column;
    gap: calc(8 * var(--to-rem));
    align-items: flex-start;
  }
}

.p-sns {
  display: flex;
  align-items: center;
  gap: calc(16 * var(--to-rem));
}

.p-sns__text {
  font-family: var(--second-font-family);
  font-size: calc(16 * var(--to-rem));
}

.p-sns__link {
  transition: 0.3s;
}

.p-sns__link img {
  width: calc(48 * var(--to-rem));
  aspect-ratio: 1;
  object-fit: contain;
  height: auto;
}

.p-sns__link:hover {
  opacity: 0.7;
}

.p-spnav {
  position: relative;
}

.p-spnav__list + .p-spnav__list {
  margin-top: calc(24 * var(--to-rem));
}

.p-spnav__item > a {
  padding: calc(8 * var(--to-rem)) 0;
  display: flex;
  align-items: center;
  font-size: calc(16 * var(--to-rem));
  font-weight: 500;
  line-height: 1.5;
  transition: 0.3s;
}

.p-spnav__search {
  margin-top: calc(32 * var(--to-rem));
}

.p-subfeatures .c-featuresCard__text {
  color: var(--color-black);
}

.p-subfeatures__detail {
  margin-top: calc(40 * var(--to-rem));
}

.p-writer__related {
  margin-top: calc(80 * var(--to-rem));
}

.p-writer__slider {
  margin-top: calc(48 * var(--to-rem));
}

.p-writer .splide__pagination__page.is-active {
  background: var(--color-blue);
}
.p-writer .splide__arrow--prev {
  left: -3em;
}
@media screen and (max-width: 767px) {
  .p-writer .splide__arrow--prev {
    left: -1.1em;
    top: 60%;
  }
}
.p-writer .splide__arrow--next {
  right: -3em;
}
@media screen and (max-width: 767px) {
  .p-writer .splide__arrow--next {
    right: -1.1em;
    top: 60%;
  }
}
.p-writer .splide__arrow {
  background: none;
}
.p-writer .splide__pagination {
  bottom: -1em;
}

.p-writerbox {
  background-color: var(--color-light-gray);
  padding: calc(48 * var(--to-rem)) !important;
}
@media screen and (max-width: 767px) {
  .p-writerbox {
    padding: calc(20 * var(--to-rem)) !important;
  }
}

.p-writerbox__header {
  display: grid;
  grid-template-columns: calc(80 * var(--to-rem)) auto auto;
  gap: calc(40 * var(--to-rem));
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-writerbox__header {
    gap: calc(20 * var(--to-rem));
  }
}

.p-writerbox__image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  height: auto;
  border-radius: 50%;
}

p.p-writerbox__name {
  margin: 0;
  font-size: calc(20 * var(--to-rem));
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  p.p-writerbox__name {
    font-size: calc(16 * var(--to-rem));
  }
}

p.p-writerbox__title {
  margin-top: calc(6 * var(--to-rem));
  font-size: calc(12 * var(--to-rem));
}

.p-writerbox__sns {
  text-align: right;
}

.p-writerbox__content {
  margin-top: calc(32 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-writerbox__content {
    margin-top: calc(16 * var(--to-rem));
  }
}

.p-writerbox__detail {
  font-size: calc(16 * var(--to-rem));
  line-height: 175%;
}
@media screen and (max-width: 767px) {
  .p-writerbox__detail {
    font-size: calc(13 * var(--to-rem));
  }
}

.p-writerbox__buttons {
  margin-top: calc(32 * var(--to-rem));
  display: grid;
  gap: calc(8 * var(--to-rem));
}
@media screen and (max-width: 767px) {
  .p-writerbox__buttons {
    margin-top: calc(20 * var(--to-rem));
  }
}
.p-writerbox__buttons .c-button a {
  width: 100%;
}