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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}

/* pcの電話番号発信対応 */

a {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
}

html {
  scroll-behavior: auto;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.js-fadein {
  opacity: 0;
  -webkit-transform: translateY(6.25rem);
          transform: translateY(6.25rem);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.js-fadein.is-scrollin {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-drawer {
  bottom: 0;
  left: 0;
  opacity: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  visibility: hidden;
  z-index: 20;
}

.l-drawer[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}

.l-header {
  bottom: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  width: 100%;
  z-index: 10;
}
.l-header.is-scrolled {
  position: fixed;
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  max-width: 37.5rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  width: 100%;
}

.c-menu-button {
  position: absolute;
}
.is-scrolled .c-menu-button {
  position: fixed;
}
.c-menu-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 36px;
  height: 2.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  right: 30px;
  right: 1.875rem;
  top: 30px;
  top: 1.875rem;
  -webkit-transition: border-color 0.3s, top 0.3s;
  transition: border-color 0.3s, top 0.3s;
  width: 36px;
  width: 2.25rem;
  z-index: 30;
}

.c-menu-button span {
  background-color: currentColor;
  display: block;
  height: 2px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 16px;
  width: 1rem;
}

.c-menu-button span::before,
.c-menu-button span::after {
  background-color: currentColor;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.c-menu-button span::before {
  -webkit-transform: translateY(-0.3125rem);
          transform: translateY(-0.3125rem);
}

.c-menu-button span::after {
  -webkit-transform: translateY(0.3125rem);
          transform: translateY(0.3125rem);
}

.c-menu-button[aria-expanded=true] span {
  background-color: transparent;
}

.c-menu-button[aria-expanded=true] span::before {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}

.c-menu-button[aria-expanded=true] span::after {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

.c-section-title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}
.c-section-title--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-section-title__label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #A00E24;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  gap: 8px;
  gap: 0.5rem;
  line-height: 1;
}
.c-section-title__label::before {
  aspect-ratio: 1/1;
  background: url("../images/common/icon_leaf.svg") center/contain no-repeat;
  content: "";
  display: block;
  height: 14px;
  height: 0.875rem;
  width: 14px;
  width: 0.875rem;
}

.c-section-title__heading {
  font-family: "Noto Serif JP", serif;
  font-size: max(32px, 10px);
  font-size: max(2rem, 10px);
  font-weight: normal;
  line-height: 1.3;
}

.p-404 {
  padding: 180px 0;
  padding: 11.25rem 0;
  text-align: center;
}

.p-404__title {
  font-family: "Noto Serif JP", serif;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: normal;
  line-height: 1.6;
}

.p-404__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.8;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-404__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-404__btn {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  background-color: #A00E24;
  border: 1px solid #A00E24;
  color: #fff;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1;
  padding: 16px 40px;
  padding: 1rem 2.5rem;
  text-decoration: none;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.p-404__btn:hover {
  background-color: #fff;
  color: #A00E24;
}

.p-drawer {
  background-color: #A00E24;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  padding: 1.25rem;
}

.p-drawer__logo {
  width: 58px;
  width: 3.625rem;
}

.p-drawer__logo img {
  height: auto;
  width: 100%;
}

.p-drawer__nav-items {
  margin-top: 76px;
  margin-top: 4.75rem;
}

.p-drawer__nav-item {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
}

.p-drawer__nav-item:last-child {
  border-bottom: none;
}

.p-drawer__nav-item a {
  color: #fff;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 600;
  line-height: 1;
  padding: 24px 0;
  padding: 1.5rem 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-events {
  background-color: #F2F2F2;
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  padding-top: 90px;
  padding-top: 5.625rem;
}

.p-events__lead {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.8;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-events__grid {
  grid-gap: 2rem;
  display: grid;
  gap: 32px;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-top: 64px;
  margin-top: 4rem;
}

.p-events__card {
  background-color: #fff;
  border-radius: 0.3125rem;
  -webkit-box-shadow: 0.3125rem 0.3125rem 0.9375rem rgba(0, 0, 0, 0.15);
          box-shadow: 0.3125rem 0.3125rem 0.9375rem rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-events__card-image {
  aspect-ratio: 362/241;
  border-radius: 0.3125rem 0.3125rem 0 0;
  overflow: hidden;
  width: 100%;
}
.p-events__card-image picture,
.p-events__card-image img {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-events__card-coming {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #D9D9D9;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.8;
  width: 100%;
}

.p-events__card-body {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 0 0 0.3125rem 0.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 26px;
  gap: 1.625rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 32px;
  padding: 2rem;
  padding-right: 36px;
  padding-right: 2.25rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.p-events__card-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}

.p-events__card-date {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-events__card-title {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 600;
  line-height: 1.5;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-events__card-venue {
  color: #707070;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-events__card-btn {
  aspect-ratio: 1/1;
  background-color: transparent;
  border: 1.5px solid #000;
  border: 0.09375rem solid #000;
  border-radius: 1px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0;
  position: relative;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  width: 24px;
  width: 1.5rem;
}
.p-events__card-btn::before {
  -webkit-mask-image: url("../images/common/icon_plus.svg");
  -webkit-mask-size: 0.625rem 0.625rem;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #000;
  bottom: 0;
  content: "";
  left: 0;
          mask-image: url("../images/common/icon_plus.svg");
          mask-position: center;
          mask-repeat: no-repeat;
          mask-size: 0.625rem 0.625rem;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.p-events__card-btn:focus-visible {
  border-color: #A00E24;
}
.p-events__card-btn:focus-visible::before {
  background-color: #A00E24;
}

.p-footer {
  background-color: #A00E24;
  color: #fff;
  padding: 90px 0;
  padding: 5.625rem 0;
}
.p-footer a {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  color: #fff;
  text-decoration: none;
}

.p-footer__logos {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  gap: 1.875rem;
}

.p-footer__logo-100th {
  width: 130px;
  width: 8.125rem;
}
.p-footer__logo-100th img {
  aspect-ratio: 173/240;
  height: auto;
  width: 100%;
}

.p-footer__logo-art {
  padding-top: 30px;
  padding-top: 1.875rem;
  width: 116px;
  width: 7.25rem;
}
.p-footer__logo-art img {
  aspect-ratio: 116/150;
  height: auto;
  width: 100%;
}

.p-footer__info {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-footer__nav {
  margin-top: 29px;
  margin-top: 1.8125rem;
}

.p-footer__nav-items {
  grid-gap: 0 2.5rem;
  display: grid;
  gap: 0 40px;
  gap: 0 2.5rem;
  grid-auto-columns: fit-content(100%);
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-footer__nav-item a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  gap: 5px;
  gap: 0.3125rem;
  line-height: 1;
  padding-bottom: 11px;
  padding-bottom: 0.6875rem;
  padding-top: 11px;
  padding-top: 0.6875rem;
}
.p-footer__nav-item a::before {
  background-color: #fff;
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 1px;
  height: 0.0625rem;
  width: 6px;
  width: 0.375rem;
}
.p-footer__nav-item a:hover {
  text-decoration: underline;
}
.p-footer__nav-item:last-child a {
  padding-bottom: 0;
}

.p-footer__official-link {
  margin-top: 29px;
  margin-top: 1.8125rem;
}
.p-footer__official-link a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #fff;
  border-radius: 0.3125rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 600;
  gap: 10px;
  gap: 0.625rem;
  line-height: 1;
  padding: 16px 24px;
  padding: 1rem 1.5rem;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.p-footer__official-link a:hover {
  background-color: #fff;
  color: #A00E24;
}
.p-footer__official-link a:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(10%) sepia(90%) saturate(5000%) hue-rotate(340deg);
          filter: brightness(0) saturate(100%) invert(10%) sepia(90%) saturate(5000%) hue-rotate(340deg);
}
.p-footer__official-link img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  height: 24px;
  height: 1.5rem;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
  width: 24px;
  width: 1.5rem;
}

.p-footer__address {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.8;
  margin: 0;
}

.p-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: 40px;
  margin-top: 2.5rem;
  padding-top: 40px;
  padding-top: 2.5rem;
}

.p-footer__sns-items {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-footer__sns-item a:hover img {
  -webkit-filter: brightness(0.85);
          filter: brightness(0.85);
}
.p-footer__sns-item img {
  display: block;
  height: 24px;
  height: 1.5rem;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
  width: 24px;
  width: 1.5rem;
}

.p-footer__legal {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-footer__privacy {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.8;
}
.p-footer__privacy a:hover {
  text-decoration: underline;
}

.p-footer__copyright {
  margin-top: 16px;
  margin-top: 1rem;
}
.p-footer__copyright small {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.8;
}

.p-fv {
  background: url("../images/common/mv_bg_sp.jpg") center/cover no-repeat;
  height: 800px;
  height: 50rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.p-fv__container {
  height: 100%;
  margin: 0 auto;
  max-width: 1440px;
  max-width: 90rem;
  position: relative;
  width: 100%;
}

.p-fv__tree {
  -webkit-animation: fv-tree-fade 1s ease 0.3s forwards, fv-tree-sway 6s ease-in-out 1.3s infinite;
          animation: fv-tree-fade 1s ease 0.3s forwards, fv-tree-sway 6s ease-in-out 1.3s infinite;
  aspect-ratio: 1022/1103;
  left: -296px;
  left: -18.5rem;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 110px;
  top: 6.875rem;
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  width: 688px;
  width: 43rem;
  z-index: 3;
}
.p-fv__tree img {
  height: auto;
  width: 1022px;
  width: 63.875rem;
}

.p-fv__content {
  height: 100%;
  position: relative;
  z-index: 5;
}

.p-fv__logo {
  -webkit-animation: fv-fade-in 1s ease 0.3s forwards;
          animation: fv-fade-in 1s ease 0.3s forwards;
  left: 60px;
  left: 3.75rem;
  opacity: 0;
  position: absolute;
  top: 280px;
  top: 17.5rem;
  width: 115px;
  width: 7.1875rem;
  z-index: 5;
}
.p-fv__logo img {
  aspect-ratio: 173/240;
  height: auto;
  width: 100%;
}

.p-fv__catch {
  -webkit-animation: fv-fade-in 0.8s ease 1.3s forwards;
          animation: fv-fade-in 0.8s ease 1.3s forwards;
  aspect-ratio: 105/450;
  height: auto;
  left: 63.9303482587vw;
  opacity: 0;
  position: absolute;
  top: 135px;
  top: 8.4375rem;
  width: 105px;
  width: 6.5625rem;
  z-index: 5;
}

.p-fv__news {
  grid-gap: 1rem 1.5rem;
  -webkit-animation: fv-fade-in 0.8s ease 2.1s forwards;
          animation: fv-fade-in 0.8s ease 2.1s forwards;
  background-color: #fff;
  border-radius: 0.3125rem 0 0 0.3125rem;
  bottom: 10px;
  bottom: 0.625rem;
  -webkit-box-shadow: 0.3125rem 0.3125rem 0.9375rem rgba(0, 0, 0, 0.15);
          box-shadow: 0.3125rem 0.3125rem 0.9375rem rgba(0, 0, 0, 0.15);
  display: grid;
  gap: 16px 24px;
  gap: 1rem 1.5rem;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  left: 2.4875621891vw;
  opacity: 0;
  padding: 24px 25px 24px 24px;
  padding: 1.5rem 1.5625rem 1.5rem 1.5rem;
  position: absolute;
  right: 0;
  z-index: 6;
}

.p-fv__news-label {
  border: 1px solid #A00E24;
  color: #A00E24;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  line-height: 1;
  padding: 4px 9px;
  padding: 0.25rem 0.5625rem;
}

.p-fv__news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  grid-column: 1;
  grid-row: 2;
}
.p-fv__news-list .p-fv__news-item:nth-child(n+2) {
  display: none;
}

.p-fv__news-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.5;
}
.p-fv__news-item a {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  text-decoration: none;
}
.p-fv__news-item a:hover .p-fv__news-text {
  text-decoration: underline;
}

.p-fv__news-date {
  color: #707070;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-fv__news-text {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #000;
  display: -webkit-box;
  overflow: hidden;
}

.p-fv__news-link {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 8px;
  gap: 0.5rem;
  grid-column: 2;
  grid-row: 1/-1;
  text-decoration: none;
}
.p-fv__news-link:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(11%) sepia(82%) saturate(4713%) hue-rotate(345deg) brightness(82%) contrast(107%);
          filter: brightness(0) saturate(100%) invert(11%) sepia(82%) saturate(4713%) hue-rotate(345deg) brightness(82%) contrast(107%);
}
.p-fv__news-link:hover span {
  color: #A00E24;
}
.p-fv__news-link img {
  aspect-ratio: 1/1;
  height: 45px;
  height: 2.8125rem;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
  width: 45px;
  width: 2.8125rem;
}
.p-fv__news-link span {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  line-height: 1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

@-webkit-keyframes fv-tree-fade {
  from {
    opacity: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    opacity: 1;
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
}

@keyframes fv-tree-fade {
  from {
    opacity: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    opacity: 1;
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
}
@-webkit-keyframes fv-tree-sway {
  0%, 100% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  50% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
}
@keyframes fv-tree-sway {
  0%, 100% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  50% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
}
@-webkit-keyframes fv-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fv-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-goods {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  padding-top: 90px;
  padding-top: 5.625rem;
}

.p-goods__lead {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.8;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-goods__list {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-goods__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
}
.p-goods__item + .p-goods__item {
  border-top: 1px solid #D9D9D9;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding-top: 40px;
  padding-top: 2.5rem;
}

.p-goods__image {
  aspect-ratio: 380/253;
  border-radius: 0.3125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  width: 100%;
}
.p-goods__image picture,
.p-goods__image img {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-goods__coming {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #D9D9D9;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.8;
  width: 100%;
}

.p-goods__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}

.p-goods__name {
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 400;
  line-height: 1.5;
}

.p-goods__desc {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.8;
}

.p-goods__price {
  color: #707070;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.8;
}

.p-greeting {
  background-color: #fff;
  overflow: hidden;
  padding: 90px 0;
  padding: 5.625rem 0;
  position: relative;
}
.p-greeting::before {
  background: url("../images/common/greeting_bg_sp.png") center top/cover no-repeat;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.p-greeting__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 27px;
  gap: 1.6875rem;
}

.p-greeting__photo img {
  aspect-ratio: 1072/520;
  height: auto;
  width: 100%;
}

.p-greeting__right {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-greeting__subheading {
  font-family: "Noto Serif JP", serif;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 600;
  line-height: 1.5;
}

.p-greeting__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.8;
  margin-top: 24px;
  margin-top: 1.5rem;
}
.p-greeting__text-paragraph + .p-greeting__text-paragraph {
  margin-top: 1lh;
}
.p-greeting__text-signature {
  text-align: right;
}

.p-header {
  color: #fff;
}

.p-header.is-scrolled {
  background-color: #fff;
  color: #000;
}

.p-header__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
}

.p-header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  width: 58px;
  width: 3.625rem;
}

.p-header.is-scrolled .p-header__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 9px;
  padding-bottom: 0.5625rem;
  padding-top: 9px;
  padding-top: 0.5625rem;
}

.p-header.is-scrolled .p-header__logo {
  width: 45px;
  width: 2.8125rem;
}

.p-header.is-scrolled .p-header__pc-nav-items {
  border-bottom: none;
}

.p-header.is-scrolled .c-menu-button {
  top: 22px;
  top: 1.375rem;
}

.p-header__logo-link {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-header__logo-link:hover {
  opacity: 0.8;
}

.p-header__logo-link img {
  aspect-ratio: 87/120;
  height: auto;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  width: 100%;
}

.p-header.is-scrolled .p-header__logo-link img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.p-header__pc-nav {
  display: none;
}

.p-header__pc-nav-items {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  gap: 2rem;
}

.p-header__pc-nav-item a {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 600;
  line-height: 1;
  padding: 24px 0;
  padding: 1.5rem 0;
  text-decoration: none;
}
.p-header__pc-nav-item a:hover {
  text-decoration: underline;
}

.p-history {
  background-color: rgba(160, 14, 36, 0.06);
  overflow: hidden;
  padding: 90px 0;
  padding: 5.625rem 0;
  position: relative;
}
.p-history .l-inner {
  position: relative;
  z-index: 1;
}

.p-history__lead {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-history__lead-text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.8;
}
.p-history__lead-text + .p-history__lead-text {
  margin-top: 1lh;
}

.p-history__youtube {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  gap: 0.75rem;
  margin-top: 24px;
  margin-top: 1.5rem;
  position: relative;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  z-index: 1;
}
.p-history__youtube::before {
  background: url("../images/common/icon_youtube_red.svg") center/contain no-repeat;
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 48px;
  height: 3rem;
  width: 48px;
  width: 3rem;
}

.p-history__youtube-text {
  -webkit-text-decoration: underline;
  -webkit-text-decoration: underline;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.8;
  text-decoration: underline;
}
.p-history__youtube-text .u-text-block {
  text-decoration: underline;
}
.p-history__youtube:hover .p-history__youtube-text {
  text-decoration: none;
}
.p-history__youtube:hover .p-history__youtube-text .u-text-block {
  text-decoration: none;
}

.p-history__timeline {
  margin-top: 64px;
  margin-top: 4rem;
  padding: 0;
  position: relative;
  z-index: 1;
}

.p-history__item {
  position: relative;
}
.p-history__item + .p-history__item {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-history__card {
  background-color: #fff;
  border: 1px solid #A00E24;
  border: 0.0625rem solid #A00E24;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  padding: 32px;
  padding: 2rem;
}

.p-history__year {
  color: #A00E24;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(32px, 10px);
  font-size: max(2rem, 10px);
  line-height: 1;
}

.p-history__year-suffix {
  color: #A00E24;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
}

.p-history__name {
  font-family: "Noto Serif JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 600;
  line-height: 1;
}

.p-history__image img {
  -o-object-fit: cover;
  aspect-ratio: 672/448;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-history__image--wide img {
  -o-object-fit: cover;
  aspect-ratio: 298/162;
     object-fit: cover;
}

.p-history__desc {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.8;
}

.p-logo {
  padding: 82px 0 0;
  padding: 5.125rem 0 0;
  position: relative;
}

.p-logo__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid #A00E24;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
  margin: 0 auto;
  padding: 40px 24px 24px;
  padding: 2.5rem 1.5rem 1.5rem;
}

.p-logo__inner .c-section-title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-logo__inner .c-section-title__heading {
  text-align: center;
}

.p-logo__card {
  background-color: rgba(160, 14, 36, 0.05);
  width: 100%;
}

.p-logo__image {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 380/279;
  background-color: #A00E24;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 25px;
  padding: 1.5625rem;
}
.p-logo__image img {
  height: auto;
  width: 132px;
  width: 8.25rem;
}

.p-logo__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  padding: 24px;
  padding: 1.5rem;
}

.p-logo__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 600;
  line-height: 1.5;
}

.p-logo__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.8;
}

.p-modal {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}
.p-modal.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-modal__overlay {
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.p-modal__content {
  background-color: #fff;
  border-radius: 0.3125rem;
  max-height: 90vh;
  max-width: 362px;
  max-width: 22.625rem;
  overflow-y: auto;
  position: relative;
  width: calc(100% - 2.5rem);
  z-index: 1;
}

.p-modal__close {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1;
  background-color: #fff;
  border: 1.5px solid #000;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  position: absolute;
  right: 8px;
  right: 0.5rem;
  top: 8px;
  top: 0.5rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 24px;
  width: 1.5rem;
  z-index: 2;
}
.p-modal__close::before {
  -webkit-mask-image: url("../images/common/icon_close.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #000;
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 8px;
  height: 0.5rem;
          mask-image: url("../images/common/icon_close.svg");
          mask-position: center;
          mask-repeat: no-repeat;
          mask-size: contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 8px;
  width: 0.5rem;
}
.p-modal__close:hover, .p-modal__close:focus-visible {
  background-color: #A00E24;
  border-color: #000;
}
.p-modal__close:hover::before, .p-modal__close:focus-visible::before {
  background-color: #fff;
}

.p-modal__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-modal__image {
  aspect-ratio: 362/241;
  border-radius: 0.3125rem 0.3125rem 0 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  width: 100%;
}
.p-modal__image picture,
.p-modal__image img {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-modal__coming {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #D9D9D9;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.8;
  width: 100%;
}

.p-modal__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  gap: 16px;
  gap: 1rem;
  padding: 24px;
  padding: 1.5rem;
}

.p-modal__title {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 600;
  line-height: 1.5;
}

.p-modal__desc {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.8;
}

.p-modal__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}

.p-modal__label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #707070;
  border-radius: 1.875rem;
  color: #707070;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  padding: 3px 16px;
  padding: 0.1875rem 1rem;
  white-space: nowrap;
  width: 88px;
  width: 5.5rem;
}

.p-modal__value {
  word-wrap: break-word;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.5;
  min-width: 0;
  word-break: break-all;
}

.p-modal__link {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  gap: 8px;
  gap: 0.5rem;
  text-decoration: none;
  -webkit-transition: text-decoration 0.3s;
  transition: text-decoration 0.3s;
}
.p-modal__link:hover {
  text-decoration: underline;
}

.p-modal__outer-icon {
  display: inline-block;
  height: 16px;
  height: 1rem;
  vertical-align: middle;
  width: 16px;
  width: 1rem;
}

.p-movie {
  background-color: #F4EEE0;
  background-image: url("../images/common/movie_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0 80px;
  padding: 5.625rem 0 5rem;
  position: relative;
}

.p-movie__inner {
  background-color: #fff;
  padding: 40px 24px 24px;
  padding: 2.5rem 1.5rem 1.5rem;
  position: relative;
}

.p-movie__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.8;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-movie__video {
  aspect-ratio: 736/414;
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 100%;
}
.p-movie__video iframe {
  border: none;
  display: block;
  height: 100%;
  width: 100%;
}

.p-news {
  background-color: #F2F2F2;
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  padding-top: 90px;
  padding-top: 5.625rem;
}

.p-news__lead {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.8;
  margin-top: 32px;
  margin-top: 2rem;
}

.p-news__wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-news__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.p-news__list {
  list-style: none;
  overflow-y: auto;
  padding: 3px;
  padding: 0.1875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
}
.p-news__list::-webkit-scrollbar {
  width: 17px;
  width: 1.0625rem;
}
.p-news__list::-webkit-scrollbar-track {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 3.125rem;
  overflow: hidden;
}
.p-news__list::-webkit-scrollbar-thumb {
  background-color: #d9d9d9;
  border-radius: 3.125rem;
}
.p-news__list {
  scrollbar-color: #d9d9d9 #fff;
  scrollbar-width: thin;
}

.p-news__item {
  border-bottom: 1px solid #D9D9D9;
}
.p-news__item:first-child .p-news__link {
  padding-top: 0;
}

.p-news__link {
  grid-gap: 0.5rem 1.75rem;
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  color: inherit;
  display: grid;
  gap: 8px 28px;
  gap: 0.5rem 1.75rem;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  padding: 16px 0;
  padding: 1rem 0;
  text-decoration: none;
}
.p-news__link::after {
  align-self: center;
  background: url("../images/common/icon_arrow02.svg") no-repeat center/contain;
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  grid-column: 2;
  grid-row: 1/-1;
  height: 24px;
  height: 1.5rem;
  width: 24px;
  width: 1.5rem;
}
.p-news__link:hover .p-news__title {
  text-decoration: underline;
}

.p-news__date {
  color: #707070;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  grid-column: 1;
  grid-row: 1;
  line-height: 1;
  white-space: nowrap;
}

.p-news__title {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  grid-column: 1;
  grid-row: 2;
  line-height: 1.8;
}

.p-news__empty {
  color: #707070;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.8;
}

.p-news__side {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-news__links {
  border: 1px solid #000;
  padding: 24px;
  padding: 1.5rem;
}

.p-news__links-title {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 600;
  line-height: 1.8;
}

.p-news__links-list {
  list-style: none;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-news__links-item {
  border-top: 1px solid #D9D9D9;
  padding: 16px 0;
  padding: 1rem 0;
}
.p-news__links-item:first-child {
  border-top: none;
  padding-top: 0;
}
.p-news__links-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.p-news__links-item a {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  text-decoration: none;
}
.p-news__links-item a:hover {
  text-decoration: underline;
}
.p-news__links-item span {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.8;
}
.p-news__links-item img {
  -o-object-fit: contain;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 18px;
  height: 1.125rem;
     object-fit: contain;
  width: 18px;
  width: 1.125rem;
}

.p-news__sns {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}
.p-news__sns a {
  display: block;
}
.p-news__sns a:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(11%) sepia(82%) saturate(4713%) hue-rotate(345deg) brightness(82%) contrast(107%);
          filter: brightness(0) saturate(100%) invert(11%) sepia(82%) saturate(4713%) hue-rotate(345deg) brightness(82%) contrast(107%);
}
.p-news__sns img {
  -o-object-fit: contain;
  aspect-ratio: 1/1;
  display: block;
  -webkit-filter: brightness(0);
          filter: brightness(0);
  height: 24px;
  height: 1.5rem;
     object-fit: contain;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 24px;
  width: 1.5rem;
}

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

@media (max-width: 402px){
  html {
    font-size: 3.9800995025vw;
  }
}

@media screen and (min-width: 768px){
  html {
    font-size: 1.28vw;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  .l-drawer {
    display: none;
  }
  .l-inner {
    max-width: 1250px;
    max-width: 78.125rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
  .c-menu-button {
    display: none;
  }
  .c-section-title__label {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .c-section-title__label::before {
    height: 16px;
    height: 1rem;
    width: 16px;
    width: 1rem;
  }
  .c-section-title__heading {
    font-size: max(40px, 10px);
    font-size: max(2.5rem, 10px);
    line-height: 1;
  }
  .p-404 {
    padding: 250px 0;
    padding: 15.625rem 0;
  }
  .p-404__title {
    font-size: max(32px, 10px);
    font-size: max(2rem, 10px);
  }
  .p-404__text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-404__foot {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-events {
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
    padding-top: 120px;
    padding-top: 7.5rem;
  }
  .p-events__lead {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-events__grid {
    gap: 40px;
    gap: 2.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .p-events__card:hover .p-events__card-body {
    background-color: #A00E24;
  }
  .p-events__card:hover .p-events__card-date,
  .p-events__card:hover .p-events__card-title,
  .p-events__card:hover .p-events__card-venue {
    color: #fff;
  }
  .p-events__card:hover .p-events__card-btn {
    background-color: #fff;
    border-color: #fff;
  }
  .p-events__card:hover .p-events__card-btn::before {
    background-color: #A00E24;
  }
  .p-events__card-image {
    aspect-ratio: 373/248;
  }
  .p-events__card-body {
    -ms-flex-line-pack: start;
        align-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: grid;
    grid-template-columns: 15rem 1.5rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-events__card-text {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 240px;
    width: 15rem;
  }
  .p-footer {
    padding: 120px 0;
    padding: 7.5rem 0;
  }
  .p-footer__inner {
    display: grid;
    grid-template-areas: "logos nav" "info link" "bottom bottom";
    grid-template-columns: 1fr auto;
  }
  .p-footer__logos {
    gap: 45px;
    gap: 2.8125rem;
    grid-area: logos;
  }
  .p-footer__logo-art {
    padding-top: 30px;
    padding-top: 1.875rem;
  }
  .p-footer__info {
    grid-area: info;
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-footer__nav {
    grid-area: nav;
    margin-top: 0;
    padding-top: 30px;
    padding-top: 1.875rem;
  }
  .p-footer__nav-items {
    gap: 0 120px;
    gap: 0 7.5rem;
  }
  .p-footer__official-link {
    align-self: end;
    grid-area: link;
    margin-top: 50px;
    margin-top: 3.125rem;
    text-align: right;
  }
  .p-footer__bottom {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-area: bottom;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 40px;
    margin-top: 2.5rem;
    padding-right: 20px;
    padding-right: 1.25rem;
    padding-top: 32px;
    padding-top: 2rem;
  }
  .p-footer__legal {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    gap: 2rem;
    margin-top: 0;
  }
  .p-footer__copyright {
    margin-top: 0;
  }
  .p-footer__copyright small {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-fv {
    background-image: url("../images/common/mv_bg.jpg");
  }
  .p-fv__tree {
    aspect-ratio: 1022/1103;
    left: -65px;
    left: -4.0625rem;
    top: 47px;
    top: 2.9375rem;
    width: 1022px;
    width: 63.875rem;
  }
  .p-fv__logo {
    left: 357px;
    left: 22.3125rem;
    top: 280px;
    top: 17.5rem;
    width: 180px;
    width: 11.25rem;
  }
  .p-fv__catch {
    left: auto;
    right: 222px;
    right: 13.875rem;
    top: 145px;
    top: 9.0625rem;
  }
  .p-fv__news {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-radius: 0.3125rem 0 0 0.3125rem;
    bottom: 30px;
    bottom: 1.875rem;
    -webkit-box-shadow: 0.3125rem 0.3125rem 0.9375rem rgba(0, 0, 0, 0.15);
            box-shadow: 0.3125rem 0.3125rem 0.9375rem rgba(0, 0, 0, 0.15);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    gap: 1.5rem;
    left: auto;
    padding: 24px 30px 24px 24px;
    padding: 1.5rem 1.875rem 1.5rem 1.5rem;
    right: 6px;
    right: 0.375rem;
  }
  .p-fv__news-label {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .p-fv__news-list .p-fv__news-item:nth-child(n+2) {
    display: block;
  }
  .p-fv__news-item a {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 8px;
    gap: 0.5rem;
  }
  .p-fv__news-text {
    max-width: 247px;
    max-width: 15.4375rem;
  }
  .p-goods {
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
    padding-top: 120px;
    padding-top: 7.5rem;
  }
  .p-goods__lead {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-goods__list {
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-goods__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-goods__item + .p-goods__item {
    margin-top: 64px;
    margin-top: 4rem;
    padding-top: 64px;
    padding-top: 4rem;
  }
  .p-goods__image {
    width: 380px;
    width: 23.75rem;
  }
  .p-goods__info {
    gap: 24px;
    gap: 1.5rem;
  }
  .p-greeting {
    padding: 120px 0;
    padding: 7.5rem 0;
  }
  .p-greeting::before {
    background-image: url("../images/common/greeting_bg.png");
  }
  .p-greeting__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 64px;
    gap: 4rem;
  }
  .p-greeting__left {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    gap: 32px;
    gap: 2rem;
    width: 44.6666666667%;
  }
  .p-greeting__right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
    padding-right: 20px;
    padding-right: 1.25rem;
  }
  .p-greeting__subheading {
    font-size: max(32px, 10px);
    font-size: max(2rem, 10px);
  }
  .p-greeting__text {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-header__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-header__logo {
    width: 87px;
    width: 5.4375rem;
  }
  .p-header.is-scrolled .p-header__inner {
    padding-left: 60px;
    padding-left: 3.75rem;
    padding-right: 60px;
    padding-right: 3.75rem;
  }
  .p-header__pc-nav {
    display: block;
  }
  .p-history {
    padding: 120px 0;
    padding: 7.5rem 0;
  }
  .p-history::after {
    background: url("../images/common/history_deco.svg") center/contain no-repeat;
    bottom: 70px;
    bottom: 4.375rem;
    content: "";
    height: 2170px;
    height: 135.625rem;
    left: calc(50% - 24.25rem);
    pointer-events: none;
    position: absolute;
    width: 2008px;
    width: 125.5rem;
  }
  .p-history__youtube {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-history__timeline {
    display: flow-root;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    max-width: 1200px;
    max-width: 75rem;
    padding: 0;
  }
  .p-history__timeline::before {
    background-color: #707070;
    content: "";
    height: 0;
    height: var(--timeline-height, 0);
    left: 50%;
    position: absolute;
    top: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 1px;
  }
  .p-history__item {
    width: calc(400 / 1200 * 100%);
  }
  .p-history__item:nth-child(odd) {
    clear: right;
    float: right;
  }
  .p-history__item:nth-child(even) {
    clear: left;
    float: left;
  }
  .p-history__item:first-child {
    margin-top: 0;
  }
  .p-history__item:nth-child(2) {
    margin-top: 233px;
    margin-top: 14.5625rem;
  }
  .p-history__item:nth-child(n+3) {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-history__item::before {
    background: #fff;
    border: 1px solid #A00E24;
    border-radius: 50%;
    content: "";
    height: 30px;
    height: 1.875rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 30px;
    width: 1.875rem;
    z-index: 2;
  }
  .p-history__item::after {
    background-color: #A00E24;
    content: "";
    height: 1px;
    position: absolute;
    top: 50%;
  }
  .p-history__item:nth-child(odd)::before {
    left: calc(-50% - 0.9375rem);
  }
  .p-history__item:nth-child(odd)::after {
    left: calc(-50% + 0.9375rem);
    width: calc(50% - 0.9375rem);
  }
  .p-history__item:nth-child(even)::before {
    right: calc(-50% - 0.9375rem);
  }
  .p-history__item:nth-child(even)::after {
    left: 100%;
    width: calc(50% - 0.9375rem);
  }
  .p-history__card {
    padding: 31px;
    padding: 1.9375rem;
  }
  .p-history__year {
    font-size: max(40px, 10px);
    font-size: max(2.5rem, 10px);
  }
  .p-history__year-suffix {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
  }
  .p-history__name {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
  }
  .p-history__image--wide img {
    aspect-ratio: 1072/520;
  }
  .p-logo {
    padding: 122px 0 0;
    padding: 7.625rem 0 0;
  }
  .p-logo__inner {
    gap: 64px;
    gap: 4rem;
    padding: 64px;
    padding: 4rem;
  }
  .p-logo__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-logo__image {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 30px;
    padding: 1.875rem;
    width: 380px;
    width: 23.75rem;
  }
  .p-logo__image img {
    width: 152px;
    width: 9.5rem;
  }
  .p-logo__info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 40px;
    padding: 2.5rem;
  }
  .p-modal__content {
    max-width: 1200px;
    max-width: 75rem;
    overflow-y: auto;
    padding: 64px;
    padding: 4rem;
  }
  .p-modal__close {
    right: 20px;
    right: 1.25rem;
    top: 20px;
    top: 1.25rem;
  }
  .p-modal__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    gap: 2.5rem;
  }
  .p-modal__image {
    aspect-ratio: 496/330;
    border-radius: 0;
    width: 496px;
    width: 31rem;
  }
  .p-modal__body {
    padding: 0;
  }
  .p-modal__detail {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-modal__link {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
  .p-movie {
    padding: 120px 0;
    padding: 7.5rem 0;
  }
  .p-movie__inner {
    margin: 0 auto;
    max-width: 832px;
    max-width: 52rem;
    padding: 64px;
    padding: 4rem;
  }
  .p-movie__lead {
    margin-top: 40px;
    margin-top: 2.5rem;
    text-align: center;
  }
  .p-movie__video {
    aspect-ratio: 704/396;
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-news {
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
    padding-top: 120px;
    padding-top: 7.5rem;
  }
  .p-news__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 62px;
    gap: 3.875rem;
    margin-top: 58px;
    margin-top: 3.625rem;
  }
  .p-news__link {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    gap: 1.5rem;
    padding: 24px 20px 24px 0;
    padding: 1.5rem 1.25rem 1.5rem 0;
  }
  .p-news__date {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    line-height: 1.8;
  }
  .p-news__title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .p-news__side {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0;
    width: 368px;
    width: 23rem;
  }
  .p-news__links {
    padding: 32px;
    padding: 2rem;
  }
  .u-sp {
    display: none;
  }
}

@media (min-width: 1250px){
  html {
    font-size: 16px;
  }
}

@media (hover: hover){
  .p-drawer__nav-item a:hover {
    opacity: 0.7;
  }
}