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

/* 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: balance;
}

/* 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", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック",
    "MS PGothic", sans-serif;
  font-weight: 400;
}

body {
  color: #00296d;
  margin: 0;
  line-height: inherit;
  font-size: 1.6rem;
  background: #fff;
}
@media (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

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

.l-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 79px;
  box-sizing: border-box;
  z-index: 20;
  transition-delay: 0.3s;
}
.l-header--sub {
  background: #fff;
}
@media (max-width: 767px) {
  .l-header--sub {
    background: none;
  }
}
@media (max-width: 767px) {
  .l-header {
    height: 50px;
  }
}

.l-nav {
  position: relative;
}
.l-main {
  position: relative;
}
.l-sidebar {
  position: sticky;
  left: 0;
  top: 0;
  order: 1;
  flex: 0 0 240px;
}

.l-footer {
  position: relative;
  background: #e6f2fa;
  border-bottom: 10px solid #00296d;
}

.l-container {
  position: relative;
}

.l-content {
  padding-top: 1px;
  padding-bottom: 1px;
  max-width: 1220px;
  padding-left: 50px;
  padding-right: 50px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
.l-content--sm {
  max-width: 1000px;
}
.l-content--with-sidebar {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 2.5vw, 59px);
  margin-top: 120px;
}
@media (max-width: 767px) {
  .l-content--with-sidebar {
    display: block;
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .l-content {
    max-width: 100%;
    padding-left: 29px;
    padding-right: 29px;
  }
}

.c-lead {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2em;
}
@media (max-width: 767px) {
  .c-lead {
    font-size: 1.5rem;
  }
}

.c-text {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.75em;
}
@media (max-width: 767px) {
  .c-text {
    font-size: 1.4rem;
    line-height: 1.7143em;
  }
}

.c-popup__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
}
@media (max-width: 767px) {
  .c-popup__grid {
    display: block;
  }
}
.c-popup__pics {
  flex: 0 0 400px;
  width: 400px;
  position: relative;
}
@media (max-width: 767px) {
  .c-popup__pics {
    width: 100%;
  }
}
.c-popup__pics-swiper {
  width: 400px;
}
@media (max-width: 767px) {
  .c-popup__pics-swiper {
    width: 100%;
  }
}
.c-popup__pics-swiper .swiper-wrapper {
  padding-bottom: 50px;
}
.c-popup__pics-swiper .swiper-pagination {
  bottom: 0;
}
.c-popup__pics-swiper .swiper-pagination-bullet {
  opacity: 1;
  border-radius: 0;
  background: #00296d;
  width: 18px;
  height: 18px;
}
@media (max-width: 767px) {
  .c-popup__pics-swiper .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
  }
}
.c-popup__pics-swiper .swiper-pagination-bullet-active {
  background: #f3e489;
}
.c-popup .swiper-slide img {
  border-radius: 10px;
}
.c-popup__content {
  flex: 1;
}
@media (max-width: 767px) {
  .c-popup__content {
    padding-top: 20px;
  }
}
.c-popup__title {
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 2%;
  border-bottom: 1px solid #00296d;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 8px;
  margin-bottom: 25px;
  text-wrap: auto;
  line-height: 1.2em;
}
@media (max-width: 767px) {
  .c-popup__title {
    font-size: 2.1rem;
  }
}
.c-popup__title-2 {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.6em;
  margin-bottom: 26px;
  text-wrap: auto;
}
@media (max-width: 767px) {
  .c-popup__title-2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}

.gslide-inline {
  border-radius: 10px;
}
@media (max-width: 767px) {
  .gslide-inline {
    max-width: 85% !important;
  }
}

.gslide-inline .ginlined-content {
  padding: 50px !important;
}
@media (max-width: 767px) {
  .gslide-inline .ginlined-content {
    padding: 18px 21px !important;
  }
}

.glightbox-close-inner {
  background: none;
  padding: 0;
  border: none;
  margin: 0;
  color: #00296d;
  font-size: 1.4rem;
  letter-spacing: 2%;
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.glightbox-close-inner::before {
  content: "";
  display: inline-block;
  background: url(../img/popup-close.png) 0 0 no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 5px;
}

.glightbox-mobile .goverlay,
.goverlay {
  background: rgba(0, 41, 109, 0.8) !important;
}

.gclose {
  display: none !important;
}

.c-breadcrumb {
  position: relative;
  margin: 0px auto;
}
@media (max-width: 767px) {
  .c-breadcrumb {
    display: none;
  }
}
.c-breadcrumb__list {
  text-align: right;
}
.c-breadcrumb__list li {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
}
.c-breadcrumb__list li::after {
  content: "/";
  padding: 0 5px;
}
.c-breadcrumb__list li:last-child::after {
  content: none;
}
.c-breadcrumb__list li a {
  text-decoration: none;
  color: #00296d;
  font-size: 1.2rem;
  font-weight: 500;
}
.c-breadcrumb__list li a:hover {
  text-decoration: underline;
}

ul.c-list {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  list-style-position: inside;
}
ul.c-list > li {
  position: relative;
  padding-left: 1.3em;
  margin-bottom: 10px;
}
ul.c-list > li::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #00296d;
  position: absolute;
  left: 0;
  top: 10px;
  border-radius: 100%;
}
@media (max-width: 767px) {
  ul.c-list > li::before {
    width: 8px;
    height: 8px;
    top: 4px;
  }
}

ol.c-list {
  list-style: none;
  list-style-position: inside;
  counter-reset: number;
  margin-left: 0;
  padding-left: 0;
}
ol.c-list > li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 12px;
}
ol.c-list > li::before {
  display: block;
  counter-increment: number;
  content: counter(number);
  position: absolute;
  left: 0;
  top: 7px;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  line-height: 20px;
  background: #00296d;
}

.c-news-item-list {
  padding: 0;
  margin-bottom: 30px;
  border-top: 2px solid #00296d;
  border-bottom: 2px solid #00296d;
}
@media (max-width: 767px) {
  .c-news-item-list {
    margin-bottom: 15px;
  }
}

.c-news-item {
  position: relative;
  border-bottom: 1px dashed #00296d;
  padding: 17px 24px 17px;
  line-height: 1.5em;
}
@media (max-width: 767px) {
  .c-news-item {
    padding-left: 0;
    padding-right: 0;
  }
}
.c-news-item:last-child {
  border-bottom: none;
}
.c-news-item__link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: 0.3s ease;
}
.c-news-item__link:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
}
.c-news-item__time {
  font-size: 1.6rem;
  display: inline-block;
  margin-right: 30px;
  color: #000000;
}
@media (max-width: 767px) {
  .c-news-item__time {
    font-size: 1.2rem;
    margin-right: 5px;
  }
}
.c-news-item__category {
  display: inline-block;
  z-index: 3;
}
.c-news-item__category > a {
  background: #ebf0f9;
  color: #00296d;
  clip-path: polygon(8% 0, 100% 0%, 92% 100%, 0% 100%);
  display: inline-block;
  text-align: center;
  text-decoration: none;
  width: 100px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 1.4rem;
  transition: 0.3s ease;
  margin-right: 8px;
}
@media (max-width: 767px) {
  .c-news-item__category > a {
    font-size: 1.2rem;
    padding-top: 2px;
    padding-bottom: 2px;
  }
}
.c-news-item__category > a:hover {
  background: #00296d;
  color: #fff;
}
.c-news-item__title {
  margin: 0;
  padding: 0;
  margin-top: 12px;
  overflow: hidden;
}
.c-news-item__title > a {
  color: #00296d;
  font-weight: normal;
  font-size: 1.6rem;
  text-decoration: none;
  display: block;
  width: 100%;
  line-height: 1.75em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .c-news-item__title > a {
    font-size: 1.4rem;
  }
}
.c-news-item__title > a:hover {
  text-decoration: underline;
}

/*
<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: 23px 24px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-list-entry__item {
    padding: 11px 0 !important;
    align-items: flex-start;
  }
}
.c-list-entry__item:hover {
  background: #f8f4db;
}
.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__pic {
  flex-shrink: 0;
  position: relative;
  margin-right: 25px;
  max-width: 280px;
  flex: 0 0 280px;
}
.c-list-entry__pic img {
  height: auto;
  border-radius: 10px;
  transition: 0.3s ease;
  margin: 0 auto;
  max-height: 210px;
}
.c-list-entry__pic:hover img {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .c-list-entry__pic {
    margin-right: 15px;
    width: 127px;
    flex: 0 0 127px;
  }
}
.c-list-entry__content {
  position: relative;
  flex: 1;
}
@media (max-width: 767px) {
  .c-list-entry__content {
    flex: 1;
  }
}
.c-list-entry__date {
  display: block;
  font-size: 1.6rem;
  line-height: 2em;
  color: #00296d;
  margin-bottom: 7px;
}
@media (max-width: 767px) {
  .c-list-entry__date {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
}
.c-list-entry__cat {
  display: block;
}
.c-list-entry__cat a {
  text-decoration: none;
  color: #00296d;
  font-size: 1.2rem;
  line-height: 2.3333em;
  background: #eff6fb;
  border-radius: 20px;
  border: 1px solid #bfcee6;
  margin-right: 11px;
  padding: 4px 16px;
  transition: 0.3s ease;
}
.c-list-entry__cat a:hover {
  color: white;
  background: #00296d;
}
@media (max-width: 767px) {
  .c-list-entry__cat a {
    font-size: 1.2rem;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 2px 8px;
  }
}
.c-list-entry__title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 13px;
  line-height: 1.75em;
}
.c-list-entry__title a {
  text-decoration: none;
  color: #00296d;
}
@media (max-width: 767px) {
  .c-list-entry__title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 8px;
  }
}
.c-list-entry__ex {
  color: #888888;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .c-list-entry__ex {
    display: none;
  }
}

.c-pagination {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}
.c-pagination ul {
  display: flex;
  justify-content: center;
  gap: 3px;
  position: relative;
  padding-left: 60px;
  padding-right: 60px;
}
.c-pagination ul li {
  font-size: 1.6rem;
}
.c-pagination ul li a {
  color: #00296d;
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #eff6fb;
  border-radius: 100%;
  text-align: center;
}
.c-pagination ul .current {
  color: white;
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #00296d;
  border-radius: 100%;
  text-align: center;
  font-weight: normal;
}
.c-pagination ul .next {
  display: none;
}
.c-pagination ul .prev {
  display: none;
}

.c-form .mwform-radio-field {
  display: block;
  margin-top: 12px;
  margin-left: 0 !important;
}
.c-form .mwform-radio-field > label {
  border-radius: 3px;
  background: #fff;
  display: block;
  padding: 15px 15px;
  transition: 0.3s ease;
}
.c-form .mwform-radio-field > label.is-checked {
  background: #b12c66;
  color: #fff;
}
.c-form .mwform-radio-field:first-child {
  margin-top: 0;
}
.c-form__radio {
  display: none;
}
.c-form__radio + span {
  padding-left: 30px;
  display: inline-block;
  position: relative;
  font-size: 1.6rem;
}
.c-form__radio + span:before {
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  border: 1px solid #00296d;
  left: 0;
  top: 0;
  height: 14px;
  width: 14px;
  background: #fff;
  transition: 0.3s ease;
}
.c-form__radio + span:after {
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  background: #00296d;
  height: 7px;
  left: 3.5px;
  opacity: 0;
  top: 3.5px;
  width: 7px;
  transition: 0.3s ease;
}
.c-form__radio:checked + span:after {
  opacity: 1;
}
.c-form__actions {
  text-align: center;
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.c-form input[type="submit"] {
  background: none;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.c-form__submit {
  position: relative;
  width: 248px !important;
  display: block;
  color: #00296d !important;
  background: #f3e489 url(../img/angle-right-blue.png) 97% center no-repeat !important;
  background-size: 4.5px 6.5px !important;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 60px !important;
  margin: 0px !important;
  text-align: center;
  border-radius: 30px;
  border: none;
  transition: 0.3s ease;
  box-shadow: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .c-form__submit {
    font-size: 1.4rem;
    line-height: 40px !important;
  }
}
.c-form__submit:hover {
  color: #fff !important;
  background: #00296d url(../img/angle-right-white.png) 97% center no-repeat !important;
  background-size: 4.5px 6.5px !important;
}
.c-form__back {
  position: relative;
  width: 248px !important;
  display: block;
  color: #fff !important;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 60px !important;
  margin: 0px !important;
  text-align: center;
  border-radius: 30px;
  border: none;
  transition: 0.3s ease;
  box-shadow: none;
  cursor: pointer;
  background: #87a0c8 url(../img/angle-left-white.png) 3% center no-repeat !important;
  background-size: 4.5px 6.5px !important;
}
.c-form__back:hover {
  color: #fff !important;
  background: #00296d url(../img/angle-left-white.png) 3% center no-repeat !important;
  background-size: 4.5px 6.5px !important;
}
.c-form input::-moz-placeholder {
  color: #87a0c8;
  font-size: 1.6rem;
}
.c-form input::placeholder {
  color: #87a0c8;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .c-form input::-moz-placeholder {
    font-size: 1.4rem;
  }
  .c-form input::placeholder {
    font-size: 1.4rem;
  }
}
.c-form__text,
.c-form__textarea {
  width: 100%;
  height: 50px;
  padding: 5px 9px;
  border: 1px solid #fff;
  border-radius: 3px;
  font-size: 1.6rem;
  background: #fff;
  transition: border-color 0.2s;
}
.c-form__text--zip,
.c-form__textarea--zip {
  display: inline-block;
  width: 111px;
  margin-bottom: 12px;
  margin-left: 5px;
}
.c-form__text:focus,
.c-form__textarea:focus {
  border-color: #b12c66;
  outline: none;
}
.c-form__text.input-long,
.c-form__textarea.input-long {
  width: 100%;
}
.c-form__textarea {
  height: 245px;
}
.c-form .select-wrap {
  display: inline-block;
  margin: 0;
  width: 95px;
  position: relative;
}
@media (max-width: 767px) {
  .c-form .select-wrap {
    width: 100%;
  }
}
.c-form .select-wrap::after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -3.75px;
  background: url(../img/select.png) 0 0 no-repeat;
  background-size: contain;
  width: 13px;
  height: 7.5px;
}
.c-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  display: block;
  border-radius: 0;
  height: 50px;
  padding: 5px 25px;
  border: 1px solid #cccccc;
}
@media (max-width: 767px) {
  .c-form select {
    width: 100%;
  }
}
.c-form .is-error {
  display: block;
  color: red;
}

.c-banners {
  position: relative;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .c-banners {
    padding-top: 10px;
    padding-bottom: 60px;
  }
}

.c-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
}
@media (max-width: 767px) {
  .c-banner-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}

.c-banner {
  position: relative;
  overflow: hidden;
}
.c-banner__link {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .c-banner img {
    border-radius: 10px;
  }
}
.c-banner__label {
  display: none;
}

.c-btn {
  position: relative;
  max-width: 308px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  display: inline-block;
  color: #00296d;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 4%;
  line-height: 170%;
  font-size: 1.6rem;
  padding: 12px 20px;
  background: #f3e489;
  border-radius: 9999px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 9999;
  margin: 0;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-btn {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.4rem;
    border: 1px solid #fff;
  }
}
.c-btn:hover {
  background: #00296d;
  color: #fff;
}
.c-btn--white {
  background: none;
  color: #fff;
  padding: 7px 20px;
  font-weight: normal;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .c-btn--white {
    font-size: 1.4rem;
  }
}
.c-btn--white:hover {
  background: #fff;
  color: #00296d;
}
.c-btn--white.c-btn--bullet::after {
  content: "";
  display: block;
  position: absolute;
  right: 5px;
  top: 50%;
  background: url(../img/angle-right-white.png) 0 0 no-repeat;
  background-size: contain;
  width: 4.5px;
  height: 6.5px;
  margin-top: -3px;
  transition: 0.3s ease;
}
.c-btn--white.c-btn--bullet:hover::after {
  background: url(../img/angle-right-blue.png) 0 0 no-repeat;
  background-size: contain;
}
.c-btn--block {
  display: block;
  margin: 0 auto;
}
.c-btn--bullet::after {
  content: "";
  display: block;
  position: absolute;
  right: 5px;
  top: 50%;
  background: url(../img/angle-right-blue.png) 0 0 no-repeat;
  background-size: contain;
  width: 4.5px;
  height: 6.5px;
  margin-top: -3px;
  transition: 0.3s ease;
}
.c-btn--bullet:hover::after {
  background: url(../img/angle-right-white.png) 0 0 no-repeat;
  background-size: contain;
}
.c-btn--blank::after {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  background: url(../img/ic-blank.png) 0 0 no-repeat;
  background-size: contain;
  width: 11px;
  height: 11px;
  margin-top: -5.5px;
  transition: 0.3s ease;
}
.c-btn--blank:hover::after {
  background: url(../img/ic-blank-w.png) 0 0 no-repeat;
  background-size: contain;
}
.c-btn--contact {
  max-width: 317px;
  margin: 22px auto;
  padding: 16px 30px;
  color: #fff;
  border: none;
  background: linear-gradient(
    to right,
    rgb(208, 191, 93) 0%,
    rgb(146, 129, 29) 100%
  );
}
.c-btn--contact:before {
  content: "";
  display: inline-block;
  background: url(../img/btn-contact.svg) 0 0 no-repeat;
  background-size: contain;
  width: 19px;
  height: 11px;
  margin-right: 10px;
}
.c-btn--contact:after {
  content: none;
}
.c-btn--contact:hover {
  background: linear-gradient(
    to right,
    rgb(146, 129, 29) 0%,
    rgb(208, 191, 93) 100%
  );
}
.c-btn--member {
  max-width: 317px;
  margin: 22px auto;
  padding: 16px 30px;
  color: #fff;
  border: none;
  background: #416298;
}
.c-btn--member:after {
  content: none;
}
.c-btn--member:hover {
  background: linear-gradient(
    to right,
    rgb(146, 129, 29) 0%,
    rgb(208, 191, 93) 100%
  );
}
.c-btn--gra-blue {
  background: linear-gradient(to right, #00296d 0%, #3b6ab7 100%);
  color: #fff;
  border: none;
}
.c-btn--gra-blue:hover {
  background: linear-gradient(
    to right,
    rgb(146, 129, 29) 0%,
    rgb(208, 191, 93) 100%
  );
}
.c-btn--pdf {
  width: 316px;
  margin: 65px auto;
  display: block;
  border: 2px solid #00296d;
  background: none;
  text-align: left;
  padding-left: 75px;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .c-btn--pdf {
    width: 260px;
    margin: 58px auto;
    font-size: 1.2rem;
    padding-left: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.c-btn--pdf::before {
  content: "";
  display: block;
  background: url(../img/ic-pdf.png) 0 0 no-repeat;
  background-size: contain;
  width: 46px;
  height: 46px;
  left: 15px;
  top: 13px;
  position: absolute;
}
@media (max-width: 767px) {
  .c-btn--pdf::before {
    left: 8px;
    top: 8px;
  }
}
.c-btn--pdf:hover::before {
  background: url(../img/ic-pdf-w.png) 0 0 no-repeat;
  background-size: contain;
}
.c-btn--pdf .u-bold {
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .c-btn--pdf .u-bold {
    font-size: 1.6rem;
  }
}
.c-btn--back {
  margin: 42px auto 0;
  display: block;
  width: 142px;
  max-width: 100%;
  background: #00296d;
  color: #fff;
}
.c-btn--back:hover {
  background: #f3e489;
  color: #00296d;
}
.c-btn--back::after {
  background: url(../img/angle-right-white.png) 0 0 no-repeat;
  background-size: contain;
}
.c-btn--back:hover::after {
  background: url(../img/angle-right-blue.png) 0 0 no-repeat;
  background-size: contain;
}
.c-btn--skyblue {
  background: #eff6fb;
  border: 1px solid #bfcee6;
  font-weight: normal;
}
.c-btn--skyblue:hover {
  background: #d0bf5d;
  border: 1px solid #d0bf5d;
}
.c-btn--330 {
  width: 330px;
  max-width: 100%;
}
.c-btn--auto {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.c-btn--200 {
  width: 200px;
}

.c-btn-text {
  position: relative;
  display: inline-block;
  align-items: center;
  color: #00296d;
  font-size: 1.4rem;
  line-height: 1.4286em;
  letter-spacing: 2%;
  text-decoration: none;
  padding: 9px 35px;
  transition: 0.3s ease;
  float: right;
}
@media (max-width: 767px) {
  .c-btn-text {
    font-size: 1.2rem;
  }
}
.c-btn-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #00296d;
  transition: 0.3s ease;
}
.c-btn-text::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 1px;
  background: #00296d;
  transform-origin: right center;
  transform: rotate(28deg) translateY(0) translateX(0);
  transition: 0.3s ease;
  will-change: transform;
}
.c-btn-text:hover::before {
  right: -15px;
}
.c-btn-text:hover::after {
  left: 15px;
}
.c-btn-text--white {
  color: #fff;
}
.c-btn-text--white::after {
  background: #fff;
}
.c-btn-text--white::before {
  background: #fff;
}

.c-title-2 {
  text-align: left;
  font-weight: bold;
  color: #00296d;
  font-size: 2.4rem;
  line-height: 1.4583333333em;
  letter-spacing: 2%;
  position: relative;
  margin-block-start: 0;
  margin-block-end: 45px;
}
@media (max-width: 767px) {
  .c-title-2 {
    font-size: 1.4rem;
    margin-block-end: 25px;
  }
}
.c-title-2--top {
  font-size: 6.4rem;
  margin-block-start: 80px;
  margin-block-end: 0;
}
@media (max-width: 767px) {
  .c-title-2--top {
    font-size: 2.8rem;
    margin-top: 45px;
  }
}
.c-title-2--pp {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5em;
  margin-top: 50px;
  margin-bottom: 29px;
  border-bottom: 2px solid #00296d;
  position: relative;
  padding: 18px 32px 18px;
}
@media (max-width: 767px) {
  .c-title-2--pp {
    font-size: 1.6rem;
    padding: 8px 11px;
    margin-top: 40px;
    margin-bottom: 21px;
  }
}
.c-title-2--pp::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #eff6fb;
  border-top-left-radius: 20px;
  width: 69px;
  height: 62px;
  z-index: -1;
}
@media (max-width: 767px) {
  .c-title-2--pp::before {
    width: 30px;
    height: 36px;
  }
}

.c-title-2-caption {
  text-align: left;
  font-weight: bold;
  font-size: 6.4rem;
  letter-spacing: 2%;
  position: relative;
  line-height: 1.3;
  margin: 0 0 0 !important;
}
@media (max-width: 767px) {
  .c-title-2-caption {
    font-size: 2.8rem;
  }
}
.c-title-2-caption--big {
  font-size: 9rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  .c-title-2-caption--big {
    font-size: 2.8rem;
  }
}
.c-title-2-caption--bottom {
  font-size: 2.4rem;
  line-height: 1.4583em;
  margin-bottom: 30px !important;
}
@media (max-width: 767px) {
  .c-title-2-caption--bottom {
    font-size: 1.4rem;
  }
}

.c-title-3 {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.2em;
  margin-bottom: 23px;
  position: relative;
}
.c-title-3--line {
  border-bottom: 1px solid #ccdaf0;
  padding-bottom: 18px;
}
.c-title-3--line::before {
  content: "";
  display: block;
  width: 128px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #00296d;
}
@media (max-width: 767px) {
  .c-title-3--line::before {
    width: 80px;
  }
}

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

.c-card__pic {
  position: relative;
  margin-bottom: 6px;
}
.c-card__pic img {
  transition: 0.3s ease;
}
.c-card__title {
  text-align: left;
  font-weight: bold;
  font-size: 2.4rem;
  padding: 15px 28px;
  margin-block: 0;
  line-height: 1.4583em;
  letter-spacing: 2%;
  color: #00296d;
  border-left: 1px solid #00296d;
  border-bottom: 1px solid #00296d;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-card__title {
    font-size: 1.8rem;
    padding: 10px 18px;
  }
}
.c-card .c-text {
  padding: 17px 32px 0;
  margin: 0;
}
@media (max-width: 767px) {
  .c-card .c-text {
    padding-left: 0;
    padding-right: 0;
  }
}
.c-card__link {
  text-decoration: none;
}
.c-card__link:hover .c-card__pic img {
  opacity: 0.6;
}
.c-card__link:hover .c-card__title {
  background: #00296d;
  color: #fff;
}
.c-card__link:hover .c-card__title::after {
  background: url(../img/sv-minus.png) center center no-repeat;
  background-size: contain;
}
.c-card--sv .c-card__pic {
  margin-bottom: 0;
}
.c-card--sv .c-card__content {
  background: #fff;
}
.c-card--sv .c-card__title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 22px 22px 30px;
  position: relative;
}
.c-card--sv .c-card__title::after {
  content: "";
  display: block;
  position: absolute;
  right: 7px;
  top: 32px;
  background: url(../img/sv-plus.png) 0 0 no-repeat;
  background-size: contain;
  width: 12.5px;
  height: 12.5px;
}

.c-box {
  background: #fff;
  position: relative;
  border-right: 1px solid #00296d;
  border-bottom: 1px solid #00296d;
  padding: 25px;
}
@media (max-width: 767px) {
  .c-box {
    padding: 20px;
  }
}

.c-tab-list {
  background: #d8eff1;
  padding-top: 70px;
}
@media (max-width: 767px) {
  .c-tab-list {
    padding-top: 35px;
  }
}
.c-tab-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-tab-list ul li a {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  color: #3ed2e3;
  background: #f3fafb;
  display: block;
  padding: 30px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .c-tab-list ul li a {
    padding: 15px;
  }
}
.c-tab-list ul li a:hover {
  opacity: 0.7;
}
.c-tab-list ul li.is-active a {
  background: #fff;
  pointer-events: none;
}

.c-qna__q {
  font-size: 2.1rem;
  line-height: 1.6666666667em;
  font-weight: normal;
  border-bottom: 1px solid rgba(0, 41, 109, 0.3);
  position: relative;
  padding: 25px 40px;
  padding-left: 74px;
  letter-spacing: 2%;
  cursor: pointer;
}
@media (max-width: 767px) {
  .c-qna__q {
    padding: 10px 40px;
    padding-left: 54px;
    font-size: 1.6rem;
  }
}
.c-qna__q::before {
  content: "";
  display: block;
  background: url(../img/q.png) 0 0 no-repeat;
  background-size: contain;
  width: 28.5px;
  height: 32px;
  position: absolute;
  left: 22px;
  top: 30px;
}
@media (max-width: 767px) {
  .c-qna__q::before {
    top: 8px;
    left: 15px;
  }
}
.c-qna__q::after {
  content: "";
  display: block;
  background: url(../img/qna-plus.png) center center no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 22px;
  top: 30px;
}
@media (max-width: 767px) {
  .c-qna__q::after {
    width: 20px;
    height: 20px;
    top: 50%;
    margin-top: -15px;
  }
}
.c-qna__q.is-active::after {
  background: url(../img/qna-minus.png) center center no-repeat;
  background-size: contain;
}
.c-qna__a {
  background: #eff6fb;
  padding: 33px 40px;
  display: none;
}
.c-qna__a > p {
  margin-top: 0;
}
@media (max-width: 767px) {
  .c-qna__a > p {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .c-qna__a {
    padding: 14px 25px;
  }
}

.c-table {
  width: 100%;
}
.c-table th {
  border-bottom: 1px solid #cae4e7;
  padding: 25px 10px;
  font-weight: 500;
  white-space: nowrap;
  vertical-align: top;
  text-align: left;
}
.c-table td {
  border-bottom: 1px solid #cae4e7;
  padding: 25px 10px;
  font-weight: 500;
}
.c-table td iframe {
  display: block;
  width: 100%;
  margin-top: 30px;
  height: 350px;
}
.c-table td a {
  color: #2484a0;
}
.c-table__qr {
  width: 150px;
}

.c-anchor-list {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 44px auto;
}
@media (max-width: 767px) {
  .c-anchor-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px 0;
  }
}
.c-anchor-list > li {
  width: 150px;
}
@media (max-width: 767px) {
  .c-anchor-list > li {
    width: auto;
  }
}
.c-anchor-list > li > a {
  font-weight: bold;
  display: block;
  text-align: center;
  color: #00296d;
  font-size: 1.6rem;
  letter-spacing: 2%;
  line-height: 1.625em;
  text-decoration: none;
  border-left: 1px solid #00296d;
  padding: 15px;
  transition: 0.3s ease;
}
.c-anchor-list > li > a:hover {
  background: #eff6fb;
}
.c-anchor-list > li:last-child > a {
  border-right: 1px solid #00296d;
}
@media (max-width: 767px) {
  .c-anchor-list > li:nth-child(2n) > a {
    border-right: 1px solid #00296d;
  }
}

.p-header {
  position: relative;
  z-index: 23;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.p-header__logo {
  width: 195px;
  margin: 0;
  margin-top: 17px;
  margin-left: 34px;
  padding: 0;
  position: relative;
  transition: 0.3s ease;
}
.p-header__logo:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .p-header__logo {
    width: 125px;
    margin-top: 11px;
    margin-left: 14px;
  }
}
.p-header__nav {
  padding-right: 160px;
}
@media (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}
.p-header__nav-list {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
.p-header__nav-list > li > a {
  display: block;
  text-align: center;
  color: #00296d;
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 2.3333333333em;
  letter-spacing: 2%;
  padding: 22px 25px;
  transition: 0.3s ease;
}
.p-header__nav-list > li > a:hover {
  background: #f3e489;
}
@media (min-width: 768px) and (max-width: 1170px) {
  .p-header__nav-list {
    display: none;
  }
}

.p-nav {
  position: fixed;
  z-index: 21;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  .p-nav {
    position: initial;
  }
}
.p-nav__inner {
  position: absolute;
  right: 0;
  top: 0px;
  width: 375px;
  height: 100vh;
  background: rgba(0, 41, 109, 0.9);
  transform: translate3d(100%, 0, 0);
  transition: 0.3s ease;
  overflow: scroll;
}
@media (max-width: 767px) {
  .p-nav__inner {
    width: 100vw;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 22;
  }
}
.p-nav.is-active .p-nav__inner {
  transform: translate3d(0%, 0, 0);
}
.p-nav__logo {
  width: 155px;
  margin-top: 22px;
  margin-left: 14px;
}
.p-nav__logo img {
  width: 100%;
  max-width: 100%;
}
.p-nav__list {
  padding: 0;
  margin: 62px 28px 44px;
}
@media (max-width: 767px) {
  .p-nav__list {
    margin-top: 26px;
    display: block;
  }
}
.p-nav__list > li {
  position: relative;
  border-bottom: 1px solid #87a0c8;
}
.p-nav__list > li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: normal;
  display: block;
  text-align: left;
  transition: 0.3s ease;
  letter-spacing: 2%;
  line-height: 2.1875em;
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .p-nav__list > li a {
    padding: 15px;
    text-align: left;
  }
}
.p-nav__list > li a::after {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -2.25px;
  background: url(../img/angle-right.png) 0 0 no-repeat;
  background-size: contain;
  height: 7px;
  width: 4.5px;
}
.p-nav__list > li a:hover {
  color: #fff;
  background: #87a0c8;
}
.p-nav__child {
  border-radius: 5px;
  margin-left: 20px;
  margin-bottom: 27px;
}
.p-nav__child li a {
  color: #fff;
  display: block;
  text-align: left;
  padding: 10px 15px;
  position: relative;
  font-weight: normal;
  font-size: 1.4rem;
  background: #416298;
  border-bottom: 1px dashed #00296d;
}
.p-nav__child li a:hover {
  background: #00296d;
}
.p-nav__child li:first-child > a {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.p-nav__child li:last-child > a {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom: none;
}
.p-nav__overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transform: translate3d(100%, 0, 0);
}
@media (max-width: 767px) {
  .p-nav__overlay {
    z-index: 21;
  }
}
.p-nav.is-active .p-nav__overlay {
  transform: translate3d(0%, 0, 0);
}
.p-nav__contact {
  position: fixed;
  right: 80px;
  top: 0;
  width: 80px;
  display: block;
  transition: 0.3s ease;
}
.p-nav__contact:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  .p-nav__contact {
    right: 50px;
    width: 50px;
    height: 50px;
    background: url(../img/p-nav__contact-sp.png) center center no-repeat;
    background-size: cover;
    z-index: 22;
    position: absolute;
  }
}
@media (max-width: 767px) {
  .p-nav__contact > img {
    display: none;
  }
}
.p-nav__toggle {
  background-color: #00296d;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 80px;
  height: 80px;
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: 32;
}
.p-nav__toggle span {
  background: #fff;
  width: 30px;
  height: 2px;
  position: absolute;
  left: 25px;
  top: 34.5px;
  transition: 0.3s ease;
  border-radius: 2px;
}
.p-nav__toggle span:nth-child(2) {
  top: 45.5px;
}
@media (max-width: 767px) {
  .p-nav__toggle span:nth-child(2) {
    top: 28px;
  }
}
@media (max-width: 767px) {
  .p-nav__toggle span {
    width: 18.75px;
    left: 15px;
    top: 20px;
  }
}
.p-nav__toggle.is-active span:nth-child(1) {
  top: 40px;
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  .p-nav__toggle.is-active span:nth-child(1) {
    top: 24px;
  }
}
.p-nav__toggle.is-active span:nth-child(2) {
  top: 40px;
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .p-nav__toggle.is-active span:nth-child(2) {
    top: 24px;
  }
}
@media (max-width: 767px) {
  .p-nav__toggle {
    width: 50px;
    height: 50px;
  }
}

.p-footer {
  position: relative;
}
.p-footer__page-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 60px;
  height: 60px;
  z-index: 20;
}
@media (max-width: 767px) {
  .p-footer__page-top {
    width: 40px;
    height: 40px;
    right: 10px;
  }
}
.p-footer__page-top.is-hidden {
  display: none;
}
.p-footer__page-top.is-visible {
  display: block;
  animation: fadein ease 500ms 1;
}
.p-footer__page-top.is-absolute {
  position: absolute;
  right: 15px;
  bottom: calc(100% - 30px);
}
@media (max-width: 767px) {
  .p-footer__page-top.is-absolute {
    right: 10px;
    bottom: calc(100% - 20px);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-footer .l-content {
  display: flex;
  justify-content: space-between;
  padding-top: 78px;
  padding-bottom: 78px;
}
@media (max-width: 767px) {
  .p-footer .l-content {
    display: block;
    padding-top: 41px;
    padding-bottom: 41px;
  }
}
.p-footer__header {
  position: relative;
  flex: 0 0 280px;
}
.p-footer__header .c-btn {
  max-width: 245px;
  width: 100%;
  display: block;
  margin: 20px 0 20px 5px;
}
@media (max-width: 767px) {
  .p-footer__header .c-btn {
    margin-top: 23px;
    margin-bottom: 26px;
    margin-left: auto;
    margin-right: auto;
    width: 173px;
    font-size: 1.4rem;
  }
}
.p-footer__header .c-btn:before {
  content: "";
  display: inline-block;
  background: url(../img/ic-mail.png) 0 0 no-repeat;
  background-size: contain;
  width: 27px;
  height: 16px;
  margin-right: 6px;
}
@media (max-width: 767px) {
  .p-footer__header .c-btn:before {
    width: 19px;
    height: 11px;
  }
}
.p-footer__pr {
  margin-left: 30px;
  text-align: left;
}
@media (max-width: 767px) {
  .p-footer__pr {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.4rem;
    text-align: center;
  }
}
.p-footer__pr a {
  text-decoration: none;
}
.p-footer__pr a::before {
  content: "/";
  margin-right: 0.5em;
}
.p-footer__pr a::after {
  content: "/";
  margin-left: 0.5em;
}
.p-footer__pr a:hover {
  text-decoration: underline;
}
.p-footer__logo {
  width: 200px;
}
@media (max-width: 767px) {
  .p-footer__logo {
    width: 200px;
    margin: 0 auto;
  }
}
.p-footer__info {
  font-size: 1.4rem;
  line-height: 2em;
}
@media (max-width: 767px) {
  .p-footer__info {
    text-align: center;
    font-size: 1.2rem;
  }
}
.p-footer__nav {
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  padding-left: 100px;
}
@media (max-width: 767px) {
  .p-footer__nav {
    display: block;
    padding-left: 0;
  }
}
.p-footer__nav-list {
  padding: 0;
  margin: 0;
  flex: 1;
}
@media (max-width: 767px) {
  .p-footer__nav-list {
    display: none !important;
  }
}
.p-footer__nav-list .c-btn {
  display: block;
  width: 100%;
  border: 1px solid #00296d;
}
@media (max-width: 767px) {
  .p-footer__nav-list {
    display: block;
  }
}
.p-footer__nav-item > a,
.p-footer__nav-item > span {
  color: #00296d;
  font-size: 1.6rem;
  text-decoration: none;
  line-height: 2.1875em;
  letter-spacing: 2%;
  display: block;
  font-weight: 500;
  position: relative;
  border-bottom: 1px solid #00296d;
  padding: 9px 9px;
}
.p-footer__nav-item > a:hover,
.p-footer__nav-item > span:hover {
  text-decoration: none;
  background: #fff;
}
.p-footer__nav-item > a:hover::after,
.p-footer__nav-item > span:hover::after {
  content: "";
  display: block;
  position: absolute;
  right: 5px;
  top: 50%;
  background: url(../img/angle-right-blue.png) 0 0 no-repeat;
  background-size: contain;
  width: 4.5px;
  height: 6.5px;
  margin-top: -3.25px;
}
.p-footer__nav-sublist {
  padding: 0;
}
@media (max-width: 767px) {
  .p-footer__nav-sublist {
    display: none;
    margin: 0 !important;
  }
}
.p-footer__nav-sublist li {
  line-height: 2em;
  position: relative;
}
.p-footer__nav-sublist a {
  color: #00296d;
  font-size: 1.3rem;
  text-decoration: none;
  display: block;
  text-align: left;
  line-height: 2.4615384615em;
  padding: 3px 10px;
  border-bottom: 1px dashed #00296d;
}
.p-footer__nav-sublist a:hover {
  background: #fff;
}
.p-footer__copyright {
  width: 100%;
  font-size: 1.4rem;
  line-height: 2em;
  text-align: center;
  margin: 0;
}
@media (max-width: 767px) {
  .p-footer__copyright {
    font-size: 1rem;
    margin-top: 35px;
  }
}

.p-page {
  position: relative;
}

.p-page-header {
  text-align: center;
  margin-bottom: 3rem;
  background-position: center center;
  background-size: cover;
  margin-top: 80px;
  position: relative;
  transform-origin: center;
}
@media (min-width: 768px) {
  .p-page-header__inner {
    transform: rotate(0deg);
    height: 500px;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .p-page-header__inner {
    transform: rotate(0deg);
  }
}
@media (max-width: 767px) {
  .p-page-header__inner-2 {
    height: 170px;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}
.p-page-header__bg {
  width: 120vw;
  height: 100%;
  position: absolute;
  left: -10vw;
  top: 0;
  background-position: center center;
  background-size: cover;
  transform: rotate(-4deg);
}
@media (max-width: 767px) {
  .p-page-header__bg {
    height: 170px;
  }
}
@media (max-width: 767px) {
  .p-page-header {
    transform: rotate(0deg);
    height: auto;
    margin-top: 50px;
  }
}
.p-page-header__title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4583333333em;
  letter-spacing: 2%;
  position: relative;
  text-align: left;
  margin: 0;
}
@media (max-width: 767px) {
  .p-page-header__title {
    font-size: 1.4rem;
  }
}
.p-page-header__title--up {
  font-size: 7.2rem;
  margin: 0 0 -15px;
}
@media (max-width: 767px) {
  .p-page-header__title--up {
    font-size: 2.8rem;
  }
}
.p-page-header__caption {
  text-align: left;
  font-size: 7.2rem;
  display: block;
  position: relative;
  letter-spacing: 2%;
  font-weight: 900;
  margin: 0 0 -15px;
}
@media (max-width: 767px) {
  .p-page-header__caption {
    font-size: 2.8rem;
    margin-bottom: 0;
  }
}
.p-page-header__caption--bottom {
  font-size: 2.4rem;
  margin: 0;
}
@media (max-width: 767px) {
  .p-page-header__caption--bottom {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
.p-page-header__lead {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7777777778em;
  letter-spacing: 2%;
  text-align: left;
  max-width: 786px;
}
@media (max-width: 767px) {
  .p-page-header__lead {
    font-size: 1.5rem;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .p-page-header--news .p-page-header__lead {
    margin-top: 5px;
  }
}
.p-page-header--etc::before {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.9) 38%,
    rgba(255, 255, 255, 0) 90%
  );
}
.p-page-header--recruit {
  transform: rotate(0deg);
  height: 769px;
}
@media (max-width: 767px) {
  .p-page-header--recruit {
    height: auto;
  }
}
.p-page-header--recruit .p-page-header__inner {
  transform: rotate(0deg);
  height: 769px;
  justify-content: flex-end;
  padding-bottom: 117px;
}
@media (max-width: 767px) {
  .p-page-header--recruit .p-page-header__inner {
    height: auto;
    padding-bottom: 0;
  }
}
.p-page-header--recruit .p-page-header__rec-swiper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-page-header--recruit .p-page-header__rec-swiper {
    position: relative;
  }
}
.p-page-header--recruit .p-page-header__rec-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.p-page-header--recruit
  .p-page-header__rec-swiper
  .swiper-wrapper
  .swiper-slide {
  width: 2472px;
}
@media (max-width: 767px) {
  .p-page-header--recruit
    .p-page-header__rec-swiper
    .swiper-wrapper
    .swiper-slide {
    width: 1124px;
  }
}
.p-page-header--recruit .p-page-header__inner-box {
  background: #fff;
  width: 436px;
  position: relative;
  z-index: 15;
  padding-left: 45px;
  padding-bottom: 29px;
  padding-top: 15px;
}
@media (max-width: 767px) {
  .p-page-header--recruit .p-page-header__inner-box {
    width: 148px;
    margin-top: -150px;
    padding: 7px 20px 14px;
  }
}

.p-page__content {
  position: relative;
  line-height: 2em;
  padding-bottom: 50px;
}
.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;
}
@media (max-width: 767px) {
  .p-sidebar {
    margin-bottom: 100px;
  }
}
.p-sidebar__block {
  position: relative;
  margin-bottom: 35px;
}
.p-sidebar__block--shadow {
  box-shadow: 2px 2px 0px 0px #d2def1;
  padding: 0 11px 11px;
}
@media (max-width: 767px) {
  .p-sidebar__block--shadow {
    box-shadow: none;
    padding: 0;
  }
}
.p-sidebar__title {
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1.75em;
  padding: 14px 11px;
}
@media (max-width: 767px) {
  .p-sidebar__title {
    padding: 16px 0;
  }
}
@media (max-width: 767px) {
  .p-sidebar__list > li {
    margin-bottom: 25px;
  }
}
.p-sidebar__list > li > a {
  text-decoration: none;
  font-size: 1.6rem;
  padding: 16px 16px;
  display: block;
}
@media (max-width: 767px) {
  .p-sidebar__list > li > a {
    padding: 16px 0;
  }
}
.p-sidebar__list--child > li {
  margin-bottom: 8px;
}
.p-sidebar__list--child > li > a {
  display: block;
  background: #eff6fb;
  border-radius: 5px;
  font-size: 1.4rem;
  line-height: 2em;
  padding: 7px 16px;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}
.p-sidebar__list--child > li > a::after {
  content: "";
  display: block;
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -3.75px;
  background: url(../img/angle-right-blue.png) 0 0 no-repeat;
  background-size: contain;
  width: 4.5px;
  height: 6.5px;
}
.p-sidebar__list--child > li > a:hover {
  background: #faf7e6;
}
.p-sidebar__select-wrap {
  display: block;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .p-sidebar__select-wrap {
    width: 100%;
  }
}
.p-sidebar__select-wrap::after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -3.25px;
  background: url(../img/select.png) 0 0 no-repeat;
  background-size: contain;
  width: 11px;
  height: 6.5px;
}
.p-sidebar__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #afc3e4;
  display: block;
  border-radius: 0;
  height: 41px;
  font-size: 1.4rem;
  padding: 6px 14px;
}
@media (max-width: 767px) {
  .p-sidebar__select {
    width: 100%;
  }
}

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

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

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

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

.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;
}

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

@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-green {
  color: #7ea140 !important;
}

.u-color-blue {
  color: #133e70 !important;
}

.u-color-blue-sub {
  color: #0050ad !important;
}

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

.u-color-lightblue {
  color: #3ed2e3 !important;
}

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

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

.u-bg-yellow {
  background: #faf7e6;
  position: relative;
}

.u-bg-white {
  background: #fff;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.u-bg-blue {
  background: #eff6fb;
}

.u-bg-gra {
  position: relative;
}
.u-bg-gra::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to left,
    #fff2f5 0%,
    #fcfce8 22%,
    #fcfce8 55%,
    #e5f8ff 78%,
    #e5f8ff 100%
  );
  filter: blur(80px);
  z-index: -1;
}

.u-bg-gra-naname {
  position: relative;
  z-index: 0;
}
.u-bg-gra-naname::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: linear-gradient(
    to left,
    #fff2f5 0%,
    #fcfce8 22%,
    #fcfce8 55%,
    #e5f8ff 78%,
    #e5f8ff 100%
  );
  transform: rotate(-4deg);
  transform-origin: center;
  z-index: -1;
}
@media (max-width: 767px) {
  .u-bg-gra-naname::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: -12vw;
    width: 120vw;
    height: calc(100% + 24vw);
    transform: translateX(-50%) skewY(-4deg);
    transform-origin: center;
  }
}
.u-bg-gra-naname--blur::before {
  filter: blur(60px);
}

.u-bg-skyblue-naname {
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .u-bg-skyblue-naname {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.u-bg-skyblue-naname::before {
  content: "";
  position: absolute;
  inset: auto;
  transform: rotate(-4deg);
  transform-origin: center;
  z-index: -1;
  left: -10vw;
  width: 120vw;
  height: 100%;
  background: #eff6fb;
}
@media (max-width: 767px) {
  .u-bg-skyblue-naname::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: -12vw;
    width: 120vw;
    height: calc(100% + 24vw);
    transform: translateX(-50%) skewY(-4deg);
    transform-origin: center;
    background: #eff6fb;
  }
}

.u-bg-blue-naname {
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .u-bg-blue-naname {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.u-bg-blue-naname::before {
  content: "";
  position: absolute;
  inset: auto;
  transform: rotate(-4deg);
  transform-origin: center;
  z-index: -1;
  left: -10vw;
  width: 120vw;
  height: 100%;
  background: linear-gradient(to right, #3660a5 0%, #618acf 100%);
}
@media (max-width: 767px) {
  .u-bg-blue-naname::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: -12vw;
    width: 120vw;
    height: calc(100% + 24vw);
    transform: translateX(-50%) skewY(-4deg);
    transform-origin: center;
  }
}

.u-bg-blue-2-naname {
  position: relative;
  z-index: 0;
}
.u-bg-blue-2-naname::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: #00296d;
  transform: rotate(-4deg);
  transform-origin: center;
  z-index: -1;
}

.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%;
  }
}
