@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Murecho:wght@100..900&display=swap");
/* reset CSS */
*,
::after,
::before {
  box-sizing: border-box;
}

section,
header,
footer,
nav,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
pre,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea {
  font-size: 100%;
  vertical-align: middle;
}

body,
div,
p,
address,
dl,
dt,
dd,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

img {
  display: inline-block;
  border: none;
  max-width: 100%;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border: none;
  border-spacing: 0;
  word-break: break-all;
}

input {
  line-height: 100%;
}

ol,
ul {
  list-style-type: none;
}

label {
  cursor: pointer;
}

address {
  font-style: normal;
}

article,
aside,
header,
hgroup,
footer,
nav,
section,
dialog,
figure {
  display: block;
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: block;
  max-width: 100%;
}

canvas,
img,
svg,
video {
  height: auto;
}

audio {
  width: 100%;
}

svg {
  overflow: hidden;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

@keyframes fadeInText {
  0% {
    -webkit-transform: translateY(8px) rotate(3deg);
    transform: translateY(8px) rotate(3deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(-3px) rotate(-3deg);
    transform: translateY(-3px) rotate(-3deg);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
    opacity: 1;
  }
}
@keyframes bgloop {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -100rem 100rem;
  }
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
:root {
  --font-ja: "Murecho", sans-serif;
  --font-light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --black: 900;
  --ease: 0.6s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  --transition-hover: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --white: #fff;
  --black: #333;
  --theme: #00b0ec;
  --blue: #005ca2;
  --blue2: #28a7e1;
  --blueop: #eaf6fd;
  --green: #14ae67;
  --greenop: #f1f8f1;
  --red: #cc2525;
  --yellow: #fff338;
  --orange: #f39800;
  --purple: #af579d;
  --pink: #e84091;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
  --bdrs: 1rem;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-break: normal;
  overflow-wrap: break-word;
  text-underline-offset: 0.125em;
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 2.5vw;
  }
}
body {
  position: relative;
  background-color: #e4f1ff;
  font-family: var(--font-ja);
  font-weight: var(--regular);
  font-style: normal;
  font-kerning: none;
  font-size: clamp(1.4rem, 1.267rem + 0.174vw, 1.6rem);
  color: var(--black);
  letter-spacing: 0.05rem;
  line-height: 1.75;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}

section figure,
header figure,
footer figure,
div figure {
  margin: 0;
}

a,
button,
input,
select,
textarea {
  transition: all var(--transition-hover);
}

a {
  color: var(--black);
  text-decoration: none;
  word-wrap: break-word;
}

@media screen and (min-width: 1025px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    opacity: 1;
  }
}
::selection {
  color: var(--theme);
  background: var(--white);
}

@media screen and (min-width: 1025px) {
  .lg-hide {
    display: none !important;
  }
  .lg-visible {
    display: inherit !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .md-hide {
    display: none !important;
  }
  .md-visible {
    display: inherit !important;
  }
}
@media screen and (max-width: 767px) {
  .sm-hide {
    display: none !important;
  }
  .sm-visible {
    display: inherit !important;
  }
}
.red {
  color: var(--red) !important;
}

.black {
  color: var(--black) !important;
}

.note {
  font-size: clamp(1.1rem, 1.033rem + 0.087vw, 1.2rem);
}

.medium {
  font-weight: var(--medium);
}

.btn a {
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4.5rem 1.5rem 1.5rem;
  background-color: var(--theme);
  border: 2px solid var(--theme);
  border-radius: 1rem;
  font-size: clamp(1.8rem, 1.533rem + 0.347vw, 2.2rem);
  font-weight: var(--medium);
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .btn a {
    padding: 1.75rem 4.5rem 1.75rem 2rem;
  }
}
.btn a em {
  position: relative;
  padding-right: 1rem;
  font-size: clamp(1.8rem, 1.533rem + 0.347vw, 2.2rem);
  font-style: normal;
  font-weight: var(--medium);
  color: var(--white);
}
.btn a span {
  position: relative;
  width: 3.6rem;
  height: 3.6rem;
}
.btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  border-style: solid;
  border-top-width: 0.5rem;
  border-bottom-width: 0.5rem;
  border-color: transparent transparent transparent var(--white);
  border-right-width: 0;
  border-left-width: 0.9rem;
}
.btn a:hover {
  background-color: var(--white);
  color: var(--theme);
}
.btn a:hover::after {
  border-left-color: var(--theme);
}
.btn-sm a {
  font-size: clamp(1.4rem, 1.267rem + 0.174vw, 1.6rem);
  padding: 0.5rem 4.5rem 0.5rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .btn-sm a {
    padding: 1rem 4.5rem 1rem 2rem;
  }
}
.btn-red a {
  background-color: var(--red);
  border-color: var(--red);
}
.btn-red a:hover {
  color: var(--red);
}
.btn-red a:hover::after {
  border-left-color: var(--red);
}

