@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cinzel&family=Noto+Sans+JP:wght@100..900&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: #343a3b;
  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;
}

.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: 1280px;
  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: 10px !important;
}

.c-news {
  padding: 0;
  position: relative;
  padding: 11px 0;
  line-height: 1.5em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 35px;
  z-index: 3;
}
.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.8rem;
  color: #fff;
  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: 122px;
  flex: 0 0 122px;
}
@media (max-width: 767px) {
  .c-news__category {
    margin-right: 0;
  }
}
.c-news__category > a {
  background: #fff;
  color: #343a3b !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.3rem;
  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: #343a3b;
  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: #fff !important;
  font-weight: normal;
  font-size: 1.8rem;
  text-decoration: none !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;
}
.c-news__title > a::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -8px;
  background: url(../img/ic-news.svg) 0 0 no-repeat;
  background-size: contain;
  width: 16px;
  height: 10px;
}

/*
<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: #3754ce;
  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: #343a3b !important;
}
@media (max-width: 767px) {
  .c-list-entry__title {
    padding-right: 50px;
  }
}

.c-pagination {
  position: relative;
  border-top: 1px solid #3754ce;
  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: #3754ce;
  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: 60px;
  }
}
.c-cta .c-deco--2 {
  right: -240px;
  top: 250px;
  z-index: 2;
}
.c-cta__box {
  background: url(../img/cta-bg.jpg) center center no-repeat;
  background-size: cover;
  border-radius: 40px;
  padding-top: 115px;
  padding-bottom: 115px;
}
@media (max-width: 767px) {
  .c-cta__box {
    padding: 30px 0;
  }
}
.c-cta__en {
  text-align: center;
  color: #fff;
  font-size: 8rem;
  letter-spacing: 0.08em;
  width: 480px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .c-cta__en {
    width: auto;
    font-size: 5rem;
    text-align: left;
  }
}
.c-cta__en::before {
  content: "";
  display: block;
  background: url(../img/ic-white.svg) 0 0 no-repeat;
  background-size: contain;
  width: 34px;
  height: 22px;
  margin: 0 0 -15px 10px;
  position: relative;
}
@media (max-width: 767px) {
  .c-cta__en::before {
    margin-bottom: 0px;
    margin-left: 0;
  }
}
.c-cta__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 954px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
@media (max-width: 767px) {
  .c-cta__grid {
    display: block;
  }
}
.c-cta__logo {
  position: relative;
  margin-top: 30px;
  margin-bottom: 43px;
}
@media (max-width: 767px) {
  .c-cta__logo {
    margin-top: 0;
    margin-bottom: 25px;
  }
}
.c-cta__tel {
  color: white !important;
  font-size: 5rem;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  display: block;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .c-cta__tel {
    font-size: 2.5rem;
  }
}
.c-cta__tel::before {
  content: "";
  display: inline-block;
  background: url(../img/ic-tel.svg) 0 0 no-repeat;
  background-size: contain;
  width: 32px;
  height: 30px;
  vertical-align: middle;
  margin-right: 9px;
}
.c-cta__tel:hover {
  opacity: 0.7;
}
.c-cta__addr {
  color: white;
  font-size: 1.8rem;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .c-cta__addr {
    font-size: 1.5rem;
  }
}
.c-cta__info {
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .c-cta__info {
    font-size: 1.4rem;
  }
}
.c-cta__info-tag {
  background: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  border-radius: 10px;
  text-align: center;
  width: 92px;
  height: 45px;
  line-height: 45px;
  color: #343a3b;
  display: inline-block;
  vertical-align: middle;
  margin-right: 21px;
}
@media (max-width: 767px) {
  .c-cta__info-tag {
    margin-right: 10px;
    width: 70px;
    font-size: 1.3rme;
  }
}

.c-access {
  position: relative;
  margin-top: 107px;
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  .c-access {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.c-access__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .c-access__header {
    display: block;
  }
}
.c-access__header .c-title-2 {
  margin: 0;
}
.c-access__en {
  font-size: 9.3rem;
  margin: 0;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-access__en {
    margin-top: 25px;
    font-size: 5rem;
  }
}
.c-access__en::before {
  content: "";
  display: block;
  background: url(../img/ic-skyblue.svg) 0 0 no-repeat;
  background-size: contain;
  width: 34px;
  height: 22px;
  margin: 0 0 15px 10px;
  position: relative;
}
@media (max-width: 767px) {
  .c-access__en::before {
    margin-bottom: 10px;
    margin-left: 0;
  }
}
.c-access__map {
  width: 100%;
  height: 528px;
  display: block;
  border-radius: 40px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .c-access__map {
    height: 250px;
    margin-bottom: 25px;
  }
}
.c-access__grid {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-access__grid {
    display: block;
  }
}
.c-access__item {
  position: relative;
  padding: 40px;
  padding-left: 120px;
}
@media (max-width: 767px) {
  .c-access__item {
    padding: 20px;
    padding-left: 50px;
    border-bottom: 1px dotted #707070;
  }
}
.c-access__item-title {
  font-size: 1.8rem;
  color: #fff;
  border-radius: 9999px;
  text-align: center;
  display: inline-block;
  background: #7cb9f5;
  padding: 8px 30px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .c-access__item-title {
    font-size: 1.6rem;
  }
}
.c-access__item-note {
  font-size: 2rem;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .c-access__item-note {
    font-size: 1.7rem;
  }
}
.c-access__item-notice {
  font-size: 1.6rem;
  margin: 0;
}
.c-access__item-ic {
  position: absolute;
  left: 40px;
  top: 30px;
}
@media (max-width: 767px) {
  .c-access__item-ic {
    width: 30px;
    left: 0px;
    top: 20px;
  }
}
.c-access__item:nth-child(1) {
  width: 100%;
}
@media (min-width: 768px) {
  .c-access__item:nth-child(1) {
    border-bottom: 1px dotted #707070;
    margin-bottom: 35px;
  }
}
@media (min-width: 768px) {
  .c-access__item:nth-child(2) {
    border-right: 1px dotted #707070;
  }
}

.c-banner-grid {
  position: relative;
  display: grid;
  grid-gap: 25px;
}
.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--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--4 .c-banner {
  height: 110px;
}
@media (max-width: 767px) {
  .c-banner-grid--4 .c-banner {
    height: 90px;
  }
  .c-banner-grid--4 .c-banner .c-banner__title {
    font-size: 1.4rem;
  }
  .c-banner-grid--4 .c-banner .c-banner__en {
    font-size: 1rem;
  }
  .c-banner-grid--4 .c-banner .c-banner__pic {
    height: 90px;
  }
}
.c-banner-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}
.c-banner {
  display: block;
  position: relative;
  border-radius: 15px;
  height: 130px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white !important;
  text-decoration: none !important;
}
.c-banner::after {
  mix-blend-mode: multiply;
  content: "";
  display: block;
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #93a0a8;
}
.c-banner--brown::after {
  background: #a3a397;
}
.c-banner__pic {
  width: 100%;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.3s ease;
}
.c-banner__title {
  color: #fff;
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 1.1818em;
  display: block;
  position: relative;
  z-index: 3;
  margin-bottom: 5px;
}
.c-banner__en {
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.09em;
  display: block;
  position: relative;
  z-index: 3;
}
.c-banner:hover .c-banner__pic {
  transform: scale(1.2);
}

.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: #3754ce;
  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--skyblue {
  background: #7cb9f5;
}
.c-btn--brown {
  background: #7a521b;
}
.c-btn--gold {
  background: #b0971c;
}
.c-btn--big {
  padding-top: 24px;
  padding-bottom: 24px;
  width: 320px;
}
.c-btn--small {
  width: 200px;
}
.c-btn--auto {
  margin-left: auto;
  margin-right: auto;
}
.c-btn--lightgreen {
  background: #a1d07a;
}
.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: #343a3b;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 1.5909090909em;
  font-weight: normal;
  margin: 0 0 30px 40px;
}
@media (max-width: 767px) {
  .c-title-2 {
    margin: 0 0 20px 5px;
    font-size: 1.8rem;
  }
}

.c-link {
  color: #343a3b !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-deco {
  position: absolute;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.c-deco--1 {
  background-image: url(../img/deco-1.svg);
  width: 480px;
  height: 312px;
}
@media (max-width: 767px) {
  .c-deco--1 {
    width: 240px;
    height: 156px;
  }
}
.c-deco--2 {
  background-image: url(../img/deco-2.svg);
  width: 480px;
  height: 312px;
}
@media (max-width: 767px) {
  .c-deco--2 {
    width: 240px;
    height: 156px;
  }
}

.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: #3754ce !important;
  text-decoration: none !important;
}

.p-header {
  position: relative;
  z-index: 33;
  padding-left: 50px;
  padding-right: 50px;
  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: 26px;
  padding-top: 18px;
  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: 189px;
}
@media (max-width: 767px) {
  .p-header__logo {
    width: 140px;
  }
}
.p-header__notice {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0;
  margin-top: 20px;
  font-weight: normal;
  z-index: 23;
}
.p-header__notice a {
  color: #ff8000 !important;
  text-decoration: underline !important;
}
.p-header__notice a:hover {
  color: #343a3b !important;
}
@media (max-width: 767px) {
  .p-header__notice {
    position: absolute;
    font-size: 1.4rem;
    left: 0px;
    top: 75px;
  }
}
.p-header__right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  padding-right: 90px;
  margin-top: 52px;
}
@media (max-width: 1200px) {
  .p-header__right {
    display: none;
  }
}
.p-header__tel {
  margin: 0;
}
.p-header__tel a {
  color: white !important;
  font-size: 3.2rem;
  letter-spacing: 0.04em;
  text-decoration: none !important;
}
.p-header__tel a::before {
  content: "";
  display: inline-block;
  background: url(../img/ic-tel.svg) 0 0 no-repeat;
  background-size: contain;
  width: 25px;
  height: 24px;
  vertical-align: middle;
  margin-right: 9px;
}
.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;
}

.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: #3754ce;
  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);
}
.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: 140px;
  }
}
.p-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.p-nav__list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.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;
}
.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);
}
.p-nav__list > .has-child.is-toggle > a::after {
  transform: translateY(-50%) rotate(0deg);
}
.p-nav__child {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.15);
}
.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;
}
.p-nav__toggle {
  position: fixed;
  top: 60px;
  right: 50px;
  z-index: 60;
  width: 68px;
  height: 44px;
  border: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../img/menu.svg) center/contain no-repeat;
  cursor: pointer;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .p-nav__toggle {
    transform: scale(0.8);
    right: 15px;
    top: 40px;
  }
}
.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: 25px;
  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;
}

.p-footer {
  position: relative;
  margin-top: 140px;
}
@media (max-width: 767px) {
  .p-footer {
    margin-top: 0px;
  }
}
.p-footer__slide {
  position: fixed;
  right: 0;
  top: 50%;
  display: flex;
  align-items: flex-start;
  transform: translateX(537px);
  margin-top: -100px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 15;
}
@media (max-width: 767px) {
  .p-footer__slide {
    transform: translateX(330px);
  }
}
.p-footer__slide.is-active {
  transform: translateX(0);
}
.p-footer__slide.is-active .p-footer__slide-btn::after {
  transform: rotate(180deg);
}
.p-footer__slide-btn {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: #3754ce;
  color: #fff;
  font-size: 1.8rem;
  padding: 20px 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
@media (max-width: 767px) {
  .p-footer__slide-btn {
    font-size: 1.5rem;
  }
}
.p-footer__slide-btn::before {
  content: "";
  display: inline-block;
  background: url(../img/footer-slide-1.svg) 0 0 no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .p-footer__slide-btn::before {
    width: 15px;
    height: 15px;
    margin-bottom: 5px;
  }
}
.p-footer__slide-btn::after {
  content: "";
  display: inline-block;
  background: url(../img/footer-slide-2.svg) 0 0 no-repeat;
  background-size: contain;
  width: 6px;
  height: 7px;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .p-footer__slide-btn::after {
    margin-top: 5px;
  }
}
.p-footer__slide-btn:hover {
  opacity: 0.7;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}
.p-footer__slide-content {
  background: #3754ce;
  padding: 30px;
  border-bottom-left-radius: 10px;
}
@media (max-width: 767px) {
  .p-footer__slide-content {
    padding: 15px;
  }
}
.p-footer__slide-content img {
  max-width: 477px;
}
@media (max-width: 767px) {
  .p-footer__slide-content img {
    max-width: 300px;
  }
}
.p-footer__fix {
  position: fixed;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  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: #fff;
  font-size: 1.3rem;
  margin: 0 !important;
  line-height: 170%;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
}
@media (max-width: 767px) {
  .p-footer__fix.u-sp a:nth-child(1) img {
    border-top-left-radius: 30px;
  }
  .p-footer__fix.u-sp a:nth-child(4) {
    background: #7cb9f5;
    flex: 0 0 60px;
  }
  .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: 0px;
  margin: 0;
}
@media (max-width: 767px) {
  .p-footer-top__list {
    padding: 0 !important;
    display: block;
  }
}
.p-footer-top__item {
  position: relative;
  padding: 35px clamp(15px, 3vw, 70px) 35px !important;
  border-right: 1px dotted #707070;
}
.p-footer-top__item:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .p-footer-top__item {
    padding: 0 !important;
    border-right: none;
    border-bottom: 1px solid #343a3b;
  }
  .p-footer-top__item:last-child {
    border-bottom: none;
  }
}
.p-footer-top__item > a, .p-footer-top__item > span {
  color: #343a3b !important;
  font-size: 2rem;
  text-decoration: none;
  line-height: 130%;
  display: block;
  position: relative;
  padding-left: 45px;
  margin-bottom: 25px;
}
@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;
  }
}
.p-footer-top__item > a::before, .p-footer-top__item > span::before {
  content: "";
  display: block;
  background: url(../img/link.svg) 0 0 no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -15px;
}
@media (max-width: 767px) {
  .p-footer-top__item > a::before, .p-footer-top__item > span::before {
    display: none;
  }
}
.p-footer-top__itemf > a:hover {
  text-decoration: none;
  opacity: 0.5;
}
@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 #343a3b;
  }
}
.p-footer-top__list-sub li {
  line-height: 2em;
  font-size: 1.6rem;
  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 #343a3b;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .p-footer-top__list-sub li:last-child {
    border-bottom: none;
  }
}
.p-footer-top__list-sub li::before {
  content: "";
  display: block;
  background: url(../img/arrow.svg) 0 0 no-repeat;
  background-size: contain;
  width: 12px;
  height: 7px;
  position: absolute;
  left: 10px;
  top: 10px;
}
@media (max-width: 767px) {
  .p-footer-top__list-sub li::before {
    content: none;
  }
}
.p-footer-top__list-sub a {
  color: #343a3b !important;
  font-size: 1.5rem;
  text-decoration: none;
  padding-left: 45px;
  line-height: 1.8em;
  letter-spacing: 8%;
  text-decoration: none !important;
  display: block;
}
.p-footer-top__list-sub a .u-small {
  font-size: 1.5rem;
}
.p-footer-top__list-sub a:hover {
  text-decoration: underline !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: 110px;
  position: relative;
  background: #3754ce;
  padding-top: 1px;
  padding-bottom: 100px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.p-footer-bottom .c-deco--2 {
  right: -250px;
  bottom: -10px;
}
@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: 100px;
  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: 189px;
  display: block;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .p-footer-bottom__logo-img {
    max-width: 151px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-footer-bottom__logo a {
  font-size: 1.4rem;
  text-decoration: underline !important;
  font-weight: normal;
  color: #fff !important;
  line-height: 170%;
  letter-spacing: 8%;
  display: block;
}
.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-bottom__nav {
  background: url(../img/footer-bottom-bg.png) 0 0 repeat-x;
  background-size: 50px 50px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.p-footer-bottom__nav-link {
  display: block;
  text-align: center;
  position: relative;
  color: #343a3b !important;
  font-size: 1.5rem;
  text-decoration: none !important;
  width: 495px;
  height: 50px;
  line-height: 50px;
}
.p-footer-bottom__nav-link:hover {
  opacity: 0.7;
}
.p-footer-bottom__nav-link:nth-child(1)::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -12px;
  width: 1px;
  height: 24px;
  background: #aaaaaa;
}
.p-footer-bottom__nav-link img {
  width: 20px;
  vertical-align: middle;
  margin-right: 20px;
  display: inline-block;
}

.p-footer-page-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 98px;
  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: 80px;
    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: 200px;
  }
}
.p-page-header .l-content {
  height: 500px;
}
@media (max-width: 767px) {
  .p-page-header .l-content {
    height: 200px;
  }
}
.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;
  background: #f2f9fd;
  padding: 100px 0;
}
.p-sidebar .c-deco--1 {
  left: -123px;
  top: 108px;
}
@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-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-green {
  color: #00b2b2 !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: #3754ce !important;
}

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

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

.u-color-skyblue {
  color: #f2f9fd !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: #f2f9fd;
}

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