@charset "UTF-8";
:root {
  --color-main: #1a1a1a;
  --color-accent: #6fb1be;
  --color-yellow: #efdc5b;
  --color-white: #fff;
  --color-bg: #fff;
  --color-text: #1a1a1a;
  --font-default:
      "YakuHanJP", "TsukuOldGothicStd-M", "游ゴシック Medium",
      "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3",
      "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
      sans-serif;
  --header-height: 100px;
  --header-height-sp: 70px;
  --container-width: 1200px;
  --container-padding: 20px;
  --font-bold: "TsukuOldGothicStd-B";
  --font-demibold: "TsukuOldGothicStd-D";
  --font-medium: "TsukuOldGothicStd-M";
  --font-regular: "TsukuOldGothicStd-R";
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  word-break: break-all;
}

html {
  font-size: 62.5%;
}

/* HTML5 display-role rese for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

*::selection {
  background: var(--color-accent);
  color: var(--color-white);
}

body {
  background: url(../images/bg.jpg);
  font-size: 1.6rem;
  font-family: var(--font-default);
  line-height: 1.8;
  color: var(--color-text);
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt" 1;
  letter-spacing: 2px;
}
body.nav--shown {
  overflow: hidden;
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--color-accent);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: calc(1280px + 4rem);
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 1024px) {
  .main {
    padding-top: 12rem;
  }
}

.section {
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .section {
    padding: 60px 0;
  }
}
.section--gray {
  background: #f5f5f5;
}
.section--accent {
  background: var(--color-accent);
  color: var(--color-white);
}

.section-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background: var(--color-accent);
  color: var(--color-white);
  text-align: center;
}
.hero__title {
  font-size: 4.8rem;
  font-weight: 900;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: 3.2rem;
  }
}
.hero__text {
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  .hero__text {
    font-size: 1.6rem;
  }
}

.btn {
  display: flex;
  align-items: stretch;
  width: fit-content;
  min-height: 50px;
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease;
  text-align: center;
}
@media (max-width: 1024px) {
  .btn {
    font-size: 1.6rem;
  }
}
.btn::before, .btn::after {
  content: "";
  display: block;
  width: 34px;
  aspect-ratio: 45/76;
}
.btn::before {
  background: url(../images/btn-bg---left--h76.png) left center/auto 100% no-repeat;
}
.btn::after {
  background: url(../images/btn-bg---right--h76.png) right center/auto 100% no-repeat;
}
.btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: url(../images/btn-bg---center--h76.png) center center/auto 100% repeat-x;
  line-height: 1.2;
}
.btn:hover {
  color: var(--color-white);
  animation: btn-rotate 0.6s ease-in-out infinite;
}
.btn--black {
  color: var(--color-white);
}
.btn--black::before, .btn--black::after {
  width: 34px;
  aspect-ratio: 34/46;
}
.btn--black::before {
  background: url(../images/btn-bg---left--black.png) left center/auto 100% no-repeat;
}
.btn--black::after {
  background: url(../images/btn-bg---right--black.png) right center/auto 100% no-repeat;
}
.btn--black span {
  background: url(../images/btn-bg---center--black.png) center center/auto 100% repeat-x;
}
.btn--white {
  color: var(--color-text);
}
.btn--white::before, .btn--white::after {
  width: 34px;
  aspect-ratio: 95/120;
}
.btn--white::before {
  background: url(../images/btn-bg---left--white.png) left center/auto 100% no-repeat;
}
.btn--white::after {
  background: url(../images/btn-bg---right--white.png) right center/auto 100% no-repeat;
}
.btn--white span {
  background: url(../images/btn-bg---center--white.png) center center/auto 100% repeat-x;
}
.btn--white:hover {
  color: var(--color-text);
}

@keyframes btn-rotate {
  0% {
    transform: rotate(1deg);
  }
  49.99% {
    transform: rotate(1deg);
  }
  50% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(-1deg);
  }
}
.vertical-title {
  writing-mode: vertical-rl;
  font-feature-settings: initial;
  font-size: 5.4rem;
  font-family: var(--font-demibold);
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .vertical-title {
    align-self: center;
    font-size: 4rem;
  }
}

.photo-slider {
  position: relative;
  z-index: 5;
  margin-top: -20rem;
  padding-bottom: 10rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .photo-slider {
    padding: 4rem 0;
  }
}
.photo-slider .slick-list {
  overflow: visible;
}
.photo-slider__item {
  width: 300px;
  padding: 0 10px;
}
@media (max-width: 1024px) {
  .photo-slider__item {
    padding: 0 5px;
    width: 40vw;
  }
}
.photo-slider__item:nth-child(odd) {
  transform: rotate(-2deg) translateY(50px);
}
.photo-slider__item:nth-child(even) {
  transform: rotate(2deg);
}
.photo-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: url(../images/slider-mask.svg);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/slider-mask.svg);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
}
.illust {
  animation: illust-rotate 1s ease-in-out infinite;
}
.illust2 {
  animation-delay: 0.5s;
}
@keyframes illust-rotate {
  0% {
    transform: rotate(4deg);
  }
  49.99% {
    transform: rotate(4deg);
  }
  50% {
    transform: rotate(-4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}

.appear {
  transform: translateY(60px) rotate(4deg);
  opacity: 0;
  animation: appear 0.6s linear forwards;
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  32.9% {
    transform: translateY(30px) rotate(2deg);
    opacity: 1;
  }
  33% {
    transform: translateY(30px) rotate(-2deg);
  }
  65.9% {
    transform: translateY(20px) rotate(-2deg);
  }
  66% {
    transform: translateY(20px) rotate(2deg);
  }
  99.9% {
    transform: translateY(10px) rotate(2deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .event-gallery {
    padding: 4rem 0;
  }
}
.event-gallery__item {
  width: 300px;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .event-gallery__item {
    padding: 0 8px;
  }
}
.event-gallery__item img {
  width: 100%;
  height: auto;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
}
.event-gallery__item--mask1 img {
  mask-image: url(../images/slider-mask1.svg);
  -webkit-mask-image: url(../images/slider-mask1.svg);
}
.event-gallery__item--mask2 img {
  mask-image: url(../images/slider-mask2.svg);
  -webkit-mask-image: url(../images/slider-mask2.svg);
}
.event-gallery__item--mask3 img {
  mask-image: url(../images/slider-mask3.svg);
  -webkit-mask-image: url(../images/slider-mask3.svg);
}
.event-gallery__item--mask4 img {
  mask-image: url(../images/slider-mask4.svg);
  -webkit-mask-image: url(../images/slider-mask4.svg);
}

.hr {
  height: 4px;
  margin: 8rem auto;
  background: url(../images/border-hr.svg) center center/auto auto repeat-x;
}
@media (max-width: 1024px) {
  .hr {
    height: 15px;
    margin: 60px auto;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
}
@media (max-width: 1024px) {
  .breadcrumb {
    width: 100%;
    overflow-x: auto;
    white-space: pre;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .breadcrumb::-webkit-scrollbar {
    display: none;
  }
}

.page-anchor {
  position: absolute;
  top: -100px;
  height: 1px;
  visibility: hidden;
}

.noimg {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 4/3;
  width: 100%;
}
.noimg img {
  width: 50% !important;
  height: auto !important;
  aspect-ratio: unset !important;
}

.kakukaku {
  animation: kakukaku-appear 1.2s steps(5, end) forwards;
}

@keyframes kakukaku-appear {
  0% {
    transform: translateY(50px) rotate(-5deg);
  }
  20% {
    transform: translateY(40px) rotate(4deg);
  }
  40% {
    transform: translateY(30px) rotate(-3deg);
  }
  60% {
    transform: translateY(20px) rotate(2deg);
  }
  80% {
    transform: translateY(1px) rotate(1deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
@media (max-width: 1024px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  .nav--shown .header {
    z-index: 3000;
    background: none;
  }
  .header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: -1;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  .nav--shown .header::before {
    opacity: 0;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 30px 50px 0;
}
@media (max-width: 1024px) {
  .header__inner {
    align-items: center;
    padding: 15px 20px 0px;
  }
}
.header__left {
  display: flex;
  gap: 40px;
}
@media (max-width: 1024px) {
  .header__left {
    align-items: center;
    gap: 20px;
  }
  .nav--shown .header__left {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.header__logo {
  flex-shrink: 0;
  width: 200px;
}
@media (max-width: 1024px) {
  .header__logo {
    width: 100px;
  }
}
.header__logo-link {
  display: block;
}
.header__logo-link:hover {
  animation: illust-rotate 1s ease-in-out infinite;
}
.header__logo-img {
  width: 100%;
  height: auto;
}
.header__logo-text {
  margin-top: 20px;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: 1.3px;
}
@media (max-width: 1260px) {
  .header__logo-text {
    display: none;
  }
}
@media (max-width: 1024px) {
  .header__logo-text {
    display: block;
    margin-top: 0;
    font-size: 0.8rem;
    line-height: 1.2;
    letter-spacing: 1px;
  }
}
.header__nav {
  margin: 20px 0 0 auto;
}
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__menu {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1200px) {
  .header__menu {
    gap: 30px;
  }
}
.header__menu-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: var(--font-demibold);
}
.header__menu-link:hover {
  color: var(--color-accent);
}
.header__menu-en {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-main);
}
.header__menu-en span {
  display: inline-block;
}
.header__menu-link:hover .header__menu-en span {
  animation: menu-wave 0.5s steps(1, end);
}
@keyframes menu-wave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
.header__menu-ja {
  font-size: 1.1rem;
  color: var(--color-accent);
  letter-spacing: 0.5px;
}
.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
@media (max-width: 1024px) {
  .header__toggle {
    display: flex;
  }
}
.header__toggle-line {
  width: 24px;
  height: 2px;
  background: var(--color-main);
  transition: all 0.3s ease;
}
.nav--shown .header__toggle .header__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.nav--shown .header__toggle .header__toggle-line:nth-child(2) {
  opacity: 0;
}
.nav--shown .header__toggle .header__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1024px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .sp-only {
    display: flex !important;
  }
}

.footer-cta {
  padding: 8rem 0;
  background: var(--color-yellow);
  text-align: center;
}
@media (max-width: 768px) {
  .footer-cta {
    padding: 5rem 0;
  }
}
.footer-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 768px) {
  .footer-cta__inner {
    gap: 2rem;
  }
}
.footer-cta__button {
  max-width: 600px;
  width: 100%;
  min-height: 120px;
  font-size: 4rem;
  font-family: var(--font-bold);
}
@media (max-width: 768px) {
  .footer-cta__button {
    padding: 1.5rem 4rem;
    font-size: 2rem;
  }
}
.footer-cta__button::before, .footer-cta__button::after {
  width: 95px;
  aspect-ratio: 95/120;
}
.footer-cta__button span {
  width: 100%;
}
.footer-cta__text {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .footer-cta__text {
    font-size: 1.3rem;
  }
  .footer-cta__text br {
    display: none;
  }
}

.footer {
  padding-top: 8rem;
}
.footer__inner {
  display: flex;
  align-items: center;
  padding: 0 5rem;
}
@media (max-width: 1024px) {
  .footer__inner {
    flex-direction: column;
    gap: 3rem;
    padding: 0 3rem;
  }
}
.footer__logo-block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-right: 8rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .footer__logo-block {
    margin-right: 0;
  }
}
.footer__logo {
  display: block;
  width: 315px;
}
@media (max-width: 1024px) {
  .footer__logo {
    width: 100%;
  }
}
.footer__logo-img {
  width: 100%;
  height: auto;
}
.footer__company {
  font-size: 1.2rem;
  line-height: 1.5;
}
.footer__links {
  font-size: 1.2rem;
  font-weight: 700;
}
.footer__links ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.footer__links ul:last-child a {
  color: #737373;
}
.footer__links a {
  text-decoration: underline;
}
.footer__nav {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .footer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 1rem;
    width: 100%;
  }
}
.footer__nav-group:nth-child(1) {
  order: 1;
  margin-right: 3rem;
  padding-right: 5rem;
  border-right: 1px dashed #c3c3c3;
}
@media (max-width: 1024px) {
  .footer__nav-group:nth-child(1) {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
  }
}
.footer__nav-group:nth-child(2) {
  order: 3;
  margin-right: 3rem;
  padding-right: 5rem;
  border-right: 1px dashed #c3c3c3;
}
@media (max-width: 1024px) {
  .footer__nav-group:nth-child(2) {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
  }
}
.footer__nav-group:nth-child(3) {
  order: 2;
}
.footer__nav-group:nth-child(4) {
  order: 4;
}
.footer__nav-title {
  display: block;
  font-size: 2rem;
  font-family: var(--font-bold);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .footer__nav-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
}
.footer__nav-title span {
  font-size: 1.2rem;
  font-family: var(--font-regular);
  color: var(--color-accent);
  margin-left: 0.5rem;
}
@media (max-width: 1024px) {
  .footer__nav-title span {
    margin-left: 0;
    font-size: 1rem;
  }
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 0.5px;
}
.footer__nav-list a {
  display: inline-block;
  transition: color 0.3s ease;
}
.footer__nav-list a:hover {
  color: var(--color-accent);
}
.footer__visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 1rem;
  margin-left: auto;
  padding-top: 5rem;
}
@media (max-width: 1024px) {
  .footer__visual {
    gap: 2rem;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }
}
.footer__visual-text {
  width: auto;
  height: 180px;
}
@media (max-width: 768px) {
  .footer__visual-text {
    width: 60%;
    max-width: 240px;
    height: auto;
  }
}
.footer__visual-illust {
  width: 210px;
  height: auto;
}
@media (max-width: 768px) {
  .footer__visual-illust {
    max-width: 300px;
    width: 60%;
  }
}
.footer__image {
  width: 100%;
  height: 100vh;
  min-height: 950px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .footer__image {
    height: 60vh;
    min-height: 600px;
  }
}
.footer__image-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mask-image: url(../images/footer-mask.png);
  mask-size: 100% auto;
  mask-repeat: no-repeat;
  mask-position: top center;
}
@media (max-width: 1024px) {
  .footer__image-bg {
    mask-size: 300% 100%;
  }
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid var(--color-accent);
  padding-bottom: 5rem;
  background: url(../images/bg.jpg);
  z-index: 2000;
  padding-top: 8rem;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}
.nav--shown .drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.drawer__inner {
  display: flex;
  align-items: center;
  padding: 0 5rem;
}
@media (max-width: 1024px) {
  .drawer__inner {
    flex-direction: column;
    gap: 3rem;
    padding: 0 3rem;
  }
}
.drawer__logo-block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-right: 8rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .drawer__logo-block {
    margin-right: 0;
  }
}
.drawer__logo {
  display: block;
  width: 315px;
}
@media (max-width: 1024px) {
  .drawer__logo {
    width: 100%;
  }
}
.drawer__logo-img {
  width: 100%;
  height: auto;
}
.drawer__company {
  font-size: 1.2rem;
  line-height: 1.5;
}
.drawer__links {
  font-size: 1.2rem;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .drawer__links {
    margin-top: 5rem;
  }
}
.drawer__links ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.drawer__links ul:last-child a {
  color: #737373;
}
.drawer__links a {
  text-decoration: underline;
}
.drawer__nav {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .drawer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 1rem;
    width: 100%;
  }
}
.drawer__nav-group:nth-child(1) {
  order: 1;
  margin-right: 3rem;
  padding-right: 5rem;
  border-right: 1px dashed #c3c3c3;
}
@media (max-width: 1024px) {
  .drawer__nav-group:nth-child(1) {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
  }
}
.drawer__nav-group:nth-child(2) {
  order: 3;
  margin-right: 3rem;
  padding-right: 5rem;
  border-right: 1px dashed #c3c3c3;
}
@media (max-width: 1024px) {
  .drawer__nav-group:nth-child(2) {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
  }
}
.drawer__nav-group:nth-child(3) {
  order: 2;
}
.drawer__nav-group:nth-child(4) {
  order: 4;
}
.drawer__nav-title {
  display: block;
  font-size: 2rem;
  font-family: var(--font-bold);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .drawer__nav-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
}
.drawer__nav-title span {
  font-size: 1.2rem;
  font-family: var(--font-regular);
  color: var(--color-accent);
  margin-left: 0.5rem;
}
@media (max-width: 1024px) {
  .drawer__nav-title span {
    margin-left: 0;
    font-size: 1rem;
  }
}
.drawer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 0.5px;
}
.drawer__nav-list a {
  display: inline-block;
  transition: color 0.3s ease;
}
.drawer__nav-list a:hover {
  color: var(--color-accent);
}
.drawer__visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 1rem;
  margin-left: auto;
  padding-top: 5rem;
}
@media (max-width: 1024px) {
  .drawer__visual {
    gap: 2rem;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }
}
.drawer__visual-text {
  width: auto;
  height: 180px;
}
@media (max-width: 768px) {
  .drawer__visual-text {
    width: 60%;
    max-width: 240px;
    height: auto;
  }
}
.drawer__visual-illust {
  width: 210px;
  height: auto;
}
@media (max-width: 768px) {
  .drawer__visual-illust {
    max-width: 300px;
    width: 60%;
  }
}
.drawer__image {
  width: 100%;
  height: 100vh;
  min-height: 950px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .drawer__image {
    height: 60vh;
    min-height: 600px;
  }
}
.drawer__image-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mask-image: url(../images/footer-mask.png);
  mask-size: 100% auto;
  mask-repeat: no-repeat;
  mask-position: top center;
}
@media (max-width: 1024px) {
  .drawer__image-bg {
    mask-size: 300% 100%;
  }
}

.hero-mv {
  display: flex;
  justify-content: center;
  padding: 0 50px;
}
@media (max-width: 1024px) {
  .hero-mv {
    padding: 4rem 0;
  }
}
.hero-mv__inner {
  position: relative;
  display: grid;
  grid-template-columns: 320px 61.1111111111% 17.3611111111%;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1800px;
  min-width: 1260px;
}
@media (max-width: 1024px) {
  .hero-mv__inner {
    grid-template-columns: 1fr;
    gap: 0;
    min-width: auto;
    padding: 0 20px;
  }
}
.hero-mv__left {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
  gap: 2rem;
  transform: translate(80px, 70px);
}
@media (max-width: 1024px) {
  .hero-mv__left {
    position: relative;
    z-index: 1;
    order: 3;
    align-self: auto;
    transform: none;
    width: 100%;
    margin-top: -23%;
    padding: 0;
  }
}
.hero-mv__contact {
  display: block;
  width: 231px;
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .hero-mv__contact {
    width: 50%;
    margin-bottom: 8%;
  }
}
.hero-mv__contact img {
  width: 100%;
}
.hero-mv__contact:hover {
  transform: rotate(-3deg) scale(1.05);
}
.hero-mv__illust--2 {
  position: relative;
  z-index: 3;
  width: 90px;
  transform: translateX(-50px);
  margin-bottom: -70px;
}
@media (max-width: 1024px) {
  .hero-mv__illust--2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    transform: none;
  }
}
.hero-mv__pickup {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 2rem;
  transform: rotate(-5deg);
  background: #fff6ba;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .hero-mv__pickup {
    transform: rotate(5deg);
    max-width: 350px;
    margin: 0 auto;
  }
}
.hero-mv__pickup-title {
  font-family: "HelveticaNeueLTPro-Bd", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1024px) {
  .hero-mv__pickup-title {
    font-size: 2rem;
  }
}
.hero-mv__pickup-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: var(--color-white);
}
.hero-mv__pickup-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
}
.hero-mv__pickup-info {
  display: flex;
  flex-direction: column;
}
.hero-mv__pickup-date {
  font-family: "HelveticaNeueLTPro-Md", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  opacity: 0.5;
  letter-spacing: 0;
}
.hero-mv__pickup-text {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 1px;
}
.hero-mv__pickup .btn {
  align-self: center;
  min-height: 30px;
  font-size: 1.2rem;
  font-family: "HelveticaNeueLTPro-Md", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.hero-mv__pickup .btn::before, .hero-mv__pickup .btn::after {
  content: "";
  width: 30px;
}
.hero-mv__pickup .btn span {
  line-height: 1;
  padding: 0;
}
.hero-mv__photo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .hero-mv__photo {
    order: 1;
  }
}
.hero-mv__photo-img {
  position: relative;
  width: 100%;
  mask-image: url(../images/mask-elem1.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url(../images/mask-elem1.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  aspect-ratio: 86/65;
}
.hero-mv__photo-img-item {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 12s ease-in-out infinite;
}
.hero-mv__photo-img-item:nth-child(1) {
  animation-delay: 0s;
}
.hero-mv__photo-img-item:nth-child(2) {
  animation-delay: 3s;
}
.hero-mv__photo-img-item:nth-child(3) {
  animation-delay: 6s;
}
.hero-mv__photo-img-item:nth-child(4) {
  animation-delay: 9s;
}
@keyframes heroFade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  38.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.hero-mv__right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  transform: translateX(-80px);
}
@media (max-width: 1024px) {
  .hero-mv__right {
    position: relative;
    z-index: 3;
    order: 2;
    width: 100%;
    margin: -120px 0 0 auto;
    transform: none;
  }
}
.hero-mv__illust--1 {
  width: 160px;
  margin: 10px 0 60px auto;
}
@media (max-width: 1024px) {
  .hero-mv__illust--1 {
    position: absolute;
    right: 0;
    top: -100%;
    width: 120px;
  }
}
.hero-mv__text {
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .hero-mv__text {
    width: 40%;
  }
}
.hero-mv__illust--3 {
  position: absolute;
  top: 100%;
  right: 100%;
  width: 170px;
}
@media (max-width: 1024px) {
  .hero-mv__illust--3 {
    top: 100%;
    right: 0;
    width: 100px;
  }
}

.home-news {
  margin-top: 10vw;
  padding: 6rem 0;
  background: url(../images/grid-background.jpg) center center;
}
@media (max-width: 1024px) {
  .home-news {
    padding: 4rem 0;
  }
}
.home-news__inner {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 6rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .home-news__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.home-news__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 1024px) {
  .home-news__head {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
  }
}
.home-news__title {
  font-size: 5rem;
  line-height: 1;
  font-family: var(--font-bold);
}
@media (max-width: 1024px) {
  .home-news__title {
    font-size: 4rem;
  }
}
.home-news__subtitle {
  font-size: 1.2rem;
}
@media (max-width: 1024px) {
  .home-news__subtitle {
    font-size: 1.3rem;
  }
}
.home-news .btn {
  min-height: 30px;
  font-size: 1.6rem;
}
.home-news .btn span {
  padding: 0;
}
@media (max-width: 1024px) {
  .home-news .btn {
    margin-left: auto;
  }
}
.home-news__list {
  display: flex;
  flex-direction: column;
}
.home-news__link {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 2px dashed #ccc;
}
@media (max-width: 1024px) {
  .home-news__link {
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    padding: 1.2rem 0;
  }
}
.home-news__date {
  font-size: 1.4rem;
  color: #666;
}
@media (max-width: 1024px) {
  .home-news__date {
    font-size: 1.3rem;
  }
}
.home-news__text {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .home-news__text {
    font-size: 1.4rem;
  }
}

.home-about {
  position: relative;
  padding: 8rem 0 10rem;
  color: var(--color-text);
}
@media (max-width: 1024px) {
  .home-about {
    padding: 4rem 0 6rem;
  }
}
.home-about::before {
  content: "";
  display: block;
  width: 100%;
  background: url(../images/bg--mountain--lightblue.png) bottom center no-repeat;
  background-size: 100% auto;
  aspect-ratio: 1440/272;
}
.home-about__img1 {
  position: absolute;
  right: 30px;
  top: 10%;
  width: 18.8888888889%;
  max-width: 300px;
}
@media (max-width: 1024px) {
  .home-about__img1 {
    top: 0;
    width: 30%;
    max-width: 240px;
  }
}
.home-about__inner {
  padding: 3rem 0 calc(8vw + 40rem);
  background-color: #f0f4f4;
}
@media (max-width: 1024px) {
  .home-about__inner {
    padding-bottom: calc(12vw + 55rem);
  }
}
.home-about__content {
  display: flex;
  justify-content: center;
  gap: 3rem 6rem;
  margin-bottom: 8rem;
}
@media (max-width: 1024px) {
  .home-about__content {
    flex-direction: column;
    gap: 2rem;
  }
}
.home-about__title {
  font-size: 5rem;
  line-height: 1.3;
  font-family: var(--font-demibold);
}
@media (max-width: 1024px) {
  .home-about__title {
    grid-column: auto;
    grid-row: auto;
  }
}
.home-about__text {
  font-size: 1.9rem;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .home-about__text {
    font-size: 1.6rem;
  }
}
.home-about .btn {
  margin: auto;
}
.home-about__img2 {
  position: absolute;
  left: 30px;
  bottom: 30%;
  width: 26.7361111111%;
  max-width: 385px;
}
@media (max-width: 1024px) {
  .home-about__img2 {
    bottom: 40%;
  }
}
.home-about__img--2 {
  position: relative;
  width: 35%;
  max-width: 450px;
}
.home-about__illust {
  position: absolute;
  bottom: 450px;
  left: 330px;
  width: 120px;
}
@media (max-width: 1024px) {
  .home-about__illust {
    left: auto;
    right: 30px;
    bottom: 300px;
    width: 100px;
  }
}

.home-event-project {
  position: relative;
  margin-top: -45rem;
}
.home-event-project::before {
  content: "";
  display: block;
  width: 100%;
  background: url(../images/bg-mountain--blue.png) top center no-repeat;
  background-size: 100% auto;
  aspect-ratio: 1440/433;
}
@media (max-width: 1024px) {
  .home-event-project::before {
    background-size: 200% auto;
  }
}
.home-event-project__illust1 {
  position: absolute;
  top: -260px;
  right: 40px;
  width: 110px;
  z-index: 3;
}
@media (max-width: 1024px) {
  .home-event-project__illust1 {
    top: -180px;
  }
}
.home-event-project__img1 {
  position: absolute;
  top: -150px;
  right: 0;
  width: 36.7361111111%;
  max-width: 529px;
  aspect-ratio: 529/603;
}
@media (max-width: 1024px) {
  .home-event-project__img1 {
    z-index: 5;
    top: -11vw;
    width: 70vw;
    max-width: 440px;
  }
}
.home-event-project__inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 5rem 40rem;
  background-color: #e4ecec;
}
@media (max-width: 1024px) {
  .home-event-project__inner {
    padding: 40vw 2rem 60vw;
  }
}
.home-event-project__illust2 {
  position: absolute;
  top: 40px;
  left: 70px;
  width: 95px;
}
@media (max-width: 1024px) {
  .home-event-project__illust2 {
    left: 0;
    width: 70px;
  }
}
.home-event-project__illust3 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 95px;
  z-index: 10;
}
.home-event-project__head {
  text-align: center;
  margin-bottom: 7rem;
}
@media (max-width: 1024px) {
  .home-event-project__head {
    margin-bottom: 3rem;
  }
}
.home-event-project__title {
  font-size: 5.8rem;
  font-family: var(--font-bold);
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) {
  .home-event-project__title {
    font-size: 5rem;
  }
}
.home-event-project__subtitle {
  margin-top: 1rem;
  font-size: 1.6rem;
  color: var(--color-accent);
}
@media (max-width: 1024px) {
  .home-event-project__subtitle {
    font-size: 1.3rem;
  }
}
.home-event-project__cards {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15rem 1rem;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .home-event-project__cards {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}
.home-event-project__card {
  display: flex;
  flex-direction: column;
  width: 30%;
  gap: 1.5rem;
  padding: 2.5rem;
  background: var(--color-white);
  border-radius: 30px;
  border: 1px solid #e4ecec;
}
@media (max-width: 1024px) {
  .home-event-project__card {
    width: 100%;
    padding: 1.5rem;
  }
}
.home-event-project__card:nth-child(3n+1) {
  transform: rotate(-3deg) translateY(70px);
}
.home-event-project__card:nth-child(3n) {
  transform: rotate(3deg) translateY(140px);
}
@media (max-width: 1024px) {
  .home-event-project__card:nth-child(odd) {
    transform: rotate(-2deg) translateY(0);
  }
}
@media (max-width: 1024px) {
  .home-event-project__card:nth-child(even) {
    transform: rotate(2deg) translateY(0);
  }
}
.home-event-project__card:nth-child(4) {
  transform: rotate(-3deg) translateY(0px);
}
.home-event-project__card:nth-child(5) {
  transform: rotate(3deg) translateY(0px);
}
.home-event-project__card-img {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 5/3;
  width: 100%;
  max-height: 280px;
  padding: 2rem;
  border-radius: 10px;
  background: #f7f7f7;
  text-align: center;
}
.home-event-project__card-img img {
  display: block;
  width: 50%;
  object-fit: contain;
}
.home-event-project__card-title {
  font-size: 2.8rem;
  font-family: var(--font-demibold);
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 1024px) {
  .home-event-project__card-title {
    font-size: 2.4rem;
  }
}
.home-event-project__card-text {
  font-size: 1.4rem;
  line-height: 1.8;
}
.home-event-project__card .btn-more {
  align-self: center;
}
.home-event-project__event {
  position: relative;
}
@media (max-width: 1024px) {
  .home-event-project__event .home-event-project__cards {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}
.home-event-project__event .home-event-project__card {
  width: 48%;
  padding: 4rem;
}
@media (max-width: 1024px) {
  .home-event-project__event .home-event-project__card {
    width: 100%;
    padding: 2rem;
  }
}
.home-event-project__event .home-event-project__card:nth-child(1) {
  transform: rotate(-3deg) translateY(0);
}
.home-event-project__event .home-event-project__card:nth-child(2) {
  transform: rotate(3deg) translateY(50px);
}
@media (max-width: 1024px) {
  .home-event-project__event .home-event-project__card:nth-child(odd) {
    transform: rotate(-1deg) translateY(0);
  }
}
@media (max-width: 1024px) {
  .home-event-project__event .home-event-project__card:nth-child(even) {
    transform: rotate(1deg) translateY(0);
  }
}
.home-event-project__event .home-event-project__card-title {
  font-size: 3.2rem;
}
@media (max-width: 1024px) {
  .home-event-project__event .home-event-project__card-title {
    font-size: 2.4rem;
  }
}
.home-event-project__event .home-event-project__card-img {
  max-height: 440px;
}
@media (max-width: 1024px) {
  .home-event-project__event .home-event-project__card-img img {
    max-height: 200px;
  }
}
.home-event-project__event .home-event-project__card-text {
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  .home-event-project__event .home-event-project__card-text {
    font-size: 1.4rem;
  }
}
.home-event-project__project {
  position: relative;
  margin-top: 20rem;
  margin-top: 20rem;
}
@media (max-width: 1024px) {
  .home-event-project__project {
    margin-top: 60vw;
    padding-top: 60vw;
  }
}
.home-event-project__img2 {
  position: absolute;
  z-index: 1;
  top: -260px;
  left: -50px;
  width: 33.125%;
  max-width: 477px;
}
@media (max-width: 1024px) {
  .home-event-project__img2 {
    z-index: 5;
    top: -240px;
    left: -20px;
    width: 70vw;
    max-width: 400px;
  }
}

.home-slider {
  position: relative;
  z-index: 2;
  margin-top: -20rem;
}
@media (max-width: 1024px) {
  .home-slider {
    margin-top: -50vw;
  }
}

.home-history {
  position: relative;
  padding: 34rem 0 14rem;
  background-image: url(../images/home-history-img.png);
  background-position: right 20%;
  background-size: 50% auto;
  background-repeat: no-repeat;
}
@media (min-width: 1620px) {
  .home-history {
    background-position: right top;
    background-size: 980px auto;
  }
}
@media (max-width: 1024px) {
  .home-history {
    padding: 74vw 0 6rem;
    background-image: url(../images/home-history-img.png);
    background-size: 70% auto;
    background-position: right 0;
  }
}
.home-history__inner {
  position: relative;
  z-index: 2;
}
.home-history__head {
  position: relative;
  width: fit-content;
  margin-bottom: 7rem;
}
@media (max-width: 1024px) {
  .home-history__head {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.home-history__illust {
  position: absolute;
  top: -40px;
  left: calc(100% + 80px);
  z-index: 3;
  width: 100px;
}
@media (max-width: 1024px) {
  .home-history__illust {
    top: 5%;
    left: auto;
    right: 0;
  }
}
.home-history__title {
  font-size: 5.8rem;
  font-family: var(--font-bold);
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .home-history__title {
    font-size: 5rem;
  }
}
.home-history__subtitle {
  margin-top: 1rem;
  font-size: 1.4rem;
  color: var(--color-accent);
}
@media (max-width: 1024px) {
  .home-history__subtitle {
    font-size: 1.3rem;
  }
}
.home-history__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  gap: 5rem;
}
@media (max-width: 1024px) {
  .home-history__cards {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
  }
}
.home-history__card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 380/285;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 10px;
  transition: background 0.3s ease;
}
.home-history__card img {
  display: block;
  border-radius: 4px;
}
.home-history__card:nth-child(1) {
  margin-top: 0;
}
@media (max-width: 1024px) {
  .home-history__card:nth-child(1) {
    margin-top: 0;
  }
}
.home-history__card:nth-child(2) {
  margin-top: 5rem;
}
@media (max-width: 1024px) {
  .home-history__card:nth-child(2) {
    margin-top: 0;
  }
}
.home-history__card:nth-child(3) {
  margin-top: 10rem;
}
@media (max-width: 1024px) {
  .home-history__card:nth-child(3) {
    margin-top: 0;
  }
}
.home-history__card-title {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: fit-content;
  padding: 1rem 2rem;
  background: var(--color-white);
  border-radius: 4px 0 4px 0;
  font-size: 2.2rem;
  font-weight: 700;
}
.home-history__content {
  max-width: 500px;
}
@media (max-width: 1024px) {
  .home-history__content {
    max-width: 100%;
  }
}
.home-history__text {
  margin: -4rem 0 3rem;
  line-height: 1.5;
  letter-spacing: 0.5px;
}
@media (max-width: 1024px) {
  .home-history__text {
    font-size: 1.4rem;
  }
  .home-history__text br {
    display: none;
  }
}

.home-partners {
  padding: 15rem 0;
  background-color: #f8f8f8;
}
@media (max-width: 1024px) {
  .home-partners {
    padding: 7rem 0;
  }
}
.home-partners__inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .home-partners__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.home-partners__logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 1024px) {
  .home-partners__logos {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.home-partners__logo {
  display: flex;
  align-items: center;
}
.home-partners__logo img {
  max-width: 100%;
  height: auto;
  max-height: 50px;
}
@media (max-width: 1024px) {
  .home-partners__logo img {
    max-height: 60px;
  }
}
.home-partners__content {
  text-align: center;
}
@media (max-width: 1024px) {
  .home-partners__content {
    order: -1;
  }
}
.home-partners__title {
  font-size: 4rem;
  font-family: var(--font-bold);
  line-height: 1;
}
@media (max-width: 1024px) {
  .home-partners__title {
    font-size: 4rem;
  }
}
.home-partners__subtitle {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #666;
}
@media (max-width: 1024px) {
  .home-partners__subtitle {
    font-size: 1.3rem;
  }
}
.home-partners__text {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 1.8;
}
@media (max-width: 1024px) {
  .home-partners__text {
    font-size: 1.3rem;
  }
}

.fixed-back {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  border: 2px solid var(--color-black);
  background: var(--color-white);
  box-shadow: 0 2px 0 var(--color-black);
  border-radius: 50%;
  transition: all 0.6s ease;
}
@media (max-width: 1024px) {
  .fixed-back {
    bottom: 15px;
    right: 5px;
    width: 50px;
    height: 50px;
  }
}
.fixed-back:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--color-black);
}
.fixed-back:active {
  transform: translateY(1px);
}
.fixed-back:before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 15%, 0% 100%, 100% 100%);
  background: #e32769;
  width: 20px;
  height: 20px;
}
.fixed-contact {
  position: fixed;
  top: 35%;
  right: 0;
  gap: 1rem;
  align-items: center;
  padding: 25px 10px;
  border: 2px solid var(--color-black);
  border-right: none;
  border-radius: 20px 0 0 20px;
  background-color: var(--color-white);
  box-shadow: 0 2px 0 var(--color-black);
  font-weight: 900;
  writing-mode: vertical-rl;
  text-orientation: upright; /* すべて縦方向に表示 */
  font-feature-settings: initial;
}
@media (max-width: 1024px) {
  .fixed-contact {
    top: auto;
    bottom: 10px;
    right: auto;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 75px);
    height: 60px;
    padding: 0;
    border-radius: 10px;
    border-right: 2px solid var(--color-black);
    background: #ffe100;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    text-align: center;
    font-size: 1.8rem;
  }
}
.fixed-contact img {
  margin-bottom: 10px;
  border-radius: 0;
}
@media (max-width: 1024px) {
  .fixed-contact img {
    margin: 0 10px 0 0;
    vertical-align: middle;
  }
}
.fixed-contact:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--color-black);
  background: #ffe100;
}
.fixed-contact:active {
  transform: translateY(1px);
}
.fixed-text {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.fixed-text p {
  white-space: nowrap;
  margin-top: 10%;
  font-size: 26rem;
  font-family: var(--font-redonda);
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-black);
  opacity: 0.03;
  animation: marquee 300s linear infinite;
}
@media (max-width: 1024px) {
  .fixed-text p {
    font-size: 12rem;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.gallery {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.gallery .post-item {
  width: 100%;
}
.gallery .post-link {
  display: block;
  padding-bottom: 0;
  border-bottom: none;
}
.gallery .post-image img {
  margin-top: 0;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.dot {
  position: relative;
}
.dot::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-main);
}
@media (max-width: 1024px) {
  .dot::before {
    top: -2px;
    width: 6px;
    height: 6px;
  }
}

.contact-form dl {
  display: grid;
  grid-template-columns: 240px 1fr;
  padding: 30px 0;
  border-top: 1px solid rgba(29, 28, 26, 0.1);
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .contact-form dl {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.contact-form dl:first-child {
  border-top: none;
}
.contact-form dt {
  align-self: center;
  font-weight: 900;
}
.contact-form dd span {
  display: block;
  margin-top: 5px;
  font-size: 1.3rem;
}
.contact-form [name=postal_code] {
  width: 180px;
}
@media (max-width: 1024px) {
  .contact-form [name=postal_code] {
    width: 100%;
  }
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid var(--color-black);
  border-radius: 10px;
  padding: 15px;
  background: var(--color-white);
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  .contact-form dl:has([required]) dt {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.contact-form dl:has([required]) dt:after {
  content: "必須";
  margin-left: 10px;
  padding: 2px 10px;
  border-radius: 5px;
  background: #e32769;
  color: var(--color-white);
  font-size: 1.4rem;
  line-height: 1;
}
@media (max-width: 1024px) {
  .contact-form dl:has([required]) dt:after {
    padding: 3px 10px;
  }
}
.contact-form .button {
  max-width: 400px;
  width: 100%;
  height: 70px;
  margin: 5rem auto 0;
  font-size: 3rem;
}

.wp-pagenavi {
  margin-top: 8rem;
  text-align: center;
}

.page-head {
  padding: 9.5rem 0 6rem;
}
@media (max-width: 1024px) {
  .page-head {
    padding: 6rem 0 4rem;
  }
}
.page-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.page-tags li a {
  font-size: 1.2rem;
}
.page-content {
  flex: none;
  max-width: 745px;
  margin-left: auto;
  margin-bottom: 20rem;
  font-size: 1.6rem;
  font-family: var(--font-regular);
  line-height: 2;
}
@media (max-width: 1024px) {
  .page-content {
    width: 100%;
    margin-left: 0;
    font-size: 1.4rem;
  }
}
.page-content .page-content__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 6rem;
}
.page-content .page-content__links a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.2;
  padding: 8px 20px 7px;
  border-radius: 1000px;
  border: 2px solid var(--color-black);
  background: #ffe100;
  box-shadow: 0 2px 0 var(--color-black);
  line-height: 1;
}
.page-content .page-content__links a:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--color-black);
}
.page-content .page-content__links a:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 var(--color-black);
}
.page-content h1 {
  font-size: 4rem;
  font-family: var(--font-bold);
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .page-content h1 {
    font-size: 3.2rem;
  }
}
.page-content h1 + * {
  margin-top: 4rem;
}
.page-content h2 {
  padding-bottom: 1rem;
  background: url(../images/border-bottom.svg) left bottom repeat-x;
  font-size: 3.4rem;
  font-family: var(--font-demibold);
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .page-content h2 {
    font-size: 2.4rem;
  }
}
.page-content h2 + * {
  margin-top: 4rem;
}
.page-content * + h2 {
  margin-top: 5rem;
}
.page-content h3 {
  display: grid;
  grid-template-columns: 33px 1fr;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .page-content h3 {
    font-size: 2.2rem;
  }
}
.page-content h3:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin-top: 10px;
  background: #0061b6;
}
.page-content h3 + *:not(.simulator__pallets) {
  margin-top: 3.4rem;
}
.page-content * + h3 {
  margin-top: 2.6rem;
}
.page-content h4 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .page-content h4 {
    font-size: 2rem;
  }
}
.page-content h4 + * {
  margin-top: 3rem;
}
.page-content * + h4 {
  margin-top: 2.2rem;
}
.page-content h5 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.3;
}
.page-content h5 + * {
  margin-top: 3rem;
}
.page-content * + h4 {
  margin-top: 1.8rem;
}
.page-content img,
.page-content .noimg {
  display: flex;
  width: 100%;
}
.page-content img + *,
.page-content .noimg + * {
  margin-top: 2.4rem;
}
.page-content * + img,
.page-content .noimg {
  margin-top: 2.4rem;
}
.page-content * + p {
  margin-top: 3rem;
}
.page-content a:not([class]):not(.page-content__links a) {
  color: #0061b6;
  text-decoration: underline;
}
.page-content a:not([class]):not(.page-content__links a):hover {
  text-decoration: none;
}
.page-content .wp-block-embed.is-type-video {
  width: 100%;
  aspect-ratio: 16/9;
}
.page-content .wp-block-embed.is-type-video .wp-block-embed__wrapper,
.page-content .wp-block-embed.is-type-video iframe {
  width: 100%;
  height: 100%;
}
.page-content * + .wp-block-columns,
.page-content * + .wp-block-image {
  margin-top: 2.4rem;
}
.page-content * + .wp-block-columns img,
.page-content * + .wp-block-image img {
  margin-top: 0;
}
.page-content .wp-block-image a {
  width: 100%;
}
.page-content .page-content__links {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 2.4rem;
}
@media (max-width: 1024px) {
  .page-content .page-content__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
@media (max-width: 1024px) {
  .page-content .page-content__links a {
    width: 100%;
    padding: 8px 10px 7px;
    font-size: 1.6rem;
  }
}
.page-content iframe {
  width: 100%;
  margin-top: 5rem;
}
.page-content-footer {
  margin-top: 10rem;
}
.page-content-footer__links {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 8rem;
}

.page-container:has(.page-event) .breadcrumb {
  position: absolute;
  top: 20vw;
  right: -50px;
  text-orientation: sideways;
  writing-mode: vertical-rl;
}
@media (max-width: 1024px) {
  .page-container:has(.page-event) .breadcrumb {
    position: static;
    writing-mode: horizontal-tb;
    width: 100%;
  }
}

.page-event {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 6rem;
  gap: 5rem;
}
@media (max-width: 1024px) {
  .page-event {
    flex-direction: column;
  }
}
.page-summary {
  position: sticky;
  top: 10rem;
  margin-bottom: 20rem;
  padding-top: 8rem;
  z-index: 10;
}
@media (max-width: 1024px) {
  .page-summary {
    position: static;
    margin-bottom: 5rem;
    padding-top: 0;
  }
}
.page-summary__buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
}
.page-summary__button {
  height: 56px;
  font-size: 1.6rem;
}
.page-summary__button span {
  padding: 0;
}
.page-summary__button:before, .page-summary__button:after {
  width: 32px;
}
.page-summary__button img {
  height: 60px;
}
.page-details {
  padding: 2rem 0;
  border-top: 1px dashed #959595;
}
.page-details__title {
  font-size: 1.8rem;
  font-family: var(--font-demibold);
  line-height: 1.6;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .page-details__title {
    font-size: 2.4rem;
  }
}
.page-details__content {
  font-family: var(--font-regular);
  font-size: 1.4rem;
  line-height: 1.5;
  white-space: pre-wrap;
}
.page-image {
  width: 100%;
  margin-bottom: 5rem;
}
.page-image img {
  border-radius: 20px;
}
.page-gallery {
  width: 100%;
  margin-bottom: 5rem;
}
.page-gallery .slick-slide {
  width: 300px;
}