h2 {
  position: relative;
  padding-bottom: clamp(3rem, 1.667rem + 1.736vw, 5rem);
  font-size: clamp(2.8rem, 1.733rem + 1.389vw, 4.4rem);
  font-weight: var(--bold);
  color: #00afec;
  text-align: center;
}
h2::before {
  content: "";
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3.3rem;
  background: url(../img/icon.svg) no-repeat 0 0/contain;
}
@media screen and (min-width: 768px) {
  h2::before {
    top: -6.5rem;
    width: 4rem;
    height: 4.4rem;
  }
}
@media screen and (min-width: 1025px) {
  h2::before {
    top: -6.5rem;
    width: 5rem;
    height: 5.5rem;
  }
}
h2 span {
  opacity: 0;
  display: inline-block;
  -webkit-transform: translateY(60%);
  transform: translateY(60%);
}
h2.act span:nth-child(1) {
  animation: fadeInText 0.3s ease-out 0.3s forwards;
}
h2.act span:nth-child(2) {
  animation: fadeInText 0.3s ease-out 0.4s forwards;
}
h2.act span:nth-child(3) {
  animation: fadeInText 0.3s ease-out 0.5s forwards;
}
h2.act span:nth-child(4) {
  animation: fadeInText 0.3s ease-out 0.6s forwards;
}
h2.act span:nth-child(5) {
  animation: fadeInText 0.3s ease-out 0.7s forwards;
}
h2.act span:nth-child(6) {
  animation: fadeInText 0.3s ease-out 0.8s forwards;
}
h2.act span:nth-child(7) {
  animation: fadeInText 0.3s ease-out 0.9s forwards;
}
h2.act span:nth-child(8) {
  animation: fadeInText 0.3s ease-out 1s forwards;
}
h2.act span:nth-child(9) {
  animation: fadeInText 0.3s ease-out 1.1s forwards;
}
h2.act span:nth-child(10) {
  animation: fadeInText 0.3s ease-out 1.2s forwards;
}

.container {
  position: relative;
  margin-inline: auto;
  padding-right: clamp(2rem, -6.667rem + 11.285vw, 15rem);
  padding-left: clamp(2rem, -6.667rem + 11.285vw, 15rem);
}
.container-sm {
  position: relative;
  margin-inline: auto;
  padding-right: clamp(2rem, -13.333rem + 19.965vw, 25rem);
  padding-left: clamp(2rem, -13.333rem + 19.965vw, 25rem);
}

.bg-ani {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../img/bubble.svg);
  animation: bgloop 55s linear infinite;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .bg-ani {
    background: url(../img/bubble-sp.svg);
  }
}

.main {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: hidden;
}

