@layer global, reset, wordpress, base, layout, vendor, components, site, page, javascript, utility;

@layer global{

:root {
  --color-back: #fff;
  --color-back-02: #f6f0e0;
  --color-text: #000;
  --color-primary: #c74e1f;
  --color-secondary: #c74e1f;
  --color-error: #c74e1f;
  --color-form: var(--color-primary);
  --fontFamily-default:
    "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
    sans-serif;
  --fontFamily-zen:
    "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
    sans-serif;
  --fontFamily-jost: "Jost", sans-serif;
  --fontFamily-kiwi: "Kiwi Maru", sans-serif;
  --fontFamily-craft: "Craft Mincho", serif;

  --height-header: 70;
  --line-clamp: 3;

  --font-size-heading-main: clamp(40px, calc(70 / 1160 * 100vw), 70px);

  --width-inner-lg: 1200;
  --width-inner: 1160;
  --width-inner-sm: 800;

  --zIndex-header: 40;
  --zIndex-spmenu: 41;
  --zIndex-toggle: 42;
  --zIndex-splash: 50;

  --leading-trim: calc((1em - 1lh) / 2);
  --size-check: 24px;

  --gutter: 20px;
  --gutter-inner: 20px;

  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);

  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);

  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);

  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@font-face {
  font-family: "Craft Mincho";
  src:
    url(../fonts/craftmincho.woff2) format("woff2"),
    url(../fonts/craftmincho.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
}

@layer reset{

/***
    The new CSS reset - version 1.11.3 (last updated 25.08.2024)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
    list-style: none;
}

/* Firefox: solve issue where nested ordered lists continue numbering from parent (https://bugzilla.mozilla.org/show_bug.cgi?id=1881517) */
ol {
    counter-reset: revert;
}

/* For images to not be able to exceed their container */
img {
    max-inline-size: 100%;
    max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
    -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
    all: revert;
    box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
    color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
    all: revert;
    box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
    display: none;
}
}

@layer base{

/* base style */

html {
  scroll-padding-top: calc(var(--scroll-padding-top) * 1px);
  scrollbar-gutter: stable;
}

body {
  background: var(--color-back);
  color: var(--color-text);
  font-family: var(--fontFamily-default);
  overflow-wrap: break-word;
  /* word-break: break-all; */
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

* {
  min-width: 0;
}

/* セマンティック要素の復元 (all: unset による消失を補完) */
strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

small {
  font-size: 80%;
}

sub {
  vertical-align: sub;
  font-size: 75%;
}

sup {
  vertical-align: super;
  font-size: 75%;
}

mark {
  background-color: #ff0;
  color: #000;
}

del,
s {
  text-decoration: line-through;
}

ins,
u {
  text-decoration: underline;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
}

code,
pre {
  font-family: var(--fontFamily-default);
  white-space: pre-wrap;
}

img,
picture > img,
picture > source,
figure {
  max-width: 100%;
}

img {
  height: auto;
  image-rendering: auto;
  display: block;
}

picture {
  display: contents;
}

iframe {
  border: 0;
  max-width: 100%;
}
:where(figure) {
  margin: 0;
}
a:where(:not(.wp-element-button)) {
  text-decoration: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
  touch-action: manipulation;
  font-size: 1rem;
}

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

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

:where(a, button, summary, [role="button"], [role="tab"]):focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================================================================
   フォーム要素
   ================================================================ */

/* label: iOS対応のためにポインター指定 */
label {
  cursor: pointer;
}

/* プレースホルダー色調整 */
::placeholder {
  color: #ccc;
}

optgroup {
  font-size: 1rem;
}

/* テキスト系入力・テキストエリア・セレクトボックス共通 */
input:not(
  [type="radio"],
  [type="checkbox"],
  [type="range"],
  [type="file"],
  [type="hidden"],
  [type="button"],
  [type="reset"],
  [type="submit"],
  [type="image"],
  [type="color"]
),
textarea,
select {
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  font-size: 1rem;
  min-width: 0;
  padding: 0.5em 0.75em;
  width: 100%;
  accent-color: var(--color-form);
}

/* フォーカス */
input:not(
    [type="radio"],
    [type="checkbox"],
    [type="range"],
    [type="file"],
    [type="hidden"],
    [type="button"],
    [type="reset"],
    [type="submit"],
    [type="image"],
    [type="color"]
  ):focus,
textarea:focus,
select:focus {
  border-color: var(--color-primary);
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

textarea {
  resize: vertical;
}

/* スピンボタン非表示 (Chrome / Safari) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button,
input[type="month"]::-webkit-outer-spin-button,
input[type="month"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-outer-spin-button,
input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="week"]::-webkit-outer-spin-button,
input[type="week"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-outer-spin-button,
input[type="time"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button,
input[type="date"]::-webkit-inner-spin-button {
  appearance: none;
  display: none;
  margin: 0;
}

/* スピンボタン非表示 (Firefox) */
input[type="number"] {
  appearance: textfield;
}

/* 日付系入力のクリアボタン非表示 */
input[type="date"]::-webkit-clear-button,
input[type="month"]::-webkit-clear-button,
input[type="datetime-local"]::-webkit-clear-button,
input[type="time"]::-webkit-clear-button,
input[type="week"]::-webkit-clear-button {
  appearance: none;
}

/* セレクトボックス */
select {
  appearance: none;
}

.c-select {
  display: block;
  position: relative;
}

.c-select select {
  padding-right: 2.5em;
}

.c-select::after {
  border-bottom: 2px solid var(--color-text);
  border-right: 2px solid var(--color-text);
  content: "";
  display: block;
  height: 8px;
  margin: auto;
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  transform: rotate(45deg) translateY(-25%);
  width: 8px;
}

option:disabled {
  color: #ccc;
  opacity: 1;
}

/* スライダー (type="range") */
input[type="range"] {
  appearance: none;
  width: 100%;
  height: 4px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: #ddd;
  margin: 0.5em 0;
  accent-color: var(--color-form);
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  margin-top: -6px;
}

input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
}

input[type="range"]::-moz-range-track {
  height: 4px;
  background: #ddd;
}

/* ラジオボタン・チェックボックス共通
   --size-check (variables.css) を変更すると全体のサイズが連動します */
input[type="radio"],
input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

input[type="radio"] + span,
input[type="checkbox"] + span {
  cursor: pointer;
  display: inline-block;
  line-height: 1.5;
  padding-left: calc(var(--size-check) + 0.75em);
  position: relative;
}

input[type="radio"]:focus-visible + span,
input[type="checkbox"]:focus-visible + span {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ラジオボタン */
input[type="radio"] + span::before {
  background: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  content: "";
  height: var(--size-check);
  left: 0;
  position: absolute;
  top: calc((1.5em - var(--size-check)) / 2);
  width: var(--size-check);
}

input[type="radio"] + span::after {
  content: "";
  display: none;
}

input[type="radio"]:checked + span::after {
  background: var(--color-primary);
  border-radius: 50%;
  display: block;
  height: calc(var(--size-check) * 0.5);
  left: calc(var(--size-check) * 0.25);
  position: absolute;
  top: calc((1.5em - var(--size-check)) / 2 + var(--size-check) * 0.25);
  width: calc(var(--size-check) * 0.5);
}

/* チェックボックス */
input[type="checkbox"] + span::before {
  background: #fff;
  border: 2px solid var(--color-primary);
  content: "";
  height: var(--size-check);
  left: 0;
  position: absolute;
  top: calc((1.5em - var(--size-check)) / 2);
  width: var(--size-check);
}

input[type="checkbox"] + span::after {
  content: "";
  display: none;
}

input[type="checkbox"]:checked + span::after {
  border-bottom: 3px solid var(--color-primary);
  border-right: 3px solid var(--color-primary);
  content: "";
  display: block;
  height: calc(var(--size-check) * 0.6);
  left: calc(var(--size-check) * 0.35);
  position: absolute;
  top: calc((1.5em - var(--size-check)) / 2 + var(--size-check) * 0.13);
  transform: rotate(45deg);
  width: calc(var(--size-check) * 0.35);
}
}

@layer layout{

.l-main {
  /* margin-top: calc(var(--height-header) * 1px); */
  overflow-x: clip;
}

.l-col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.l-inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.l-inner-sm {
  max-width: calc(var(--width-inner-sm) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.l-inner-lg {
  max-width: calc(var(--width-inner-lg) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.l-single {
  padding-top: 170px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .l-single {
    padding-top: 100px;
  }
}

.l-single__layout {
  display: grid;
  grid-template-columns: 775fr minmax(240px, 310fr);
  column-gap: 6%;
}

@media screen and (max-width: 1024px) {
  .l-single__layout {
    column-gap: 4%;
  }
}
@media screen and (max-width: 768px) {
  .l-single__layout {
    grid-template-columns: 1fr;
    row-gap: 25px;
  }
}
}

@layer vendor{

/* プラグイン等のベンダースタイル上書き用 */

/* Contact Form 7 */
.wpcf7-form .c-form-button {
  display: grid;
  place-items: center;
  width: fit-content;
  min-width: min(100%, 270px);
  min-height: 40px;
  padding: 0.5em;
  line-height: 1.5;
  border: 2px solid black;
  border-radius: 15px;
  background-color: white;
  font-size: 24px;
  text-align: center;
  font-weight: 700;
  font-family: var(--fontFamily-craft);
  cursor: pointer;
  transition:
    background-color 0.3s,
    color 0.3s;
  margin-left: auto;
  margin-right: auto;
}

.wpcf7-form .c-form-button:hover {
  background-color: black;
  color: white;
}

@media screen and (max-width: 768px) {
  .wpcf7-form .c-form-button {
    border-radius: 10px;
    min-width: min(100%, 200px);
    font-size: 16px;
  }
}
}

@layer vendor{
/* ブロックエディタ用のスタイル */
#wp-postbody {
  display: flow-root;
  overflow: clip;
  font-size: 17px;
  line-height: calc(37.5 / 17);
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  #wp-postbody {
    font-size: 16px;
  }
}

#wp-postbody :where(.wp-block-pullquote) {
  font-size: 1em;
}

#wp-postbody > * {
  margin-top: 2.5em;
  margin-bottom: 2.5em;
}

@media screen and (max-width: 768px) {
  #wp-postbody > * {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}

#wp-postbody > *:first-child {
  margin-top: 0;
}

#wp-postbody > *:last-child {
  margin-bottom: 0;
}

#wp-postbody h1 {
  font-size: 3em;
}

#wp-postbody h2 {
  font-size: calc(30 / 17 * 1em);
  line-height: calc(39 / 30);
  display: inline;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-color: var(--color-primary);
  text-decoration-thickness: 5px;
  text-underline-offset: 1px;
}

#wp-postbody h3 {
  font-size: calc(27 / 17 * 1em);
  line-height: calc(33 / 27);
  font-weight: 700;
  display: inline;
  text-decoration-line: underline;
  text-decoration-color: var(--color-primary);
  text-decoration-thickness: 3px;
  text-underline-offset: 1px;
}