.title-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 5rem;
  line-height: 1.2;
}

.title-jp {
  font-size: 5.2rem;
  font-family: var(--font-demibold);
}
@media (max-width: 1024px) {
  .title-jp {
    font-size: 4rem;
  }
}

.title-en {
  font-size: 1.8rem;
  font-family: var(--font-demibold);
  color: var(--color-accent);
}
@media (max-width: 1024px) {
  .title-en {
    font-size: 1.4rem;
  }
}

.title-en--big {
  font-size: 5.2rem;
  font-family: var(--font-bold);
}
@media (max-width: 1024px) {
  .title-en--big {
    font-size: 4rem;
  }
}

.title-jp--small {
  font-size: 1.4rem;
  font-family: var(--font-demibold);
  color: var(--color-accent);
}
@media (max-width: 1024px) {
  .title-jp--small {
    font-size: 1.2rem;
  }
}

.page-mv {
  position: relative;
  max-width: 1920px;
  margin: 0 auto 10rem;
  padding: 5rem 5rem 0;
}
@media (max-width: 1024px) {
  .page-mv {
    padding: 4rem 2rem 0;
  }
}
.page-mv .breadcrumb {
  position: absolute;
  top: 50%;
  right: 20px;
  text-orientation: sideways;
  writing-mode: vertical-rl;
  font-feature-settings: initial;
  z-index: 10;
}
@media (max-width: 1024px) {
  .page-mv .breadcrumb {
    right: 0px;
    bottom: auto;
    top: 50%;
    width: auto;
    transform: translateY(-50%);
    font-size: 1rem;
  }
}
.page-mv .breadcrumb a {
  color: var(--color-text);
  text-decoration: none;
}
.page-mv .breadcrumb a:hover {
  text-decoration: underline;
}
.page-mv .breadcrumb span {
  color: var(--color-text);
}

