@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho&display=swap");
html {
  font-size: 100%;
}
@media (max-width: 1330px) {
  html {
    font-size: 1.2030075188vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  cursor: pointer;
}
.js-fadeHead {
  opacity: 0;
  -webkit-transition: all 1.3s ease-in-out;
  transition: all 1.3s ease-in-out;
}

.js-fadein {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 1.8s;
  transition: all 1.8s;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

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

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

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

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1330px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.c-btn01 {
  height: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  background: #fff;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-btn01 {
    height: 3.25rem;
    font-size: 0.9375rem;
    color: #526cab;
    background: #fff;
    border: 1px solid #fff;
  }
}

a:hover .c-btn01,
.c-btn01:hover {
  color: #fff;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  a:hover .c-btn01,
  .c-btn01:hover {
    color: #526cab;
    opacity: 1;
  }
}

.c-btn01::after {
  content: "";
  width: 0;
  height: 100%;
  background: #526cab;
  border-radius: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-btn01::after {
    display: none;
  }
}

a:hover .c-btn01::after,
.c-btn01:hover::after {
  width: 100%;
}
@media screen and (max-width: 767px) {
  a:hover .c-btn01::after,
  .c-btn01:hover::after {
    width: 0;
  }
}

.c-btn02 {
  height: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  background: #fff;
  border-radius: 30px;
  border: 1px solid #526cab;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-btn02 {
    height: 3.25rem;
    font-size: 0.9375rem;
  }
}

a:hover .c-btn02,
.c-btn02:hover {
  color: #fff;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  a:hover .c-btn02,
  .c-btn02:hover {
    color: #333;
    border: 1px solid #526cab;
  }
}

.c-btn02::after {
  content: "";
  width: 0;
  height: 100%;
  background: #526cab;
  border-radius: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-btn02::after {
    display: none;
  }
}

a:hover .c-btn02::after,
.c-btn02:hover::after {
  width: 100%;
}
@media screen and (max-width: 767px) {
  a:hover .c-btn02::after,
  .c-btn02:hover::after {
    width: 0;
  }
}

.c-category01 {
  min-width: 7.3125rem;
  padding: 0.4375rem 1rem 0.4375rem 1.0625rem;
  font-size: max(10px, 0.875rem);
  text-align: center;
  line-height: 1;
  font-weight: 500;
  background: #F5F5F5;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .c-category01 {
    font-size: 0.8125rem;
  }
}

.c-category01--blue {
  color: #fff;
  background: #526cab;
}

.c-title01 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .c-title01 {
    row-gap: 0.875rem;
  }
}

.c-title01--left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-title01__main {
  padding-bottom: 1.875rem;
  font-size: 2.375rem;
  color: #526cab;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Shippori Mincho", serif;
  font-weight: 900;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-title01__main {
    padding-bottom: 1rem;
    font-size: 1.625rem;
  }
}

.c-title01__main::after {
  content: "";
  width: 2.5rem;
  height: 2px;
  background: #526cab;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  .c-title01__main::after {
    width: 2rem;
  }
}

.c-title01__sub {
  font-size: 1.25rem;
  color: #526cab;
  line-height: 1;
  letter-spacing: -0.01em;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-title01__sub {
    font-size: 0.875rem;
  }
}

.c-title01--white .c-title01__main,
.c-title01--white .c-title01__sub {
  color: #fff;
}

.c-title01--white .c-title01__main::after {
  background: #fff;
}

.p-breadcrumb {
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
}

.p-breadcrumb__inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-breadcrumb__inner ul li {
  margin-right: 0.3125rem;
  position: relative;
}

.p-breadcrumb__inner ul li:nth-child(n+2) {
  padding-left: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__inner ul li:nth-child(n+2) {
    padding-left: 0.875rem;
  }
}

.p-breadcrumb__inner ul li:nth-child(n+2)::before {
  content: "";
  width: 0.375rem;
  height: 0.5rem;
  background: transparent url(../images/common/arrow_right_blue.png) no-repeat center center/100%;
  position: absolute;
  top: 0.3125rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__inner ul li:nth-child(n+2)::before {
    width: 0.25rem;
    height: 0.375rem;
    top: 0.375rem;
    left: 0.125rem;
  }
}

