@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

html {
  font-size: 16px;
}
@media screen and (max-width: 939px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 940 * 100vw);
  }
}
@media screen and (max-width: 389px) {
  html {
    font-size: calc(16 / 390 * 100vw);
  }
}

body {
  color: #1a1a1a;
  font-family: "M PLUS 1p", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, system-ui, "Segoe UI", sans-serif, sans-serif;
  background-color: #f9f6f1;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "IBM Plex Sans", "M PLUS 1p", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

[lang=en],
[lang=en-US],
.en-text {
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, system-ui, "Segoe UI", sans-serif;
}

[lang=ja],
.jp-text {
  font-family: "M PLUS 1p", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
}

a {
  text-decoration: none;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: inherit;
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
* {
  border-color: rgba(26, 26, 26, 0.08);
}

ol,
ul,
menu {
  list-style: none;
}

.l-header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #2a2a2a;
  color: #f9f6f1;
  padding: 0.75rem 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .l-header {
    display: none;
  }
}

.l-header.is-hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

.l-header.is-scrolled {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-header__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.l-header__logo::after {
  display: none;
}

.l-header__logo-img {
  width: 2rem;
  height: 2rem;
}

.l-header__logo-text {
  display: flex;
  flex-direction: column;
}

.l-header__title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  color: #f9f6f1;
}

.l-header__subtitle {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(249, 246, 241, 0.6);
}

.l-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.l-header__hamburger:hover {
  background-color: #1a1a1a;
}

.l-header__hamburger-line {
  display: block;
  width: 1.25rem;
  height: 0.125rem;
  background-color: #f9f6f1;
  border-radius: 0.0625rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.l-header__hamburger-line:nth-child(1) {
  transform: translateY(-0.375rem);
}
.l-header__hamburger-line:nth-child(3) {
  transform: translateY(0.375rem);
}

.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.l-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
@media screen and (min-width: 1024px) {
  .l-drawer {
    display: none;
  }
}

.l-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.l-drawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.l-drawer.is-open .l-drawer__overlay {
  opacity: 1;
}

.l-drawer__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 20rem;
  height: 100%;
  background-color: #2a2a2a;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

.l-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.l-drawer__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.l-drawer__logo::after {
  display: none;
}

.l-drawer__logo-img {
  width: 2rem;
  height: 2rem;
}

.l-drawer__logo-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: #f9f6f1;
}

.l-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 12px;
  color: #f9f6f1;
  transition: background-color 0.2s ease;
}
.l-drawer__close:hover {
  background-color: #1a1a1a;
}
.l-drawer__close i {
  font-size: 1.375rem;
}

.l-drawer__menu {
  flex: 1;
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.l-drawer__menu-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  color: #f9f6f1;
  transition: all 0.2s ease;
}
.l-drawer__menu-link::after {
  display: none;
}
.l-drawer__menu-link:hover {
  background-color: #1a1a1a;
}
.l-drawer__menu-link.is-active {
  background-color: #ff5c35;
  color: #ffffff;
}

.l-drawer__menu-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.l-drawer__submenu {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin-top: 0.25rem;
  padding-left: 2rem;
}

.l-drawer__submenu-link {
  display: block;
  width: 100%;
  padding: 0.625rem 0.875rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  transition: all 0.2s ease;
}
.l-drawer__submenu-link::after {
  display: none;
}
.l-drawer__submenu-link:hover {
  color: #f9f6f1;
  background-color: #1a1a1a;
}
.l-drawer__submenu-link.is-active {
  color: #ff5c35;
  font-weight: 500;
}

.l-drawer__footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.l-drawer__stats {
  display: flex;
  gap: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(249, 246, 241, 0.7);
}
.l-drawer__stats span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.l-drawer__stats i {
  font-size: 1rem;
  color: #ff5c35;
}
.l-drawer__stats strong {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  color: #f9f6f1;
}

.l-header-spacer {
  height: 3.5rem;
}
@media screen and (min-width: 1024px) {
  .l-header-spacer {
    display: none;
  }
}

.l-sidebar {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 18rem;
  min-height: 100vh;
  background-color: #2a2a2a;
  padding: 1.5rem;
  z-index: 40;
}
@media screen and (min-width: 1024px) {
  .l-sidebar {
    display: block;
  }
}

.l-sidebar__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.l-sidebar__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 3rem;
}
.l-sidebar__logo::after {
  display: none;
}

.l-sidebar__logo-img {
  width: 2.5rem;
  height: 2.5rem;
}

.l-sidebar__logo-text {
  display: flex;
  flex-direction: column;
}

.l-sidebar__title {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.2;
  color: #f9f6f1;
}

.l-sidebar__nav {
  margin-bottom: 3rem;
}