.news {
  position: relative;
  background-color: var(--yellow);
  border-bottom: 2px solid var(--red);
  z-index: 1001;
}
.news .inner {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .news .inner {
    display: flex;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.news .title {
  padding: 0.25rem 0.5rem 0.5rem;
  background-color: var(--red);
  border-radius: var(--bdrs);
  color: var(--white);
  font-size: clamp(1.4rem, 1.133rem + 0.347vw, 1.8rem);
  font-weight: var(--bold);
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news .title {
    width: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .news ul {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .news ul {
    flex: 1 0 0;
    padding-left: 2rem;
  }
}
.news ul li {
  color: var(--red);
}
@media screen and (min-width: 768px) {
  .news ul li {
    display: flex;
    align-items: center;
  }
}
.news ul li:nth-child(n+2) {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .news ul li span {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.news ul li a,
.news ul li p {
  color: var(--red);
  font-weight: var(--semibold);
}
.news ul li a {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
.news ul li p {
  line-height: 1.5;
}

.kv {
  position: relative;
  padding-top: clamp(2rem, 1.333rem + 0.868vw, 3rem);
  padding-bottom: clamp(2rem, 0rem + 2.604vw, 5rem);
}
@media screen and (min-width: 768px) {
  .kv ul {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
}
.kv ul li {
  position: relative;
  padding-left: 1.75rem;
  font-weight: var(--medium);
  font-size: clamp(1.1rem, 0.967rem + 0.174vw, 1.3rem);
  color: var(--blue);
}
.kv ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "●";
}
@media screen and (min-width: 768px) {
  .kv ul li:nth-child(n+2) {
    margin-left: 1.5rem;
  }
}

.app {
  margin-bottom: clamp(4rem, 2.667rem + 1.736vw, 6rem);
}
@media screen and (min-width: 768px) {
  .app {
    display: flex;
    justify-content: center;
  }
}
.app .inner {
  background-color: #ea5514;
  border: 0.5rem solid var(--orange);
  border-radius: var(--bdrs);
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .app .inner {
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .app .inner {
    align-items: center;
    gap: 4rem;
  }
}
.app .inner .title {
  background-color: var(--orange);
  font-size: clamp(2rem, 1.6rem + 0.521vw, 2.6rem);
  font-weight: var(--semibold);
  line-height: 1.4;
  text-align: center;
  padding: 1rem 1rem 1.5rem;
}
.app .inner .title strong {
  font-size: clamp(2.8rem, 2.133rem + 0.868vw, 3.8rem);
  font-weight: var(--medium);
}
.app .inner ul {
  padding: 3rem;
}
@media screen and (min-width: 768px) {
  .app .inner ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .app .inner ul {
    column-gap: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .app .inner ul {
    gap: 4rem;
  }
}
.app .inner ul li {
  font-weight: var(--semibold);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .app .inner ul li:nth-child(n+2) {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--white);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .app .inner ul li {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
  }
}
.app .inner ul li p {
  padding-bottom: 1rem;
  font-size: clamp(2rem, 1.6rem + 0.521vw, 2.6rem);
  font-weight: var(--semibold);
  line-height: 1.4;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .app .inner ul li .btn a {
    padding: 1.75rem 3.5rem 1.75rem 1rem;
  }
}
.app .inner .btn {
  animation: poyopoyo 2s ease-out infinite;
}
@media screen and (max-width: 767px) {
  .app .inner .btn {
    margin-inline: auto;
  }
}
.app .inner .btn-fin {
  animation: none;
}
.app .inner .btn-fin a {
  padding: 1.5rem 1rem 1.5rem 1rem;
  background-color: #ccc;
  border-color: #ccc;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .app .inner .btn-fin a {
    padding: 1.75rem 3.5rem;
  }
}
.app .inner .btn-fin a::after {
  display: none;
}

.pickup {
  margin-bottom: 4rem;
}
@media screen and (min-width: 1025px) {
  .pickup .inner {
    display: flex;
    justify-content: space-between;
  }
}
.pickup .inner .stamp {
  position: relative;
  padding: 2rem;
  background-color: var(--yellow);
  border: 0.5rem solid var(--blue);
  border-radius: var(--bdrs);
}
@media screen and (min-width: 768px) {
  .pickup .inner .stamp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .pickup .inner .stamp {
    width: 55%;
  }
}
@media screen and (min-width: 768px) {
  .pickup .inner .stamp .left {
    width: 68%;
  }
}
.pickup .inner .stamp .left h3 {
  font-size: clamp(3rem, 1.667rem + 1.736vw, 5rem);
  font-weight: var(--bold);
  color: var(--blue);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .pickup .inner .stamp .left .in {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .pickup .inner .stamp .left .in {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .pickup .inner .stamp .left .in {
    display: flex;
    align-items: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .pickup .inner .stamp .left .in .character {
    width: 15%;
  }
}
.pickup .inner .stamp .left .in .character span {
  display: block;
  font-size: clamp(1rem, 0.8rem + 0.26vw, 1.3rem);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pickup .inner .stamp .left .in .character {
    display: none;
  }
}
.pickup .inner .stamp .left .in .text {
  font-weight: var(--medium);
}
@media screen and (min-width: 768px) {
  .pickup .inner .stamp .left .in .text {
    flex: 1 0 0;
    padding: 0 1.5rem;
  }
}
.pickup .inner .stamp .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0.5rem;
  background-color: var(--white);
  border-radius: var(--bdrs);
}
@media screen and (max-width: 767px) {
  .pickup .inner .stamp .right {
    width: 80%;
    margin-top: 1rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .pickup .inner .stamp .right {
    width: 30%;
  }
}
.pickup .inner .stamp .right p {
  padding-bottom: 0.5rem;
  color: var(--red);
  font-weight: var(--bold);
  text-align: center;
  line-height: 1.4;
}
.pickup .inner .stamp .right img {
  width: 60%;
  height: auto;
  margin-inline: auto;
}
.pickup .inner .tour {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .pickup .inner .tour {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 1025px) {
  .pickup .inner .tour {
    width: 42%;
  }
}
.pickup .inner .tour .box {
  position: relative;
  padding: 2rem;
  background-color: var(--white);
  border-color: var(--blue);
  border-width: 0.5rem;
  border-style: solid;
  border-radius: var(--bdrs);
}
@media screen and (min-width: 768px) {
  .pickup .inner .tour .box {
    padding: 2rem 3rem;
  }
}
.pickup .inner .tour .box h3 {
  padding-top: 1rem;
  font-size: clamp(2rem, 1.6rem + 0.521vw, 2.6rem);
  font-weight: var(--bold);
  color: var(--blue);
}
@media screen and (min-width: 768px) {
  .pickup .inner .tour .box h3 {
    padding-left: 4.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .pickup .inner .tour .box h3 {
    padding-top: 2rem;
  }
}
.pickup .inner .tour .box h4 {
  font-size: clamp(1.6rem, 1.333rem + 0.347vw, 2rem);
  font-weight: var(--bold);
  color: var(--blue);
}
@media screen and (min-width: 768px) {
  .pickup .inner .tour .box h4 {
    padding-left: 4.5rem;
  }
}
.pickup .inner .tour .box .inner .text {
  padding-top: 1rem;
}
@media screen and (min-width: 1025px) {
  .pickup .inner .tour .box .inner .text {
    padding-top: 2rem;
  }
}
.pickup .inner .tour .box .inner .text .time {
  padding-bottom: 1rem;
  font-weight: var(--medium);
}
.pickup .inner .tour .box .photo {
  position: absolute;
  top: -4rem;
  right: 1rem;
  width: 22%;
}
@media screen and (min-width: 768px) {
  .pickup .inner .tour .box .photo {
    top: -2rem;
  }
}
.pickup .inner .tour dl {
  font-weight: var(--medium);
}
.pickup .inner .tour dt span {
  background-color: var(--blue);
}
.pickup .character-sp {
  position: absolute;
  top: -2rem;
  right: 0;
  width: 33%;
}
@media screen and (min-width: 768px) {
  .pickup .character-sp {
    display: none;
  }
}

.event dl,
.tour dl {
  display: flex;
  margin-bottom: 1rem;
}
.event dl dt,
.tour dl dt {
  width: 5rem;
}
.event dl dt span,
.tour dl dt span {
  padding: 0.25rem 0.5rem;
  color: var(--white);
  border-radius: 0.4rem;
  font-weight: var(--medium);
}
.event dl dd,
.tour dl dd {
  width: calc(100% - 5rem);
}

.reservation {
  position: absolute;
  top: -1.25rem;
  left: -2rem;
  width: 7rem;
  height: 7rem;
  animation: poyopoyo 2s ease-out infinite;
}
@media screen and (min-width: 768px) {
  .reservation {
    width: 8rem;
    height: 8rem;
  }
}
@media screen and (min-width: 1025px) {
  .reservation {
    width: 9rem;
    height: 9rem;
  }
}
.reservation-title {
  display: inline-flex;
  padding-left: 3.5rem;
  padding-right: 1.5rem;
  background-color: var(--blue);
  border-radius: 0 9999rem 9999rem 0;
  font-size: clamp(1.6rem, 1.467rem + 0.174vw, 1.8rem);
  font-weight: var(--bold);
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .reservation-title {
    padding-left: 4rem;
  }
}
@media screen and (min-width: 1025px) {
  .reservation-title {
    padding-left: 5.5rem;
    padding-right: 3rem;
  }
}

.fin::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 0.5rem;
}
.fin .reservation {
  animation: none;
}

.fin-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event {
  padding-bottom: clamp(5rem, -1.667rem + 8.681vw, 15rem);
  background: url(../img/bg-curve1.svg) no-repeat center bottom/contain;
}
@media screen and (min-width: 768px) {
  .event {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .event {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
}
.event .box {
  position: relative;
  padding: 2rem 2rem;
  background-color: var(--white);
  border-width: 0.5rem;
  border-style: solid;
  border-radius: var(--bdrs);
}
@media screen and (max-width: 767px) {
  .event .box {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .event .box {
    padding: 2rem 3rem;
  }
}
.event .box h3 {
  font-size: clamp(2rem, 1.6rem + 0.521vw, 2.6rem);
  font-weight: var(--bold);
}
.event1 {
  background-color: var(--blueop);
  border-color: var(--blue);
}
.event1 h3 {
  color: var(--blue);
}
.event1 .text {
  padding-top: 1.5rem;
  font-weight: var(--medium);
}
.event1 .text .caption {
  color: var(--blue);
}
.event1 .photo {
  margin-top: 1rem;
}
.event1 .photo img {
  width: 60%;
  height: auto;
  margin-inline: auto;
}
.event2 {
  background-color: var(--white);
  border-color: var(--orange);
}
.event2 .reservation-title {
  background-color: var(--orange);
}
.event2 h3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 3.5rem;
  font-size: clamp(1.6rem, 1.333rem + 0.347vw, 2rem);
  font-weight: var(--bold);
  color: var(--orange);
}
@media screen and (min-width: 768px) {
  .event2 h3 {
    padding-left: 5rem;
  }
}
.event2 .inner {
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  .event2 .inner {
    display: flex;
    justify-content: space-between;
  }
}
.event2 .inner .text {
  font-weight: var(--medium);
}
@media screen and (min-width: 768px) {
  .event2 .inner .text {
    width: 52%;
  }
}
@media screen and (max-width: 767px) {
  .event2 .inner .photo {
    margin-top: 1.5rem;
  }
  .event2 .inner .photo img {
    width: 70%;
    height: auto;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .event2 .inner .photo {
    width: 43%;
  }
}
.event2 dt span {
  background-color: var(--orange);
}
.event3 {
  background-color: var(--blueop);
  border-color: var(--blue2);
}
.event3 h3 {
  color: var(--blue2);
}
.event3 .text {
  padding-top: 1.5rem;
  font-weight: var(--medium);
}
.event3 .photo {
  margin-top: 2rem;
}
.event3 .photo img {
  width: 60%;
  height: auto;
  border-radius: var(--bdrs);
  margin-inline: auto;
}
.event4 {
  background-color: var(--greenop);
  border-color: var(--green);
}
.event4 h3 {
  color: var(--green);
}
.event4 .time {
  padding-top: 1rem;
}
.event4 .inner {
  padding-top: 1rem;
}
.event4 .inner .text {
  font-weight: var(--medium);
}
.event4 .inner .photo {
  margin-top: 2rem;
}
.event4 .inner .photo img {
  width: 60%;
  height: auto;
  border-radius: var(--bdrs);
  margin-inline: auto;
}
.event4 dl {
  margin-top: 2rem;
}
.event4 dl dt span {
  background-color: var(--green);
}
.event5 {
  background-color: var(--white);
  border-color: var(--purple);
}
.event5 .reservation-title {
  background-color: var(--purple);
}
.event5 h3 {
  padding-top: 1rem;
  padding-left: 3.5rem;
  font-size: clamp(2rem, 1.6rem + 0.521vw, 2.6rem);
  font-weight: var(--bold);
  color: var(--purple);
}
@media screen and (min-width: 768px) {
  .event5 h3 {
    padding-left: 5rem;
  }
}
.event5 .inner {
  padding-top: 1rem;
}
.event5 .inner .text {
  font-weight: var(--medium);
}
.event5 .inner .photo {
  margin-top: 2rem;
}
.event5 .inner .photo img {
  width: 60%;
  height: auto;
  border-radius: var(--bdrs);
  margin-inline: auto;
}
.event5 dl {
  margin-top: 2rem;
}
.event5 dl dt span {
  background-color: var(--purple);
}
.event6 {
  background-color: var(--white);
  border-color: var(--pink);
}
.event6 .inner {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 0.2rem solid var(--pink);
}
.event6 .inner .title {
  flex: 1 0 0;
}
.event6 .inner .title p {
  font-size: clamp(1.4rem, 1rem + 0.521vw, 2rem);
  font-weight: var(--semibold);
  color: var(--pink);
}
.event6 .inner .title h3 {
  color: var(--pink);
  line-height: 1.5;
}
.event6 .inner .photo {
  width: 6rem;
}
@media screen and (min-width: 768px) {
  .event6 .inner .photo {
    width: 8rem;
  }
}
.event6 h4 {
  padding-top: 1rem;
  font-size: clamp(1.6rem, 1.467rem + 0.174vw, 1.8rem);
  font-weight: var(--bold);
  color: var(--pink);
}
.event6 .block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
}
.event6 .block-text {
  flex: 1 0 0;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .event6 .block-text {
    padding-right: 2rem;
  }
}
.event6 .block-text p {
  font-weight: var(--medium);
}
.event6 .block-photo {
  width: 28%;
}
.event6 .block2 h4 {
  padding-top: 0;
}
.event6 .block3 {
  border-top: 0.2rem dotted var(--pink);
}
.event6 .block3 p {
  font-weight: var(--medium);
}

.paint {
  padding-top: clamp(8rem, 5.333rem + 3.472vw, 12rem);
  padding-bottom: clamp(6rem, 4.667rem + 1.736vw, 8rem);
  background-color: var(--white);
}
.paint .inner {
  display: flex;
}
@media screen and (max-width: 767px) {
  .paint .inner {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .paint .inner {
    justify-content: space-between;
    gap: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .paint .inner .text {
    order: 2;
    margin-top: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .paint .inner .text {
    flex: 1 0 0;
  }
}
.paint .inner .text1 {
  font-size: clamp(2.6rem, 1.933rem + 0.868vw, 3.6rem);
  font-weight: var(--semibold);
  color: var(--theme);
  line-height: 1.5;
}
.paint .inner .text2 {
  padding-top: clamp(1rem, 0.333rem + 0.868vw, 2rem);
  font-size: clamp(1.6rem, 1.2rem + 0.521vw, 2.2rem);
  font-weight: var(--semibold);
}
.paint .inner .text3 {
  padding-top: clamp(1rem, 0.333rem + 0.868vw, 2rem);
  font-size: clamp(1.6rem, 1.333rem + 0.347vw, 2rem);
  font-weight: var(--semibold);
}
.paint .inner .text4 {
  padding-top: clamp(1rem, 0.333rem + 0.868vw, 2rem);
  font-size: clamp(1.6rem, 1.2rem + 0.521vw, 2.2rem);
  font-weight: var(--semibold);
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
@media screen and (max-width: 767px) {
  .paint .inner .photo {
    order: 1;
    width: 80%;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .paint .inner .photo {
    width: 40%;
  }
}
.paint .inner .photo img {
  border-radius: var(--bdrs);
}
.paint .dl {
  margin-top: clamp(2rem, 0.667rem + 1.736vw, 4rem);
  margin-bottom: clamp(2rem, 0.667rem + 1.736vw, 4rem);
}
.paint .dl a {
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--theme);
  border: 2px solid var(--theme);
  border-radius: 9999rem;
}
@media screen and (min-width: 768px) {
  .paint .dl a {
    padding: 2rem;
  }
}
.paint .dl a em {
  position: relative;
  padding-right: 1rem;
  font-size: clamp(1.8rem, 1.533rem + 0.347vw, 2.2rem);
  font-style: normal;
  font-weight: var(--medium);
  color: var(--white);
}
.paint .dl a span {
  position: relative;
  width: 3.6rem;
  height: 3.6rem;
}
.paint .dl a:hover {
  background-color: var(--white);
}
.paint .dl a:hover em {
  color: var(--theme);
}

.access {
  position: relative;
  padding-top: clamp(13rem, 4.333rem + 11.285vw, 26rem);
  padding-bottom: clamp(9rem, 4.333rem + 6.076vw, 16rem);
  background: url(../img/bg-curve1.svg) no-repeat center bottom/contain;
}
.access .curve {
  position: absolute;
  top: 0;
  left: 0;
}
.access h3 {
  padding-bottom: 1rem;
  font-size: clamp(2rem, 1.6rem + 0.521vw, 2.6rem);
  font-weight: var(--semibold);
  color: #00afec;
}
.access h3:nth-of-type(n + 2) {
  margin-top: 2rem;
}
.access h4 {
  font-size: clamp(1.6rem, 1.333rem + 0.347vw, 2rem);
  font-weight: var(--semibold);
}
@media screen and (min-width: 1025px) {
  .access .inner {
    display: flex;
    justify-content: space-between;
    gap: 5rem;
  }
}
.access .text {
  flex: 1 0 0;
}
@media screen and (min-width: 768px) {
  .access ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4rem;
    row-gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .access ul li:nth-child(n+2) {
    margin-top: 1rem;
  }
}
.access ul li span {
  font-weight: var(--medium);
}
.access .map {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem;
  background-color: var(--white);
  border: 4px solid var(--theme);
  border-radius: var(--bdrs);
}
@media screen and (max-width: 1024px) {
  .access .map {
    margin-top: 2rem;
    padding: 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .access .map {
    width: 47%;
    padding: 4rem;
  }
}
.access .place {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .access .place .right {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .access .place .right {
    margin-left: 2rem;
  }
}

.annotation {
  padding-top: clamp(8rem, 5.333rem + 3.472vw, 12rem);
  padding-bottom: clamp(6rem, 2rem + 5.208vw, 12rem);
  background-color: var(--white);
}
.annotation .inner {
  display: flex;
  justify-content: center;
}
.annotation ul {
  margin-top: 1rem;
  margin-left: 2rem;
  list-style: disc;
}
.annotation ul li {
  line-height: 1.5;
}
.annotation ul li:nth-child(n+2) {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .annotation ul li:nth-child(n+2) {
    margin-top: 1rem;
  }
}

.contact {
  position: relative;
  padding-top: clamp(10rem, 6rem + 5.208vw, 16rem);
}
.contact .curve {
  position: absolute;
  top: 0;
  left: 0;
}
.contact .inner {
  text-align: center;
}
.contact h3 {
  font-size: clamp(1.8rem, 1.533rem + 0.347vw, 2.2rem);
  font-weight: var(--semibold);
}
.contact ul {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .contact ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
}
.contact ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--bdrs);
  font-size: clamp(1.8rem, 1.533rem + 0.347vw, 2.2rem);
}
@media screen and (max-width: 767px) {
  .contact ul li:nth-child(n+2) {
    margin-top: 2rem;
  }
}
.contact ul li a,
.contact ul li span {
  padding-left: 1rem;
}

.footer {
  padding-top: clamp(5rem, 5rem + 0vw, 5rem);
  padding-bottom: clamp(5rem, -2.5rem + 9.766vw, 10rem);
  padding-right: clamp(0rem, -7.5rem + 9.766vw, 5rem);
  padding-left: clamp(0rem, -7.5rem + 9.766vw, 5rem);
  text-align: center;
}
.footer ul {
  display: flex;
  justify-content: center;
}
.footer ul li:nth-child(n+2) {
  margin-left: 2rem;
}
.footer .copyright {
  padding-top: clamp(5rem, 5rem + 0vw, 5rem);
  font-size: clamp(1.2rem, 1.067rem + 0.174vw, 1.4rem);
  color: var(--blue);
}

@page {
  margin: 0mm 5mm;
  size: A4 portrait;
}/*# sourceMappingURL=style.css.map */