@charset "UTF-8";



/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #effaf7;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='*'] {
  cursor: pointer;
}

a[href='*']:hover, a[href='*']:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #f8f8f8;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #f8f8f8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #f8f8f8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeIn,
.fadeOut {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

[data-target] {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;
  font-size: 100%;
}

button {
  color: #000;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #effaf7;
  min-height: 100vh;
  min-height: 100dvh;
}

body.fadeIn {
  opacity: 0;
}

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

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a[target=_blank]:not([class]) {
  -webkit-transition: color .3s;
  transition: color .3s;
}

a[target=_blank]:not([class])::after {
  display: inline-block;
  -webkit-mask-image: url('../img/common/icon-outerLink.svg');
  mask-image: url('../img/common/icon-outerLink.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-left: .7647058824em;
  background-color: currentColor;
  width: .8529411765em;
  height: .7647058824em;
  font-weight: 900;
  content: '';
}

a:not([class]) {
  color: #03c;
}

a:not([class]):visited {
  color: #639;
}

a:not([class]):hover {
  text-decoration: underline;
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #000;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

/************************************************************************
* end base
************************************************************************/
:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* カラー */
  --color-main: #007057;
  --color-main02: #00b966;
  --color-sub: #effaf7;
  --color-label: #006a51;
  --color-border: #bbbbbf;
  --color-bg: #effaf7;

  /* 記事カスタムプロパティ */
  --article-title-color: #007057;
  --article-heading-color: #232532;
  --article-text-color: #232532;
  --article-card-bg: #fff;

  /* ヘッダー高さ */
  --header-height: 60px;
}

.l-container {
  margin: 0 auto;
  padding: 0 10px;
  width: 100%;
  max-width: 600px;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}

.l-main {
  position: relative;
  z-index: 1;
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  margin: 0;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border: 1px solid transparent;
  border-radius: .625rem;
  background-color: #007057;
  background-image: none;
  padding: 1em 2em;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.c-btn:hover, .c-btn:focus-visible {
  outline: none;
  border-color: currentColor;
  background-color: #fff;
  color: #007057;
}

/************************************************************************
* modifier
************************************************************************/
.c-btn.c-btn--shine {
  position: relative;
  overflow: hidden;
}

.c-btn.c-btn--shine::before {
  position: absolute;
  top: 0;
  left: -75%;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .8)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);
  width: 50%;
  height: 100%;
  content: '';
}

.c-btn.c-btn--shine:hover, .c-btn.c-btn--shine:focus-visible {
  opacity: 1;
  border-color: #007057;
  background-color: #007057;
  color: #fff;
}

.c-btn.c-btn--shine:hover::before, .c-btn.c-btn--shine:focus-visible::before {
  -webkit-animation: shine .7s;
  animation: shine .7s;
}

@-webkit-keyframes shine {

  100% {
    left: 125%;
  }
}

@keyframes shine {

  100% {
    left: 125%;
  }
}

.c-btn--arrowRight {
  position: relative;
  padding-right: 2em;
  padding-left: 1.38em;
}

.c-btn--arrowRight::after {
  position: absolute;
  top: 50%;
  right: .83em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: '\f061';
}

.c-btn--yellow {
  background-color: yellow;
  color: #222;
}

.c-btn--yellow:hover, .c-btn--yellow:focus {
  border-color: yellow;
  color: #222;
}

/************************************************************************
* バリエーション:角丸ボタン
************************************************************************/
.c-roundedBtn {
  display: inline-block;
  -webkit-transition: .25s;
  transition: .25s;
  border: 2px solid transparent;
  border-radius: .625rem;
  border-bottom-color: rgb(0, 61, 47.3839285714);
  background-color: #007057;
  padding: 15px 10px;
  padding: .9375rem .625rem;
  width: 236px;
  width: 14.75rem;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
}

.c-roundedBtn:hover, .c-roundedBtn:focus {
  border-color: currentColor;
  background-color: #fff;
  color: #007057;
}

/************************************************************************
* バリエーション：アイコン付き小ボタン
************************************************************************/
.c-beforeIconBtn {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid currentColor;
  padding: .2em .3em;
  color: #007057;
  text-decoration: none;
}

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #007057;
  color: #fff;
}