.l-sidebar__menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.l-sidebar__menu-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  color: #f9f6f1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.l-sidebar__menu-link::after {
  display: none;
}
.l-sidebar__menu-link:hover {
  background-color: #1a1a1a;
  transform: translateX(0.125rem);
}
.l-sidebar__menu-link.is-active {
  background-color: #ff5c35;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.l-sidebar__menu-link.is-active:hover {
  transform: none;
}

.l-sidebar__menu-icon {
  font-size: 1.125rem;
  flex-shrink: 0;
}

.l-sidebar__menu-text {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
}

.l-sidebar__submenu {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin-top: 0.25rem;
  padding-left: 1.875rem;
}

.l-sidebar__submenu-link {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.l-sidebar__submenu-link::after {
  display: none;
}
.l-sidebar__submenu-link:hover {
  color: #f9f6f1;
  background-color: #1a1a1a;
}
.l-sidebar__submenu-link.is-active {
  color: #ff5c35;
  font-weight: 500;
}

.l-sidebar__info {
  margin-top: auto;
  padding: 1.25rem;
  background-color: #1a1a1a;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.l-sidebar__info-text {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #f9f6f1;
}

.l-sidebar__info-footer {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.l-sidebar__info-count {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.l-sidebar__info-stat {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(249, 246, 241, 0.8);
}
.l-sidebar__info-stat i {
  font-size: 0.875rem;
  color: #ff5c35;
}
.l-sidebar__info-stat strong {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  color: #f9f6f1;
}

.l-main {
  min-height: 100vh;
  padding-left: 0;
}
@media screen and (min-width: 1024px) {
  .l-main {
    padding-left: 18rem;
  }
}

.l-main__inner {
  max-width: 70rem;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}
@media screen and (min-width: 1024px) {
  .l-main__inner {
    padding: 4rem 2.5rem;
  }
}

.l-main__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (min-width: 1024px) {
  .l-main__content {
    gap: 5rem;
  }
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 940px;
  height: inherit;
  padding: 0 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 540px;
    padding: 0 1.25rem;
  }
}

.l-inner__narrow {
  max-width: 55.625rem;
}
@media screen and (max-width: 767px) {
  .l-inner__narrow {
    padding: 0 1.25rem;
    max-width: 500px;
  }
}

.l-footer {
  background-color: rgba(255, 248, 231, 0.3);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  padding-left: 0;
  margin-top: 3.125rem;
}
@media screen and (min-width: 1024px) {
  .l-footer {
    padding-left: 18rem;
  }
}

.l-footer__inner {
  max-width: 70rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media screen and (min-width: 1024px) {
  .l-footer__inner {
    padding: 3rem 2.5rem;
  }
}

.l-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .l-footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

.l-footer__heading {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  .l-footer__heading {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1.25rem;
  }
}

.l-footer__text {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.7;
  color: #6b6b6b;
}
@media screen and (min-width: 1024px) {
  .l-footer__text {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.7;
  }
}

.l-footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .l-footer__list {
    gap: 0.625rem;
  }
}

.l-footer__link {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6b6b6b;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 1024px) {
  .l-footer__link {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
  }
}
.l-footer__link::after {
  display: none;
}
.l-footer__link:hover {
  color: #ff5c35;
}

.l-footer__bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .l-footer__bottom {
    padding-top: 1.5rem;
  }
}

.l-footer__copyright {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6b6b6b;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "M PLUS 1p", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  .c-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }
}

.c-btn--primary {
  background-color: #ff5c35;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.c-btn--primary::after {
  display: none;
}
.c-btn--primary:hover {
  background-color: rgba(255, 92, 53, 0.9);
  transform: translateY(-0.125rem);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.c-btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.c-btn--secondary {
  background-color: #ffffff;
  color: #ff5c35;
  border: 2px solid #ff5c35;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.c-btn--secondary::after {
  display: none;
}
.c-btn--secondary:hover {
  background-color: #ff5c35;
  color: #ffffff;
  transform: translateY(-0.125rem);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.c-btn--secondary:active {
  transform: translateY(0);
}

.c-btn--outline {
  background-color: transparent;
  color: #1a1a1a;
  border: 2px solid rgba(26, 26, 26, 0.08);
}
.c-btn--outline::after {
  display: none;
}
.c-btn--outline:hover {
  background-color: rgba(26, 26, 26, 0.05);
  border-color: rgba(26, 26, 26, 0.3);
}

.c-btn--text {
  background-color: transparent;
  color: #ff5c35;
  padding: 0.5rem 1rem;
}
.c-btn--text::after {
  display: none;
}
.c-btn--text:hover {
  background-color: rgba(255, 92, 53, 0.1);
}

.c-btn--small {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.c-btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}
@media screen and (min-width: 1024px) {
  .c-btn--large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
  }
}

.c-btn:disabled,
.c-btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.p-hero {
  position: relative;
  min-height: 37.5rem;
  background: linear-gradient(to bottom right, #ff5c35, #ff5c35, rgba(255, 92, 53, 0.9));
  color: #ffffff;
  border-radius: 40px;
  padding: 3rem;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .p-hero {
    padding: 5rem;
  }
}

.p-hero__bg-circle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  filter: blur(64px);
}

.p-hero__bg-circle--1 {
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  transform: translate(25%, -25%);
}

.p-hero__bg-circle--2 {
  bottom: 0;
  left: 0;
  width: 20rem;
  height: 20rem;
  transform: translate(-25%, 25%);
}

.p-hero__bg-circle--3 {
  top: 50%;
  right: 25%;
  width: 16rem;
  height: 16rem;
}

.p-hero__content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
}