.p-breadcrumb__inner ul li a,
.p-breadcrumb__inner ul li span {
  display: block;
  font-size: 0.6875rem;
  line-height: 1.5;
  font-weight: 300;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-breadcrumb__inner ul li a::after {
  content: "";
  width: 100%;
  height: 1px;
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, from(#333), to(#333)) 100% 100%/0 1px no-repeat;
  background: linear-gradient(#333, #333) 100% 100%/0 1px no-repeat;
  background-size: 100% 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
}

.p-breadcrumb__inner ul li a:hover::after {
  background-size: 0 1px;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__inner ul li a:hover::after {
    background-size: 100% 1px;
  }
}

.p-company {
  padding-top: 8.75rem;
  padding-bottom: 11.25rem;
}
@media screen and (max-width: 767px) {
  .p-company {
    padding-top: 6.25rem;
    padding-bottom: 7.5rem;
  }
}

.p-company__inner {
  max-width: 56.25rem;
  width: 62.5%;
}
@media screen and (max-width: 767px) {
  .p-company__inner {
    width: 100%;
  }
}

.p-company__title {
  text-align: center;
}

.p-company__list {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-company__list {
    margin-top: 3rem;
  }
}

.p-cta {
  background: #4B5165;
  position: relative;
}

.p-cta::before {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#599CCE), to(#424891));
  background: linear-gradient(180deg, #599CCE 0%, #424891 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .p-cta::before {
    background: -webkit-gradient(linear, left top, right top, from(#599CCE), to(#424891));
    background: linear-gradient(90deg, #599CCE 0%, #424891 100%);
  }
}

.p-cta__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-cta__inner {
    margin-inline: auto;
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-cta__box {
  display: block;
  padding-top: 8.4375rem;
  padding-bottom: 8.25rem;
  background: transparent;
  background-size: 110%;
  position: relative;
  -webkit-transition: background-size 0.6s ease-in-out;
  transition: background-size 0.6s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-cta__box {
    padding-top: 2.9375rem;
    padding-bottom: 3.125rem;
    overflow: hidden;
  }
}

.p-cta__box:nth-child(2) {
  border-left: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-cta__box:nth-child(2) {
    border-left: none;
    border-top: 1px solid #fff;
  }
}

.p-cta__title {
  text-align: center;
  position: relative;
}

.p-cta__read {
  margin-top: 1.875rem;
  font-size: max(10px, 0.9375rem);
  line-height: 1.6666666667;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cta__read {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.7333333333;
  }
}

.p-cta__btn {
  margin-top: 2.9375rem;
  width: 53.4722222222%;
  margin-inline: auto;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    margin-top: 1.6875rem;
    width: 78.9473684211%;
  }
}

@media screen and (max-width: 767px) {
  .p-cta__btn .c-btn01 {
    width: 100%;
  }
}

.p-footer {
  padding-top: 4.25rem;
  padding-bottom: 2.5625rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 3.125rem;
    padding-bottom: 2.1875rem;
  }
}

.p-footer__inner {
  width: 92.3611111111%;
  margin-inline: auto;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    width: auto;
  }
}

.p-footer__top {
  padding-bottom: 4.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__top {
    padding-bottom: 2.8125rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-footer__head {
  width: 62.5%;
}
@media screen and (max-width: 767px) {
  .p-footer__head {
    width: auto;
  }
}

.p-footer__mainnav {
  display: grid;
  grid-template-columns: repeat(2, 13.75rem);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 4.375rem;
     -moz-column-gap: 4.375rem;
          column-gap: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__mainnav {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .p-footer__mainList:nth-child(n+2) {
    margin-top: 1.75rem;
  }
}

.p-footer__mainItem:nth-child(n+2) {
  margin-top: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__mainItem:nth-child(n+2) {
    margin-top: 1.75rem;
  }
}

.p-footer__mainItem.p-footer__mainItem--recruit {
  margin-top: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__mainItem.p-footer__mainItem--recruit {
    margin-top: 2.1875rem;
    margin-right: 1.25rem;
    margin-left: 1.25rem;
  }
}

.p-footer__mainLink {
  width: 100%;
  display: block;
  padding-bottom: 1rem;
  font-size: max(10px, 0.9375rem);
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: bold;
  border-bottom: 1px solid #DBDADA;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-footer__mainLink {
    padding-right: 1.1875rem;
    padding-left: 1.1875rem;
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  div.p-footer__mainLink {
    pointer-events: none;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__mainLink.js-spAccord::before {
    display: block;
    content: "";
    width: 15px;
    height: 1px;
    background: #526cab;
    position: absolute;
    top: 0.25rem;
    right: 0.625rem;
    z-index: 1;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__mainLink.js-spAccord::after {
    display: block;
    content: "";
    width: 15px;
    height: 1px;
    background: #526cab;
    position: absolute;
    top: 14%;
    right: 0.6875rem;
    transform: rotate(90deg) translate(0, -50%);
    -webkit-transform: rotate(90deg) translate(0, -50%);
    z-index: 1;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__mainLink.js-spAccord.active::after {
    display: none;
  }
}

.p-footer__mainItem.p-footer__mainItem--recruit .p-footer__mainLink {
  padding-bottom: 1rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #DBDADA;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__mainItem.p-footer__mainItem--recruit .p-footer__mainLink {
    padding-top: 1.4375rem;
    padding-bottom: 1.3125rem;
    text-align: center;
    background: #fff;
    border-radius: 30px;
    border-bottom: none;
    border: 1px solid #DBDADA;
  }
}

.p-footer__mainLink--blank::after {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background: transparent url(../images/common/arrow_blank_deepblue.svg) no-repeat center center/100%;
  position: absolute;
  top: 0.125rem;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__mainLink--blank::after {
    top: 50%;
    right: 1.125rem;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
  }
}

.p-footer__dropdown {
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__dropdown {
    margin-top: 1.25rem;
    padding-right: 1.1875rem;
    padding-left: 1.1875rem;
  }
}

.p-footer__dropdownList {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 0.5rem;
}

.p-footer__dropdownLink {
  padding-left: 0.9375rem;
  font-size: max(10px, 0.8125rem);
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
}

.p-footer__dropdownLink::before {
  content: "";
  width: 0.5rem;
  height: 1px;
  background: #526cab;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

.p-footer__body {
  width: 19.53125%;
}
@media screen and (max-width: 767px) {
  .p-footer__body {
    width: auto;
    margin-bottom: 3.125rem;
  }
}

.p-footer__logo {
  display: block;
  width: 20rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 12.5rem;
    margin-inline: auto;
  }
}

.p-footer__name {
  margin-top: 1.125rem;
  font-size: max(10px, 0.9375rem);
  line-height: 1.7333333333;
  text-align: left;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-footer__name {
    margin-top: 0.9375rem;
    font-size: max(10px, 0.875rem);
    text-align: center;
    line-height: 1.7142857143;
  }
}

.p-footer__access {
  margin-top: 0.3125rem;
  font-size: max(10px, 0.9375rem);
  line-height: 1.6666666667;
  text-align: left;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-footer__access {
    margin-top: 0.375rem;
    font-size: max(10px, 0.8125rem);
    text-align: center;
    line-height: 1.6153846154;
  }
}

.p-footer__bottom {
  padding-top: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #DBDADA;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom {
    display: block;
  }
}

.p-footer__subList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-footer__subList {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.p-footer__subItem {
  position: relative;
}

.p-footer__subItem:nth-child(n+2) {
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__subItem:nth-child(n+2) {
    margin-left: 1.125rem;
    padding-left: 0;
  }
}

.p-footer__subItem:nth-child(n+2)::before {
  content: "";
  width: 1px;
  height: 0.875rem;
  background: #DBDADA;
  position: absolute;
  top: 50%;
  left: 0.625rem;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .p-footer__subItem:nth-child(n+2)::before {
    display: none;
  }
}

.p-footer__subIink {
  padding-left: 0.9375rem;
  font-size: 12px;
  color: #9D9D9D;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-footer__subIink {
    padding-left: 0;
    font-size: max(10px, 0.8125rem);
  }
}

.p-footer__subIink:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-footer__subIink:hover {
    opacity: 1;
  }
}

.p-footer__subIink::before {
  content: "";
  width: 0.4375rem;
  height: 1px;
  background: #526cab;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .p-footer__subIink::before {
    display: none;
  }
}

.p-footer__copy {
  margin-top: 0.125rem;
  font-size: 11px;
  text-align: left;
  color: #9D9D9D;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    margin-top: 0.8125rem;
    font-size: 11px;
    text-align: center;
  }
}

.p-header {
  width: 100%;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.p-header__inner {
  height: 5rem;
  padding-right: 1.875rem;
  padding-left: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    height: 3.75rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    background: #fff;
  }
}

.p-header__logo {
  width: 15rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 11.25rem;
    position: relative;
    z-index: 50;
  }
}

.p-header__logo--link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__logo--link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-header__logo--link:hover {
    opacity: 1;
  }
}

.p-header__logo--img img {
  width: 100%;
  height: auto;
}

.p-header__logo--text {
  display: block;
  font-size: 0.875rem;
  color: #526cab;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-header__logo--text {
    font-size: 0.75rem;
  }
}

.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: block;
    position: relative;
    z-index: 50;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger .line {
    width: 1.5rem;
    height: 2px;
    display: block;
    background-color: #333;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger .line:nth-child(2),
  .p-header__hamburger .line:nth-child(3) {
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger.active .line:nth-child(1) {
    -webkit-transform: translateY(0.625rem) rotate(45deg);
            transform: translateY(0.625rem) rotate(45deg);
  }
}

.p-header__hamburger.active .line:nth-child(2) {
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .p-header__hamburger.active .line:nth-child(3) {
    -webkit-transform: translateY(-0.625rem) rotate(-45deg);
            transform: translateY(-0.625rem) rotate(-45deg);
  }
}

.p-header__nav {
  padding: 0.625rem 0.625rem 0.625rem 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    width: 100%;
    height: 100svh;
    padding: 0;
    padding-top: 3.75rem;
    padding-bottom: 6.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    background: #fff;
    position: fixed;
    top: 0;
    right: -120%;
    z-index: 10;
    -webkit-transition: right 0.5s;
    transition: right 0.5s;
    overflow-y: scroll;
  }
}

@media screen and (max-width: 767px) {
  .p-header__nav.active {
    right: 0;
  }
}

.p-header__nav::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 43px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, .8);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-header__nav::after {
    display: none;
  }
}

