@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@500&display=swap");
/*
@media (max-width: 767px) {

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

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: initial;
}

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

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

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

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* base styles */
:root {
  color-scheme: light;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  font-size: 62.5%;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
}

body {
  color: #000000;
  margin: 0;
  line-height: inherit;
  font-size: 1.6rem;
  letter-spacing: 0.05rem;
  background: #fff;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

.l-wrap {
  position: relative;
  overflow: hidden;
}

.l-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  padding-top: 1px;
  z-index: 25;
  transition-delay: 0.3s;
}
@media (max-width: 767px) {
  .l-header {
    border-width: 5px;
  }
}

.l-nav {
  position: relative;
  z-index: 40;
}
@media (min-width: 768px) {
  .l-nav {
    top: 180px;
  }
  .l-nav.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: #3754ce;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }
  .l-nav.is-fixed .p-nav {
    top: 0;
    width: 100%;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.8);
  }
  .l-nav.is-fixed .p-nav__logo {
    display: block;
  }
}

.l-main {
  position: relative;
}
.l-sidebar {
  position: relative;
  right: 0;
  top: 0;
  flex: 0 0 230px;
}
@media (max-width: 767px) {
  .l-sidebar {
    width: 100%;
    position: relative;
  }
}

.l-footer {
  position: relative;
}