.about-mv__photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .about-mv__photo {
    flex-direction: column;
  }
}
.about-mv__img img {
  width: 100%;
  height: auto;
  display: block;
}
.about-mv__img--2 {
  margin-right: -80px;
}
@media (max-width: 1024px) {
  .about-mv__img--2 {
    position: relative;
    z-index: 2;
    width: 50%;
    margin: -80px 0 -100px auto;
  }
}
@media (max-width: 1024px) {
  .about-mv__img--3 {
    width: 60%;
  }
}
.about-mv__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  max-width: 1440px;
  margin: -2rem auto 0;
  padding: 0 5rem;
}
@media (max-width: 1260px) {
  .about-mv__bottom {
    flex-direction: column;
    gap: 0;
    align-items: center;
    margin-top: 2rem;
    padding: 0 1rem;
  }
}
.about-mv__title {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 1024px) {
  .about-mv__title {
    order: 1;
  }
}
.about-mv__title-ja {
  font-size: clamp(4rem, 7vw, 5rem);
  font-family: var(--font-demibold);
  color: var(--color-text);
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .about-mv__title-ja {
    font-size: clamp(5rem, 7vw, 6rem);
    line-height: 1.2;
  }
}
.about-mv__title-en {
  font-size: 1.8rem;
  font-family: var(--font-demibold);
  color: var(--color-accent);
  letter-spacing: 0.1em;
}
.about-mv__logo {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: auto;
  transform: rotate(5deg);
}
@media (max-width: 1024px) {
  .about-mv__logo {
    top: 30px;
    right: 20px;
  }
}
.about-mv__illust {
  flex: none;
  width: 270px;
}
@media (max-width: 1024px) {
  .about-mv__illust {
    order: 3;
    width: 70%;
    max-width: 200px;
    margin: 30px auto 0;
  }
}
.about-mv__contact {
  flex: 1;
}
@media (max-width: 1024px) {
  .about-mv__contact {
    order: 2;
    width: 100%;
    text-align: center;
  }
}
.about-mv__contact img {
  width: 100%;
  height: auto;
  transform: rotate(-5deg);
}
@media (max-width: 1024px) {
  .about-mv__contact img {
    width: 90%;
  }
}
.about-story {
  position: relative;
  padding: 0 0 100px;
}
@media (max-width: 1024px) {
  .about-story {
    padding: 0 0 20rem;
    gap: 15px;
  }
}
.about-story::before {
  content: "";
  display: block;
  width: 100%;
  background: url(../images/bg--mountain--yellow.png) top center/100% auto no-repeat;
  z-index: 0;
  aspect-ratio: 1440/272;
}
.about-story__vertical {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .about-story__vertical {
    gap: 1em;
  }
}
.about-story__vertical span {
  display: block;
}
.about-story__wrapper {
  position: relative;
  z-index: 1;
  padding-bottom: 30rem;
  background-color: #fbf8e1;
}
@media (max-width: 1024px) {
  .about-story__wrapper {
    padding-bottom: 20rem;
  }
}
.about-story__inner {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .about-story__inner {
    flex-direction: column;
  }
}
.about-story__inner + .about-story__inner {
  margin-top: 100px;
}
@media (max-width: 1024px) {
  .about-story__inner + .about-story__inner {
    margin-top: 60px;
  }
}
.about-story__inner--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .about-story__inner--reverse {
    flex-direction: column;
  }
}
.about-story__inner--reverse .about-story__content {
  order: 1;
}
@media (max-width: 1024px) {
  .about-story__inner--reverse .about-story__content {
    order: 2;
  }
}
.about-story__inner--reverse .about-story__img {
  order: 2;
}
@media (max-width: 1024px) {
  .about-story__inner--reverse .about-story__img {
    order: 1;
  }
}
.about-story__img {
  position: absolute;
  left: 50%;
}
@media (max-width: 1024px) {
  .about-story__img {
    position: static;
    left: auto;
    margin: 2rem auto 3rem;
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .about-story__img img {
    width: 80%;
    max-width: 300px;
  }
}
.about-story__content {
  padding-top: 20px;
}
@media (max-width: 1024px) {
  .about-story__content {
    padding: 0 2rem;
  }
}
.about-story__illust {
  display: block;
  width: 100px;
  height: auto;
  margin: 0 auto 30px;
}
@media (max-width: 1024px) {
  .about-story__illust {
    width: 80px;
    margin-bottom: 20px;
  }
}
.about-story__illust--bottom {
  width: 180px;
  margin: 40px 0 0 auto;
}
@media (max-width: 1024px) {
  .about-story__illust--bottom {
    width: 140px;
    margin-top: 30px;
  }
}
.about-story__head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8rem;
}
@media (max-width: 1024px) {
  .about-story__head {
    flex-direction: column;
  }
}
.about-story__head .about-story__img {
  order: 1;
  position: static;
  width: 35.9027777778%;
  margin-right: 7rem;
}
@media (max-width: 1024px) {
  .about-story__head .about-story__img {
    width: 50%;
    max-width: 200px;
    margin: -150px 0 0 auto;
  }
}
.about-story__head .about-story__content {
  order: 2;
}
@media (max-width: 1024px) {
  .about-story__head .about-story__content {
    order: 3;
  }
}
.about-story__head .about-story__vertical {
  order: 3;
  margin-left: 7rem;
}
@media (max-width: 1024px) {
  .about-story__head .about-story__vertical {
    order: 2;
    margin-left: 0;
  }
}
.about-story__head .about-story__vertical span:nth-child(2) {
  margin-top: 14rem;
}
@media (max-width: 1024px) {
  .about-story__head .about-story__vertical span:nth-child(2) {
    margin-top: 0;
  }
}
.about-story__head .about-story__vertical span:nth-child(3) {
  margin-top: 29rem;
}
@media (max-width: 1024px) {
  .about-story__head .about-story__vertical span:nth-child(3) {
    margin-top: 0;
  }
}
.about-story__title {
  width: fit-content;
  margin-bottom: 4rem;
  background: url(../images/border-bottom.svg) 0 bottom/auto auto repeat-x;
  font-size: 3.2rem;
  font-family: var(--font-demibold);
  text-align: center;
  padding-bottom: 5px;
}
@media (max-width: 1024px) {
  .about-story__title {
    width: 100%;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    font-size: 2.4rem;
    line-height: 1.4;
    text-align: left;
  }
}
.about-story__text {
  font-size: 1.8rem;
  line-height: 2.1;
}
.about-story__text p {
  margin: 0;
}
.about-story__text p:empty {
  height: 1.5em;
}
.about-story__text .tb {
  margin-bottom: 2rem;
}
.about-story__text .i-1 {
  padding-left: 2rem;
}
.about-story__text .i-2 {
  padding-left: 4rem;
}
.about-story__text .i-3 {
  padding-left: 6rem;
}
.about-story__text .i-4 {
  padding-left: 8rem;
}
.about-story__text .i-5 {
  padding-left: 10rem;
}
.about-story__text .i-6 {
  padding-left: 12rem;
}
.about-story__text .i-7 {
  padding-left: 14rem;
}
.about-story__text .i-8 {
  padding-left: 16rem;
}
.about-story__text .i-9 {
  padding-left: 18rem;
}
.about-story__text .ni-1 {
  margin-left: -2rem;
}
.about-story__text .ni-2 {
  margin-left: -4rem;
}
.about-story__text .ni-3 {
  margin-left: -6rem;
}
.about-story__text .ni-4 {
  margin-left: -8rem;
}
.about-story__text .ni-5 {
  margin-left: -10rem;
}
.about-story__text .ni-6 {
  margin-left: -12rem;
}
.about-story__text .ni-7 {
  margin-left: -14rem;
}
.about-story__text .ni-8 {
  margin-left: -16rem;
}
.about-story__text .ni-9 {
  margin-left: -18rem;
}
@media (max-width: 1024px) {
  .about-story__text .i-1,
  .about-story__text .i-2,
  .about-story__text .i-3,
  .about-story__text .i-4,
  .about-story__text .i-5,
  .about-story__text .i-6,
  .about-story__text .i-7,
  .about-story__text .i-8,
  .about-story__text .i-9,
  .about-story__text .ni-1,
  .about-story__text .ni-2,
  .about-story__text .ni-3,
  .about-story__text .ni-4,
  .about-story__text .ni-5,
  .about-story__text .ni-6,
  .about-story__text .ni-7,
  .about-story__text .ni-8,
  .about-story__text .ni-9 {
    margin-left: 0;
    padding-left: 0;
  }
}
.about-story__text--left {
  text-align: left;
}
.about-story__sec2 {
  padding-left: 3rem;
}
@media (max-width: 1024px) {
  .about-story__sec2 {
    padding-left: 0;
  }
}
.about-story__sec2 .about-story__img {
  left: calc(50% + 5rem);
  width: 56.3636363636%;
}
@media (max-width: 1024px) {
  .about-story__sec2 .about-story__img {
    left: 0;
    width: 80%;
  }
}
@media (max-width: 1024px) {
  .about-story__sec3 {
    padding-bottom: 8rem;
  }
}
.about-story__sec3 .about-story__img {
  left: auto;
  right: calc(50% + 5rem);
  width: 50%;
}
@media (max-width: 1024px) {
  .about-story__sec3 .about-story__img {
    left: 0;
    width: 80%;
  }
}
.about-story__sec3 .about-story__content {
  padding-left: 50%;
}
@media (max-width: 1024px) {
  .about-story__sec3 .about-story__content {
    padding-left: 2rem;
  }
}
.about-story__sec3 .about-story__illust--sec3 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 170px;
}
@media (max-width: 1024px) {
  .about-story__sec3 .about-story__illust--sec3 {
    right: 20px;
    bottom: -30px;
  }
}
.about-story__sec4 .about-story__img {
  left: calc(50% + 5rem);
  width: 47%;
}
@media (max-width: 1024px) {
  .about-story__sec4 .about-story__img {
    left: 0;
    width: 80%;
  }
}
.about-event {
  padding: 10rem 0 20rem;
}
@media (max-width: 1024px) {
  .about-event {
    padding: 4rem 0 8rem;
  }
}
.about-event__container {
  display: flex;
  gap: 19rem;
  justify-content: center;
}
@media (max-width: 1024px) {
  .about-event__container {
    flex-direction: column;
    gap: 6rem;
  }
}
.about-event__inner {
  position: relative;
  padding-top: 10rem;
  font-family: var(--font-medium);
}
@media (max-width: 1024px) {
  .about-event__inner {
    padding-top: 3rem;
  }
}
.about-event__title {
  width: fit-content;
  margin-bottom: 4rem;
  background: url(../images/border-bottom.svg) 0 bottom/auto auto repeat-x;
  font-size: 3.2rem;
  font-family: var(--font-demibold);
  text-align: center;
  padding-bottom: 5px;
}
@media (max-width: 1024px) {
  .about-event__title {
    margin-bottom: 30px;
  }
}
.about-event__title:nth-of-type(2) {
  margin-top: 15rem;
}
.about-event__text {
  font-size: 1.8rem;
  line-height: 2.1;
  margin-bottom: 30px;
}
.about-event__highlight p {
  display: block;
  width: fit-content;
  margin-bottom: 2rem;
  background-color: var(--color-yellow);
  font-family: var(--font-demibold);
}
@media (max-width: 1024px) {
  .about-event__highlight p {
    font-size: 2.4rem;
  }
}
.about-event__img {
  position: absolute;
}
@media (max-width: 1024px) {
  .about-event__img {
    position: static;
    max-width: none;
    margin-bottom: 3rem;
    text-align: center;
  }
}
.about-event__img img {
  width: 100%;
  max-width: none;
  aspect-ratio: 312/230;
  max-width: 312px;
}
@media (max-width: 1024px) {
  .about-event__img img {
    width: 80%;
    max-width: 300px;
  }
}
.about-event__img--1 {
  top: 0;
  right: -20%;
}
.about-event__img--2 {
  left: -50%;
}
.about-event__img--3 {
  right: -20%;
}
.about-history {
  padding-bottom: 20rem;
}
.about-history::before {
  content: "";
  display: block;
  width: 100%;
  background: url(../images/bg--mountain--double.png) bottom center no-repeat;
  background-size: 100% auto;
  aspect-ratio: 1440/318;
}
.about-history__container {
  padding-bottom: 35rem;
  background-color: #e4ecec;
}
@media (max-width: 1024px) {
  .about-history__container {
    padding-bottom: 25rem;
  }
}
.about-history + .photo-slider {
  margin-top: -40rem;
}
.about-history__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  max-width: 1000px;
}
@media (max-width: 1024px) {
  .about-history__inner {
    flex-direction: column;
  }
}
.about-history__timeline {
  position: relative;
}
.about-history__timeline::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 70px;
  width: 2px;
  height: 100%;
  background-color: var(--color-accent);
}
@media (max-width: 1024px) {
  .about-history__timeline::before {
    left: 35px;
  }
}
.about-history__year {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .about-history__year {
    gap: 20px;
    margin-bottom: 40px;
  }
}
.about-history__year:last-child {
  margin-bottom: 0;
}
.about-history__year-icon {
  width: 140px;
  height: 140px;
  background: url(../images/about-history-icon.svg) center/contain no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .about-history__year-icon {
    width: 70px;
    height: 70px;
  }
}
.about-history__year-icon span {
  font-size: 3.2rem;
  font-family: var(--font-demibold);
  color: var(--color-accent);
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .about-history__year-icon span {
    font-size: 2.2rem;
  }
}
.about-history__year-icon--multi span {
  font-size: 18px;
}
@media (max-width: 1024px) {
  .about-history__year-icon--multi span {
    font-size: 13px;
  }
}
.about-history__year-content {
  padding-top: 4rem;
}
@media (max-width: 1024px) {
  .about-history__year-content {
    padding-top: 0;
  }
}
.about-history__year-title {
  width: fit-content;
  font-size: 3.2rem;
  font-family: var(--font-demibold);
  color: var(--color-text);
  margin-bottom: 15px;
  background: url(../images/border-bottom.svg) 0 bottom/auto auto repeat-x;
}
@media (max-width: 1024px) {
  .about-history__year-title {
    font-size: 2.4rem;
  }
}
.about-history__year-subtitle {
  font-size: 1.8rem;
  font-family: var(--font-demibold);
  color: var(--color-text);
  margin-bottom: 25px;
}
@media (max-width: 1024px) {
  .about-history__year-subtitle {
    font-size: 1.6rem;
  }
}
.about-history__items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about-history__item {
  padding: 15px 20px;
  background-color: #eaf3f3;
  border-radius: 6px;
}
.about-history__item-text {
  margin: 8px 0 0;
  font-size: 1.4rem;
  line-height: 1.4;
}
.about-summary {
  padding: 10rem 0;
}
@media (max-width: 1024px) {
  .about-summary__vertical {
    align-self: flex-start;
    font-size: 3rem;
  }
}
.about-summary__container {
  display: flex;
  justify-content: center;
  gap: 12rem;
}
@media (max-width: 1024px) {
  .about-summary__container {
    gap: 3rem;
  }
}
.about-summary__list {
  font-size: 1.8rem;
  line-height: 2.1;
}
@media (max-width: 1024px) {
  .about-summary__list {
    font-size: 1.6rem;
  }
}
.about-summary__list > li {
  position: relative;
  padding-left: 2rem;
}
.about-summary__list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
}
.about-summary__list > li:last-child {
  margin-bottom: 0;
}
.about-summary__list li:has(ul) {
  margin-bottom: 3rem;
}
.about-summary__list ul {
  margin-left: 1em;
}
.about-summary__list ul li {
  position: relative;
  padding-left: 1.5rem;
}
.about-summary__list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: var(--color-main);
  border-radius: 50%;
}
.about-summary__list ul li:last-child {
  margin-bottom: 0;
}