.p-header__navList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-header__navList {
    width: 100%;
    margin-top: 1.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.p-header__navItem {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header__navItem {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.p-header__navLink {
  display: block;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header__navLink {
    padding: 1.125rem 1rem;
    font-size: 0.875rem;
    border-bottom: 1px solid #526cab;
  }
}

.p-header__navLink::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  margin: auto;
  background-color: #333;
  position: absolute;
  bottom: -0.1875rem;
  left: 0;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767px) {
  .p-header__navLink::after {
    display: none;
  }
}

.p-header__navLink:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.p-header__navText {
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-header__navText {
    display: block;
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    border-bottom: 1px solid #fff;
  }
}

@media screen and (max-width: 767px) {
  .p-header__navItem:first-child .p-header__navText {
    border-top: 1px solid #fff;
  }
}

.p-header__navText.js-hover {
  padding-right: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .p-header__navText.js-hover {
    padding-right: 1rem;
  }
}

.p-header__navText.js-hover::after {
  content: "";
  width: 0.375rem;
  height: 0.75rem;
  background: #333;
  -webkit-clip-path: polygon(20% 0, 0 14%, 58% 50%, 0 86%, 20% 100%, 100% 50%);
          clip-path: polygon(20% 0, 0 14%, 58% 50%, 0 86%, 20% 100%, 100% 50%);
  position: absolute;
  top: 40%;
  right: 0;
  transform: rotateZ(90deg);
  -webkit-transform: rotateZ(90deg);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-header__navText.js-hover::after {
    background: #fff;
    right: 1.25rem;
  }
}

.p-header__contact {
  margin-left: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .p-header__contact {
    width: 100%;
    margin-top: 2.5rem;
    margin-left: 0;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.p-header__contact a {
  width: 9.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0.625rem;
  padding-bottom: 0.75rem;
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  background: #526cab;
  border-radius: 24px;
  border: 1px solid #526cab;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-header__contact a {
    width: 18.75rem;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 0.9375rem;
  }
}

.p-header__contact a:hover {
  color: #526cab;
}
@media screen and (max-width: 767px) {
  .p-header__contact a:hover {
    color: #fff;
  }
}

.p-header__contact a::after {
  content: "";
  width: 0;
  height: 100%;
  background: #fff;
  border-radius: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-header__contact a::after {
    display: none;
  }
}

.p-header__contact a:hover::after {
  width: 100%;
  border: 1px solid #526cab;
}
@media screen and (max-width: 767px) {
  .p-header__contact a:hover::after {
    width: 0;
    background: #526cab;
  }
}

.p-header__dropdown {
  display: none;
  width: 13.75rem;
  background: #fff;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, .1);
          box-shadow: 0 8px 16px rgba(0, 0, 0, .1);
  position: absolute;
  top: 1.5625rem;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .p-header__dropdown {
    width: 100%;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    position: static;
    top: auto;
  }
}

@media screen and (max-width: 767px) {
  .p-header__dropdownItem:nth-child(n+2) {
    border-top: 1px solid #526cab;
  }
}

.p-header__dropdownItem a {
  display: block;
  padding: 0.625rem 0.9375rem;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-header__dropdownItem a {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #526cab;
    background: #fff;
  }
}

.p-header__dropdownItem a:hover {
  color: #fff;
  background: #526cab;
}
@media screen and (max-width: 767px) {
  .p-header__dropdownItem a:hover {
    color: #333;
    background: #fff;
  }
}

.p-list01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-list01 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 0.625rem;
  }
}

.p-list01__top {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-list01__top {
    width: 100%;
  }
}

.p-list01__date {
  margin-right: 1.3125rem;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-list01__date {
    font-size: 0.875rem;
  }
}

.p-list01__cate {
  margin-right: 3.8125rem;
}

.p-list01__bottom {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .p-list01__bottom {
    width: 100%;
  }
}

.p-list01__title {
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-list01__title {
    width: 100%;
    margin-top: 0;
    font-size: 1rem;
  }
}

.p-list01__text {
  margin-top: 0.625rem;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-list01__text {
    font-size: 0.875rem;
  }
}

.p-list02 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: grid;
  grid-template-columns: 22.5490196078% 76.4705882353%;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  border-bottom: 1px solid #DBDADA;
}
@media screen and (max-width: 767px) {
  .p-list02 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 0.25rem;
  }
}