.p-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.p-hero__badge-icon {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

.p-hero__badge-text {
  font-size: 0.875rem;
  color: #ffffff;
}

.p-hero__title {
  font-size: 3rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .p-hero__title {
    font-size: 3.75rem;
  }
}

.p-hero__lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.625;
  margin-bottom: 3rem;
  max-width: 42rem;
}
@media screen and (min-width: 1024px) {
  .p-hero__lead {
    font-size: 1.5rem;
  }
}

.p-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.p-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-hero__btn::after {
  display: none;
}

.p-hero__btn--primary {
  background-color: #ffffff;
  color: #ff5c35;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.p-hero__btn--primary:hover {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}
.p-hero__btn--primary .p-hero__btn-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-hero__btn--primary:hover .p-hero__btn-icon {
  transform: translateX(0.25rem);
}

.p-hero__btn--secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.p-hero__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.p-hero__btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.p-award-categories {
  background-color: #fff8e7;
  border-radius: 40px;
  padding: 3rem;
}
@media screen and (min-width: 1024px) {
  .p-award-categories {
    padding: 4rem;
  }
}

.p-award-categories__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.p-award-categories__header-icon {
  width: 2rem;
  height: 2rem;
  color: #ff5c35;
}

.p-award-categories__title {
  font-size: 1.875rem;
  font-weight: 500;
  color: #1a1a1a;
}

.p-award-categories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-award-categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .p-award-categories__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-award-categories__card {
  position: relative;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 40px;
  border: 2px solid rgba(26, 26, 26, 0.08);
  text-align: left;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-award-categories__card::after {
  display: none;
}
.p-award-categories__card:hover {
  border-color: #ff5c35;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.p-award-categories__card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #ff5c35, rgba(255, 92, 53, 0.8));
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-award-categories__card:hover .p-award-categories__card-bg {
  opacity: 0.05;
}

.p-award-categories__card-content {
  position: relative;
  z-index: 10;
}

.p-award-categories__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 92, 53, 0.1);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-award-categories__card-icon i {
  width: 2rem;
  height: 2rem;
  color: #ff5c35;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-award-categories__card:hover .p-award-categories__card-icon {
  background-color: #ff5c35;
  transform: scale(1.1);
}
.p-award-categories__card:hover .p-award-categories__card-icon i {
  color: #ffffff;
}

.p-award-categories__card-label {
  font-size: 1.25rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.p-award-categories__card-count {
  font-size: 1.125rem;
  color: #6b6b6b;
}

.p-featured-items__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.p-featured-items__header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.p-featured-items__header-icon {
  width: 2rem;
  height: 2rem;
  color: #ff5c35;
}

.p-featured-items__title {
  font-size: 1.875rem;
  font-weight: 500;
  color: #1a1a1a;
}

.p-featured-items__more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff5c35;
  font-size: 1rem;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-featured-items__more::after {
  display: none;
}
.p-featured-items__more:hover {
  color: rgba(255, 92, 53, 0.8);
}

.p-featured-items__more-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.p-featured-items__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 1024px) {
  .p-featured-items__list {
    gap: 1.5rem;
  }
}

.c-featured-item {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(26, 26, 26, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 1024px) {
  .c-featured-item {
    border-radius: 24px;
  }
}

.c-featured-item__inner {
  padding: 1rem;
}
@media screen and (min-width: 1024px) {
  .c-featured-item__inner {
    padding: 1.75rem;
  }
}

.c-featured-item__body {
  display: flex;
  gap: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .c-featured-item__body {
    gap: 1.75rem;
  }
}

.c-featured-item__image-wrap {
  flex-shrink: 0;
  width: 35%;
}
@media screen and (min-width: 1024px) {
  .c-featured-item__image-wrap {
    width: 10rem;
  }
}

.c-featured-item__image {
  display: block;
  width: 100%;
  height: auto;
  background-color: #e8e3dd;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
}
.c-featured-item__image::after {
  display: none;
}
@media screen and (min-width: 1024px) {
  .c-featured-item__image {
    width: 10rem;
    height: 15rem;
    border-radius: 0.375rem;
  }
}
.c-featured-item__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 1024px) {
  .c-featured-item__image img {
    height: 100%;
    object-fit: cover;
  }
}

.c-featured-item__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.c-featured-item__award-label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  color: #ff5c35;
}
@media screen and (min-width: 1024px) {
  .c-featured-item__award-label {
    gap: 0.3125rem;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.4;
  }
}

.c-featured-item__award-label > i {
  font-size: 0.75rem;
}
@media screen and (min-width: 1024px) {
  .c-featured-item__award-label > i {
    font-size: 0.8125rem;
  }
}

.c-featured-item__title {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 1024px) {
  .c-featured-item__title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.375rem;
  }
}
.c-featured-item__title a {
  color: inherit;
}
.c-featured-item__title a::after {
  display: none;
}
.c-featured-item__title a:hover {
  color: #ff5c35;
}

