html {
  scroll-behavior: smooth;
}

body {
  color: #232323;
}

.pc_none {
  display: none;
}
@media (width <= 640px) {
  .pc_none {
    display: block;
  }
}

.sp_none {
  display: block;
}
@media (width <= 640px) {
  .sp_none {
    display: none;
  }
}

.font_min {
  font-family: "Noto Serif JP", serif;
}

.font_en {
  font-family: "Work Sans", sans-serif;
}

h4,
p,
a,
span,
table,
th,
dd,
dl,
dt,
dd,
li {
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media (width <= 640px) {
  h4,
  p,
  a,
  span,
  table,
  th,
  dd,
  dl,
  dt,
  dd,
  li {
    font-size: 1.0625rem;
    line-height: 1.9;
  }
}

.num_letter {
  font-family: "Work Sans", sans-serif;
  letter-spacing: 0.005em;
  font-weight: 500;
}

.red {
  color: #dd3737;
}

.ltab_on {
  display: none;
}
@media (width <= 1080px) {
  .ltab_on {
    display: block;
  }
}
@media (width <= 640px) {
  .ltab_on {
    display: none;
  }
}

.base_container {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 26px 1fr 370px;
}
@media (width <= 834px) {
  .base_container {
    display: block;
  }
}

.line {
  background-color: #b4b4b4;
}
@media (width <= 640px) {
  .line {
    display: none;
  }
}

.fadeup {
  opacity: 0;
  visibility: hidden;
  translate: 0 50px;
}

.fadeup.is_active {
  -webkit-animation: fadeup 0.4s ease forwards;
          animation: fadeup 0.4s ease forwards;
}

.fadeup_delay {
  opacity: 0;
  visibility: hidden;
  translate: 0 50px;
}

.fadeup_delay.is_active_delay {
  -webkit-animation: fadeup 0.4s ease forwards;
          animation: fadeup 0.4s ease forwards;
}

.fadeup_delay.is_active_delay:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.fadeup_delay.is_active_delay:nth-child(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.fadeup_delay.is_active_delay:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.fadeup_delay.is_active_delay:nth-child(4) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

@-webkit-keyframes fadeup {
  0% {
    opacity: 0;
    visibility: hidden;
    translate: 0 50px;
  }
  100% {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
  }
}

@keyframes fadeup {
  0% {
    opacity: 0;
    visibility: hidden;
    translate: 0 50px;
  }
  100% {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
  }
}
#humburger {
  display: none;
  width: 80px;
  height: 70px;
  border: 2px solid #1b365d;
  border-radius: 6px;
  position: fixed;
  top: 5%;
  right: 5%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2000;
}
@media (width <= 834px) {
  #humburger {
    display: block;
  }
}
#humburger span {
  display: block;
  position: absolute;
  width: 80%;
  height: 5px;
  background-color: #1b365d;
  inset: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#humburger span:nth-of-type(1) {
  translate: 0 -15px;
}
#humburger span:nth-of-type(2) {
  translate: 0 0;
}
#humburger span:nth-of-type(3) {
  translate: 0 15px;
}
#humburger.is_humburger span:nth-of-type(1) {
  translate: 0 0;
  background-color: #fff;
  rotate: -45deg;
}
#humburger.is_humburger span:nth-of-type(2) {
  translate: 0 0;
  background-color: #fff;
  rotate: -45deg;
}
#humburger.is_humburger span:nth-of-type(3) {
  translate: 0 0;
  background-color: #fff;
  rotate: 45deg;
}
#humburger.is_humburger {
  border: 2px solid #fff;
}