.p-list02:first-child {
  border-top: 1px solid #DBDADA;
}

.p-list02__title {
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-list02__title {
    font-size: max(10px, 0.9375rem);
  }
}

.p-list02__body {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-list02__body {
    row-gap: 1.25rem;
  }
}

.p-list02__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-list02__text {
    font-size: max(10px, 0.9375rem);
  }
}

.p-list02__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-list02__list {
    row-gap: 0.3125rem;
  }
}

.p-list02__item {
  padding-left: 0.8125rem;
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-list02__item {
    font-size: max(10px, 0.9375rem);
    line-height: 1.6666666667;
  }
}

.p-list02__item::before {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  background: #526cab;
  border-radius: 50%;
  position: absolute;
  top: 0.75rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-list02__item::before {
    top: 0.6875rem;
  }
}

.p-list02__map iframe {
  width: 100%;
  height: 21.875rem;
}
@media screen and (max-width: 767px) {
  .p-list02__map iframe {
    height: 15rem;
  }
}

.p-message {
  padding-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-message {
    padding-top: 3.75rem;
  }
}

.p-message__inner {
  max-width: 56.25rem;
  width: 62.5%;
}
@media screen and (max-width: 767px) {
  .p-message__inner {
    width: 100%;
  }
}

.p-message__title {
  text-align: center;
}