.c-featured-item__author {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  color: #6b6b6b;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 1024px) {
  .c-featured-item__author {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.375rem;
  }
}

.c-featured-item__publisher {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6b6b6b;
}
@media screen and (min-width: 1024px) {
  .c-featured-item__publisher {
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.5;
  }
}

.c-featured-item__summary--pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .c-featured-item__summary--pc {
    display: block;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
  }
}

.c-featured-item__purchase--pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .c-featured-item__purchase--pc {
    display: block;
    margin-top: 1rem;
  }
}

.c-featured-item__footer--sp {
  display: block;
  margin-top: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .c-featured-item__footer--sp {
    display: none;
  }
}

.c-featured-item__summary {
  padding-top: 0.875rem;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  margin-bottom: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .c-featured-item__summary {
    padding-top: 0;
    border-top: none;
    margin-bottom: 0;
  }
}

.c-featured-item__summary-text {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (min-width: 1024px) {
  .c-featured-item__summary-text {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.8;
  }
}

.c-featured-item__purchase-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .c-featured-item__purchase-links {
    justify-content: flex-start;
    gap: 0.5rem;
  }
}

.c-featured-item__purchase-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1.125rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .c-featured-item__purchase-btn {
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
  }
}
.c-featured-item__purchase-btn::after {
  display: none;
}
.c-featured-item__purchase-btn i {
  font-size: 0.875rem;
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .c-featured-item__purchase-btn i {
    font-size: 1rem;
  }
}