#wp-postbody h4 {
  font-weight: 700;
  font-size: 1.5em;
}

#wp-postbody h5 {
  font-weight: 700;
  font-size: 1.25em;
}

#wp-postbody h6 {
  font-weight: 700;
  font-size: 1em;
}

#wp-postbody :is(th, td) {
  padding: 0.5em;
}

#wp-postbody blockquote {
  border: 1px solid #808080;
  padding: 1.5em;
}

#wp-postbody .wp-block-pullquote {
  font-size: 1em !important;
  line-height: unset !important;
  margin: 1em 0 !important;
  padding: unset !important;
}

#wp-postbody figure {
  width: fit-content;
  max-width: 100%;
}

#wp-postbody figure.wp-block-table {
  overflow: visible;
}

#wp-postbody figcaption {
  text-align: center;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
}

#wp-postbody figure.aligncenter {
  margin-left: auto !important;
  margin-right: auto !important;
}

#wp-postbody img {
  max-width: 100%;
}

#wp-postbody
  :is(img.alignnone, img.alignleft, img.alignright, img.aligncenter) {
  display: block;
  height: auto;
  margin-bottom: 0.5em;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  width: auto;
}

#wp-postbody img.alignnone {
  margin-left: 0;
}

#wp-postbody img.alignleft {
  float: left;
  margin-left: 0;
  margin-right: 0.5em;
}

#wp-postbody img.alignright {
  float: right;
  margin-left: 0.5em;
  margin-right: 0;
}

#wp-postbody ul > li {
  padding-left: 1.5em;
  position: relative;
}

#wp-postbody ul > li::before {
  background: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2015.71%2017.24'%3e%3cg%20id='font'%3e%3cpath%20d='M9.32,10.4s4.08-2.88,6.34-6.92c.45,4.83-2.41,9.86-7.51,13.77,0,0-6.82-12.63-8.15-15.17L4.29,0l5.03,10.4Z'%20style='fill:%20%23c74e1f;'/%3e%3c/g%3e%3c/svg%3e") no-repeat center / contain;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 0.75em;
  width: 1em;
}

#wp-postbody ol {
  counter-reset: li;
}

#wp-postbody ol > li {
  list-style: none;
  margin-top: 1em;
  padding-left: 1.8em;
  position: relative;
}

#wp-postbody ol > li::before {
  content: counter(li) ".";
  counter-increment: li;
  font-weight: bold;
  left: 0;
  position: absolute;
  top: 0;
}

#wp-postbody a[href] {
  text-decoration: underline;
}

#wp-postbody table {
  width: 100%;
}

#wp-postbody table th {
  font-weight: 700;
}

#wp-postbody dt {
  font-weight: 700;
}

#wp-postbody dd {
  margin-bottom: 1.25em;
}

#wp-postbody pre,
#wp-postbody code {
  white-space: pre-wrap;
}

#wp-postbody .aligncenter {
  display: block;
}

#wp-postbody .alignright {
  float: right;
  margin-left: 0.5em;
  margin-right: 0;
}

#wp-postbody .alignleft {
  float: left;
  margin-left: 0;
  margin-right: 0.5em;
}

#wp-postbody .wp-caption,
#wp-postbody [class*="wp-image"] {
  display: block;
  max-width: 100%;
  object-fit: contain;
  text-align: center;
}

#wp-postbody .wp-caption-text {
  margin-bottom: 0;
  margin-top: 0;
}

#wp-postbody summary::before {
  content: "▽";
  margin-right: 0.2em;
  display: inline-block;
}

#wp-postbody details[open] > summary::before {
  content: "▼";
}

#wp-postbody details > * {
  margin-top: 1em;
}

#wp-postbody details > *:first-child {
  margin-top: 0;
}

#wp-postbody .wp-element-button {
  background-color: var(--color-primary);
  color: #fff;
}

#wp-postbody a[href].wp-element-button {
  text-decoration: none;
}
}

@layer components{

.c-button-simple {
  display: inline-block;
  border: 2px solid black;
  max-width: 100%;
  padding: 1em;
  text-align: center;
  min-height: 70px;
  min-width: min(100%, 270px);
  display: grid;
  place-items: center;
  width: fit-content;
  border-radius: 15px;
  background-color: white;
}

@media screen and (max-width: 768px) {
  .c-button-simple {
    border-radius: 10px;
    min-height: 48px;
  }
}

.c-button-simple__text {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--fontFamily-craft);
}

@media screen and (max-width: 768px) {
  .c-button-simple__text {
    font-size: 16px;
  }
}

.c-button-simple__char {
  display: inline-block;
}
}

@layer components{

.c-hamburger {
  --width: 96px;
  --height: 94px;
  --line-width: 43px;
  --line-weight: 2px;
  --color: #fff;
  --active-color: #fff;

  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: var(--height);
  justify-content: center;
  position: relative;
  width: var(--width);
}

.c-hamburger__bg {
  height: 100%;
  left: 0;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}

.c-hamburger__lines {
  display: flex;
  flex-direction: column;
  height: 22px;
  justify-content: space-between;
  position: relative;
  width: var(--line-width);
  z-index: 1;
}

.c-hamburger__line {
  background: var(--color);
  display: block;
  height: var(--line-weight);
  transition: all 0.3s;
  width: 100%;
}

.c-hamburger__label {
  color: var(--color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

/* Open state */
.c-hamburger[aria-expanded="true"] .c-hamburger__line {
  background: var(--active-color);
}

.c-hamburger[aria-expanded="true"] .c-hamburger__line:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}

.c-hamburger[aria-expanded="true"] .c-hamburger__line:nth-of-type(2) {
  opacity: 0;
}

.c-hamburger[aria-expanded="true"] .c-hamburger__line:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .c-hamburger {
    --width: 60px;
    --height: 60px;
    --line-width: 25px;
    --line-weight: 1px;
  }

  .c-hamburger__lines {
    height: 11px;
  }

  .c-hamburger__label {
    margin-top: 5px;
    font-size: 10px;
  }

  .c-hamburger[aria-expanded="true"] .c-hamburger__line:nth-of-type(1) {
    transform: translateY(5px) rotate(-45deg);
  }

  .c-hamburger[aria-expanded="true"] .c-hamburger__line:nth-of-type(3) {
    transform: translateY(-5px) rotate(45deg);
  }
}
}