.p-message__wrap {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-message__wrap {
    margin-top: 2.5rem;
  }
}

.p-message__read {
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-message__read {
    font-size: 1.25rem;
    text-align: left;
  }
}

.p-message__text {
  margin-top: 2.5rem;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-message__text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.p-mv__inner {
  height: 100vh;
  padding-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    padding-bottom: 4.375rem;
    overflow: visible;
  }
}

.p-mv__wrap {
  height: 100%;
  position: relative;
}
.p-mv__swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-mv__swiper {
    padding-bottom: 0;
  }
}

.p-mv__slide {
  height: 100%;
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
  -webkit-transition: opacity 0s 0s, -webkit-clip-path 0s 0s !important;
  transition: opacity 0s 0s, -webkit-clip-path 0s 0s !important;
  transition: opacity 0s 0s, clip-path 0s 0s !important;
  transition: opacity 0s 0s, clip-path 0s 0s, -webkit-clip-path 0s 0s !important;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  opacity: 0 !important;
}

.p-mv__slide.screen .p-mv__img::before {
  background: #F6F6F7;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 10;
}

.p-mv .swiper-slide-active {
  z-index: 2;
  -webkit-transition: opacity 0.4s 0s, -webkit-clip-path 1.2s 0s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
  transition: opacity 0.4s 0s, -webkit-clip-path 1.2s 0s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
  transition: opacity 0.4s 0s, clip-path 1.2s 0s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
  transition: opacity 0.4s 0s, clip-path 1.2s 0s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-clip-path 1.2s 0s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  opacity: 1 !important;
}
.p-mv .swiper-slide-prev {
  z-index: 1;
  -webkit-transition: opacity 0.6s 0s, -webkit-clip-path 0s 0s !important;
  transition: opacity 0.6s 0s, -webkit-clip-path 0s 0s !important;
  transition: opacity 0.6s 0s, clip-path 0s 0s !important;
  transition: opacity 0.6s 0s, clip-path 0s 0s, -webkit-clip-path 0s 0s !important;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  opacity: 1 !important;
}
.p-mv .swiper-wrapper {
  min-height: 37.5rem;
  height: 100%;
  width: 81.25%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-mv .swiper-wrapper {
    width: 100%;
    margin-left: 0;
  }
}
.p-mv__text, .p-mv__read, .p-mv__btn {
  -webkit-transition: translate 0s 0s;
  transition: translate 0s 0s;
  translate: 5vw 0;
}