.c-featured-item__purchase-btn--amazon {
  background-color: #ffd814;
  color: #111111;
}
.c-featured-item__purchase-btn--amazon:hover {
  background-color: #e68a00;
  transform: translateY(-0.0625rem);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.c-featured-item__purchase-btn--rakuten {
  background-color: #bf0000;
  color: #ffffff;
}
.c-featured-item__purchase-btn--rakuten:hover {
  background-color: #a00000;
  transform: translateY(-0.0625rem);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.c-featured-item__purchase-btn--kinokuniya {
  background-color: #003366;
  color: #ffffff;
}
.c-featured-item__purchase-btn--kinokuniya:hover {
  background-color: #002244;
  transform: translateY(-0.0625rem);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.c-featured-item__purchase-btn--honto {
  background-color: #00a0e9;
  color: #ffffff;
}
.c-featured-item__purchase-btn--honto:hover {
  background-color: #0090d0;
  transform: translateY(-0.0625rem);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.c-featured-item__purchase-btn--tsutaya {
  background-color: #00a652;
  color: #ffffff;
}
.c-featured-item__purchase-btn--tsutaya:hover {
  background-color: #009544;
  transform: translateY(-0.0625rem);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.c-featured-item__purchase-btn--yodobashi {
  background-color: #ff6600;
  color: #ffffff;
}
.c-featured-item__purchase-btn--yodobashi:hover {
  background-color: #e55a00;
  transform: translateY(-0.0625rem);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.c-featured-item__content {
  flex: 1;
  min-width: 0;
}

.c-featured-item__header {
  margin-bottom: 1rem;
}

.c-featured-item__header-text {
  flex: 1;
}

.c-featured-item__meta {
  margin-bottom: 1.25rem;
}

.c-featured-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.c-featured-item__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}

.c-featured-item__tag--primary {
  background-color: #ff5c35;
  color: #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.c-featured-item__tag--accent {
  background-color: #ffe5b4;
  color: #1a1a1a;
}

.c-featured-item__summary-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.c-featured-item__purchase-title {
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.c-featured-item__footer {
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}
@media screen and (min-width: 1024px) {
  .c-featured-item__footer {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-featured-item__footer {
    border-top: none;
  }
}

.c-featured-item__top {
  display: flex;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .c-featured-item__top {
    gap: 1.5rem;
    margin-bottom: 0;
  }
}

.c-featured-item__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-featured-item__bottom {
  width: 100%;
}

.p-cta {
  position: relative;
  background: linear-gradient(to bottom right, #ffe5b4, rgba(255, 229, 180, 0.8), #fff8e7);
  border-radius: 40px;
  padding: 3rem;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .p-cta {
    padding: 5rem;
  }
}

.p-cta__bg-circle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  filter: blur(64px);
}

.p-cta__bg-circle--1 {
  top: 0;
  right: 0;
  width: 18rem;
  height: 18rem;
}

.p-cta__bg-circle--2 {
  bottom: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
}

.p-cta__content {
  position: relative;
  z-index: 10;
}

.p-cta__title {
  font-size: 2.25rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .p-cta__title {
    font-size: 3rem;
  }
}

.p-cta__text {
  font-size: 1.125rem;
  color: #6b6b6b;
  line-height: 1.625;
  margin-bottom: 2.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1024px) {
  .p-cta__text {
    font-size: 1.25rem;
  }
}

.p-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  background-color: #ff5c35;
  color: #ffffff;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 500;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-cta__btn::after {
  display: none;
}
.p-cta__btn:hover {
  background-color: rgba(255, 92, 53, 0.9);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.p-cta__btn-icon {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-cta__btn:hover .p-cta__btn-icon {
  transform: translateX(0.25rem);
}

/* ======================================== 
   受賞作アーカイブページ
======================================== */
.p-awards-archive__header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3.25rem 2rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, #1a0f08 0%, #2d1c10 50%, #1a1208 100%);
  border-top: 3px solid #ff5c35;
  overflow: hidden;
}
.p-awards-archive__header::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 300%;
  background: radial-gradient(ellipse, rgba(255, 92, 53, 0.1) 0%, transparent 65%);
  pointer-events: none;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__header {
    padding: 4.5rem 5rem;
    margin-bottom: 3rem;
    border-top-width: 4px;
  }
}

.p-awards-archive__header-label {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff5c35;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__header-label {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
}

.p-awards-archive__header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255, 92, 53, 0.15);
  border: 1px solid rgba(255, 92, 53, 0.3);
  border-radius: 0.625rem;
  color: #ff5c35;
  flex-shrink: 0;
  font-size: 1.125rem;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__header-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    font-size: 1.375rem;
  }
}

.p-awards-archive__header-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__header-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-awards-archive__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: #f5f0e8;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
  }
}

.p-awards-archive__description {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.65);
  max-width: 35rem;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__description {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.85;
  }
}

.p-awards-archive__appeal {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 2;
  color: rgba(245, 240, 232, 0.82);
  margin-top: 2rem;
  letter-spacing: 0.15em;
  animation: appealReveal 0.7s ease 0.5s both;
}
.p-awards-archive__appeal::before {
  content: "";
  display: block;
  width: 2.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 92, 53, 0.5), transparent);
  margin: 0 auto 1.125rem;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__appeal {
    font-size: 1rem;
    font-weight: 300;
    line-height: 2.1;
    margin-top: 2.5rem;
    letter-spacing: 0.18em;
  }
  .p-awards-archive__appeal::before {
    width: 3rem;
    margin-bottom: 1.375rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-awards-archive__appeal {
    animation: none;
  }
}

@keyframes appealReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* トップページ用ヒーローヘッダー */
.p-awards-archive__header--hero {
  padding: 5rem 2rem;
}
.p-awards-archive__header--hero::after {
  width: 70%;
  background: radial-gradient(ellipse, rgba(255, 92, 53, 0.12) 0%, transparent 65%);
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__header--hero {
    padding: 7.5rem 5rem;
  }
}

.p-awards-archive__header-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__header-title-row {
    gap: 1rem;
    margin-bottom: 0.75rem;
  }
}

.p-awards-archive__header-logo {
  width: 2.5rem;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__header-logo {
    width: 3.5rem;
  }
}

.p-awards-archive__header--hero .p-awards-archive__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  color: #f5f0e8;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__header--hero .p-awards-archive__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
  }
}

.p-awards-archive__catchphrase {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  color: #ff8a68;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__catchphrase {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }
}

.p-awards-archive__header--hero .p-awards-archive__description {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.65);
  max-width: 36.25rem;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__header--hero .p-awards-archive__description {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.85;
  }
}