.event-mv__inner {
  display: grid;
  grid-template-columns: auto 55%;
  gap: 8rem;
}
@media (max-width: 1024px) {
  .event-mv__inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 1024px) {
  .event-mv__content {
    display: contents;
  }
}
.event-mv__title {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 4.8rem;
  padding-top: 25%;
}
@media (max-width: 1024px) {
  .event-mv__title {
    order: 1;
  }
}
.event-mv__title-ja {
  font-size: 5rem;
  font-family: var(--font-demibold);
  line-height: 1.3;
}
.event-mv__title-en {
  font-size: 1.4rem;
  font-family: var(--font-demibold);
  color: #438491;
  letter-spacing: 0.1em;
}
.event-mv__summary {
  display: flex;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .event-mv__summary {
    order: 3;
    margin: 3rem 0 2rem;
  }
}
.event-mv__summary-title {
  flex: none;
  margin-right: 3rem;
  padding-right: 3rem;
  border-right: 1px dashed #959595;
  font-size: 2.2rem;
  font-family: var(--font-demibold);
}
@media (max-width: 1024px) {
  .event-mv__summary-title {
    font-size: 1.8rem;
  }
}
.event-mv__summary-value {
  font-size: 1.6rem;
  font-family: var(--font-regular);
  line-height: 2;
}
@media (max-width: 1024px) {
  .event-mv__summary-value {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.event-mv__button {
  display: block;
  width: 100%;
  text-align: center;
}
@media (max-width: 1024px) {
  .event-mv__button {
    order: 4;
    text-align: center;
  }
}
.event-mv__button img {
  width: 45%;
  transform: rotate(8deg);
}
@media (max-width: 1024px) {
  .event-mv__button img {
    width: 80%;
    transform: rotate(2deg);
  }
}
.event-mv__images {
  position: relative;
}
@media (max-width: 1024px) {
  .event-mv__images {
    order: 2;
  }
}
.event-mv__img--small {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14.1666666667vw;
  max-width: 240px;
  background: var(--color-yellow);
  aspect-ratio: 710/707;
  mask-image: url(../images/mask-elem5.svg);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  transform: rotate(3deg);
}
.sangono-wa .event-mv__img--small {
  background: var(--color-white);
}
.event-mv__img--small img {
  width: 60%;
}
.event-mv__img--main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #fff;
  aspect-ratio: 753/603;
  mask-image: url(../images/mask-elem4.svg);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
.event-mv__img--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-mv__logo {
  position: absolute;
  bottom: 0;
  left: 7rem;
}

.event-archive {
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .event-archive {
    padding: 60px 0;
  }
}
.event-archive__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 1024px) {
  .event-archive__inner {
    padding: 0 20px;
  }
}
.event-archive__header {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .event-archive__header {
    margin-bottom: 40px;
  }
}
.event-archive__title-en {
  font-size: 4rem;
}
.event-archive__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5.5rem 3.5rem;
}
@media (max-width: 768px) {
  .event-archive__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 1.5rem;
  }
}
.event-archive__list--3col {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .event-archive__list--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
.event-archive__list--3col .event-archive__link-label {
  font-size: 2.4rem;
  line-height: 1.2;
}
.event-archive__list--3col .event-archive__link-text {
  font-size: 1.5rem;
}
.event-archive__link {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.event-archive__link-label {
  font-size: 2.4rem;
  font-family: var(--font-demibold);
}
.event-archive__link-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  border-radius: 10px;
  background: var(--color-white);
  overflow: hidden;
}
.event-archive__link-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.event-archive__link-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
}
.event-archive__link-time {
  font-size: 1.2rem;
  line-height: 1.2;
}
.event-archive__link-text {
  font-size: 1.4rem;
  line-height: 1.8;
}
.event-archive__link:hover {
  color: var(--color-accent);
}
.event-archive__link:hover .event-archive__link-img img {
  transform: scale(1.05);
}