.p-mv__slide {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mv__slide {
    height: auto;
    height: 100%;
  }
}

.p-mv__swiper .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-mv__swiper .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: 0.625rem;
    left: -4px;
  }
}

.p-mv__swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 20px;
  height: 2px;
  background: #DBDADA;
  background: #fff;
  border-radius: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-mv__swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    bottom: 6px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}

.p-mv__swiper .swiper-pagination-bullet:hover {
  background: -webkit-gradient(linear, left top, right top, from(#599BCE), to(#424A92));
  background: linear-gradient(90deg, #599BCE 0%, #424A92 100%);
}

.p-mv__swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  background: -webkit-gradient(linear, left top, right top, from(#599BCE), to(#424A92));
  background: linear-gradient(90deg, #599BCE 0%, #424A92 100%);
}
@media screen and (max-width: 767px) {
  .p-mv__swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    background: #fff;
  }
}

.p-mv__img {
  height: 100%;
}

.p-mv__img picture {
  height: 100%;
}

.p-mv__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 335/470;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mv__container {
  width: 69.4444444444%;
  height: 100%;
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-mv__container {
    width: 100%;
    bottom: auto;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
  }
}

@media screen and (max-width: 767px) {
  .p-mv__container::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(51, 51, 51, .4);
    position: absolute;
    top: 0;
    left: 0;
  }
}

.p-mv__body {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  z-index: 2;
  transition: opacity 0s 0s, clip-path 0s 0s, -webkit-clip-path 0s 0s;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__body {
    width: 90%;
    height: auto;
    padding-right: 0;
    padding-left: 0;
    bottom: 2.5rem;
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
  }
}

.p-mv__body.started {
  -webkit-transition: opacity 0.4s 0s, -webkit-clip-path 0.8s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: opacity 0.4s 0s, -webkit-clip-path 0.8s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: opacity 0.4s 0s, clip-path 0.8s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: opacity 0.4s 0s, clip-path 0.8s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-clip-path 0.8s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  opacity: 1;
}

.p-mv__body.started .p-mv__text,
.p-mv__body.started .p-mv__read {
  -webkit-transition: translate 1.2s 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: translate 1.2s 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  translate: 0 0;
}

.p-mv__text {
  font-size: max(10px, 1rem);
  color: #526cab;
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    font-size: 0.8125rem;
    color: #fff;
    font-weight: 500;
  }
}

.p-mv__read {
  margin-top: 1.5rem;
  font-size: 2.625rem;
  color: #fff;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  background: -webkit-gradient(linear, left top, right top, from(#333), color-stop(26%, #333), color-stop(26%, #fff), to(#fff));
  background: linear-gradient(90deg, #333 0%, #333 26%, #fff 26%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-mv__read {
    margin-top: 0.4375rem;
    font-size: 1.1875rem;
    line-height: 1.6842105263;
    -webkit-text-fill-color: white;
    -webkit-background-clip: none;
    -webkit-text-fill-color: none;
  }
}

.p-requirement {
  padding-top: 4.5rem;
  padding-bottom: 11.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-requirement {
    padding-top: 3.75rem;
    padding-bottom: 7.5rem;
  }
}

.p-requirement__inner {
  max-width: 66.875rem;
  width: 74.3055555556%;
}
@media screen and (max-width: 767px) {
  .p-requirement__inner {
    width: 100%;
  }
}

.p-requirement__title {
  text-align: center;
}

.p-requirement__wrap {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-requirement__wrap {
    margin-top: 3.375rem;
  }
}

.p-requirement__list {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-requirement__list {
    margin-top: 3rem;
    row-gap: 1.5rem;
  }
}

.p-requirement__item {
  padding-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 2px solid rgba(51, 51, 51, .1);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-requirement__item {
    padding-bottom: 1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    flex-direction: column;
    border-bottom: 1px solid rgba(51, 51, 51, .1);
    row-gap: 0.25rem;
  }
}

.p-requirement__item::after {
  content: "";
  width: 12.5rem;
  height: 2px;
  background: #526cab;
  position: absolute;
  bottom: -2px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-requirement__item::after {
    display: none;
  }
}

.p-requirement__item-head {
  position: relative;
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-requirement__item-head {
    width: auto;
  }
}

.p-requirement__item-term {
  font-size: 1.125rem;
  line-height: 1.875;
  letter-spacing: 0.06em;
  color: #333;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-requirement__item-term {
    font-size: 1rem;
    letter-spacing: 0.03em;
    background: #526cab;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.p-requirement__item-body {
  width: calc(100% - 12.5rem);
  padding-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-requirement__item-body {
    width: auto;
    padding-left: 0;
  }
}

.p-requirement__item-desc {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-requirement__item-desc {
    font-size: 0.875rem;
    letter-spacing: 0.03em;
  }
}

.p-requirement__item-desc span {
  display: inline-block;
  font-weight: 700;
}

.p-requirement__btn {
  max-width: 24rem;
  margin-inline: auto;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-requirement__btn {
    width: 90%;
    margin-top: 4rem;
  }
}

.p-sub-mv {
  background: transparent url(../images/common/sub-mv_pc.png) no-repeat center bottom/cover;
}
@media screen and (max-width: 767px) {
  .p-sub-mv {
    background: transparent url(../images/common/sub-mv_sp.png) no-repeat center center/cover;
  }
}

.p-sub-mv__inner {
  padding: 13.75rem 0 11.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__inner {
    padding: 10rem 0 6.25rem;
  }
}

.p-sub-mv__title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__title {
    row-gap: 0.75rem;
  }
}

.p-sub-mv__title--main {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Shippori Mincho", serif;
  font-weight: 900;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__title--main {
    font-size: 2rem;
  }
}

.p-sub-mv__title--sub {
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.01em;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__title--sub {
    font-size: 1rem;
  }
}

.p-top-news {
  padding-top: 6.25rem;
  padding-bottom: 7.5rem;
  background: #F6F6F7;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.p-top-news__inner {
  max-width: 65.625rem;
}

.p-top-news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.625rem;
}