/* 文学賞カードグリッド */
.p-awards-archive__awards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
}

.p-awards-archive__award-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__award-card {
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
  }
}

.p-awards-archive__award-card:hover {
  border-color: #ff5c35;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-0.125rem);
}

.p-awards-archive__award-card--link {
  text-decoration: none;
  color: inherit;
}

.p-awards-archive__award-card--link::after {
  display: none;
}

.p-awards-archive__award-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: #fff8e7;
  border-radius: 0.5rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
  font-size: 1rem;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__award-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    font-size: 1.25rem;
  }
}

.p-awards-archive__award-card-icon i {
  color: #ff5c35;
}

.p-awards-archive__award-card-content {
  flex: 1;
  min-width: 0;
}

.p-awards-archive__award-card-title {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__award-card-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.375rem;
  }
}

.p-awards-archive__award-card-desc {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6b6b6b;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__award-card-desc {
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0.625rem;
  }
}

.p-awards-archive__award-card-appeal {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  color: #ff5c35;
  margin-top: 0.625rem;
  padding: 0.625rem 0.875rem;
  border-radius: 0.3125rem;
  background: rgba(255, 92, 53, 0.06);
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__award-card-appeal {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.7;
    margin-top: 0.75rem;
    padding: 0.75rem 1.125rem;
  }
}

/* 文学賞ナビゲーション（タクソノミーページ用） */
.p-awards-archive__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__nav {
    gap: 0.625rem;
    margin-bottom: 1.75rem;
  }
}

.p-awards-archive__nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  background: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 3.125rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.2s ease;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__nav-btn {
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.5;
  }
}

.p-awards-archive__nav-btn::after {
  display: none;
}

.p-awards-archive__nav-btn:hover {
  border-color: #ff5c35;
  color: #ff5c35;
}

.p-awards-archive__nav-btn.is-active {
  background: #ff5c35;
  border-color: #ff5c35;
  color: #fff;
}

.p-awards-archive__nav-btn svg,
.p-awards-archive__nav-btn i {
  font-size: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__nav-btn svg,
  .p-awards-archive__nav-btn i {
    font-size: 1rem;
  }
}

/* ソートバー */
.p-awards-archive__sort-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__sort-bar {
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
  }
}

.p-awards-archive__sort-label {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  color: #6b6b6b;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__sort-label {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.5;
  }
}

.p-awards-archive__sort-buttons {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__sort-buttons {
    gap: 0.375rem;
  }
}

.p-awards-archive__sort-btn {
  padding: 0.375rem 0.625rem;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
  color: #6b6b6b;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__sort-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
  }
}

.p-awards-archive__sort-btn:hover {
  color: #ff5c35;
}

.p-awards-archive__sort-btn.is-active {
  color: #ff5c35;
  font-weight: 600;
}

.p-awards-archive__sort-btn.is-active::after {
  content: "";
  position: absolute;
  bottom: -0.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.25rem;
  height: 0.125rem;
  background: #ff5c35;
  border-radius: 0.0625rem;
}

.p-awards-archive__sort-divider {
  color: rgba(26, 26, 26, 0.08);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
}

/* 結果ヘッダー */
.p-awards-archive__results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__results-header {
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
  }
}

.p-awards-archive__results-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__results-title {
    gap: 0.625rem;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
  }
}
.p-awards-archive__results-title i {
  font-size: 1.125rem;
  color: #ff5c35;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__results-title i {
    font-size: 1.25rem;
  }
}

.p-awards-archive__results-count {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
  color: #6b6b6b;
  white-space: nowrap;
  background: #fff8e7;
  padding: 0.25rem 0.75rem;
  border-radius: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__results-count {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    padding: 0.375rem 1rem;
  }
}

/* 受賞作リスト */
.p-awards-archive__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__list {
    gap: 1.5rem;
  }
}

.p-awards-archive__item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.p-awards-archive__item.is-hidden {
  display: none;
}

.p-awards-archive__no-results {
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: #6b6b6b;
}
@media screen and (min-width: 1024px) {
  .p-awards-archive__no-results {
    padding: 3.5rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.6;
  }
}

/* ========================================
   特集記事 アーカイブ
======================================== */
.p-article-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-bottom: 4rem;
}
@media screen and (min-width: 1024px) {
  .p-article-archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-bottom: 5rem;
  }
}

.p-article-archive__card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
@media (hover: hover) {
  .p-article-archive__card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.25rem);
    border-color: rgba(255, 92, 53, 0.3);
  }
}

.p-article-archive__card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e8e3dd;
}
.p-article-archive__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-article-archive__card:hover .p-article-archive__card-img img {
  transform: scale(1.04);
}

.p-article-archive__card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff8e7;
  color: #6b6b6b;
  font-size: 2.5rem;
}