@layer components{

.c-card-article {
  --color-card-article-border: var(--color-card-article, var(--color-primary));
  transition: translate 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.c-card-article:hover {
  translate: 0 -6px;
}

@media screen and (max-width: 768px) {
  .c-card-article:hover {
    translate: unset;
  }
}

.c-card-article__thumbnail {
  aspect-ratio: 350/230;
  border-radius: 20px;
  overflow: clip;
  border: 2px solid var(--color-card-article-border);
  filter: drop-shadow(0 3px 6px color-mix(in srgb, black 25%, transparent));
  transition: filter 0.4s;
}

@media screen and (max-width: 768px) {
  .c-card-article__thumbnail {
    border-radius: 10px;
  }
}

.c-card-article__thumbnail img {
  aspect-ratio: 350/230;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  transition: scale 0.3s;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .c-card-article__thumbnail img {
    border-radius: 10px;
  }
}

.c-card-article:hover .c-card-article__thumbnail img {
  scale: 1.06;
}

@media screen and (max-width: 768px) {
  .c-card-article__link {
    display: grid;
    grid-template-columns: 140px 1fr;
    column-gap: 4%;
  }
  .c-card-article._feature .c-card-article__link {
    grid-template-columns: 1fr;
    row-gap: 15px;
  }
  .c-card-article._pickup .c-card-article__link {
    grid-template-columns: 1fr;
    row-gap: 15px;
  }
}
.c-card-article__body {
  padding-top: 15px;
}

@media screen and (max-width: 768px) {
  .c-card-article__body {
    padding-top: unset;
  }
}

.c-card-article__title {
  font-size: 16px;
  line-height: calc(20 / 16);
  font-weight: 700;
  word-break: break-all;
}
.c-card-article__date {
  font-size: 12px;
  line-height: calc(20 / 12);
  font-weight: 700;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .c-card-article__date {
    margin-top: 5px;
  }
}

.c-card-article__placeholder {
  aspect-ratio: 350/230;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-card-article__category {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 5px;
  column-gap: 10px;
}
}

@layer components{

.c-square-article {
  display: block;
}

.c-square-article__thumbnail {
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: clip;
}

.c-square-article__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s;
}

.c-square-article:hover .c-square-article__img {
  scale: 1.1;
}

.c-square-article__placeholder {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  transition: scale 0.3s;
  object-fit: cover;
}
.c-square-article:hover .c-square-article__placeholder {
  scale: 1.1;
}
}

@layer components{

.c-box-profile {
  border-radius: 50px;
  border: 2px solid black;
  padding: 33px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .c-box-profile {
    padding: 30px 20px;
    border-radius: 30px;
  }
}

.c-box-profile::before {
  background: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='_レイヤー_2'%20data-name='レイヤー%202'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2043.81%2058.67'%3e%3cg%20id='waku'%3e%3cpath%20d='M.42,51.88c1.05-1.23,1.93-2.66,3.02-3.96s2.37-2.3,3.45-3.59c1.05-1.25,1.72-2.85,2.8-4.14s2.21-2.46,3.27-3.75,2.17-2.5,3.23-3.79c1.05-1.28,1.97-2.68,3.01-3.97,1.05-1.29,2.35-2.38,3.39-3.65s2-2.68,3.03-3.95,2.04-2.65,3.06-3.91,2.27-2.48,3.28-3.74c0,0,1.27-1.64,2.56-3.26s1.12-1.76,2.39-3.39c1.28-1.63,1.53-1.43,2.81-3.07s1.23-1.67,2.49-3.31c.56-.79,1.73-.35,1.59.61-.16,1.56-.1,3.15-.25,4.72s-.76,3.09-.91,4.65-.41,3.12-.54,4.69-.2,3.14-.33,4.71.49,3.2.37,4.76-.39,3.12-.5,4.69-.21,3.14-.32,4.71-.86,3.1-.96,4.67.65,3.19.56,4.76c-.08,1.57-.54,3.12-.61,4.69s-.06,3.15-.11,4.72-.39,3.14-.42,4.71c0,.44-.24,1.17-.68,1.16-.47,0-.41-.75-.35-1.22.18-1.56,0-3.17.16-4.73s0-3.16.14-4.73.56-3.11.69-4.68c.11-1.57.35-3.13.46-4.7s.1-3.15.21-4.72.19-3.14.29-4.71.05-3.15.14-4.72.33-3.13.41-4.7.01-3.15.08-4.72.37-3.13.44-4.7-.32-3.16-.27-4.73.13-3.14.18-4.71c0,0,1.83-.31,1.61.62-.48,2.01-.69,1.91-2.04,3.48-1.35,1.57-1.75,1.23-3.09,2.81-.94,1.11-1.76,2.44-2.79,3.66-.95,1.14-1.86,2.38-2.87,3.6s-2.43,1.94-3.42,3.14-1.87,2.42-2.85,3.61-2.02,2.32-3,3.5c-.98,1.19-1.47,2.79-2.43,3.96s-2.24,2.17-3.19,3.34-1.52,2.78-2.46,3.93c-1.01,1.24-2.23,2.24-3.14,3.37,0,0-1.23,1.67-2.53,3.28s-1.66,1.33-2.95,2.95c-1.29,1.62-1.23,1.67-2.52,3.29s-.83,1.98-2.12,3.61c-.68.85-2.41-.51-1.69-1.4.09-.07.25.24.25.24Z'%20style='fill:%20%23201913;'/%3e%3c/g%3e%3c/svg%3e") no-repeat center /
    contain;
  content: "";
  display: block;
  height: 58px;
  position: absolute;
  left: 40px;
  top: 0;
  translate: 0 -80%;
  width: 44px;
}

@media screen and (max-width: 768px) {
  .c-box-profile::before {
    width: calc(44px * 0.75);
    left: calc(40px * 0.75);
    height: calc(58px * 0.75);
  }
}

.c-box-profile__heading {
  font-size: 18px;
  line-height: calc(37.5 / 18);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c-box-profile__name {
  font-size: 22px;
  line-height: calc(37.5 / 22);
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 22px;
}

@media screen and (max-width: 768px) {
  .c-box-profile__name {
    margin-top: 0;
    font-size: 18px;
  }
}
.c-box-profile__text {
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: calc(37.5 / 17);
}

@media screen and (max-width: 768px) {
  .c-box-profile__text {
    font-size: 14px;
  }
}

.c-box-profile__layout {
  display: grid;
  grid-template-columns: 1fr 172px;
  column-gap: 25px;
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .c-box-profile__layout {
    grid-template-columns: 1fr;
    row-gap: 15px;
    margin-top: 15px;
  }

  .c-box-profile__layout > *:nth-child(1) {
    order: 2;
  }
}

.c-box-profile__thumbnail {
  aspect-ratio: 1/1;
}

.c-box-profile__thumbnail .-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-box-profile__sns {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .c-box-profile__sns {
    margin-top: 15px;
  }
}

.c-box-profile__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
}

@media screen and (max-width: 768px) {
  .c-box-profile__icon {
    width: 30px;
  }
}
}

@layer components{

.c-check-article__link {
  display: grid;
  grid-template-columns: 26px 1fr;
  column-gap: 20px;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: calc(22 / 16);
  letter-spacing: 0.05em;
}

.c-check-article__icon {
  display: grid;
  place-items: center;
  transition: rotate 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.c-check-article__link:hover .c-check-article__icon {
  rotate: -15deg;
}

.c-check-article__icon img {
  width: 26px;
  height: auto;
}
}

@layer components{

.c-label-category {
  font-size: 12px;
  color: white;
  background-color: var(--color-label-category, #c74e1f);
  text-transform: uppercase;
  display: grid;
  place-items: center;
  width: fit-content;
  border-radius: 5px;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  font-weight: 700;
}

.c-label-category._lg {
  font-size: 16px;
  line-height: calc(26 / 16);
}

.c-label-category._reverse {
  color: var(--color-text);
  background-color: white;
  border: 1px solid var(--color-label-category, #c74e1f);
}
}

@layer components{

.c-tabmenu__head {
  position: relative;
}

.c-tabmenu__head::after {
  width: 100%;
  background-color: black;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  content: "";
}

.c-tabmenu__tablist {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.c-tabmenu__tablist::-webkit-scrollbar {
  display: none;
}

.c-tabmenu__tab {
  min-width: 180px;
  padding: 0.5em 1em;
  border: 1px solid #000;
  border-radius: 10px 10px 0 0;
  background: #fff;
  color: var(--color-tabmenu-tab, var(--color-primary));
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  /* transition:
    background 0.3s,
    color 0.3s; */
  user-select: none;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .c-tabmenu__tab {
    min-width: 140px;
    font-size: 16px;
  }
}
.c-tabmenu__tab[aria-selected="true"] {
  background: var(--color-tabmenu-tab);
  color: #fff;
}

.c-tabmenu__body {
  margin-top: min(4%, 50px);
}
@media screen and (max-width: 768px) {
  .c-tabmenu__body {
    margin-top: 25px;
  }
}
}

@layer components{

.c-post-row__link {
  display: flex;
  font-size: clamp(16px, calc(16 / 1700 * 100vw), 999px);
  gap: 1em;
}

.c-post-row__date {
  font-family: var(--fontFamily-kiwi);
  white-space: nowrap;
  color: white;
}

.c-post-row__title {
  color: white;
}
}

@layer components{

.c-button-navigation {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.5em;
  align-items: center;
  border: 2px solid black;
  max-width: 100%;
  padding: 1em;
  min-height: 75px;
  min-width: min(100%, 200px);
  width: fit-content;
  border-radius: 10px;
  background-color: white;
  text-decoration: none;
  color: inherit;
  padding-left: 2em;
}

@media screen and (max-width: 768px) {
  .c-button-navigation {
    border-radius: 10px;
    min-height: 48px;
    row-gap: 20px;
    padding-left: 1em;
  }
}

.c-button-navigation.-reverse {
  grid-template-columns: 1fr auto;
  padding-right: 2em;
  padding-left: 1em;
}

@media screen and (max-width: 768px) {
  .c-button-navigation.-reverse {
    padding-right: 1em;
  }
}

.c-button-navigation__icon {
  width: 24px;
  height: auto;
  transition: transform 0.5s ease;
}

.c-button-navigation:hover .c-button-navigation__icon {
  transform: rotateX(360deg);
}

@media screen and (max-width: 768px) {
  .c-button-navigation__icon {
    width: 20px;
  }
}

.c-button-navigation__text {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--fontFamily-craft);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-button-navigation__text {
    font-size: 16px;
  }
}
}

@layer components{

.c-pager {
  display: grid;
  place-items: center;
}

.c-pager__list {
  display: flex;
  column-gap: 0.5em;
  align-items: center;
}

.c-pager__list a {
  text-decoration: none;
  color: inherit;
}

.c-pager__item {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid black;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--fontFamily-craft);
  background-color: white;
  transition: scale 0.2s ease;
}

.post-page-numbers.current .c-pager__item {
  background-color: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.c-pager__list a:hover .c-pager__item {
  scale: 1.05;
}

@media screen and (max-width: 768px) {
  .c-pager__item {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}
}

@layer site{

.s-header {
  padding-left: calc(130 / 1700 * 100%);
  padding-right: calc(106 / 1700 * 100%);
  height: calc(var(--height-header) * 1px);
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: var(--zIndex-header);
}

.s-header._front {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: var(--zIndex-header);
}
.s-header._page {
  left: 0;
  position: absolute;
  height: 247px;
  top: 0;
  width: 100%;
  z-index: var(--zIndex-header);
}

.s-header__bg {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
}

.s-header__bg .-img {
  width: 100%;
}

.s-header._page .s-header__bg {
  display: block;
}

.s-header__logo {
  display: none;
  position: relative;
  z-index: 2;
}

.s-header._page .s-header__logo {
  display: block;
  width: min(calc(381 / 1700 * 100vw), 381px);
}

@media screen and (max-width: 768px) {
  .s-header._page .s-header__logo .c-logo-header__img {
    width: 140px;
  }
}

.s-header__inner {
  display: flex;
  height: 100%;
  justify-content: space-between;
}

.s-header__spmenu {
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: 0.3s;
  width: 100vw;
  z-index: var(--zIndex-spmenu);
}

.s-header__toggle {
  position: fixed;
  right: calc(93 / 1700 * 100%);
  top: 47px;
  z-index: var(--zIndex-toggle);
}

@media screen and (max-width: 768px) {
  .s-header__toggle {
    top: 24px;
    right: var(--gutter);
  }
}
}

@layer site{

.s-header-nav__list {
  display: flex;
  column-gap: 16px;
  flex-wrap: wrap;
}

.s-header-nav__link {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .s-header-nav__link {
    font-size: 14px;
  }
}
}

@layer site{

.s-spmenu {
  height: 100%;
  margin-left: auto;
  max-width: 600px;
  pointer-events: none;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out-cubic);
  width: 100%;
}

.s-spmenu:not([inert]) {
  pointer-events: auto;
  transform: translateX(0);
}

.s-spmenu__noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.s-spmenu__scroll {
  -webkit-overflow-scrolling: touch;
  height: 100%;
  overflow-y: auto;
  position: relative;
  z-index: 2;
}

.s-spmenu__inner {
  padding-bottom: 60px;
  padding-left: 60px;
  padding-right: 40px;
}

.s-spmenu__logo {
  width: 200px;
  padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .s-spmenu__logo {
    padding-bottom: unset;
  }
}

.s-spmenu__heading {
  font-family: var(--fontFamily-craft);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 36px;
  color: var(--color-primary);
}

.s-spmenu__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  margin-top: 8px;
}

.s-spmenu__link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2;
  border: 1px solid;
  border-radius: 10px;
  padding: 0px 10px;
  margin: 4px 0;
  transition: 0.5s;
}
a.s-spmenu__link:hover {
  opacity: 0.5;
  background-color: #000;
  color: #fff;
  transition: 0.5s;
}

.s-spmenu__nav {
  margin-top: 36px;
}
.s-spmenu__sns {
  margin-top: 36px;
}

@media screen and (max-width: 768px) {
  .s-spmenu {
    max-width: 100%;
  }

  .s-spmenu__inner {
    padding-bottom: 40px;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  .s-spmenu__list {
    margin-top: 10px;
  }
  .s-spmenu__logo {
    width: 160px;
  }
  .s-spmenu__link {
    font-size: 14px;
  }
  .s-spmenu__heading {
    font-size: 18px;
    margin-top: 20px;
  }
  .s-spmenu__nav {
    margin-top: 20px;
  }
  .s-spmenu__sns {
    margin-top: 20px;
  }
}
}

@layer site{
/* フッタースタイル */
.s-footer {
  padding-bottom: 60px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  color: white;
  margin-top: -0.5%;
}

@media screen and (max-width: 768px) {
  .s-footer {
    margin-top: -2%;
    padding-bottom: unset;
  }
}

.s-footer__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.s-footer__bg .-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.s-footer__inner {
  position: relative;
  z-index: 2;
  max-width: calc(var(--width-inner) * 1px + 70px);
  margin-left: auto;
  margin-right: auto;
}

.s-footer__layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  row-gap: 80px;
  column-gap: 1%;
}

@media screen and (max-width: 768px) {
  .s-footer__layout {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
.s-footer__layout > *:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
}

@media screen and (max-width: 768px) {
  .s-footer__layout > *:nth-child(1) {
    grid-area: auto;
  }
}
.s-footer__layout > *:nth-child(2) {
  padding-top: 15%;
  justify-self: center;
  grid-area: 1 / 2 / 2 / 3;
}
@media screen and (max-width: 768px) {
  .s-footer__layout > *:nth-child(2) {
    grid-area: auto;
    padding-top: unset;
  }
}
.s-footer__layout > *:nth-child(3) {
  grid-area: 2 / 1 / 3 / 3;
  padding-bottom: min(8%, 100px);
}

@media screen and (max-width: 768px) {
  .s-footer__layout > *:nth-child(3) {
    grid-area: auto;
    padding-bottom: 25px;
  }
}
.s-footer__layout > *:nth-child(4) {
  padding-left: 16%;
  max-width: 500px;
}
.s-footer__project {
  max-width: 182px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .s-footer__project {
    row-gap: 15px;
    font-size: 14px;
  }
}

.s-footer__logo {
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .s-footer__logo .c-logo-footer__img {
    max-width: 240px;
  }
}

.s-footer__middle {
  display: flex;
  justify-content: space-evenly;
  column-gap: 4%;
  padding-left: 12%;
  padding-right: 12%;
}

@media screen and (max-width: 768px) {
  .s-footer__middle {
    padding-left: unset;
    padding-right: unset;
    flex-direction: column;
    row-gap: 30px;
  }
}

.s-footer__nav-heading {
  letter-spacing: 0.04em;
  font-size: 22px;
  line-height: calc(31 / 22);
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid white;
  padding-bottom: 5px;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 768px) {
  .s-footer__nav-heading {
    font-size: 20px;
    padding-left: 15px;
  }
}

.s-footer__nav-body {
  padding-left: 20px;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .s-footer__nav-body {
    margin-top: 10px;
    padding-left: 15px;
  }
}

.s-footer__nav {
  flex-basis: 212px;
}

@media screen and (max-width: 768px) {
  .s-footer__nav {
    flex-basis: unset;
  }
}
.s-footer__lower {
  padding-top: 20px;
  border-top: 1px solid white;
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .s-footer__lower {
    padding-top: 20px;
  }
}

.s-footer__sns {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.s-footer__copyright {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding-top: min(90px, 7.5%);
  padding-bottom: min(50px, 4%);
}

@media screen and (max-width: 768px) {
  .s-footer__copyright {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
}

@layer site{

.s-footer-nav__list {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .s-footer-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .s-footer-nav__list > * {
    width: 50%;
  }
}

.s-footer-nav__link {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .s-footer-nav__link {
    font-size: 14px;
  }
}
}

@layer site{

.s-section-sponsor {
  padding-top: min(6.2%, 105px);
  padding-bottom: min(9%, 145px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
}

@media screen and (max-width: 768px) {
  .s-section-sponsor {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.s-section-sponsor__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.s-section-sponsor__bg .-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.s-section-sponsor__inner {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

.s-section-sponsor__list {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: min(5.5%, 80px);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  place-items: center;
  column-gap: 20px;
  row-gap: 30px;
}

@media screen and (max-width: 768px) {
  .s-section-sponsor__list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    padding-left: unset;
    padding-right: unset;
    row-gap: 25px;
  }
}

.s-section-sponsor__heading {
  text-align: center;
}

.s-section-sponsor__heading .-en {
  letter-spacing: -0.09em;
  font-family: var(--fontFamily-craft);
  font-size: var(--font-size-heading-main);
}
.s-section-sponsor__heading .-ja {
  letter-spacing: 0.09em;
  margin-top: 12px;
  font-size: 25px;
}
@media screen and (max-width: 768px) {
.s-section-sponsor__heading .-ja {
    font-size: 18px;
    margin-top: 5px;
  }
}
}

@layer site{

.s-section-goods {
  padding-top: min(7%, 120px);
  padding-bottom: min(7%, 120px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
}

@media screen and (max-width: 768px) {
  .s-section-goods {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.s-section-goods__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.s-section-goods__bg .-img {
  width: 100%;
  height: 100%;
  object-position: top;
}

.s-section-goods__inner {
  position: relative;
  z-index: 2;
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.s-section-goods__heading {
  text-align: center;
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.s-section-goods__heading .-fukidashi {
  position: absolute;
  right: 0;
  translate: 110% -80%;
  top: 50%;
}

@media screen and (max-width: 768px) {
  .s-section-goods__heading .-fukidashi {
    position: static;
    translate: unset;
    margin-bottom: 5px;
  }
}

.s-section-goods__heading .-text {
  letter-spacing: -0.09em;
  font-family: var(--fontFamily-craft);
  font-size: var(--font-size-heading-main);
}

.s-section-goods__banner {
  margin-top: min(35px, 3%);
  position: relative;
}

@media screen and (max-width: 768px) {
  .s-section-goods__banner {
    margin-top: 20px;
  }
}

.s-section-goods__banner .-chara {
  position: absolute;
  left: 6%;
  top: 0;
  translate: 0 -70%;
}

@media screen and (max-width: 768px) {
  .s-section-goods__banner .-chara {
    position: static;
    translate: unset;
    margin-left: auto;
    margin-right: auto;
    width: 180px;
  }
}
}

@layer site{

.s-section-operation {
  padding-top: min(4%, 70px);
  padding-bottom: min(11.7%, 200px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .s-section-operation {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.s-section-operation__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.s-section-operation__list {
  margin-top: min(7.3%, 85px);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  place-items: center;
  column-gap: 20px;
  row-gap: 20px;
}

@media screen and (max-width: 768px) {
  .s-section-operation__list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

.s-section-operation__item {
  display: grid;
  place-items: center;
}

.s-section-operation__heading {
  text-align: center;
}

.s-section-operation__heading .-en {
  letter-spacing: -0.09em;
  font-family: var(--fontFamily-craft);
  font-size: var(--font-size-heading-main);
}
.s-section-operation__heading .-ja {
  letter-spacing: 0.09em;
  margin-top: 12px;
  font-size: 25px;
}

@media screen and (max-width: 768px) {
  .s-section-operation__heading .-ja {
    margin-top: 5px;
    font-size: 18px;
  }
}
}

@layer site{
/* ================================================
   Feature Slider
   ================================================ */
.s-section-feature {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: clip;
  position: relative;
  padding-top: min(5.2%, 90px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: min(7.5%, 120px);
  min-height: 630px;
}

@media screen and (max-width: 768px) {
  .s-section-feature {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: unset;
    padding-right: unset;
    min-height: 520px;
  }
}
.s-section-feature__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.s-section-feature__bg .-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.s-section-feature__contents {
  position: relative;
  z-index: 2;
}

.s-section-feature__heading {
  font-family: var(--fontFamily-craft);
  font-size: var(--font-size-heading-main);
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-end;
  letter-spacing: -0.11em;
}

@media screen and (max-width: 768px) {
  .s-section-feature__heading {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .s-section-feature__heading > *:nth-child(2) {
    grid-area: 1 / 1 / 2 / 2;
  }
  .s-section-feature__heading > *:nth-child(3) {
    grid-area: 1 / 2 / 2 / 3;
  }
  .s-section-feature__heading > *:nth-child(1) {
    grid-area: 2 / 1 / 3 / 3;
  }
}

.s-section-feature__heading .-particle {
  align-self: flex-start;
  translate: -18% -57%;
}

@media screen and (max-width: 768px) {
  .s-section-feature__heading .-particle {
    translate: unset;
  }
}

.s-section-feature__heading .-fukidashi {
  translate: -6% -8%;
}

@media screen and (max-width: 768px) {
  .s-section-feature__heading .-fukidashi {
    translate: unset;
  }
}
.s-section-feature__viewport {
  margin-top: min(2%, 40px);
  max-width: calc(var(--width-inner) * 1px + 450px);
  margin-left: auto;
  margin-right: auto;
  overflow-x: clip !important;
  overflow-y: unset !important;
}

@media screen and (max-width: 768px) {
  .s-section-feature__viewport {
    margin-top: 25px;
  }
}

.s-section-feature__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.s-section-feature__slider {
  position: relative;
}

.s-section-feature__slider .swiper {
  overflow: visible !important;
}

.s-section-feature .swiper-slide {
  transition: transform 600ms var(--ease-out-cubic) !important;
  transform-style: preserve-3d;
}

/* ---- Navigation arrows ---- */
.s-section-feature__prev,
.s-section-feature__next {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
  width: clamp(40px, calc(75 / 1700 * 100vw), 75px);
  height: clamp(40px, calc(75 / 1700 * 100vw), 75px);
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

@media screen and (max-width: 1400px) {
  .s-section-feature__prev,
  .s-section-feature__next {
    display: none;
  }
}
@media screen and (max-width: 639px) {
  .s-section-feature__prev {
    left: 0;
    translate: -30% -50%;
  }
  .s-section-feature__next {
    right: 0;
    translate: 30% -50%;
  }
}

@media screen and (min-width: 640px) and (max-width: 768px) {
  .s-section-feature__prev {
    translate: -50% -50% !important;
  }
  .s-section-feature__next {
    translate: 50% -50% !important;
  }
}

.s-section-feature__prev img,
.s-section-feature__next img {
  width: 100%;
  height: 100%;
}

.s-section-feature__prev {
  left: 0;
  translate: -130% -120%;
}

.s-section-feature__next {
  right: 0;
  translate: 130% -120%;
}

/* ---- Edge slides: thumbnail only ---- */
.s-section-feature .swiper-slide.is-edge .c-card-article__body {
  display: none;
}

/* Swiper disabled state override */
.s-section-feature__prev.swiper-button-disabled,
.s-section-feature__next.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.s-section-feature__card > * {
  width: 100%;
}
}

@layer site{

.s-section-cloud {
  overflow: clip;
  padding-top: min(80px, 4.8%);
  padding-bottom: min(160px, 9.5%);
}

@media screen and (max-width: 768px) {
  .s-section-cloud {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}

.s-section-cloud__heading {
  font-size: 30px;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 700;
  margin-bottom: min(4.6%, 80px);
}

@media screen and (max-width: 768px) {
  .s-section-cloud__heading {
    margin-bottom: 25px;
    font-size: 22px;
  }
}

.s-section-cloud__row {
  overflow: clip;
}

.s-section-cloud__lower {
  margin-top: min(50px, 4%);
}

@media screen and (max-width: 768px) {
  .s-section-cloud__lower {
    margin-top: 25px;
  }
}

.s-section-cloud__track {
  display: flex;
  column-gap: 50px;
  width: max-content;
  will-change: transform;
}

@media screen and (max-width: 768px) {
  .s-section-cloud__track {
    column-gap: 25px;
  }
}

/* 上段: 右方向・速め */
.s-section-cloud__upper .s-section-cloud__track {
  animation: marquee-right 30s linear infinite;
}

/* 下段: 左方向・遅め */
.s-section-cloud__lower .s-section-cloud__track {
  animation: marquee-left 45s linear infinite;
}

@keyframes marquee-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes marquee-left {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.s-section-cloud .c-square-article {
  display: block;
  width: 165px;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .s-section-cloud .c-square-article {
    width: 100px;
  }
}
}

@layer site{

.s-section-related {
  padding-top: min(9.2%, 155px);
  padding-bottom: min(9.2%, 155px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .s-section-related {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.s-section-related__heading {
  font-family: var(--fontFamily-craft);
  font-size: var(--font-size-heading-main);
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-end;
  letter-spacing: -0.1em;
}
@media screen and (max-width: 768px) {
  .s-section-related__heading {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .s-section-related__heading > *:nth-child(2) {
    grid-area: 1 / 1 / 2 / 2;
  }
  .s-section-related__heading > *:nth-child(3) {
    grid-area: 1 / 2 / 2 / 3;
  }
  .s-section-related__heading > *:nth-child(1) {
    grid-area: 2 / 1 / 3 / 3;
  }
}

.s-section-related__heading .-particle {
  align-self: flex-start;
  translate: 20% -20%;
}
@media screen and (max-width: 768px) {
  .s-section-related__heading .-particle {
    translate: unset;
  }
}
.s-section-related__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.s-section-related__grid {
  margin-top: min(3.8%, 45px);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  column-gap: 2%;
  row-gap: 10px;
}

@media screen and (max-width: 768px) {
  .s-section-related__grid {
    row-gap: 25px;
    grid-template-columns: 1fe;
  }
}

.s-section-related__card > * {
  width: 100%;
}

.s-section-related__button {
  display: grid;
  place-items: center;
  margin-top: min(8%, 90px);
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .s-section-related__button {
    margin-top: 40px;
  }
}

.s-section-related__button > .c-button-simple {
  width: 350px;
}

@media screen and (max-width: 768px) {
  .s-section-related__button > .c-button-simple {
    width: min(350px, 100%);
  }
}
.s-section-related__button .-chara {
  position: absolute;
  right: 0;
  top: 0;
  translate: 0 -80%;
}
}

@layer site{

.s-nav-sns__list {
  display: flex;
  align-items: center;
  column-gap: 40px;
  row-gap: 40px;
}

@media screen and (max-width: 768px) {
  .s-nav-sns__list {
    column-gap: 25px;
    row-gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .s-nav-sns__img {
    width: 32px;
  }
}
}

@layer site{
.s-nav-magazine__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
}

@layer site{

.s-aside-meta {
  padding-top: 50px;
  padding-bottom: 125px;
}

@media screen and (max-width: 768px) {
  .s-aside-meta {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.s-aside-meta__date {
  font-size: 16px;
  line-height: calc(30 / 16);
  letter-spacing: 0.05em;
  font-weight: 700;
}
.s-aside-meta__author {
  font-size: 16px;
  line-height: calc(30 / 16);
  letter-spacing: 0.05em;
  font-weight: 700;
}

.s-aside-meta__category {
  display: flex;
  column-gap: 10px;
  row-gap: 5px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.s-aside-meta__tag {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  font-size: 15px;
  line-height: calc(39.5 / 15);
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .s-aside-meta__tag {
    margin-top: 20px;
  }
}
}

@layer site{

.s-aside-ranking {
  padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .s-aside-ranking {
    padding-bottom: 40px;
  }
}

.s-aside-ranking__list {
  margin-top: 5px;
}

.s-aside-ranking__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 5px;
  border-bottom: 2px solid black;
  padding-bottom: 20px;
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  .s-aside-ranking__item {
    grid-template-columns: 30px 1fr;
    column-gap: 2%;
  }
}

.s-aside-ranking__num {
  font-size: 55px;
  line-height: 1;
  font-family: var(--fontFamily-craft);
}

@media screen and (max-width: 768px) {
  .s-aside-ranking__num {
    font-size: 40px;
  }
}
}

@layer site{

.s-aside-new {
  border-bottom: 2px solid black;
  padding-bottom: 50px;
}

.s-aside-new__list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
}

@layer site{

.s-aside-banner {
  padding-top: 50px;
  padding-bottom: 50px;
}

.s-aside-banner__list {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  align-items: center;
}
}

@layer page{

.p-page404-body {
  padding-top: min(13%, 220px);
  padding-bottom: min(13%, 220px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-page404-body {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}

.p-page404-body__inner {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.p-page404-body__num {
  font-family: var(--fontFamily-craft);
  font-size: clamp(80px, calc(120 / 1160 * 100vw), 120px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.p-page404-body__heading {
  margin-top: 30px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .p-page404-body__heading {
    font-size: 20px;
  }
}

.p-page404-body__heading .-ib {
  display: inline-block;
}

.p-page404-body__text {
  margin-top: 40px;
  font-size: 15px;
  line-height: calc(30 / 15);
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .p-page404-body__text {
    margin-top: 30px;
    font-size: 14px;
  }
}

.p-page404-body__button {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .p-page404-body__button {
    margin-top: 40px;
  }
}
}

@layer page{
.p-top-wrap__bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-top-wrap__bg .-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-wrap__contents {
  position: relative;
  z-index: 2;
}
}

@layer page{

.p-top-article {
  padding-top: min(3.3%, 60px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-top-article {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.p-top-article__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-top: min(2%, 35px);
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .p-top-article__inner {
    margin-top: 25px;
  }
}

.p-top-article__heading {
  font-family: var(--fontFamily-craft);
  font-size: var(--font-size-heading-main);
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-end;
  letter-spacing: -0.1em;
}

@media screen and (max-width: 768px) {
  .p-top-article__heading {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .p-top-article__heading > *:nth-child(2) {
    grid-area: 1 / 1 / 2 / 2;
  }
  .p-top-article__heading > *:nth-child(3) {
    grid-area: 1 / 2 / 2 / 3;
  }
  .p-top-article__heading > *:nth-child(1) {
    grid-area: 2 / 1 / 3 / 3;
  }
}

.p-top-article__heading .-particle {
  align-self: flex-start;
  translate: 0 -50%;
}

@media screen and (max-width: 768px) {
  .p-top-article__heading .-particle {
    translate: unset;
  }
}

.p-top-article__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  column-gap: 2.5%;
  row-gap: 50px;
}

@media screen and (max-width: 768px) {
  .p-top-article__grid {
    row-gap: 25px;
    display: flex;
    flex-direction: column;
  }
}

.p-top-article__grid .c-card-article {
  --color-card-article-border: #000000;
}

.p-top-article__card > * {
  width: 100%;
}

.p-top-article__button {
  margin-top: min(4%, 75px);
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .p-top-article__button {
    margin-top: 40px;
  }
}
}

@layer page{
.p-top-course__heading {
  font-family: var(--fontFamily-craft);
  font-size: 24px;
  text-align: center;
  letter-spacing: -0.06em;
}
.p-top-course__list {
  margin-top: min(4%, 45px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 40px;
}

@media screen and (max-width: 1024px) {
  .p-top-course__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 25px;
    margin-top: 40px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-top-course__link {
  display: grid;
  place-items: center;
  transition: translate 0.3s;
}

.p-top-course__link:hover {
  translate: 0 -6px;
}

.p-top-course__link .-bg {
  grid-area: 1 / -1;
  translate: 0 4%;
}
.p-top-course__link .-body {
  grid-area: 1 / -1;
  position: relative;
  z-index: 2;
}

.p-top-course__link .-chara {
  translate: -20%;
}

.p-top-course__link .-heading {
  display: block;
  margin-top: 10px;
}
}

@layer page{

.p-top-recommend {
  padding-top: min(100px, 6%);
  padding-bottom: min(20px, 1.5%);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-top-recommend {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.p-top-recommend__inner {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

.p-top-recommend__row:not(:first-of-type) {
  margin-top: min(3.5%, 50px);
}

@media screen and (max-width: 768px) {
  .p-top-recommend__row:not(:first-of-type) {
    margin-top: 25px;
  }
}
}

@layer page{

.p-top-pickup__heading {
  font-family: var(--fontFamily-craft);
  font-size: clamp(24px, calc(45 / 1160 * 100vw), 45px);
  text-align: center;
  letter-spacing: -0.01em;
}

.p-top-pickup__radius {
  border-radius: 70px;
  border: 2px solid black;
  background-image: linear-gradient(
    to right,
    color-mix(in srgb, #458f8c 20%, transparent),
    color-mix(in srgb, #c1a52d 20%, transparent)
  );
  box-shadow: 5px 5px 3px color-mix(in srgb, black 20%, transparent);
  padding-top: min(4%, 40px);
  padding-bottom: min(3%, 30px);
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 1024px) {
  .p-top-pickup__radius {
    border-radius: 40px;
  }
}

@media screen and (max-width: 768px) {
  .p-top-pickup__radius {
    border-radius: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    border: unset;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: unset;
  }
}

.p-top-recommend__row:nth-child(3n + 1) .p-top-pickup__radius {
  background-image: linear-gradient(
    to right,
    color-mix(in srgb, #458f8c 20%, transparent),
    color-mix(in srgb, #c1a52d 20%, transparent)
  );
}
.p-top-recommend__row:nth-child(3n + 2) .p-top-pickup__radius {
  background-image: linear-gradient(
    to right,
    color-mix(in srgb, #d07a5a 20%, transparent),
    color-mix(in srgb, #576b8b 20%, transparent)
  );
}
.p-top-recommend__row:nth-child(3n) .p-top-pickup__radius {
  background-image: linear-gradient(
    to right,
    color-mix(in srgb, #42a0ba 20%, transparent),
    color-mix(in srgb, #c1a52d 20%, transparent)
  );
}
/* ================================================
   Pickup Slider
   ================================================ */
.p-top-pickup__slider {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: -4.5%;
}

.p-top-pickup__slider .swiper {
  overflow-x: clip !important;
  overflow-y: unset !important;
}

@media screen and (max-width: 768px) {
  .p-top-pickup__slider {
    margin-top: 5px;
    margin-right: calc(-50vw + 50%);
  }
}
.p-top-pickup__chara {
  translate: 0 10%;
  position: relative;
  z-index: 2;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .p-top-pickup__chara {
    max-height: 70px;
  }
}

.p-top-recommend__row:nth-child(2n) .p-top-pickup__chara {
  margin-left: unset;
}

.p-top-pickup__card > * {
  width: 100%;
}

.p-top-pickup__prev,
.p-top-pickup__next {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
  width: clamp(40px, calc(75 / 1700 * 100vw), 75px);
  height: clamp(40px, calc(75 / 1700 * 100vw), 75px);
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.p-top-pickup__prev img,
.p-top-pickup__next img {
  width: 100%;
  height: 100%;
}

.p-top-pickup__prev {
  left: 0;
  translate: -130% -50%;
}

@media screen and (max-width: 1400px) {
  .p-top-pickup__prev {
    translate: -50% -50%;
  }
}
@media screen and (max-width: 768px) {
  .p-top-pickup__prev {
    translate: -50% -50%;
  }
}

.p-top-pickup__next {
  right: 0;
  translate: 130% -50%;
}
@media screen and (max-width: 1400px) {
  .p-top-pickup__next {
    translate: 50% -50%;
  }
}

@media screen and (max-width: 768px) {
  .p-top-pickup__next {
    translate: 0% -50%;
  }
}

.p-top-pickup__prev.swiper-button-disabled,
.p-top-pickup__next.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
}

@layer page{

.p-top-mv {
  --mv-ref: min(100vw, 100lvh * 1700 / 1390);
  position: relative;
  background-color: var(--color-back-02);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: 5%;
  overflow: clip;
  height: min(calc(1390 / 1700 * 100vw), 100lvh);
  width: 100vw;
}

.p-top-mv__noise {
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.p-top-mv__noise .-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-mv__logo,
.p-top-mv__bg,
.p-top-mv__visual,
.p-top-mv__catch {
  opacity: 0;
}

.p-top-mv__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.p-top-mv__bg .-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-mv__catch {
  position: absolute;
  bottom: 8%;
  right: 20%;
  width: calc(364 / 1700 * var(--mv-ref));
  display: grid;
  place-items: center;
}

@media screen and (max-width: 768px) {
  .p-top-mv__catch {
    width: calc(180 / 375 * var(--mv-ref));
    right: 4%;
    bottom: 12%;
  }
}

.p-top-mv__catch .-img {
  width: 100%;
}
.p-top-mv__logo {
  width: calc(644 / 1700 * var(--mv-ref));
  position: absolute;
  top: 0;
  left: 6%;
}
.p-top-mv__logo .-img {
  width: 100%;
}
.p-top-mv__visual {
  display: grid;
  place-items: center;
  position: absolute;
  top: 14%;
  left: 51%;
  width: calc(805 / 1700 * var(--mv-ref));
  /* translate は GSAP の xPercent で管理 */
}
@media screen and (max-width: 768px) {
  .p-top-mv__visual {
    width: calc(330 / 375 * var(--mv-ref));
  }
}
.p-top-mv__visual .-img {
  width: 100%;
}

@media not (orientation: landscape) {
  .p-top-mv {
    --mv-ref: min(100vw, 100lvh * 1700 / 1390, 680px * 1700 / 1390);
    height: min(calc(1390 / 1700 * 100vw), 100lvh, 680px);
  }
}
@media screen and (max-width: 768px) {
  .p-top-mv {
    --mv-ref: min(100vw, 100lvh * 1700 / 1390);
    height: 100lvh;
  }
  .p-top-mv__bg {
    height: 50%;
  }
}

.p-top-mv__news {
  left: 0;
  bottom: 0;
  width: 100%;
  position: absolute;
}
}

@layer page{

.p-top-map {
  position: relative;
  padding-top: min(1.5%, 30px);
  overflow: clip;
  padding-bottom: min(7%, 120px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-top-map {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.p-top-map__bg {
  position: absolute;
  left: 0;
  top: 15%;
  width: 100%;
  height: 85%;
}

.p-top-map__bg .-img {
  width: 100%;
  height: 100%;
}

.p-top-map__upper {
  position: relative;
  z-index: 2;
}

.p-top-map__main {
  width: min(1310px, calc(1310 / 1700 * 100vw));
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  translate: -1.5%;
}

.p-top-map__main .-img {
  width: 100%;
}

.p-top-map__road {
  width: min(1909px, calc(1909 / 1700 * 100vw));
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: 5%;
}
.p-top-map__road .-img {
  width: 100%;
}
.p-top-map__heading {
  width: clamp(180px, calc(452 / 1700 * 100vw), 452px);
  position: absolute;
  top: 5%;
  left: max(0px, calc((100vw - 1310px) / 2 - 2%));
  z-index: 3;
}
.p-top-map__road .-img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-top-map__upper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .p-top-map__main {
    width: 600px;
    translate: 0;
  }
}

.p-top-map__upper .scroll-hint-icon-wrap {
  z-index: 3;
}

.p-top-map__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.p-top-map__overlay a {
  pointer-events: auto;
}

.p-top-map__overlay a path {
  fill: transparent;
  transition: fill 0.3s;
  cursor: pointer;
}

.p-top-map__overlay a:hover path {
  fill: rgba(255, 255, 255, 0.3);
}

.p-top-map__inner {
  position: relative;
  z-index: 2;
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}
.p-top-map__course {
  margin-top: min(4%, 50px);
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .p-top-map__course {
    margin-top: 40px;
  }
}
}

@layer page{

.p-top-news {
  position: relative;
  color: white;
  height: max(60px, calc(60 / 1700 * var(--mv-ref)));
}

.p-top-news__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.p-top-news__bg .-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.p-top-news__slider {
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 1;
  overflow: clip;
}

.p-top-news__marquee {
  display: flex;
  width: max-content;
  animation: marquee-news 60s linear infinite;
  will-change: transform;
}

.p-top-news__marquee-track {
  display: flex;
  gap: 40px;
  padding-right: 40px;
  flex-shrink: 0;
}

.p-top-news__marquee-item {
  flex-shrink: 0;
}

@keyframes marquee-news {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
}

@layer page{

.p-archive-head {
  padding-top: min(13%, 220px);
  padding-bottom: min(5.5%, 93px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media screen and (max-width: 768px) {
  .p-archive-head {
    padding-top: 100px;
    padding-bottom: 30px;
  }
}

.p-archive-head__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.p-archive-head__heading {
  font-family: var(--fontFamily-craft);
  font-size: var(--font-size-heading-main);
  letter-spacing: -0.05em;
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.p-archive-head__heading .-particle {
  position: absolute;
  right: 0;
  translate: 50% -50%;
  top: 0;
}
.p-archive-head__subheading {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-archive-head__subheading {
    margin-top: 10px;
    font-size: 16px;
  }
}
}

@layer page{

.p-archive-body {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.p-archive-body__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-archive-body__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 5.3%;
  row-gap: 35px;
}

@media screen and (max-width: 768px) {
  .p-archive-body__list {
    grid-template-columns: 1fr;
    row-gap: 25px;
  }
}

.p-archive-body__item > * {
  width: 100%;
}

.p-archive-body__empty {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.p-archive-body .c-card-article__title {
  font-size: 22px;
  line-height: calc(31 / 22);
}

@media screen and (max-width: 768px) {
  .p-archive-body .c-card-article__title {
    font-size: 16px;
  }
}
}

@layer page{

.p-archive-pagination {
  padding-top: min(11%, 185px);
  padding-bottom: min(11%, 185px);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.p-archive-pagination__inner {
  border-top: 1px solid #3e3a39;
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}
.p-archive-pagination__body {
  padding-top: 50px;
}

@media screen and (max-width: 768px) {
  .p-archive-pagination__body {
    padding-top: 25px;
  }
}

@media screen and (max-width: 768px) {
  .p-archive-pagination {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* ================================================
   c-pagination
   ================================================ */
.c-pagination {
  display: grid;
  justify-items: center;
  row-gap: 30px;
}

@media screen and (max-width: 768px) {
  .c-pagination {
    row-gap: 20px;
  }
}

.c-pagination__counter {
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .c-pagination__counter {
    font-size: 16px;
  }
}

.c-pagination__buttons {
  display: flex;
  column-gap: 70px;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .c-pagination__buttons {
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
  }
}
}

@layer page{

.p-single-post__thumbnail {
  margin-bottom: 65px;
}

@media screen and (max-width: 768px) {
  .p-single-post__thumbnail {
    margin-bottom: 30px;
  }
}

.p-single-post__thumbnail img {
  border-radius: 30px;
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p-single-post__thumbnail img {
    border-radius: 20px;
    max-height: 400px;
  }
}
.p-single-post__heading {
  font-size: 40px;
  line-height: calc(55 / 40);
  letter-spacing: 0.05em;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-single-post__heading {
    font-size: 22px;
  }
}

.p-single-post__body {
  padding-top: 38px;
}

@media screen and (max-width: 768px) {
  .p-single-post__body {
    padding-top: 25px;
  }
}
.p-single-post__pager {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p-single-post__pager {
    margin-top: 25px;
  }
}

.p-single-post__profile {
  margin-top: 125px;
}

@media screen and (max-width: 768px) {
  .p-single-post__profile {
    margin-top: 80px;
  }
}
}

@layer page{

.p-about-body {
  padding-top: 230px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  font-size: 17px;
  line-height: calc(37.5 / 17);
  letter-spacing: 0.05em;
  padding-bottom: min(230px, 11%);
}

@media screen and (max-width: 768px) {
  .p-about-body {
    padding-top: 120px;
    font-size: 16px;
  }
}
.p-about-body__heading {
  font-size: 42px;
  font-weight: 500;
  line-height: calc(75 / 42);
  letter-spacing: 0.01em;
  text-align: center;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-about-body__heading {
    font-size: 24px;
  }
}
.p-about-body__catch {
  font-size: 40px;
  font-weight: 500;
  line-height: calc(55 / 40);
  letter-spacing: 0.05em;
  margin-top: 55px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-about-body__catch {
    font-size: 20px;
    margin-top: 25px;
  }
}

.p-about-body__inner {
  max-width: 775px;
  margin-left: auto;
  margin-right: auto;
}

.p-about-body__embed {
  margin-top: 90px;
  aspect-ratio: 775 / 510;
}

@media screen and (max-width: 768px) {
  .p-about-body__embed {
    margin-top: 25px;
  }
}
.p-about-body__embed iframe {
  width: 100%;
  height: 100%;
}

.p-about-body__text {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p-about-body__text {
    margin-top: 25px;
  }
}

.p-about-body__figure {
  margin-top: 60px;
  display: grid;
  place-items: center;
}

.p-about-body__figure .-img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .p-about-body__figure {
    margin-top: 25px;
  }
}

.p-about-body__subheading {
  margin-top: 60px;
  line-height: calc(39 / 30);
  font-size: 30px;
  letter-spacing: 0.01em;
  display: inline-block;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-color: var(--color-primary);
  text-decoration-thickness: 5px;
  text-underline-offset: 1px;
}

@media screen and (max-width: 768px) {
  .p-about-body__subheading {
    margin-top: 25px;
    font-size: 20px;
  }
}
}

@layer page{

.p-page-body {
  padding-top: 260px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: min(230px, 11%);
}

@media screen and (max-width: 768px) {
  .p-page-body {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
}

@layer page{

.p-page-post__heading {
  font-size: 40px;
  line-height: calc(55 / 40);
  letter-spacing: 0.05em;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-page-post__heading {
    font-size: 22px;
  }
}

.p-page-post__thumbnail {
  margin-top: 65px;
}

@media screen and (max-width: 768px) {
  .p-page-post__thumbnail {
    margin-top: 30px;
  }
}

.p-page-post__thumbnail img {
  border-radius: 30px;
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p-page-post__thumbnail img {
    border-radius: 20px;
    max-height: 400px;
  }
}

.p-page-post__body {
  padding-top: 38px;
}

@media screen and (max-width: 768px) {
  .p-page-post__body {
    padding-top: 25px;
  }
}
}

@layer javascript{
/* JavaScript アニメーション用スタイル */
}

@layer utility{

.u-visually-hidden {
  border: 0 !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.u-hidden {
  display: none !important;
}

.u-overflow-hidden {
  overflow: hidden;
}

.u-clamp-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--line-clamp);
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 768px) {
  .u-md-hidden {
    display: none;
  }
}
.u-md-visible {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-md-visible {
    display: revert;
  }
}
@media screen and (max-width: 1024px) {
  .u-lg-hidden {
    display: none;
  }
}
.u-lg-visible {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-lg-visible {
    display: revert;
  }
}

@media screen and (max-width: 1280px) {
  .u-xl-hidden {
    display: none;
  }
}
.u-xl-visible {
  display: none;
}
@media screen and (max-width: 1280px) {
  .u-xl-visible {
    display: revert;
  }
}
}