.l-container {
  position: relative;
  width: 990px;
  margin: 80px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .l-container {
    display: block;
    width: 100%;
    margin: 30px auto;
  }
}
.l-container__content {
  width: 730px;
}
@media (max-width: 767px) {
  .l-container__content {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.l-container.p-page {
  margin-top: 0;
}

.l-content {
  padding-top: 1px;
  padding-bottom: 1px;
  max-width: 1140px;
  padding-left: 0px;
  padding-right: 0px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
.l-content--large {
  max-width: 1500px;
}
.l-content--small {
  max-width: 945px;
}
@media (max-width: 767px) {
  .l-content {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.c-news-list {
  margin-bottom: 40px !important;
  border-top: 1px dashed #bbbbbb;
}

.c-news {
  padding: 0;
  position: relative;
  padding: 13px 0;
  line-height: 1.5em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 35px;
  z-index: 3;
  border-bottom: 1px dashed #bbbbbb;
}
.c-news--top {
  padding: 10px 0;
}
@media (max-width: 767px) {
  .c-news {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
  }
}
.c-news__link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: 0.3s ease;
}
.c-news__link:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
}
.c-news__link:hover:after {
  right: 0;
}
.c-news__link:hover + .c-news__time + .c-news__category + .c-news__title a {
  text-decoration: underline !important;
}
.c-news__time {
  font-size: 1.6rem;
  color: #333333;
  line-height: 170%;
  letter-spacing: 0.09em;
  display: inline-block;
  flex: 0 0 95px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .c-news__time {
    margin-right: 15px;
  }
}
.c-news__category {
  display: inline-block;
  vertical-align: middle;
  z-index: 3;
  min-width: 125px;
  flex: 0 0 125px;
}
@media (max-width: 767px) {
  .c-news__category {
    margin-right: 0;
  }
}
.c-news__category > a {
  background: #f1cd3e;
  color: #0067b6 !important;
  border-radius: 50px;
  display: block;
  text-align: center;
  text-decoration: none;
  width: 100%;
  line-height: 1.3em;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  padding: 10px 5px;
}
.c-news__category > a:hover {
  text-decoration: none !important;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .c-news__category > a {
    font-size: 1.3rem;
    padding-top: 3px;
    padding-bottom: 3px;
    min-width: 140px;
    width: auto;
  }
}
.c-news__category .movie {
  background: #000000;
  color: #fff;
}
.c-news__title {
  flex-grow: 1;
  margin: 0px 0 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  padding-right: 65px;
}
@media (max-width: 767px) {
  .c-news__title {
    width: 100%;
    padding-right: 35px;
  }
}
.c-news__title > a {
  color: #00a3d9 !important;
  font-weight: normal;
  font-size: 1.8rem;
  text-decoration: underline !important;
  display: block;
  width: 100%;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.3s ease;
}
.c-news__title > a:hover {
  text-decoration: none !important;
}

/*
<li v-for="post in posts" :key="post.id">
      <time class="c-list-news__time" :datetime="post.date">
        {{ formatDate(post.date) }}
      </time>
      <div class="c-list-news__category">
        <a :href="'/category/' + getPrimaryCategory(post)">
          {{ getPrimaryCategory(post) }}
        </a>
      </div>
      <h3 class="c-list-news__title">
        <a :href="post.link" v-html="post.title.rendered"></a>
      </h3>
    </li>
*/
.c-list-entry {
  position: relative;
}
.c-list-entry__item {
  padding: 15px 15px !important;
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #f2f5f6;
  margin-bottom: 20px !important;
}
@media (max-width: 767px) {
  .c-list-entry__item {
    display: block;
    padding: 15px 15px !important;
  }
}
.c-list-entry__link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
}
.c-list-entry__link::after {
  content: "";
  display: block;
  position: absolute;
  right: 25px;
  top: 50%;
  background: url(../img/angle-right.svg) 0 0 no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-list-entry__link::after {
    right: 5px;
  }
}
.c-list-entry__link:hover {
  background: rgba(255, 255, 255, 0.9);
  opacity: 0.3;
}
.c-list-entry__pic {
  flex-shrink: 0;
  position: relative;
  margin-right: 40px;
}
@media (max-width: 767px) {
  .c-list-entry__pic {
    margin-right: 0;
  }
}
.c-list-entry__content {
  flex-grow: 1;
  position: relative;
}
@media (max-width: 767px) {
  .c-list-entry__content {
    padding-right: 0;
  }
}
.c-list-entry__cat {
  display: inline-block;
  min-width: 140px;
  margin-left: 15px;
}
.c-list-entry__cat a {
  display: block;
  text-align: center;
  color: white !important;
  background: #0067b6;
  border-radius: 6px;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  padding: 5px 25px;
}
.c-list-entry__cat .holiday {
  background: #804c2e;
  color: #fff;
}
@media (max-width: 767px) {
  .c-list-entry__cat {
    margin-top: 5px;
    margin-left: 0;
  }
}
.c-list-entry__date {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-list-entry__date {
    position: relative;
    right: auto;
    margin-left: 15px;
    display: block;
    margin-left: 0;
  }
}
.c-list-entry__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #222222;
  margin-top: 20px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.c-list-entry__title a {
  text-decoration: none;
  color: #000000 !important;
}
@media (max-width: 767px) {
  .c-list-entry__title {
    padding-right: 50px;
  }
}

.c-pagination {
  position: relative;
  border-top: 1px solid #0067b6;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 50px;
}
.c-pagination ul {
  display: flex;
  justify-content: center;
  gap: 15px;
  position: relative;
  padding-left: 60px;
  padding-right: 60px;
}
.c-pagination ul li {
  font-size: 1.8rem;
}
.c-pagination ul li a {
  color: #222222;
  text-decoration: none;
}
.c-pagination ul .current {
  color: #0067b6;
  font-weight: bold;
}
.c-pagination ul .next {
  display: none;
}
.c-pagination ul .prev {
  display: none;
}

.c-cta {
  position: relative;
  margin-top: 112px;
}
@media (max-width: 767px) {
  .c-cta {
    margin-top: 40px;
  }
}
.c-cta__logo {
  width: 368px;
  margin: 0 auto 30px;
}
@media (max-width: 767px) {
  .c-cta__logo {
    width: 250px;
  }
}
.c-cta__grid {
  display: flex;
  gap: 100px;
  justify-content: space-between;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .c-cta__grid {
    display: block;
    margin-bottom: 30px;
  }
}
.c-cta__block {
  position: relative;
}
.c-cta__block:nth-child(2) {
  flex: 0 0 460px;
}
.c-cta__addr {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .c-cta__addr {
    font-size: 1.6rem;
  }
}
.c-cta__access {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.3888888889em;
  padding-left: 55px;
  padding-top: 10px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .c-cta__access {
    font-size: 1.5rem;
  }
}
.c-cta__access img {
  position: absolute;
  left: 0;
  top: 0;
  width: 41px;
}
.c-cta__timetable {
  max-width: 442px;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
}
.c-cta__notice {
  color: #000000;
  text-decoration: underline !important;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .c-cta__notice {
    font-size: 1.5rem;
  }
}
.c-cta__tel {
  font-size: 1.5rem;
  text-align: right;
}
@media (max-width: 767px) {
  .c-cta__tel {
    margin-top: 20px;
  }
}
.c-cta__tel-up {
  display: block;
  text-align: left;
  padding-left: 25px;
}
.c-cta__tel-link {
  color: #fc7290;
  font-weight: bold;
  font-size: 4.7rem;
  margin-top: 5px;
  display: inline-block;
}
@media (max-width: 767px) {
  .c-cta__tel-link {
    font-size: 4rem;
  }
}
.c-cta__tel-link img {
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  margin-right: 8px;
}
.c-cta__tel-link-2 {
  color: #f05e00 !important;
  text-decoration: underline !important;
}
.c-cta__time {
  text-align: right;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .c-cta__time {
    font-size: 1.4rem;
  }
}
.c-cta__map {
  display: block;
  width: 100%;
  height: 385px;
}
@media (max-width: 767px) {
  .c-cta__map {
    height: 300px;
  }
}

.c-banner-grid {
  position: relative;
  display: grid;
  grid-gap: 30px;
}
.c-banner-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .c-banner-grid--2 {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
  }
}
.c-banner-grid--2 img {
  border-radius: 10px;
}
.c-banner-grid--4 {
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
}
@media (max-width: 767px) {
  .c-banner-grid--4 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
}
.c-banner-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}
.c-banner {
  display: block;
  text-align: center;
  color: #000000 !important;
  font-size: 1.8rem;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-banner {
    font-size: 1.4rem;
  }
}
.c-banner:hover {
  text-decoration: none !important;
}
.c-banner:hover img {
  opacity: 0.7;
}