.p-article-archive__card-body {
  flex: 1;
  padding: 1.25rem 1.25rem 1.5rem;
}
@media screen and (min-width: 1024px) {
  .p-article-archive__card-body {
    padding: 1.5rem 1.75rem 1.75rem;
  }
}

.p-article-archive__card-type {
  display: inline-block;
  padding: 0.1875rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.625rem;
}
.p-article-archive__card-type--single {
  background: rgba(255, 92, 53, 0.1);
  color: #ff5c35;
}
.p-article-archive__card-type--nominees {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.p-article-archive__card-type--category {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.p-article-archive__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
  margin: 0 0 0.625rem;
}
@media screen and (min-width: 1024px) {
  .p-article-archive__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
  }
}

.p-article-archive__card-lead {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.75;
  color: #6b6b6b;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .p-article-archive__card-lead {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.75;
  }
}

.p-article-archive__card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.p-article-archive__card-date {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6b6b6b;
}

.p-article-archive__card-sns {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  color: #ff5c35;
  background: rgba(255, 92, 53, 0.08);
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}
.p-article-archive__card-sns i {
  font-size: 0.8125rem;
}

.p-article-archive__empty {
  text-align: center;
  padding: 3.75rem 0;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  color: #6b6b6b;
}

/* ========================================
   特集記事 詳細ページ
======================================== */
.p-article-single__header {
  background: linear-gradient(135deg, #1a0f08 0%, #2d1c10 50%, #1a1208 100%);
  border-top: 3px solid #ff5c35;
  padding: 3.25rem 1.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 1024px) {
  .p-article-single__header {
    padding: 4.5rem 5rem;
    margin-bottom: 3.5rem;
    border-top-width: 4px;
  }
}

.p-article-single__header-inner {
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (min-width: 1024px) {
  .p-article-single__header-inner {
    gap: 3.5rem;
  }
}

.p-article-single__header-text {
  flex: 1;
  min-width: 0;
}

.p-article-single__header-thumbnail {
  flex-shrink: 0;
  width: 11.25rem;
}
@media screen and (min-width: 1024px) {
  .p-article-single__header-thumbnail {
    width: 13.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-article-single__header-thumbnail {
    display: none;
  }
}
.p-article-single__header-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.p-article-single__type {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 92, 53, 0.5);
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.5;
  color: #ff5c35;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.p-article-single__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: #f5f0e8;
  margin: 0 0 1rem;
}
@media screen and (min-width: 1024px) {
  .p-article-single__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.25rem;
  }
}

.p-article-single__lead {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.75);
  max-width: 40rem;
  margin: 0 0 1.5rem;
}
@media screen and (min-width: 1024px) {
  .p-article-single__lead {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.9;
  }
}

.p-article-single__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.p-article-single__date {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(245, 240, 232, 0.5);
}

.p-article-single__sns-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.5;
  color: #ff5c35;
  text-decoration: none;
  background: rgba(255, 92, 53, 0.12);
  border: 1px solid rgba(255, 92, 53, 0.3);
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-article-single__sns-link:hover {
  background: rgba(255, 92, 53, 0.2);
}
.p-article-single__sns-link i {
  font-size: 0.9375rem;
}

/* 本文エリア */
.p-article-single__body {
  max-width: 50rem;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.p-article-single__content {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
  color: #1a1a1a;
  margin-bottom: 3.5rem;
}
.p-article-single__content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 3rem 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(26, 26, 26, 0.08);
  color: #1a1a1a;
}
@media screen and (min-width: 1024px) {
  .p-article-single__content h2 {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.4;
  }
}
.p-article-single__content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 2rem 0 0.75rem;
  color: #1a1a1a;
}
@media screen and (min-width: 1024px) {
  .p-article-single__content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
  }
}
.p-article-single__content p {
  margin: 0 0 1.25rem;
}
.p-article-single__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
}
.p-article-single__content table th, .p-article-single__content table td {
  padding: 0.625rem 0.875rem;
  border: 1px solid rgba(26, 26, 26, 0.08);
  text-align: left;
}
.p-article-single__content table th {
  background: #fff8e7;
  font-weight: 600;
}
.p-article-single__content table tr:nth-child(even) td {
  background: rgba(255, 248, 231, 0.5);
}
.p-article-single__content hr {
  border: none;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  margin: 2.5rem 0;
}

/* SNSバナー */
.p-article-single__sns-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff8e7;
  border: 1px solid rgba(255, 92, 53, 0.2);
  border-radius: 16px;
  margin-top: 2.5rem;
}

.p-article-single__sns-banner-icon {
  font-size: 2rem;
  color: #ff5c35;
  flex-shrink: 0;
}