.event-content {
  padding: 80px 0;
  background-color: var(--color-bg);
}
@media (max-width: 1024px) {
  .event-content {
    padding: 60px 0;
  }
}
.event-content .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.contact-page {
  padding: 80px 40px;
  background-color: var(--color-white);
}
@media (max-width: 1024px) {
  .contact-page {
    padding: 60px 20px;
  }
}
.contact-page__inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form__field {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .contact-form__field {
    margin-bottom: 30px;
  }
}
.contact-form__label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 10px;
}
.contact-form__label--required::after {
  content: "必須";
  margin-left: 10px;
  font-size: 12px;
  font-weight: normal;
  color: #e32769;
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  color: var(--color-text);
  background-color: #f5f5f5;
  border: none;
  border-radius: 8px;
  outline: none;
  transition: background-color 0.3s ease;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  background-color: #ebebeb;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: #999;
}
.contact-form__textarea {
  min-height: 200px;
  resize: vertical;
}
.contact-form__submit {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .contact-form__submit {
    margin-top: 40px;
  }
}
.contact-form__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  font-size: 18px;
  font-weight: bold;
  color: var(--color-white);
  background-color: #6ba3b7;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  .contact-form__button {
    height: 60px;
    font-size: 16px;
  }
}
.contact-form__button:hover {
  background-color: #5a8fa2;
}