.c-btn {
  position: relative;
  display: inline-block;
  text-align: center;
  color: #fff !important;
  text-decoration: none;
  line-height: 170%;
  font-size: 2rem;
  font-weight: bold;
  font-style: normal;
  padding: 10px 25px 10px 25px;
  background: #0067b6;
  margin: 0;
  border-radius: 9999px;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-btn {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.c-btn .u-small {
  font-size: 1.4rem;
}
.c-btn:hover {
  text-decoration: none !important;
  opacity: 0.7;
}
.c-btn:hover::after {
  right: 10px;
}
.c-btn--lightblue {
  background: #66cef6;
  border-radius: 9999px;
  font-size: 2.8rem;
  text-align: center;
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
}
.c-btn--lightblue img {
  width: 34px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.c-btn--lightgreen {
  background: #81d1cf;
  border-radius: 9999px;
  font-size: 2.8rem;
  text-align: center;
  width: 100%;
  text-align: left;
}
.c-btn--lightgreen img {
  width: 34px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.c-btn--skyblue {
  background: #7cb9f5;
}
.c-btn--brown {
  background: #7a521b;
}
.c-btn--gold {
  background: #b0971c;
}
.c-btn--big {
  width: 320px;
}
.c-btn--small {
  width: 200px;
}
.c-btn--auto {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.c-btn--pink {
  background: #e40080;
}

.c-title-line {
  text-align: center;
  position: relative;
  margin-top: 40px;
  margin-bottom: 25px;
}
.c-title-line::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 50%;
  width: 100%;
  height: 1px;
  background: #cccccc;
}
.c-title-line span {
  background: white;
  font-size: 2.6rem;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  color: #331f10;
  font-weight: 500;
  font-style: normal;
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .c-title-line span {
    font-size: 2.2rem;
  }
}

.c-title-2 {
  color: #0066b6;
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 1.5909090909em;
  font-weight: normal;
  margin: 40px 0 30px 0px;
  text-align: center;
}
@media (max-width: 767px) {
  .c-title-2 {
    font-size: 2.5rem;
  }
}
.c-title-2--light {
  color: #29d7d4;
}
.c-title-2 .u-small {
  font-size: 2.2rem;
}

.c-link {
  color: #000000 !important;
  text-decoration: none !important;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.9444444444em;
  display: inline-block;
  border-bottom: 1px solid #707070;
  position: relative;
  padding: 15px 85px 30px 10px;
}
@media (max-width: 767px) {
  .c-link {
    padding-bottom: 15px;
  }
}
.c-link::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 15px;
  background: url(../img/link.svg) 0 0 no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
.c-link:hover {
  opacity: 0.7;
}
.c-link:hover::after {
  animation: rotateYInfinite 1s linear infinite;
  backface-visibility: hidden;
}

@keyframes rotateYInfinite {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
    box-shadow: 0px 0px 15px #7cb9f5;
  }
  100% {
    transform: scale(1);
  }
}
.c-breadcrumb {
  position: relative;
}

@media (max-width: 767px) {
  .c-breadcrumb {
    display: none;
  }
}
.c-breadcrumb__list {
  padding: 0 !important;
  margin: 0 !important;
}

.c-breadcrumb__list > li {
  display: inline-block;
  font-size: 1.3rem;
}

.c-breadcrumb__list > li::after {
  content: "›";
  padding-left: 10px;
  padding-right: 10px;
  font-size: 1.8rem;
}

.c-breadcrumb__list > li:last-child::after {
  content: none;
}

.c-breadcrumb__list > li a {
  color: #0067b6 !important;
  text-decoration: none !important;
}

.c-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media (max-width: 767px) {
  .c-feature-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
  }
}

.c-feature {
  position: relative;
}
.c-feature__pic {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.c-feature__title {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  text-align: center;
  background: rgba(255, 204, 51, 0.8);
  width: 100%;
  font-size: 2.4rem;
  color: #006dd9;
  padding: 10px;
}
@media (max-width: 767px) {
  .c-feature__title {
    font-size: 2rem;
  }
}
.c-feature__title--blue {
  background: rgba(51, 138, 225, 0.8);
  color: #fff;
}
.c-feature__title--lightblue {
  background: rgba(51, 225, 225, 0.8);
  color: #fff;
}
.c-feature__link {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: 0.3s ease;
}
.c-feature__link:hover {
  background: rgba(255, 255, 255, 0.3);
}
.c-feature__note {
  margin-top: 5px;
  font-size: 1.4rem;
}

.c-list {
  list-style: none !important;
  font-size: 1.8rem;
  margin-bottom: 1em;
}
.c-list li {
  position: relative;
  line-height: 1.875em;
  padding-left: 25px;
}
.c-list li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 8px;
  background: url(../img/bullet.png) 0 0 no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
}

.p-header {
  position: relative;
  z-index: 33;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .p-header {
    padding-left: 15px;
    padding-right: 15px;
    display: block;
  }
}
.p-header__left {
  position: relative;
}
.p-header__title {
  font-weight: normal;
  font-size: 1.6rem;
  margin: 0;
  margin-bottom: 10px;
  padding-top: 15px;
  line-height: 1em;
  position: relative;
  text-align: left;
  color: #fff;
}
@media (max-width: 767px) {
  .p-header__title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
}
.p-header__logo {
  margin: 0;
  padding: 0;
  width: 462px;
}
@media (max-width: 767px) {
  .p-header__logo {
    width: 240px;
  }
}
.p-header__notice {
  position: absolute;
  left: 500px;
  top: 70px;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
  font-weight: normal;
  z-index: 23;
  min-width: 300px;
}
.p-header__notice a {
  color: white !important;
  text-decoration: underline !important;
}
.p-header__notice a:hover {
  color: #000000 !important;
}
@media (max-width: 767px) {
  .p-header__notice {
    position: absolute;
    font-size: 1.4rem;
    left: 0px;
    top: 100px;
  }
}
.p-header__right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}
@media (max-width: 1200px) {
  .p-header__right {
    display: none;
  }
}
.p-header__tel {
  margin: 0;
  color: #fff;
}
.p-header__tel-link {
  color: white !important;
  font-size: 3.7rem;
  font-weight: bold;
  text-decoration: none !important;
  position: relative;
  margin-top: 5px;
  display: inline-block;
}
.p-header__tel-link::before {
  content: "";
  display: inline-block;
  background: url(../img/ic-tel-white.png) 0 0 no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 9px;
  position: absolute;
  left: -20px;
  top: 10px;
}
.p-header__tel-note {
  font-size: 1.4rem;
  color: #fff;
}
.p-header__tel-note a {
  color: #fff !important;
  text-decoration: underline !important;
}
.p-header__info {
  display: flex;
  gap: 13px;
  align-items: center;
}
.p-header__info-title {
  background: #fff;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  height: 52px;
  font-weight: normal;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  padding: 15px 18px;
}
.p-header__info-note {
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.8462em;
  margin: 0;
}
.p-header__info-note--big {
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .p-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 50;
    width: 360px;
    max-width: 86%;
    height: 100%;
    height: 100dvh;
    box-sizing: border-box;
    overflow-y: auto;
    background: #00a3d9;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    padding: 50px 0 60px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  .p-nav.is-active {
    transform: translateX(0);
  }
}
@media (min-width: 768px) {
  .p-nav {
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    max-width: 1280px;
    margin: 0;
    width: 980px;
    padding: 15px 30px;
    transition: top 0.3s ease;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.44) 5%, rgba(255, 255, 255, 0.44) 100%);
  }
}
.p-nav__logo {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 30px;
}
.p-nav__logo img {
  width: 160px;
}
@media (max-width: 767px) {
  .p-nav__logo img {
    width: 220px;
  }
}
@media (min-width: 768px) {
  .p-nav__logo {
    margin-bottom: 0;
    padding: 0;
    flex-shrink: 0;
    display: none;
  }
  .p-nav__logo img {
    width: 230px;
  }
}
.p-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media (min-width: 768px) {
  .p-nav__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-top: none;
  }
}
.p-nav__list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
@media (min-width: 768px) {
  .p-nav__list > li {
    border-bottom: none;
  }
}
.p-nav__list > li > a {
  display: block;
  padding: 18px 30px;
  color: #fff;
  text-decoration: none;
  font-size: 1.7rem;
  line-height: 1.4;
  transition: opacity 0.3s ease;
}
.p-nav__list > li > a > img {
  width: 20px;
  vertical-align: middle;
}
.p-nav__list > li > a:hover {
  opacity: 0.6;
}
@media (min-width: 768px) {
  .p-nav__list > li > a {
    padding: 8px 14px;
    font-size: 1.4rem;
    color: #000;
    white-space: nowrap;
  }
}
.p-nav__list > .has-child > a {
  position: relative;
  padding-right: 50px;
}
.p-nav__list > .has-child > a::before, .p-nav__list > .has-child > a::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 12px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease;
}
.p-nav__list > .has-child > a::before {
  transform: translateY(-50%);
}
.p-nav__list > .has-child > a::after {
  transform: translateY(-50%) rotate(90deg);
}
@media (min-width: 768px) {
  .p-nav__list > .has-child > a {
    padding-right: 28px;
  }
  .p-nav__list > .has-child > a::before, .p-nav__list > .has-child > a::after {
    right: 12px;
    width: 8px;
    background: #000;
  }
}
.p-nav__list > .has-child.is-toggle > a::after {
  transform: translateY(-50%) rotate(0deg);
}
@media (min-width: 768px) {
  .p-nav__list > .has-child:hover > a::after,
  .p-nav__list > .has-child:focus-within > a::after {
    transform: translateY(-50%) rotate(0deg);
  }
  .p-nav__list > .has-child:hover > .p-nav__child,
  .p-nav__list > .has-child:focus-within > .p-nav__child {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.p-nav__child {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .p-nav__child {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #00a3d9;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }
}
.p-nav__child li {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.p-nav__child li a {
  display: block;
  padding: 14px 30px 14px 45px;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
}
.p-nav__child li a:hover {
  opacity: 0.6;
}
@media (min-width: 768px) {
  .p-nav__child li a {
    padding: 12px 20px;
    font-size: 1.3rem;
    white-space: nowrap;
  }
}
.p-nav__toggle {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 60;
  width: 68px;
  height: 44px;
  border: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #00a3d9;
  cursor: pointer;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .p-nav__toggle {
    transform: scale(0.8);
  }
}
.p-nav__toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.p-nav__toggle span:nth-child(1) {
  margin-top: -5px;
}
.p-nav__toggle span:nth-child(2) {
  margin-top: 5px;
}
.p-nav__toggle.is-active {
  right: 15px;
  top: 45px;
}
.p-nav__toggle.is-active span:nth-child(1) {
  margin-top: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-nav__toggle.is-active span:nth-child(2) {
  margin-top: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.p-nav__overlay.is-active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .p-nav__overlay {
    display: none;
  }
}

@media (min-width: 768px) {
  .p-nav__list > li:last-child > ul {
    left: auto;
    right: 0;
  }
}

@media (min-width: 768px) {
  .is-sub:not(.is-fixed) .p-nav__list > li > a {
    color: #fff !important;
  }
  .is-sub:not(.is-fixed) .p-nav__list > li > a::before {
    background: #fff;
  }
  .is-sub:not(.is-fixed) .p-nav__list > li > a::after {
    background: #fff;
  }
}

.p-footer {
  position: relative;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .p-footer {
    margin-top: 0px;
  }
}
@media (min-width: 768px) {
  .p-footer__fix {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 10;
    margin-top: -200px;
  }
  .p-footer__fix-web {
    display: block;
    width: 59px;
    background: #00d9a3;
    color: white !important;
    text-decoration: none !important;
    font-size: 1.7rem;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 20px 10px;
    text-align: center;
    margin-bottom: 20px;
  }
  .p-footer__fix-web::before {
    content: "";
    display: inline-block;
    background: url(../img/ic-web.png) 0 0 no-repeat;
    background-size: contain;
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }
  .p-footer__fix-web:hover {
    opacity: 0.7;
  }
  .p-footer__fix-time {
    position: relative;
    display: block;
    transition: 0.3s ease;
    right: 0;
  }
  .p-footer__fix-time.is-active {
    right: 442px;
  }
  .p-footer__fix-time-title {
    display: block;
    width: 59px;
    background: #00a3d9;
    color: white !important;
    text-decoration: none !important;
    font-size: 1.7rem;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 20px 10px;
    text-align: center;
  }
  .p-footer__fix-time-title::before {
    content: "";
    display: inline-block;
    background: url(../img/ic-time.png) 0 0 no-repeat;
    background-size: contain;
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }
  .p-footer__fix-time-title:hover {
    opacity: 0.7;
  }
  .p-footer__fix-time-content {
    background: #00a3d9;
    width: 442px;
    padding: 15px;
    position: absolute;
    left: 59px;
    top: 0;
  }
}
@media (max-width: 767px) {
  .p-footer__fix {
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    background: white;
    z-index: 20;
  }
  .p-footer__fix a {
    display: block;
    line-height: 0;
  }
  .p-footer__fix a:hover {
    opacity: 0.7;
  }
}
.p-footer__copyright {
  text-align: center;
  color: #000000;
  font-size: 1.4rem;
  margin: 35px 0 45px !important;
  line-height: 170%;
}
@media (max-width: 767px) {
  .p-footer__copyright {
    padding-bottom: 70px;
    font-size: 1rem;
    position: relative;
    width: auto;
    margin-top: 80px !important;
  }
}

.p-footer-top {
  position: relative;
}
@media (max-width: 767px) {
  .p-footer-top__nav {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.p-footer-top__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  margin: 0;
}
@media (max-width: 767px) {
  .p-footer-top__list {
    padding: 0 !important;
    display: block;
  }
}
.p-footer-top__item {
  position: relative;
}
@media (max-width: 767px) {
  .p-footer-top__item {
    padding: 0 !important;
    border-right: none;
    border-bottom: none;
  }
}
.p-footer-top__item > a, .p-footer-top__item > span {
  border-top: 1px solid #bbbbbb;
  border-bottom: 1px solid #bbbbbb;
  color: #000000 !important;
  font-size: 1.6rem;
  text-decoration: none;
  line-height: 130%;
  display: block;
  position: relative;
  margin-bottom: 25px;
  padding: 15px 0;
}
@media (max-width: 767px) {
  .p-footer-top__item > a, .p-footer-top__item > span {
    margin-bottom: 0;
    padding: 22px 45px 22px 20px;
    font-size: 1.6rem;
    border-bottom: none;
  }
}
@media (max-width: 767px) {
  .p-footer-top__item > a::after, .p-footer-top__item > span::after {
    content: "";
    display: block;
    background: url(../img/angle-bottom.svg) 0 0 no-repeat;
    background-size: contain;
    width: 16px;
    height: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -5px;
    transition: transform 0.25s ease;
  }
}
@media (max-width: 767px) {
  .p-footer-top__item.is-active > a::after, .p-footer-top__item.is-active > span::after {
    background: url(../img/angle-top.svg) 0 0 no-repeat;
    background-size: contain;
  }
}
.p-footer-top__list-sub {
  padding: 0;
  margin-top: 10px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .p-footer-top__list-sub {
    display: none;
    margin: 0 !important;
    border-top: 1px solid #bbbbbb;
  }
}
.p-footer-top__list-sub li {
  line-height: 2em;
  font-size: 1.4rem;
  position: relative;
}
@media (min-width: 768px) {
  .p-footer-top__list-sub li {
    margin-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .p-footer-top__list-sub li {
    border-bottom: 1px solid #bbbbbb;
    margin-bottom: 0;
  }
}
.p-footer-top__list-sub li::before {
  content: "";
  display: block;
  background: url(../img/bullet.png) 0 0 no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0px;
  top: 5px;
}
@media (max-width: 767px) {
  .p-footer-top__list-sub li::before {
    content: none;
  }
}
.p-footer-top__list-sub a {
  color: #000000 !important;
  font-size: 1.5rem;
  text-decoration: underline !important;
  padding-left: 25px;
  line-height: 1.8em;
  letter-spacing: 8%;
  display: block;
}
.p-footer-top__list-sub a .u-small {
  font-size: 1.5rem;
}
.p-footer-top__list-sub a:hover {
  text-decoration: none !important;
}
@media (max-width: 767px) {
  .p-footer-top__list-sub a {
    font-size: 1.4rem;
    padding: 10px 35px;
    padding-right: 10px;
    display: block;
    text-decoration: none !important;
  }
}
@media (max-width: 767px) {
  .p-footer-top__list-sub {
    margin-bottom: 15px;
  }
}

.p-footer-bottom {
  margin-top: 60px;
  position: relative;
  border-top: 4px solid #f2c81e;
  padding-top: 1px;
  padding-bottom: 0px;
}
@media (max-width: 767px) {
  .p-footer-bottom {
    margin-top: 0;
  }
}
.p-footer-bottom__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .p-footer-bottom__grid {
    display: block;
  }
}
.p-footer-bottom__logo {
  margin-top: 30px;
  margin-bottom: 0px;
  line-height: 1.1em;
}
.p-footer-bottom__logo:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .p-footer-bottom__logo {
    margin-top: 50px;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
.p-footer-bottom__logo-img {
  max-width: 368px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .p-footer-bottom__logo-img {
    max-width: 251px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-footer-bottom__logo a {
  font-size: 1.6rem;
  text-decoration: underline !important;
  font-weight: normal;
  color: #000000 !important;
  line-height: 170%;
  letter-spacing: 8%;
  display: block;
  text-align: center;
}
.p-footer-bottom__logo a:hover {
  text-decoration: none !important;
}
@media (max-width: 767px) {
  .p-footer-bottom__logo a {
    font-size: 1.1rem;
  }
}

.p-footer-page-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 123px;
  z-index: 10;
  transition: 0.3s ease;
}
.p-footer-page-top.is-hidden {
  display: none;
}
.p-footer-page-top.is-visible {
  display: block;
  animation: fadein ease 500ms 1;
}
@media (max-width: 767px) {
  .p-footer-page-top {
    bottom: 70px;
    width: 60px;
    right: 5px;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-page {
  position: relative;
}

.p-page-header {
  width: 100vw;
  position: relative;
  height: 500px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .p-page-header {
    height: 300px;
  }
}
.p-page-header .l-content {
  height: 500px;
}
@media (max-width: 767px) {
  .p-page-header .l-content {
    height: 300px;
  }
}
.p-page-header__pic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.p-page-header__pic::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  mix-blend-mode: multiply;
  background: #b6bcc1;
}
.p-page-header__title {
  margin: 0;
  font-size: 5.6rem;
  line-height: 1.2em;
  color: #fff;
  z-index: 3;
  text-align: left;
  font-weight: normal;
  position: absolute;
  left: 0;
  top: 50%;
}
@media (max-width: 767px) {
  .p-page-header__title {
    left: 10px;
    font-size: 3rem;
    font-weight: bold;
  }
}
.p-page-header__caption {
  margin: 0;
  position: absolute;
  left: 0;
  top: 55%;
  font-size: 2.4rem;
  margin-top: 40px;
  color: #fff;
  z-index: 3;
}
@media (max-width: 767px) {
  .p-page-header__caption {
    left: 10px;
    margin-top: 20px;
    font-size: 2rem;
  }
}

.p-page__content {
  position: relative;
  line-height: 2em;
  padding-bottom: 10px;
}
.p-page__content section {
  position: relative;
  padding-top: 1px;
  padding-bottom: 75px;
}
.p-page__content section p {
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .p-page__content {
    padding-bottom: 50px;
  }
}

.p-sidebar {
  position: relative;
  padding: 55px 0;
}
@media (max-width: 767px) {
  .p-sidebar {
    padding: 20px 0;
  }
}

.u-rotate {
  position: relative;
  perspective: 1000px;
  display: block;
  transform-style: preserve-3d;
  /* slow, smooth infinite rotation */
  animation: u-rotate-spin 12s linear infinite;
}

@keyframes u-rotate-spin {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
[data-cue=stretchIn] {
  transform: scaleX(0.25);
  transform-origin: left center;
  opacity: 0;
}

@keyframes stretchIn {
  from {
    transform: scaleX(0.25);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}
.u-en {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.u-en-al * {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.u-type {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.u-type-all * {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.u-under {
  text-decoration: underline;
}

.u-center,
.center {
  text-align: center;
}
.u-center img,
.center img {
  margin-left: auto;
  margin-right: auto;
}

.u-right {
  text-align: right;
}

@media (max-width: 767px) {
  .u-left-sp {
    text-align: left;
  }
}

.u-tate {
  writing-mode: vertical-rl;
}

@media (min-width: 768px) {
  .u-tate-pc {
    writing-mode: vertical-rl;
  }
}

.u-small {
  font-size: 0.7em;
}

.u-big {
  font-size: 1.3em;
}

.u-font-lg {
  font-size: 2.4rem !important;
}

.u-bold {
  font-weight: bold;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-pic-round {
  border-radius: 15px;
}

@media (max-width: 767px) {
  .u-br-pc,
  .br-pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .u-br-sp,
  .br-sp {
    display: none;
  }
}

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

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

.u-mt-lg {
  margin-top: 3rem;
}

.u-list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.u-list-reset li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.u-over {
  transition: 0.3s ease;
}

.u-over:hover {
  opacity: 0.7;
}

.u-color-black-2 {
  color: #5b7577 !important;
}

.u-color-lightgreen {
  color: #59b200 !important;
}

.u-color-green {
  color: #00b285 !important;
}

.u-color-green-2 {
  color: #a1d07a !important;
}

.u-color-green-4 {
  color: #74bca4 !important;
}

.u-color-orange {
  color: #ff8000 !important;
}

.u-color-blue {
  color: #0067b6 !important;
}

.u-color-blue-sub {
  color: #7cb9f5 !important;
}

.u-color-white {
  color: #fff !important;
}

.u-color-skyblue {
  color: #00a3d9 !important;
}

.u-color-yellow {
  color: #ffe55f !important;
}

.u-color-red {
  color: #e8725e !important;
}

.u-color-pink {
  color: #e40080 !important;
}

.u-color-brown {
  color: #c5a94b !important;
}

.u-color-gray {
  color: #f2f5f6 !important;
}

.u-para {
  will-change: transform;
  transition: transform 0.2s ease-out;
}

.u-bleed-right {
  flex: 1;
  margin-right: calc(50% - 50vw);
}
@media (max-width: 767px) {
  .u-bleed-right {
    margin-right: 0;
    width: auto;
  }
}

.u-bleed-left {
  flex: 1;
  margin-left: calc(50% - 50vw);
}
@media (max-width: 767px) {
  .u-bleed-left {
    margin-left: 0;
    width: 100%;
  }
}

/*
BG
*/
.u-bg-skyblue {
  background: #00a3d9;
}

.u-bg-pink {
  background: #e40080;
}
/*# sourceMappingURL=style.css.map */