.p-article-single__sns-banner-label {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  color: #6b6b6b;
  margin: 0 0 0.25rem;
}

.p-article-single__sns-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ff5c35;
  text-decoration: none;
}
.p-article-single__sns-banner-link:hover {
  text-decoration: underline;
}
.p-article-single__sns-banner-link i {
  font-size: 0.875rem;
}

/* 関連受賞作 */
.p-article-single__linked-awards {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 2px solid rgba(26, 26, 26, 0.08);
}

.p-article-single__linked-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
  margin: 0 0 1.5rem;
}
.p-article-single__linked-title i {
  color: #ff5c35;
  font-size: 1.375rem;
}

.p-article-single__linked-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-article-single__award-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 16px;
}
@media screen and (min-width: 1024px) {
  .p-article-single__award-card {
    gap: 1.25rem;
    padding: 1.25rem;
  }
}

.p-article-single__award-thumb {
  width: 4rem;
  height: 5.5rem;
  object-fit: cover;
  border-radius: 0.375rem;
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .p-article-single__award-thumb {
    width: 5rem;
    height: 6.875rem;
  }
}

.p-article-single__award-info {
  flex: 1;
  min-width: 0;
}

.p-article-single__award-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.5;
  color: #ff5c35;
  background: rgba(255, 92, 53, 0.08);
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  margin-bottom: 0.375rem;
}

.p-article-single__award-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.25rem;
}
.p-article-single__award-title a {
  color: #1a1a1a;
  text-decoration: none;
}
.p-article-single__award-title a:hover {
  color: #ff5c35;
}

.p-article-single__award-author {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6b6b6b;
  margin: 0 0 0.5rem;
}

.p-article-single__award-summary {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.7;
  color: #6b6b6b;
  margin: 0 0 0.75rem;
}

.p-article-single__award-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.p-article-single__award-btn {
  display: inline-block;
  padding: 0.3125rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-article-single__award-btn:hover {
  opacity: 0.8;
}
.p-article-single__award-btn--amazon {
  background: #ff9900;
  color: #111;
}
.p-article-single__award-btn--rakuten {
  background: #bf0000;
  color: #fff;
}

/* 戻るリンク */
.p-article-single__back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.p-article-single__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-article-single__back-link:hover {
  color: #ff5c35;
}
.p-article-single__back-link i {
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
.u-font {
  font-family: "M PLUS 1p", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif, "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, system-ui, "Segoe UI", sans-serif, sans-serif;
}
.u-font__jp {
  font-family: "M PLUS 1p", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
}
.u-font__en {
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, system-ui, "Segoe UI", sans-serif;
}

.u-text__center {
  text-align: center !important;
}
@media screen and (max-width: 767px) {
  .u-text__center--sp {
    text-align: center !important;
  }
}
@media screen and (min-width: 768px) {
  .u-text__center--pc {
    text-align: center !important;
  }
}

.u-text__left {
  text-align: left !important;
}
@media screen and (max-width: 767px) {
  .u-text__left--sp {
    text-align: left !important;
  }
}
@media screen and (min-width: 768px) {
  .u-text__left--pc {
    text-align: left !important;
  }
}

.u-text__right {
  text-align: right !important;
}
@media screen and (max-width: 767px) {
  .u-text__right--sp {
    text-align: right !important;
  }
}
@media screen and (min-width: 768px) {
  .u-text__right--pc {
    text-align: right !important;
  }
}

.u-text__nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .u-text__nowrap--sp {
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .u-text__nowrap--pc {
    white-space: nowrap;
  }
}

.u-pointer__none {
  pointer-events: none !important;
}
@media screen and (max-width: 767px) {
  .u-pointer__none--sp {
    pointer-events: none !important;
  }
}
@media screen and (min-width: 768px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}

.u-animation__fadeIn {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.u-animation__fadeIn.js-show {
  opacity: 1;
  transform: translateY(0);
}

.u-animation__fadeIn--immediate {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
.u-animation__fadeIn--immediate.js-show {
  opacity: 1;
}

.u-animation__scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.u-animation__scale.js-show {
  opacity: 1;
  transform: scale(1);
}

.u-animation__slideLeft {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.u-animation__slideLeft.js-show {
  opacity: 1;
  transform: translateX(0);
}

.u-animation__slideRight {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.u-animation__slideRight.js-show {
  opacity: 1;
  transform: translateX(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.u-animation__onLoad {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.u-animation__hoverLift {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .u-animation__hoverLift:hover {
    transform: translateY(-0.25rem);
  }
}

.u-animation__hoverScale {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .u-animation__hoverScale:hover {
    transform: scale(1.02);
  }
}

/*# sourceMappingURL=style.css.map */