.c-beforeIconBtn::before {
  display: inline-block;
  margin-right: .5em;
}

.c-beforeIconBtn--download::before {
  content: '\f019';
}

.c-totop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-totop img {
  display: block;
  width: 80px;
  width: 5rem;
  height: auto;
}

/************************************************************************
* p-404 - 404ページ
************************************************************************/
.p-404__wrapper {
  margin: 0 auto;
  border-bottom: 2px solid #fff;
  background-color: #effaf7;
  padding: 16px 10px 48px;
  padding: 1rem .625rem 3rem;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-404__inner {
  border-radius: .5rem;
  background-color: #fff;
  padding: 40px 16px 48px;
  padding: 2.5rem 1rem 3rem;
  text-align: center;
}

.p-404__title {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  color: #007057;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-404__text {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  color: #000;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.8;
}

.p-404__foot .c-btn {
  background-color: #00b966;
  min-width: 260px;
  min-width: 16.25rem;
}

.p-404__foot .c-btn:hover, .p-404__foot .c-btn:focus-visible {
  border-color: currentColor;
  background-color: #fff;
  color: #00b966;
}

/************************************************************************
* p-areaDetail
************************************************************************/
.p-areaDetail {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.p-areaDetail .p-fv__inner {
  padding-bottom: 104px;
  padding-bottom: 6.5rem;
}

.p-areaDetail .l-main {
  margin-top: -64px;
  margin-top: -4rem;
}

.p-areaDetail__inner.l-container {
  padding-right: 0;
  padding-left: 0;
}

.p-areaDetail__heading {
  display: inline-block;
  border-radius: 16px 16px 0 0;
  background-color: #effaf7;
  padding: 16px 32px;
  padding: 1rem 2rem;
}

.p-areaDetail__title {
  color: #00b966;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3333333333;
}

.p-areaDetail__event {
  gap: 24px;
  gap: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-bottom: 2px solid #fff;
  background-color: #effaf7;
  padding: 16px 10px 48px;
  padding: 1rem .625rem 3rem;
}

.p-areaDetail__field {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-areaDetail__fieldLabel {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 4px;
  padding-left: .25rem;
  color: #006a51;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
}

.p-areaDetail__fieldLabel::before {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url('../img/common/icon_check.svg') no-repeat center/contain;
  width: 14px;
  width: .875rem;
  height: 14px;
  height: .875rem;
  content: '';
}

.p-areaDetail__noEvent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 8px;
  background-color: #fff;
  padding: 40px 8px;
  padding: 2.5rem .5rem;
  min-height: 376px;
  min-height: 23.5rem;
  color: #000;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.7142857143;
  text-align: center;
}

.p-areaDetail__fieldValue {
  border-radius: 8px;
  background-color: #fff;
  padding: 8px;
  padding: .5rem;
  color: #000;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.7142857143;
}

.p-areaDetail__fieldValue--pre {
  white-space: pre-wrap;
}

.p-article__wrapper {
  margin: 0 auto;
  border-bottom: 2px solid #fff;
  background-color: #effaf7;
  padding: 16px 10px 48px;
  padding: 1rem .625rem 3rem;
  max-width: 1000px;
  max-width: 62.5rem;
}

.p-article__inner {
  border-radius: .5rem;
  background-color: var(--article-card-bg, #fff);
  padding: 24px 16px 40px;
  padding: 1.5rem 1rem 2.5rem;
}

.p-article__title {
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  color: var(--article-title-color, #007057);
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3333333333;
  text-align: left;
}

.p-article__body h2,
.p-article__body h3,
.p-article__body h4,
.p-article__body h5,
.p-article__body h6 {
  font-weight: 500;
  line-height: 2;
}

.p-article__body h2:not(.has-text-color),
.p-article__body h3:not(.has-text-color),
.p-article__body h4:not(.has-text-color),
.p-article__body h5:not(.has-text-color),
.p-article__body h6:not(.has-text-color) {
  color: var(--article-heading-color, #232532);
}

.p-article__body h2 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}

.p-article__body h3 {
  font-size: 15px;
  font-size: .9375rem;
}

.p-article__body h4 {
  font-size: 14px;
  font-size: .875rem;
}

.p-article__body h5 {
  font-size: 13px;
  font-size: .8125rem;
}

.p-article__body p {
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.7142857143;
}

.p-article__body p:not(.has-text-color) {
  color: var(--article-text-color, #232532);
}

.p-article__body img {
  border-radius: .5rem;
  max-width: 100%;
  height: auto;
}

.p-article__body .wp-block-image {
  margin: 0;
}

.p-article__body figure {
  margin: 0;
}

.p-article__body figcaption {
  margin-top: 8px;
  margin-top: .5rem;
  padding: .5em 0;
  color: var(--article-text-color, #232532);
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-article__body a:not([class]) {
  color: #007057;
  text-decoration: underline;
}

.p-article__body strong,
.p-article__body b {
  font-weight: 700;
}

.p-article__body ul {
  list-style: none;
}

.p-article__body ul li {
  position: relative;
  padding-left: 1em;
}

.p-article__body ul li::before {
  position: absolute;
  left: 0;
  content: '・';
}

.p-article__body ol {
  padding-left: 1.25em;
}

.p-article__body ol > li {
  list-style: decimal;
}

.p-article__body ol > li::marker {
  color: #007057;
  font-weight: 700;
}

.p-article__body > * + * {
  margin-top: 1em;
}

.p-article__body > *:first-child {
  margin-top: 0;
}

.p-article__body > * + h2,
.p-article__body > * + h3,
.p-article__body > * + h4,
.p-article__body > * + h5,
.p-article__body > * + h6 {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-article__body > .wp-block-spacer,
.p-article__body > .wp-block-spacer + * {
  margin-top: 0;
}

.p-article__empty {
  padding: 40px 0;
  padding: 2.5rem 0;
  color: #bbbbbf;
  font-size: 14px;
  font-size: .875rem;
  text-align: center;
}

.p-article__links {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.post-page-numbers {
  display: inline-block;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid #007057;
  width: 2em;
  height: 2em;
  color: #007057;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 2em;
  text-align: center;
}

.p-article__links .post-page-numbers {
  text-decoration: none;
}

.post-page-numbers + .post-page-numbers {
  margin-left: 10px;
}

.post-page-numbers.current {
  background-color: #007057;
  color: #fff;
}

.post-page-numbers.dots {
  border: none;
}

.p-drawer {
  z-index: 40;
}

.p-drawer__icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 16px;
  top: 1rem;
  right: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 42;
  -webkit-transition: opacity .3s ease, visibility .3s ease;
  transition: opacity .3s ease, visibility .3s ease;
  cursor: pointer;
  border-radius: .5rem 0 0 .5rem;
  background-color: #00b966;
  padding: 8px 16px;
  padding: .5rem 1rem;
  width: 72px;
  width: 4.5rem;
  height: 56px;
  height: 3.5rem;
  line-height: 1;
}

.p-drawer__icon.is-opened {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.p-drawer__bars {
  gap: 7px;
  gap: .4375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}

.p-drawer__bar {
  display: block;
  border-radius: .125rem;
  background: #fff;
  width: 100%;
  height: 3.5px;
  height: .21875rem;
}

.p-drawer__bg {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.p-drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 39;
  background: rgba(0, 112, 87, .3);
  width: 100vw;
  height: 100vh;
}

.p-drawer__content {
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(calc(100% + 4.5rem));
  transform: translateX(calc(100% + 4.5rem));
  z-index: 40;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
  width: 268px;
  width: 16.75rem;
  height: 100dvh;
}

.p-drawer__content.is-opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.p-drawer__close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 16px;
  top: 1rem;
  left: calc(4.5rem * -1);
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
  border: none;
  border-radius: .5rem 0 0 .5rem;
  background-color: #00b966;
  padding: 8px 16px;
  padding: .5rem 1rem;
  width: 72px;
  width: 4.5rem;
  height: 56px;
  height: 3.5rem;
}

.p-drawer__arrow {
  display: block;
  position: relative;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}

.p-drawer__arrow .p-drawer__bar {
  position: absolute;
  border-radius: .125rem;
}

.p-drawer__arrow .p-drawer__bar:nth-child(2) {
  top: 50%;
  left: 14%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: .125rem 0 0 .125rem;
  width: 76%;
}

.p-drawer__arrow .p-drawer__bar:nth-child(1) {
  top: 48%;
  right: 4px;
  right: .25rem;
  left: auto;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  width: 53%;
}

.p-drawer__arrow .p-drawer__bar:nth-child(3) {
  top: 52%;
  right: 4px;
  right: .25rem;
  left: auto;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  width: 53%;
}

.p-drawer__inner {
  gap: 40px;
  gap: 2.5rem;
  -webkit-overflow-scrolling: touch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #effaf7;
  padding: 40px 24px;
  padding: 2.5rem 1.5rem;
  max-height: 100%;
  overflow-y: auto;
}

.p-drawer__btnLink {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

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

.p-drawer__navList {
  gap: 32px;
  gap: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-drawer__navLink {
  display: inline-block;
  background-color: #00b966;
  padding: 7px 10px;
  padding: .4375rem .625rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  white-space: nowrap;
}

.p-drawer__footerLogo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px 0;
  padding: .3125rem 0;
}

.p-drawer__footerLogo img {
  width: 183px;
  width: 11.4375rem;
  height: auto;
}

.p-footer {
  border-top: 1px solid #007057;
  background-color: #effaf7;
  padding: 40px 0 80px;
  padding: 2.5rem 0 5rem;
}

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

.p-footer__logo {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  line-height: 1;
}

.p-footer__logo a {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.p-footer__logo a:focus-visible {
  opacity: .5;
}

.p-footer__logo img {
  width: 183px;
  width: 11.4375rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__info {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #232532;
  font-size: 14px;
  font-size: .875rem;
  text-align: center;
}

.p-footer__address {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-footer__tel {
  line-height: 1;
}

/************************************************************************
* p-fv
************************************************************************/
.p-fv {
  position: relative;
  overflow: hidden;
}

.p-fv::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(41deg, #006A51 5%, #00B966 123%);
  width: 100%;
  height: 628px;
  height: 39.25rem;
  content: '';
}

.p-fv__inner {
  position: relative;
  z-index: 1;
  padding-top: calc(60px + 1.25rem);
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.p-fv__inner--top {
  padding-top: calc(60px + 2.75rem);
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.p-fv__wrapper {
  gap: 48px;
  gap: 3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-fv__title {
  padding-left: 35px;
  padding-left: 2.1875rem;
}

.p-fv__heading {
  gap: 18px;
  gap: 1.125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-fv__heading-ja {
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 66px;
  font-size: 4.125rem;
  font-weight: 900;
  line-height: .9090909091;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, .25);
  text-shadow: .1875rem .1875rem .375rem rgba(0, 0, 0, .25);
}

.p-fv__heading-year {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 66px;
  font-size: 4.125rem;
  font-weight: 900;
  letter-spacing: .05em;
  line-height: .9090909091;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, .25);
  text-shadow: .1875rem .1875rem .375rem rgba(0, 0, 0, .25);
}

.p-fv__nav {
  display: none;
}

.p-fv__navList {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-fv__navLink {
  display: inline-block;
  -webkit-transition: color .3s, background-color .3s;
  transition: color .3s, background-color .3s;
  background-color: #00b966;
  padding: 4px 16px;
  padding: .25rem 1rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.p-fv__navLink:focus-visible {
  background-color: #fff;
  color: #00b966;
}

.p-fv__image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-fv__card {
  -webkit-box-shadow: 0 .125rem .375rem rgba(0, 0, 0, .06), 0 .5rem 1.5rem rgba(0, 0, 0, .1);
  box-shadow: 0 .125rem .375rem rgba(0, 0, 0, .06), 0 .5rem 1.5rem rgba(0, 0, 0, .1);
  border-radius: 8px;
  background-color: #effaf7;
  padding: 16px;
  padding: 1rem;
}

.p-fv__card img {
  display: block;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  width: 260px;
  width: 16.25rem;
  height: 367px;
  height: 22.9375rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-fv__card:focus-visible img {
  opacity: .5;
}

.p-header {
  background-color: transparent;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 13px;
  padding-bottom: .8125rem;
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.p-header__logo {
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  z-index: 1;
  line-height: 1;
}

.p-header__logo a {
  display: block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.p-header__logo a:focus-visible {
  opacity: .5;
}

.p-header__logo img {
  width: 198px;
  width: 12.375rem;
  height: auto;
}

.p-header__button {
  display: none;
}

.p-header__drawer {
  margin-left: auto;
}

/************************************************************************
* p-pagination
************************************************************************/
.p-pagination__inner {
  letter-spacing: 0;
  text-align: center;
}

.page-numbers {
  display: inline-block;
  border: 1px solid #007057;
  width: 2em;
  height: 2em;
  color: #007057;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  line-height: 2;
}

.page-numbers + .page-numbers {
  margin-left: 10px;
  margin-left: .625rem;
}

.page-numbers.current {
  background-color: #007057;
  color: #fff;
}

.page-numbers.dots {
  border: none;
}

.p-primaryButton {
  padding: 40px 10px 48px;
  padding: 2.5rem 10px 3rem;
}

.p-primaryButton__list {
  gap: 42px;
  gap: 2.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  list-style: none;
}

.p-primaryButton__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  -webkit-box-shadow: .25rem .25rem .5rem rgba(0, 0, 0, .1);
  box-shadow: .25rem .25rem .5rem rgba(0, 0, 0, .1);
  border: 1px solid #00b966;
  border-radius: 8px;
  background-color: #effaf7;
  padding: 16px 26px;
  padding: 1rem 1.625rem;
  width: 100%;
  height: 100%;
  color: #00b966;
  font-size: max(10px, 16px);
  font-size: max(10px, 1rem);
  font-weight: 700;
  line-height: max(10px, 24px);
  line-height: max(10px, 1.5rem);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.p-primaryButton__link:focus-visible {
  opacity: .5;
}

/************************************************************************
* p-subHead - 下層ページ見出しエリア
************************************************************************/
.p-subHead {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 16px;
  padding-left: 1rem;
}

.p-subHead__title {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #fff;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: .8888888889;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, .25);
  text-shadow: .1875rem .1875rem .375rem rgba(0, 0, 0, .25);
}

.p-subHead__title-ja {
  font-family: 'Noto Sans JP', sans-serif;
}

.p-subHead__title-year {
  font-family: 'Roboto', sans-serif;
  letter-spacing: .05em;
}

.p-subHead__nav {
  display: none;
}

.p-subHead__navList {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-subHead__navLink {
  display: inline-block;
  -webkit-transition: color .3s, background-color .3s;
  transition: color .3s, background-color .3s;
  background-color: #00b966;
  padding: 4px 16px;
  padding: .25rem 1rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.p-subHead__navLink:focus-visible {
  background-color: #fff;
  color: #00b966;
}

/************************************************************************
* p-topGallery
************************************************************************/
.p-topGallery {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.p-topGallery__grid {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-topGallery__buttons {
  gap: 32px;
  gap: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px 0 80px;
  padding: 2.5rem 0 5rem;
}

.p-topGallery__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
  -webkit-box-shadow: .25rem .25rem .625rem rgba(0, 0, 0, .15);
  box-shadow: .25rem .25rem .625rem rgba(0, 0, 0, .15);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, .6);
  padding: 16px 8px;
  padding: 1rem .5rem;
  width: 316px;
  width: 19.75rem;
  color: #00b966;
  font-size: max(10px, 16px);
  font-size: max(10px, 1rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.p-topGallery__btn:focus-visible {
  background-color: #00b966;
  color: #fff;
}

.p-topGallery__card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-topGallery__cardTitle {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 2px solid #00b966;
  padding: 10px 18px;
  padding: .625rem 1.125rem;
  color: #007057;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.p-topGallery__cardBody {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 24px;
  padding-top: 1.5rem;
  width: 100%;
}

.p-topGallery__cardBody--grid {
  gap: 16px;
  gap: 1rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-topGallery__venueImage {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-topGallery__venueImage img {
  display: block;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  max-width: 100%;
  height: auto;
}

.p-topGallery__venueImage:focus-visible img {
  opacity: .5;
}

.p-topGallery__posterImage {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 88.7323943662%;
}

.p-topGallery__posterImage img {
  display: block;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  max-width: 100%;
  height: auto;
}

.p-topGallery__posterImage:focus-visible img {
  opacity: .5;
}

.p-topGallery__fileLink {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  padding: 12px 16px;
  padding: .75rem 1rem;
  color: #007057;
  font-weight: 700;
  text-decoration: none;
}

.p-topGallery__fileLink:focus-visible {
  opacity: .6;
}

.p-topGallery__pdfLabel {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 4px;
  background-color: #00b966;
  padding: 2px 8px;
  padding: .125rem .5rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
}

.p-topGallery__placardItem {
  display: block;
  width: calc(50% - .625rem);
}

.p-topGallery__placardItem img {
  display: block;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  background-color: #fff;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-topGallery__placardItem:focus-visible img {
  opacity: .5;
}

/************************************************************************
* p-venueList
************************************************************************/
.p-venueList {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.p-venueList__inner.l-container {
  padding-right: 8px;
  padding-right: .5rem;
  padding-left: 8px;
  padding-left: .5rem;
}

.p-venueList__heading {
  display: inline-block;
  border-radius: 16px 16px 0 0;
  background-color: #fff;
  padding: 16px 16px 10px;
  padding: 1rem 1rem .625rem;
}

.p-venueList__title {
  color: #007057;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3333333333;
}

.p-venueList__body {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 0 16px 16px 16px;
  background-color: #fff;
  padding: 8px 12px 48px;
  padding: .5rem .75rem 3rem;
}

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

.p-venueList__regionName {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 120px;
  width: 7.5rem;
  height: 49px;
  height: 3.0625rem;
  color: #bbbbbf;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}

.p-venueList__buttons {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-venueList__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
  border: 1px solid #bbbbbf;
  border-radius: 4px;
  background-color: #fff;
  padding: 10px 16px;
  padding: .625rem 1rem;
  min-width: 104px;
  min-width: 6.5rem;
  color: #007057;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
}

.p-venueList__btn:focus-visible {
  background-color: #00b966;
  color: #fff;
}

.clearfix::after {
  display: block;
  clear: both;
  content: '';
}

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

.u-overflowHidden {
  overflow: hidden !important;
}

@media screen and (min-width: 768px) {

  html {
    font-size: 1.6vw;
    font-size: calc(var(--vw-unitless) / 1000 * 100%);
  }

  :root {
    --header-height: 121px;
  }

  .l-container {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1060px;
  }

  .l-container.l-container--narrow {
    max-width: 860px;
  }

  .l-container.l-container--wide {
    max-width: 1260px;
  }

  .c-totop {
    display: none;
  }

  .p-404__wrapper {
    border-bottom: none;
    border-radius: 16px;
    padding: 32px 32px 80px;
    padding: 2rem 2rem 5rem;
  }

  .p-404__inner {
    padding: 64px 40px 80px;
    padding: 4rem 2.5rem 5rem;
  }

  .p-404__title {
    margin-bottom: 32px;
    margin-bottom: 2rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-404__text {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-areaDetail {
    padding-bottom: 80px;
    padding-bottom: 5rem;
  }

  .p-areaDetail .p-fv__inner {
    padding-bottom: 0;
  }

  .p-areaDetail .l-main {
    margin-top: 0;
  }

  .p-areaDetail__inner.l-container {
    padding-right: 30px;
    padding-left: 30px;
  }

  .p-areaDetail__heading {
    padding: 16px 32px 8px;
    padding: 1rem 2rem .5rem;
  }

  .p-areaDetail__event {
    gap: 16px;
    gap: 1rem;
    padding: 32px 32px 48px;
    padding: 2rem 2rem 3rem;
  }

  .p-areaDetail__field {
    gap: 8px;
    gap: .5rem;
  }

  .p-areaDetail__fieldLabel {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-areaDetail__noEvent {
    padding: 80px 24px;
    padding: 5rem 1.5rem;
    min-height: 384px;
    min-height: 24rem;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .p-areaDetail__fieldValue {
    padding: 16px 24px;
    padding: 1rem 1.5rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-article__wrapper {
    border-bottom: none;
    border-radius: 16px;
    padding: 32px 32px 80px;
    padding: 2rem 2rem 5rem;
  }

  .p-article__inner {
    padding: 40px 40px 64px;
    padding: 2.5rem 2.5rem 4rem;
    min-height: 450px;
    min-height: 28.125rem;
  }

  .p-article__title {
    padding-bottom: 32px;
    padding-bottom: 2rem;
  }

  .p-article__body h2 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }

  .p-article__body h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-article__body h4 {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-article__body h5 {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-article__body p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 2;
  }

  .p-article__empty {
    padding: 80px 0;
    padding: 5rem 0;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-footer {
    padding: 30px 0 80px;
    padding: 1.875rem 0 5rem;
  }

  .p-footer__body {
    gap: 20px;
    gap: 1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-footer__logo {
    margin-top: 8px;
    margin-top: .5rem;
    margin-left: -24px;
    margin-left: -1.5rem;
  }

  .p-footer__info {
    font-size: 16px;
    font-size: 1rem;
    text-align: left;
  }

  .p-footer__address {
    gap: 16px;
    gap: 1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-fv {
    overflow: visible;
  }

  .p-topPage .p-fv {
    min-height: 640px;
    min-height: 40rem;
  }

  .p-fv::before {
    -webkit-clip-path: polygon(0 0, 61.1% 0, 20.2% 100%, 0 100%);
    clip-path: polygon(0 0, 61.1% 0, 20.2% 100%, 0 100%);
    background: linear-gradient(54deg, #006A51, #00B966);
  }

  .p-topPage .p-fv::before {
    height: 640px;
    height: 40rem;
  }

  .p-fv__inner {
    padding-top: 110px;
    padding-top: 6.875rem;
    padding-bottom: 0;
  }

  .p-fv__inner--top {
    padding-top: calc(121px + 1rem);
    padding-bottom: 0;
  }

  .p-fv__wrapper {
    gap: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-fv__title {
    gap: 32px;
    gap: 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
  }

  .p-fv__heading {
    gap: 24px;
    gap: 1.5rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-fv__heading-ja {
    font-size: 88px;
    font-size: 5.5rem;
    line-height: .9090909091;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, .25);
    text-shadow: .25rem .25rem .5rem rgba(0, 0, 0, .25);
  }

  .p-fv__heading-year {
    font-size: 88px;
    font-size: 5.5rem;
    line-height: .9090909091;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, .25);
    text-shadow: .25rem .25rem .5rem rgba(0, 0, 0, .25);
  }

  .p-fv__nav {
    display: block;
  }

  .p-fv__navList {
    gap: 16px;
    gap: 1rem;
  }

  .p-fv__image {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .p-header {
    padding-top: 16px;
    padding-top: 1rem;
    padding-bottom: 0;
  }

  .p-header__inner {
    padding-right: 80px;
    padding-right: 5rem;
    padding-left: 0;
  }

  .p-header__logo img {
    width: 264px;
    width: 16.5rem;
  }

  .p-header__button {
    display: block;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: auto;
  }

  .p-header__button a {
    display: block;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    margin-left: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .p-header__button a:focus-visible {
    opacity: .5;
  }

  .p-header__button img {
    width: 213px;
    width: 13.3125rem;
    height: auto;
  }

  .p-topPage .p-header__button img {
    width: 284px;
    width: 17.75rem;
  }

  .p-header__drawer {
    display: none;
  }

  .p-primaryButton {
    padding: 80px 0 88px;
    padding: 5rem 0 5.5rem;
  }

  .p-primaryButton__list {
    row-gap: 24px;
    row-gap: 1.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 5rem;
    -moz-column-gap: 5rem;
    column-gap: 5rem;
    margin: 0;
    width: auto;
  }

  .p-primaryButton__link {
    padding: 40px 24px;
    padding: 2.5rem 1.5rem;
    font-size: max(10px, 24px);
    font-size: max(10px, 1.5rem);
  }

  .p-subHead {
    gap: 64px;
    gap: 4rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 18px;
    padding-bottom: 1.125rem;
    padding-left: 0;
  }

  .p-subHead__title {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, .25);
    text-shadow: .25rem .25rem .5rem rgba(0, 0, 0, .25);
  }

  .p-subHead__nav {
    display: block;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .p-topGallery {
    padding-top: 16px;
    padding-top: 1rem;
    padding-bottom: 80px;
    padding-bottom: 5rem;
  }

  .p-topGallery__grid {
    gap: 70px 24px;
    gap: 4.375rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .p-topGallery__buttons {
    padding: 73px 0 0;
    padding: 4.5625rem 0 0;
  }

  .p-topGallery__btn {
    padding: 40px 10px;
    padding: 2.5rem .625rem;
    width: 100%;
    max-width: 420px;
    max-width: 26.25rem;
    font-size: max(10px, 24px);
    font-size: max(10px, 1.5rem);
    line-height: 1;
  }

  .p-topGallery__cardTitle {
    padding: 16px 24px;
    padding: 1rem 1.5rem;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1;
  }

  .p-topGallery__cardBody {
    padding-top: 32px;
    padding-top: 2rem;
  }

  .p-topGallery__cardBody--grid {
    gap: 16px 20px;
    gap: 1rem 1.25rem;
  }

  .p-topGallery__venueImage {
    aspect-ratio: 500/354;
    width: 100%;
    max-width: 500px;
    max-width: 31.25rem;
  }

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

  .p-topGallery__posterImage {
    aspect-ratio: 250/353;
    width: 250px;
    width: 15.625rem;
  }

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

  .p-venueList {
    padding-bottom: 80px;
    padding-bottom: 5rem;
  }

  .p-venueList__inner.l-container {
    padding-right: 30px;
    padding-left: 30px;
  }

  .p-venueList__heading {
    padding: 16px 32px 8px;
    padding: 1rem 2rem .5rem;
  }

  .p-venueList__body {
    gap: 24px;
    gap: 1.5rem;
    padding: 32px 32px 48px;
    padding: 2rem 2rem 3rem;
  }

  .p-venueList__group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-venueList__buttons {
    padding-left: 24px;
    padding-left: 1.5rem;
  }

  .p-venueList__btn {
    padding: 8px 16px;
    padding: .5rem 1rem;
  }
}

@media screen and (min-width: 768px) and (any-hover: hover) {

  .p-header__button a:hover {
    opacity: .5;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {

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

@media (min-width: 1000px) {

  html {
    font-size: 100%;
  }
}

@media screen and (min-width: 1024px) {

  .post-page-numbers + .post-page-numbers {
    margin-left: 20px;
  }

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

@media (min-width: 1440px) {

  .p-fv::before {
    -webkit-clip-path: polygon(0 0, calc(880px + (100% - 1440px) / 2) 0, calc(291px + (100% - 1440px) / 2) 100%, 0 100%);
    clip-path: polygon(0 0, calc(880px + (100% - 1440px) / 2) 0, calc(291px + (100% - 1440px) / 2) 100%, 0 100%);
  }
}

@media (max-width: 767px) {

  .p-topPage .p-fv::before {
    left: -234px;
    left: -14.625rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 33.13% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 33.13% 100%, 0 100%);
    width: 888px;
    width: 55.5rem;
  }
}

@media screen and (max-width: 767px) {

  .p-topGallery__placardItem {
    width: 240px;
    width: 15rem;
  }

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

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
    font-size: calc(var(--vw-unitless) / 375 * 100%);
  }
}

@media (any-hover: hover) {

  .p-footer__logo a:hover {
    opacity: .5;
  }

  .p-fv__navLink:hover {
    background-color: #fff;
    color: #00b966;
  }

  .p-fv__card:hover img {
    opacity: .5;
  }

  .p-header__logo a:hover {
    opacity: .5;
  }

  .p-primaryButton__link:hover {
    opacity: .5;
  }

  .p-subHead__navLink:hover {
    background-color: #fff;
    color: #00b966;
  }

  .p-topGallery__btn:hover {
    background-color: #00b966;
    color: #fff;
  }

  .p-topGallery__venueImage:hover img {
    opacity: .5;
  }

  .p-topGallery__posterImage:hover img {
    opacity: .5;
  }

  .p-topGallery__fileLink:hover {
    opacity: .6;
  }

  .p-topGallery__placardItem:hover img {
    opacity: .5;
  }

  .p-venueList__btn:hover {
    background-color: #00b966;
    color: #fff;
  }
}