.archive-news__list {
  display: flex;
  flex-direction: column;
}
.archive-news__link {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 2px dashed #ccc;
}
@media (max-width: 1024px) {
  .archive-news__link {
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    padding: 1.2rem 0;
  }
}
.archive-news__list .archive-news__item:first-child {
  border-top: 2px dashed #ccc;
}
.archive-news__date {
  font-size: 1.4rem;
  color: #666;
}
@media (max-width: 1024px) {
  .archive-news__date {
    font-size: 1.3rem;
  }
}
.archive-news__text {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .archive-news__text {
    font-size: 1.4rem;
  }
}

.news-container .page-head {
  max-width: 745px;
  margin-left: auto;
  margin-right: auto;
}
.news-container .page-content {
  margin-right: auto;
}

@media (max-width: 1024px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 1025px) {
  .sp-only {
    display: none;
  }
}

.sp-inline {
  display: inline;
}
@media (min-width: 1025px) {
  .sp-inline {
    display: block;
  }
}

.display-none {
  display: none;
}

.m-0 {
  margin: 0;
}

.m-8 {
  margin: 8px;
}

.m-16 {
  margin: 16px;
}

.m-24 {
  margin: 24px;
}

.m-32 {
  margin: 32px;
}

.m-40 {
  margin: 40px;
}