.p-top-news__title {
  text-align: left;
}

.p-top-news__title .c-title01__main::after {
  display: none;
}

.p-top-news__btn {
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__btn {
    margin-top: 0.375rem;
  }
}

.p-top-news__btn--link {
  display: inline-block;
  padding-right: 1.125rem;
  font-size: 1rem;
  color: #526cab;
  line-height: 1.6;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-news__btn--link {
    font-size: 0.875rem;
  }
}

.p-top-news__btn--link::after {
  content: "";
  width: 0.5rem;
  height: 0.75rem;
  background: #526cab;
  -webkit-clip-path: polygon(20% 0, 0 14%, 58% 50%, 0 86%, 20% 100%, 100% 50%);
          clip-path: polygon(20% 0, 0 14%, 58% 50%, 0 86%, 20% 100%, 100% 50%);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  z-index: 1;
}

.p-top-news__list {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__list {
    margin-top: 0.5rem;
  }
}

.p-top-news__item {
  padding: 1.875rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}
@media screen and (max-width: 767px) {
  .p-top-news__item {
    padding: 1.5rem 0;
  }
}

.p-top-service {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-service {
    padding-top: 5rem;
    padding-bottom: 3.75rem;
  }
}

.p-top-service__title {
  text-align: center;
}

.p-top-service__wrap {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__wrap {
    margin-top: 2rem;
  }
}