/* /humburger */
header {
  position: fixed;
  top: 0;
  right: 0;
  width: 370px;
  height: 100vh;
  background: url(../img/bg_line.jpg) no-repeat center center/cover;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 1100;
}
@media (width <= 834px) {
  header {
    width: 100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  header.is_drawer {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
@media (width <= 640px) {
  header.is_drawer {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

/* /header */
.header_wrapper {
  position: absolute;
  top: 340px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1200;
}
@media (width <= 834px) {
  .header_wrapper {
    left: 25%;
    top: 240px;
  }
}
@media (width <= 640px) {
  .header_wrapper {
    left: 50%;
    top: 220px;
  }
}
.header_wrapper h1 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: #fff;
}
.header_wrapper h1 img {
  display: inline-block;
  width: 32px;
  margin-right: 10px;
}
.header_wrapper li {
  width: 240px;
  margin-bottom: 25px;
  background-color: #fff;
  border: 1px solid #1b365d;
  border-radius: 0 6px 6px 0;
  overflow: hidden;
  position: relative;
}
.header_wrapper li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 102%;
  height: 100%;
  background-color: #1b365d;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header_wrapper li:hover::before {
  left: 0;
}
.header_wrapper li a {
  display: block;
  position: relative;
  padding: 12px 10px 12px 54px;
  color: #1b365d;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 1;
}
.header_wrapper li a:hover {
  color: #fff;
}
@media (width <= 834px) {
  .header_wrapper li {
    width: 300px;
    margin-bottom: 25px;
    background-color: transparent;
    border: 0;
    border-radius: 0 0 0 0;
    overflow: hidden;
    position: static;
  }
  .header_wrapper li::before {
    display: none;
  }
  .header_wrapper li a {
    display: block;
    font-size: 1.3125rem;
    position: static;
    padding: 0 0 0.5rem 1rem;
    color: #fff;
    border-bottom: 1px solid #fff;
  }
}
.header_wrapper {
  /* /header_wrapper li */
} /* /header_wrapper */
.line {
  background: url(../img/bg_line_02.jpg) no-repeat center center/cover;
}
@media (width <= 640px) {
  .line {
    display: none;
  }
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

*,
:after,
:before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}

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

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden],
template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  color: #232323;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

b,
strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

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

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

input {
  border-radius: 0;
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

[type=search][type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted;
}

[type=reset],
[type=submit],
button,
html [type=button] button,
select {
  text-transform: none;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

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

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=search] img {
  border-style: none;
  vertical-align: bottom;
}

progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.other_title {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 40px;
  color: #1b365d;
}
.other_title::after {
  content: "";
  display: block;
  margin: 0 auto;
  margin-top: 10px;
  width: 5rem;
  height: 6px;
  background-color: #1b365d;
}

.event_info_container {
  width: min(90%, 960px);
  padding: 60px 0 0;
  margin: 0 auto;
}
.event_info_container h3 {
  font-size: 1.1875rem;
  color: #1b365d;
  text-align: center;
  width: 17rem;
  padding: 6px 10px;
  border: 1px solid #1b365d;
  margin-bottom: 30px;
}

.profile_info_container {
  margin: 0 auto 120px;
}
.profile_info_container .profile_info_sub_container {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.profile_info_container .profile_info_sub_container h2 {
  display: block;
  font-size: 2.5625rem;
  color: #1b365d;
  margin-bottom: 38px;
  line-height: 1.35;
}
.profile_info_container .profile_info_sub_container h2 span {
  font-size: 1.875rem;
}
@media (width <= 1080px) {
  .profile_info_container .profile_info_sub_container h2 span {
    font-size: 1.375rem;
  }
}
@media (width <= 640px) {
  .profile_info_container .profile_info_sub_container h2 span {
    line-height: 1;
  }
}
.profile_info_container .profile_info_sub_container .profile_info_inner {
  width: 84%;
  margin: 0 auto;
}
@media (width <= 1240px) {
  .profile_info_container .profile_info_sub_container .profile_info_inner {
    width: 90%;
  }
}
.profile_info_container .profile_info_sub_container .profile_info_wrapper {
  display: grid;
  grid-template-columns: 65% 32%;
  gap: 0 40px;
  max-width: 800px;
  margin: 0 auto 60px;
}
@media (width <= 1240px) {
  .profile_info_container .profile_info_sub_container .profile_info_wrapper {
    grid-template-columns: 50% 48%;
  }
}
@media (width <= 1080px) {
  .profile_info_container .profile_info_sub_container .profile_info_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (width <= 834px) {
  .profile_info_container .profile_info_sub_container .profile_info_wrapper {
    display: grid;
    grid-template-columns: 65% 32%;
    gap: 0 40px;
  }
}
@media (width <= 640px) {
  .profile_info_container .profile_info_sub_container .profile_info_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.profile_info_container .profile_info_sub_container .profile_info_wrapper .profile_info_inner > p {
  margin-bottom: 30px;
}
@media (width <= 640px) {
  .profile_info_container .profile_info_sub_container .profile_info_wrapper .profile_info_inner > p {
    font-size: 1.125rem;
  }
}
.profile_info_container .profile_info_sub_container .profile_info_wrapper .profile_info_inner .profile_info_inner_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 24px;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
@media (width <= 640px) {
  .profile_info_container .profile_info_sub_container .profile_info_wrapper .profile_info_inner .profile_info_inner_name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.profile_info_container .profile_info_sub_container .profile_info_wrapper .profile_info_inner .profile_info_inner_name span {
  padding-top: 4px;
  font-size: 1.375rem;
}
@media (width <= 640px) {
  .profile_info_container .profile_info_sub_container .profile_info_wrapper .profile_info_inner .profile_info_inner_name span {
    font-size: 1.625rem;
  }
}
.profile_info_container .profile_info_sub_container .profile_info_wrapper .profile_info_inner .profile_info_inner_name p {
  font-size: 2rem;
}
@media (width <= 640px) {
  .profile_info_container .profile_info_sub_container .profile_info_wrapper .profile_info_inner .profile_info_inner_name p {
    margin-bottom: 20px;
    font-size: 2.25rem;
  }
}
@media (width <= 640px) {
  .profile_info_container .profile_info_sub_container .profile_info_wrapper .profile_info_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.profile_info_container .profile_info_sub_container .profile_info_wrapper .profile_info_img {
  width: 100%;
}
.profile_info_container .profile_info_sub_container .profile_info_wrapper .profile_info_img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (width <= 1080px) {
  .profile_info_container .profile_info_sub_container .profile_info_wrapper .profile_info_img {
    display: block;
    width: 60%;
    margin: 0 auto 40px;
  }
}
@media (width <= 834px) {
  .profile_info_container .profile_info_sub_container .profile_info_wrapper .profile_info_img {
    width: 100%;
  }
}
.profile_info_container .profile_info_sub_container > p {
  padding: 0 60px;
  position: relative;
}
@media (width <= 640px) {
  .profile_info_container .profile_info_sub_container > p {
    padding: 0 16px;
  }
}
.profile_info_container .profile_info_sub_container > p span {
  display: block;
  font-weight: 500;
  color: #1b365d;
}
.profile_info_container .profile_info_sub_container > p::before, .profile_info_container .profile_info_sub_container > p::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 35px;
  height: 120%;
  border: 0;
  border-top: 2px solid #1b365d;
  border-bottom: 2px solid #1b365d;
}
@media (width <= 1080px) {
  .profile_info_container .profile_info_sub_container > p::before, .profile_info_container .profile_info_sub_container > p::after {
    display: none;
  }
}
.profile_info_container .profile_info_sub_container > p::before {
  left: 0;
  border-left: 2px solid #232323;
  border-radius: 6px 0 0 6px;
}
.profile_info_container .profile_info_sub_container > p::after {
  right: 0;
  border-right: 2px solid #232323;
  border-radius: 0 6px 6px 0;
}

.day_price_info_sub_container {
  margin: 0 auto;
  width: 89%;
}

.day_info_container {
  margin-bottom: 40px;
}
.day_info_container p {
  font-size: 1.875rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 500;
  line-height: 1.5;
  color: #1b365d;
}
@media (width <= 640px) {
  .day_info_container p:nth-of-type(1) {
    margin-bottom: -16px;
  }
  .day_info_container p:nth-of-type(2) > span {
    font-size: 1.375rem;
  }
}
.day_info_container p .l_letter {
  font-size: 2.8125rem;
  color: #dd3737;
}
.day_info_container p .m_letter {
  font-size: 1.875rem;
}
.day_info_container p .s_letter {
  font-size: 1.5rem;
}
@media (width <= 1080px) {
  .day_info_container p .l_letter {
    font-size: 2.5rem;
  }
  .day_info_container p .m_letter {
    font-size: 1.6875rem;
  }
  .day_info_container p .s_letter {
    font-size: 1.3125rem;
  }
}
@media (width <= 640px) {
  .day_info_container p .l_letter {
    font-size: 2.25rem;
  }
  .day_info_container p .m_letter {
    font-size: 1.5rem;
  }
  .day_info_container p .s_letter {
    font-size: 1.1875rem;
  }
}

.price_info_wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 60px;
}
@media (width <= 1080px) {
  .price_info_wrapper {
    display: block;
  }
}
@media (width <= 834px) {
  .price_info_wrapper {
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 0 4%;
  }
}
@media (width <= 640px) {
  .price_info_wrapper {
    display: block;
  }
}
.price_info_wrapper > p {
  text-align: right;
}
.price_info_wrapper .price_info_inner {
  display: grid;
  grid-template-columns: 8rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 20px;
}
@media (width <= 834px) {
  .price_info_wrapper .price_info_inner {
    grid-template-columns: 7rem 1fr;
  }
}
@media (width <= 640px) {
  .price_info_wrapper .price_info_inner {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto 30px;
  }
}
.price_info_wrapper .price_info_inner p {
  font-size: 1.5625rem;
  color: #1b365d;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 500;
}
.price_info_wrapper .price_info_inner p .l_letter {
  font-size: 3.125rem;
  color: #dd3737;
}
.price_info_wrapper .price_info_inner p .m_letter {
  font-size: 1.5625rem;
}
.price_info_wrapper .price_info_inner p .s_letter {
  font-size: 1.25rem;
}
@media (width <= 1080px) {
  .price_info_wrapper .price_info_inner p {
    font-size: 1.375rem;
  }
  .price_info_wrapper .price_info_inner p .l_letter {
    font-size: 2.8125rem;
    color: #dd3737;
  }
  .price_info_wrapper .price_info_inner p .m_letter {
    font-size: 1.375rem;
  }
  .price_info_wrapper .price_info_inner p .s_letter {
    font-size: 1.125rem;
  }
}
@media (width <= 640px) {
  .price_info_wrapper .price_info_inner p {
    margin-bottom: -20px;
  }
}
.price_info_wrapper {
  /* /price_info_inner */
} /* /price_info_wrapper */
@media (width <= 640px) {
  .price_info_wrapper .price_info_inner .place_name {
    margin-bottom: -6px;
  }
}
.nav_explain {
  text-align: center;
  margin-bottom: 16px;
  color: #1b365d;
}

.access_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 20px;
  width: 60%;
  margin: 0 auto 100px;
}
@media (width <= 640px) {
  .access_link {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
    width: 90%;
  }
}
.access_link li {
  width: 200px;
  text-align: center;
}
@media (width <= 640px) {
  .access_link li {
    width: 100%;
  }
}
.access_link li a {
  display: block;
  padding: 10px 0;
  border-radius: 6px;
  color: #fff;
  background-color: #29528b;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.access_link li a:hover {
  background-color: #1b365d;
}

.access_info_container {
  scroll-margin-top: 60px;
}

.tel_link {
  pointer-events: none;
}

.access_info_wrapper .access_info_content {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  gap: 0 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
@media (width <= 640px) {
  .access_info_wrapper .access_info_content {
    gap: 0 14px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.access_info_wrapper .access_info_content dt,
.access_info_wrapper .access_info_content dd {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
@media (width <= 1080px) {
  .access_info_wrapper .access_info_content dt,
  .access_info_wrapper .access_info_content dd {
    font-size: 1.125rem;
  }
}
@media (width <= 640px) {
  .access_info_wrapper .access_info_content dt,
  .access_info_wrapper .access_info_content dd {
    line-height: 1.6;
  }
}
.access_info_wrapper .access_info_content dt {
  color: #1b365d;
  font-weight: 500;
}
.access_info_wrapper .access_info_content .numletter a {
  pointer-events: none;
}
@media (width <= 640px) {
  .access_info_wrapper .access_info_content .numletter a {
    pointer-events: all;
    font-size: 1.875rem;
  }
}
.access_info_wrapper .map_other_container {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 0 40px;
  margin: 0 auto 60px;
}
@media (width <= 1240px) {
  .access_info_wrapper .map_other_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.access_info_wrapper .access_info_guide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  gap: 0 20px;
  width: fit-content;
  margin: 0 auto 60px;
}
.access_info_wrapper .access_info_guide dt {
  color: #1b365d;
  font-weight: 500;
}
@media (width <= 1240px) {
  .access_info_wrapper .access_info_guide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (width <= 1080px) {
  .access_info_wrapper .access_info_guide {
    display: grid;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    gap: 30px 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.map {
  width: 100%;
  height: 400px;
  margin: 0 auto 40px;
}
.map iframe {
  width: 100%;
  height: 100%;
}

.facility_info_wrapper {
  margin: 0 auto 120px;
}
.facility_info_wrapper ul {
  display: grid;
  grid-template-columns: 400px 1fr 1fr;
  height: auto;
  gap: 0 20px;
  margin-bottom: 12px;
}
.facility_info_wrapper ul li > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 252px;
  margin-bottom: 12px;
}
@media (width <= 1080px) {
  .facility_info_wrapper ul {
    display: block;
    width: 75%;
    margin: 0 auto;
  }
  .facility_info_wrapper ul li {
    margin-bottom: 36px;
  }
  .facility_info_wrapper ul li:last-child {
    margin-bottom: 12px;
  }
}
.facility_info_wrapper > p {
  text-align: right;
}
.facility_info_wrapper > p a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.facility_info_wrapper > p a:hover {
  -webkit-text-decoration: underline 2px #1b365d;
          text-decoration: underline 2px #1b365d;
  text-underline-offset: 5px;
}
@media (width <= 1080px) {
  .facility_info_wrapper > p {
    text-align: center;
  }
}
@media (width <= 640px) {
  .facility_info_wrapper > p {
    padding-top: 20px;
  }
}

.event_to_top {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: fixed;
  right: 420px;
  bottom: 3%;
  width: 50px;
  height: 50px;
  padding: 5px;
  fill: #fff;
  background-color: #1b365d;
  border-radius: 50%;
  z-index: 100;
  -webkit-animation: toTop 2s ease infinite;
          animation: toTop 2s ease infinite;
}
@media (width <= 834px) {
  .event_to_top {
    right: 9%;
    bottom: 4%;
  }
  .event_to_top.delete {
    display: none;
  }
}
@-webkit-keyframes toTop {
  0% {
    translate: 0 0;
  }
  50% {
    translate: 0 5%;
  }
  100% {
    translate: 0 0;
  }
}
@keyframes toTop {
  0% {
    translate: 0 0;
  }
  50% {
    translate: 0 5%;
  }
  100% {
    translate: 0 0;
  }
}
.event_to_top.visible {
  opacity: 1;
  pointer-events: auto;
}

.about_container {
  width: min(80%, 720px);
  padding-top: 60px;
  margin: 0 auto 120px;
}
.about_container .about_wrapper {
  margin-bottom: 120px;
}
.about_container .about_wrapper p {
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
}
.about_container .about_wrapper p:nth-of-type(1) {
  margin-bottom: 20px;
}
.about_container .about_wrapper p:nth-of-type(2) {
  text-align: right;
}
@media (width <= 1080px) {
  .about_container .about_wrapper p {
    font-size: 1.0625rem;
  }
}

.archive_container {
  width: min(85%, 1080px);
  padding-top: 60px;
  width: 96%;
  margin: 0 auto 120px;
}
.archive_container #archive_year_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
  text-align: center;
  margin: 0 auto 60px;
}
.archive_container #archive_year_list li {
  margin-bottom: 10px;
}
.archive_container .year {
  padding-left: 0.5rem;
  color: #1b365d;
  font-weight: 500;
}
.archive_container .container {
  scroll-margin-top: 60px;
  margin-bottom: 30px;
}
@media (width <= 640px) {
  .archive_container .container {
    overflow-x: scroll;
    margin-bottom: 80px;
  }
}
.archive_container .year {
  font-size: 1.1875rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.archive_container table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 80px;
}
@media (width <= 640px) {
  .archive_container table {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 0;
  }
}
.archive_container table th {
  background-color: #1b365d;
  color: #fff;
}
.archive_container table th:not(:last-child) {
  border-right: 1px solid #fff;
}
.archive_container table th,
.archive_container table td {
  padding: 16px 1rem;
}
@media (width <= 1080px) {
  .archive_container table th,
  .archive_container table td {
    padding: 6px 0.7rem;
  }
}
.archive_container table tr:nth-of-type(odd) {
  background-color: #dae9ff;
}
.archive_container table tr:nth-of-type(even) {
  background-color: #fff;
}
.archive_container table td {
  vertical-align: top;
}
.archive_container table td:not(:last-child) {
  border-right: 1px solid #fff;
}
.archive_container table th:nth-of-type(1) {
  width: 7rem;
}
.archive_container table th:nth-of-type(2) {
  width: 12rem;
}
.archive_container table th:nth-of-type(3) {
  width: calc(100% - 34rem);
}
.archive_container table th:nth-of-type(4) {
  width: 15rem;
}
@media (width <= 1080px) {
  .archive_container table th:nth-of-type(1) {
    width: 6.5rem;
  }
  .archive_container table th:nth-of-type(2) {
    width: 9.5rem;
  }
  .archive_container table th:nth-of-type(3) {
    width: calc(100% - 26rem);
  }
  .archive_container table th:nth-of-type(4) {
    width: 10rem;
  }
}
.archive_container .archive_to_top {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: fixed;
  right: 420px;
  bottom: 3%;
  width: 50px;
  height: 50px;
  padding: 5px;
  fill: #fff;
  background-color: #1b365d;
  border-radius: 50%;
  z-index: 100;
  -webkit-animation: toTop 2s ease infinite;
          animation: toTop 2s ease infinite;
}
@media (width <= 834px) {
  .archive_container .archive_to_top {
    right: 9%;
    bottom: 4%;
  }
  .archive_container .archive_to_top.delete {
    display: none;
  }
}
@keyframes toTop {
  0% {
    translate: 0 0;
  }
  50% {
    translate: 0 5%;
  }
  100% {
    translate: 0 0;
  }
}
.archive_container .archive_to_top.visible {
  opacity: 1;
  pointer-events: auto;
}

.membership_container {
  width: min(90%, 960px);
  padding-top: 60px;
  margin: 0 auto 120px;
}
.membership_container h3 {
  width: 8rem;
  padding: 6px 8px;
  border: 1px solid #1b365d;
  color: #1b365d;
  text-align: center;
  margin-bottom: 30px;
}
.membership_container > p {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 2;
}
@media (width <= 1080px) {
  .membership_container > p {
    font-size: 1rem;
  }
}
@media (width <= 640px) {
  .membership_container > p {
    text-align: left;
  }
}
.membership_container > p:nth-of-type(1) {
  margin-bottom: 60px;
}
.membership_container .contact_list li:last-of-type > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
}
.membership_container .contact_list li:last-of-type > ul p {
  font-weight: 600;
}
.membership_container .membership_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 50px;
  margin-bottom: 40px;
}
@media (width <= 1080px) {
  .membership_container .membership_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.membership_container .membership_wrapper .membership_inner {
  margin-bottom: 60px;
}
.membership_container .membership_wrapper .membership_inner .membership_price_list {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  gap: 0 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 4rem;
}
@media (width <= 640px) {
  .membership_container .membership_wrapper .membership_inner .membership_price_list {
    padding-left: 1rem;
  }
}
.membership_container .membership_wrapper .membership_inner .membership_price_list dt,
.membership_container .membership_wrapper .membership_inner .membership_price_list dd {
  margin-bottom: 12px;
}
.membership_container .membership_wrapper .membership_inner .membership_price_list dt {
  color: #1b365d;
  font-weight: 500;
}
.membership_container .membership_wrapper .membership_inner .membership_price_list .l_letter {
  font-size: 2rem;
}
.membership_container .membership_wrapper .membership_inner .membership_price_list .m_letter {
  font-size: 1rem;
}
.membership_container .membership_wrapper .membership_inner {
  /* /membership_price_list */
}
.membership_container .membership_wrapper .membership_inner h4 {
  margin-bottom: 10px;
}
.membership_container .membership_wrapper .membership_inner h4,
.membership_container .membership_wrapper .membership_inner p {
  padding-left: 4rem;
}
@media (width <= 640px) {
  .membership_container .membership_wrapper .membership_inner h4,
  .membership_container .membership_wrapper .membership_inner p {
    padding-left: 1rem;
  }
}
.membership_container .membership_wrapper .membership_inner .bonus_list {
  padding-left: 4rem;
}
@media (width <= 640px) {
  .membership_container .membership_wrapper .membership_inner .bonus_list {
    padding-left: 1rem;
  }
}
.membership_container .membership_wrapper .membership_inner .bonus_list li {
  padding: 6px 0;
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}
.membership_container .membership_wrapper .membership_inner .bonus_list li .blue {
  color: #1b365d;
  font-weight: 500;
}
.membership_container .membership_wrapper .membership_inner {
  /* /bonus_list */
}
.membership_container .membership_wrapper {
  /* /membership_inner */
}
.membership_container .membership_wrapper .bymail a {
  -webkit-text-decoration: underline #1b365d;
          text-decoration: underline #1b365d;
  text-underline-offset: 0.3rem;
}
.membership_container .membership_wrapper .bymail ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
  margin-bottom: 20px;
}
@media (width <= 1080px) {
  .membership_container .membership_wrapper .bymail ul {
    display: block;
  }
}
.membership_container .membership_wrapper .bymail ul p {
  padding-left: 0;
}
@media (width <= 1080px) {
  .membership_container .membership_wrapper .bymail ul p {
    padding-left: 4rem;
  }
}
.membership_container .membership_wrapper .bymail ul li {
  font-weight: 600;
}
.membership_container .membership_wrapper .bymail ul li:first-of-type > p {
  padding-left: 4rem;
}
.membership_container .membership_wrapper .bymail .caution {
  margin-top: 20px;
}
.membership_container .membership_wrapper {
  /* /bymail */
}
.membership_container {
  /* /membership_wrapper */
} /* /membership_container */
.membership_wrapper:first-of-type {
  display: block;
}

.bank_info_wrapper {
  display: grid;
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  gap: 0 50px;
  padding-left: 4rem;
  margin-bottom: 60px;
}
@media (width <= 640px) {
  .bank_info_wrapper {
    padding-left: 1rem;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 20px;
  }
}
.bank_info_wrapper .bank_info {
  display: grid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  gap: 0 30px;
}
@media (width <= 640px) {
  .bank_info_wrapper .bank_info {
    margin-bottom: 40px;
  }
}
.bank_info_wrapper .bank_info dt {
  color: #1b365d;
  font-weight: 500;
}
@media (width <= 640px) {
  .bank_info_wrapper {
    margin-bottom: 40px;
  }
}
.bank_info_wrapper .yucho_sp {
  display: none;
}
@media (width <= 640px) {
  .bank_info_wrapper .yucho_sp {
    display: grid;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
  }
}

.legal_notice_container {
  width: min(90%, 960px);
  padding-top: 60px;
  margin: 0 auto 120px;
}
.legal_notice_container h2 {
  scroll-margin-top: 40px;
}
.legal_notice_container .legal_notice_index_list {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 50px auto 80px;
}
.legal_notice_container .legal_notice_index_list li {
  padding: 6px 0;
}
.legal_notice_container .legal_notice_wrapper {
  margin-bottom: 80px;
}
.legal_notice_container .legal_notice_wrapper > p {
  text-align: center;
  margin-bottom: 30px;
}
.legal_notice_container .legal_notice_wrapper dt {
  font-weight: 500;
  margin: 24px 0 8px;
}
.legal_notice_container .legal_notice_wrapper dd {
  padding-left: 2rem;
}
.legal_notice_container .legal_notice_wrapper .signature {
  text-align: right;
}
.legal_notice_container .legal_notice_to_top {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: fixed;
  right: 420px;
  bottom: 3%;
  width: 50px;
  height: 50px;
  padding: 5px;
  fill: #fff;
  background-color: #1b365d;
  border-radius: 50%;
  z-index: 1000;
  -webkit-animation: toTop 2s ease infinite;
          animation: toTop 2s ease infinite;
}
@media (width <= 834px) {
  .legal_notice_container .legal_notice_to_top {
    right: 5%;
  }
  .legal_notice_container .legal_notice_to_top.delete {
    display: none;
  }
}
@keyframes toTop {
  0% {
    translate: 0 0;
  }
  50% {
    translate: 0 5%;
  }
  100% {
    translate: 0 0;
  }
}
.legal_notice_container .legal_notice_to_top.visible {
  opacity: 1;
  pointer-events: auto;
}/*# sourceMappingURL=other.css.map */