.m-48 {
  margin: 48px;
}

.m-56 {
  margin: 56px;
}

.m-96 {
  margin: 96px;
}

.m-auto {
  margin: auto;
}

.mt-0 {
  margin-top: 0;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-56 {
  margin-top: 56px;
}

.mt-96 {
  margin-top: 96px;
}

.mt-auto {
  margin-top: auto;
}

.mr-0 {
  margin-right: 0;
}

.mr-8 {
  margin-right: 8px;
}

.mr-16 {
  margin-right: 16px;
}

.mr-24 {
  margin-right: 24px;
}

.mr-32 {
  margin-right: 32px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-48 {
  margin-right: 48px;
}

.mr-56 {
  margin-right: 56px;
}

.mr-96 {
  margin-right: 96px;
}

.mr-auto {
  margin-right: auto;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-56 {
  margin-bottom: 56px;
}

.mb-96 {
  margin-bottom: 96px;
}

.mb-192 {
  margin-bottom: 192px;
}

.mb-auto {
  margin-bottom: auto;
}

.ml-0 {
  margin-left: 0;
}

.ml-8 {
  margin-left: 8px;
}

.ml-16 {
  margin-left: 16px;
}

.ml-24 {
  margin-left: 24px;
}

.ml-32 {
  margin-left: 32px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-48 {
  margin-left: 48px;
}

.ml-56 {
  margin-left: 56px;
}

.ml-96 {
  margin-left: 96px;
}

.ml-auto {
  margin-left: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.p-0 {
  padding: 0;
}

.p-8 {
  padding: 8px;
}

.p-16 {
  padding: 16px;
}

.p-24 {
  padding: 24px;
}

.p-32 {
  padding: 32px;
}

.p-40 {
  padding: 40px;
}

.p-48 {
  padding: 48px;
}

.p-56 {
  padding: 56px;
}

.p-96 {
  padding: 96px;
}

.pt-0 {
  padding-top: 0;
}

.pt-8 {
  padding-top: 8px;
}

.pt-16 {
  padding-top: 16px;
}

.pt-24 {
  padding-top: 24px;
}

.pt-32 {
  padding-top: 32px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-48 {
  padding-top: 48px;
}

.pt-56 {
  padding-top: 56px;
}

.pt-96 {
  padding-top: 96px;
}

.pt-160 {
  padding-top: 160px;
}

.pr-0 {
  padding-right: 0;
}

.pr-8 {
  padding-right: 8px;
}

.pr-16 {
  padding-right: 16px;
}

.pr-24 {
  padding-right: 24px;
}

.pr-32 {
  padding-right: 32px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-48 {
  padding-right: 48px;
}

.pr-56 {
  padding-right: 56px;
}

.pr-96 {
  padding-right: 96px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-8 {
  padding-bottom: 8px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-48 {
  padding-bottom: 48px;
}

.pb-56 {
  padding-bottom: 56px;
}

.pb-96 {
  padding-bottom: 96px;
}

.pl-0 {
  padding-left: 0;
}

.pl-8 {
  padding-left: 8px;
}

.pl-16 {
  padding-left: 16px;
}

.pl-24 {
  padding-left: 24px;
}

.pl-32 {
  padding-left: 32px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-48 {
  padding-left: 48px;
}

.pl-56 {
  padding-left: 56px;
}

.pl-96 {
  padding-left: 96px;
}

@media (max-width: 768px) {
  .sp-m-0 {
    margin: 0;
  }
  .sp-m-8 {
    margin: 8px;
  }
  .sp-m-16 {
    margin: 16px;
  }
  .sp-m-24 {
    margin: 24px;
  }
  .sp-m-32 {
    margin: 32px;
  }
  .sp-m-40 {
    margin: 40px;
  }
  .sp-m-48 {
    margin: 48px;
  }
  .sp-m-56 {
    margin: 56px;
  }
  .sp-m-96 {
    margin: 96px;
  }
  .sp-mt-0 {
    margin-top: 0;
  }
  .sp-mt-8 {
    margin-top: 8px;
  }
  .sp-mt-16 {
    margin-top: 16px;
  }
  .sp-mt-24 {
    margin-top: 24px;
  }
  .sp-mt-32 {
    margin-top: 32px;
  }
  .sp-mt-40 {
    margin-top: 40px;
  }
  .sp-mt-48 {
    margin-top: 48px;
  }
  .sp-mt-56 {
    margin-top: 56px;
  }
  .sp-mt-96 {
    margin-top: 96px;
  }
  .sp-mr-0 {
    margin-right: 0;
  }
  .sp-mr-8 {
    margin-right: 8px;
  }
  .sp-mr-16 {
    margin-right: 16px;
  }
  .sp-mr-24 {
    margin-right: 24px;
  }
  .sp-mr-32 {
    margin-right: 32px;
  }
  .sp-mr-40 {
    margin-right: 40px;
  }
  .sp-mr-48 {
    margin-right: 48px;
  }
  .sp-mr-56 {
    margin-right: 56px;
  }
  .sp-mr-96 {
    margin-right: 96px;
  }
  .sp-mb-0 {
    margin-bottom: 0;
  }
  .sp-mb-8 {
    margin-bottom: 8px;
  }
  .sp-mb-16 {
    margin-bottom: 16px;
  }
  .sp-mb-24 {
    margin-bottom: 24px;
  }
  .sp-mb-32 {
    margin-bottom: 32px;
  }
  .sp-mb-40 {
    margin-bottom: 40px;
  }
  .sp-mb-48 {
    margin-bottom: 48px;
  }
  .sp-mb-56 {
    margin-bottom: 56px;
  }
  .sp-mb-96 {
    margin-bottom: 96px;
  }
  .sp-mb-192 {
    margin-bottom: 192px;
  }
  .sp-ml-0 {
    margin-left: 0;
  }
  .sp-ml-8 {
    margin-left: 8px;
  }
  .sp-ml-16 {
    margin-left: 16px;
  }
  .sp-ml-24 {
    margin-left: 24px;
  }
  .sp-ml-32 {
    margin-left: 32px;
  }
  .sp-ml-40 {
    margin-left: 40px;
  }
  .sp-ml-48 {
    margin-left: 48px;
  }
  .sp-ml-56 {
    margin-left: 56px;
  }
  .sp-ml-96 {
    margin-left: 96px;
  }
  .sp-p-0 {
    padding: 0;
  }
  .sp-p-8 {
    padding: 8px;
  }
  .sp-p-16 {
    padding: 16px;
  }
  .sp-p-24 {
    padding: 24px;
  }
  .sp-p-32 {
    padding: 32px;
  }
  .sp-p-40 {
    padding: 40px;
  }
  .sp-p-48 {
    padding: 48px;
  }
  .sp-p-56 {
    padding: 56px;
  }
  .sp-p-96 {
    padding: 96px;
  }
  .sp-pt-0 {
    padding-top: 0;
  }
  .sp-pt-8 {
    padding-top: 8px;
  }
  .sp-pt-16 {
    padding-top: 16px;
  }
  .sp-pt-24 {
    padding-top: 24px;
  }
  .sp-pt-32 {
    padding-top: 32px;
  }
  .sp-pt-40 {
    padding-top: 40px;
  }
  .sp-pt-48 {
    padding-top: 48px;
  }
  .sp-pt-56 {
    padding-top: 56px;
  }
  .sp-pt-96 {
    padding-top: 96px;
  }
  .sp-pr-0 {
    padding-right: 0;
  }
  .sp-pr-8 {
    padding-right: 8px;
  }
  .sp-pr-16 {
    padding-right: 16px;
  }
  .sp-pr-24 {
    padding-right: 24px;
  }
  .sp-pr-32 {
    padding-right: 32px;
  }
  .sp-pr-40 {
    padding-right: 40px;
  }
  .sp-pr-48 {
    padding-right: 48px;
  }
  .sp-pr-56 {
    padding-right: 56px;
  }
  .sp-pr-96 {
    padding-right: 96px;
  }
  .sp-pb-0 {
    padding-bottom: 0;
  }
  .sp-pb-8 {
    padding-bottom: 8px;
  }
  .sp-pb-16 {
    padding-bottom: 16px;
  }
  .sp-pb-24 {
    padding-bottom: 24px;
  }
  .sp-pb-32 {
    padding-bottom: 32px;
  }
  .sp-pb-40 {
    padding-bottom: 40px;
  }
  .sp-pb-48 {
    padding-bottom: 48px;
  }
  .sp-pb-56 {
    padding-bottom: 56px;
  }
  .sp-pb-96 {
    padding-bottom: 96px;
  }
  .sp-pl-0 {
    padding-left: 0;
  }
  .sp-pl-8 {
    padding-left: 8px;
  }
  .sp-pl-16 {
    padding-left: 16px;
  }
  .sp-pl-24 {
    padding-left: 24px;
  }
  .sp-pl-32 {
    padding-left: 32px;
  }
  .sp-pl-40 {
    padding-left: 40px;
  }
  .sp-pl-48 {
    padding-left: 48px;
  }
  .sp-pl-56 {
    padding-left: 56px;
  }
  .sp-pl-96 {
    padding-left: 96px;
  }
}
.font-size--12 {
  font-size: 12px;
}
.font-size--13 {
  font-size: 13px;
}
.font-size--16 {
  font-size: 16px;
}
.font-size--18 {
  font-size: 18px;
}
.font-size--20 {
  font-size: 20px;
}
.font-size--24 {
  font-size: 24px;
}
.font-size--32 {
  font-size: 32px;
}
.font-size--40 {
  font-size: 40px;
}
.font-size--48 {
  font-size: 48px;
}
.font-size--64 {
  font-size: 64px;
}

.text--white {
  color: var(--color-white);
}
.text--center {
  text-align: center;
}
.text--left {
  text-align: left;
}
.text--right {
  text-align: right;
}
.text--purpleblue {
  color: #405dff;
}
.text--pink {
  color: #ff4089;
}
.text--lightblue {
  color: #40a7ff;
}

.font-weight--600 {
  font-family: var(--fontweight-600);
}
.font-weight--800 {
  font-family: var(--fontweight-800);
}

.font-helvetica {
  font-family: var(--font-helvetica);
}

.underline {
  text-decoration: underline;
}

.text--blue {
  color: #0061b6;
}
.text--red {
  color: var(--color-red);
}

.font--unset {
  margin: 0;
  font-family: unset;
  font-size: unset;
}

.width-full {
  width: 100%;
}

.aspect-square {
  aspect-ratio: 1/1;
}
.aspect-golden {
  aspect-ratio: 1.618/1;
}

img.aspect-square, img.aspect-golden {
  object-fit: cover;
}

.flex--row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 32px;
}
.flex--column {
  display: flex;
  flex-direction: column;
}
.flex__item {
  width: calc(50% - 16px);
}

.is-justify--between {
  justify-content: space-between;
}

.is-justify--center {
  justify-content: center;
}

.is-justify--start {
  justify-content: flex-start;
}

.is-justify--end {
  justify-content: flex-end;
}

.is-items--center {
  align-items: center;
}

.is-items--start {
  align-items: flex-start;
}

.is-items--end {
  align-items: flex-end;
}

@media (max-width: 768px) {
  .sp-flex--row {
    flex-direction: row;
  }
  .sp-flex--column {
    flex-direction: column;
  }
}
.bg--white {
  background: var(--color-white);
}
.bg--lightgray {
  background: var(--color-gray100);
}
.bg--yellow {
  background: #ffe100;
}
.bg--blue {
  background: #0061b6;
}
.bg--paleblue {
  background: #e6f0fc;
}
.bg--black {
  background: var(--color-black);
}
.bg--lightblue-100 {
  background: var(--color-lightblue-100);
}
.bg--lightblue-200 {
  background: var(--color-lightblue-200);
}

.rounded-corner--size-16 {
  border-radius: 16px;
}
.rounded-corner--size-56 {
  border-radius: 56px;
}
.rounded-corner--size-full {
  border-radius: 500px;
}

.width-full {
  width: 100%;
}

.aspect-square {
  aspect-ratio: 1/1;
}
.aspect-golden {
  aspect-ratio: 1.618/1;
}

img.aspect-square, img.aspect-golden {
  object-fit: cover;
}

.flex--row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 32px;
}
.flex--column {
  display: flex;
  flex-direction: column;
}
.flex__item {
  width: calc(50% - 16px);
}

.is-justify--between {
  justify-content: space-between;
}

.is-justify--center {
  justify-content: center;
}

.is-justify--start {
  justify-content: flex-start;
}

.is-justify--end {
  justify-content: flex-end;
}

.is-items--center {
  align-items: center;
}

.is-items--start {
  align-items: flex-start;
}

.is-items--end {
  align-items: flex-end;
}

@media (max-width: 768px) {
  .sp-flex--row {
    flex-direction: row;
  }
  .sp-flex--column {
    flex-direction: column;
  }
}
.join-first {
  border-radius: 16px 16px 0 0;
}
.join-mid {
  border-radius: 0;
  margin-top: 4px;
}
.join-last {
  border-radius: 0 0 16px 16px;
  margin-top: 4px;
}

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