.p-top-service__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 5rem;
  counter-reset: number 0; /* number のカウンタを 0 にセット */
}
@media screen and (max-width: 767px) {
  .p-top-service__list {
    row-gap: 3.75rem;
  }
}

.p-top-service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-service__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-top-service__item::before {
  counter-increment: number 1; /* number カウンタの増加数をセット */
  content: "0" counter(number); /* 表示形式を指定 */
  font-size: 15rem;
  color: #F5F5F5;
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 900;
  position: absolute;
  top: -3.125rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-service__item::before {
    display: none;
  }
}

.p-top-service__img {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .p-top-service__img {
    width: auto;
  }
}

.p-top-service__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 864/400;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-service__body {
  width: 36.5277777778%;
  padding-right: 2.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-service__body {
    width: 90%;
    margin-inline: auto;
    padding-right: 0;
    padding-top: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-service__body::before {
    counter-increment: number 1; /* number カウンタの増加数をセット */
    content: "0" counter(number); /* 表示形式を指定 */
    font-size: 8.75rem;
    color: #F5F5F5;
    line-height: 1;
    letter-spacing: -0.01em;
    font-weight: 900;
    position: absolute;
    top: -0.75rem;
    right: 0;
    z-index: -1;
  }
}

.p-top-service__subtitle {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top-service__subtitle {
    font-size: 1.5rem;
  }
}

.p-top-service__text {
  width: 25rem;
  margin-right: auto;
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top-service__text {
    width: auto;
    margin-right: 0;
    margin-top: 1.5rem;
  }
}

.u-hover {
  height: auto;
  padding-top: 0.0625rem;
  padding-bottom: 0.0625rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  position: relative;
}
.u-hover__text {
  position: relative;
  display: inline-block;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.u-hover__text::after {
  content: attr(data-hover);
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(55px);
          transform: translateY(55px);
}
@media screen and (max-width: 767px) {
  .u-hover__text::after {
    display: none;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    pointer-events: none;
  }
}

a:hover .u-hover__text:first-child,
span:hover .u-hover__text:first-child {
  -webkit-transform: translateY(-55px);
          transform: translateY(-55px);
}
@media screen and (max-width: 767px) {
  a:hover .u-hover__text:first-child,
  span:hover .u-hover__text:first-child {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    pointer-events: none;
  }
}

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

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */
