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

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #060E31;
  position: relative;
  min-height: 100vh;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
}

@-webkit-keyframes scalePulse {
  0% {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
  }
  50% {
    -webkit-transform: translateY(-50%) scale(2);
            transform: translateY(-50%) scale(2);
  }
  100% {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
  }
}

@keyframes scalePulse {
  0% {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
  }
  50% {
    -webkit-transform: translateY(-50%) scale(2);
            transform: translateY(-50%) scale(2);
  }
  100% {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
  }
}
@-webkit-keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 0.6;
  }
  100% {
    width: 1.875rem;
    height: 1.875rem;
    opacity: 0;
  }
}
@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 0.6;
  }
  100% {
    width: 1.875rem;
    height: 1.875rem;
    opacity: 0;
  }
}
@-webkit-keyframes moveArrow {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
  }
  30% {
    opacity: 0;
    -webkit-transform: translateX(15px) translateY(-15px);
            transform: translateX(15px) translateY(-15px);
  }
  30.1% {
    opacity: 0;
    -webkit-transform: translateX(-15px) translateY(15px);
            transform: translateX(-15px) translateY(15px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
  }
}
@keyframes moveArrow {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
  }
  30% {
    opacity: 0;
    -webkit-transform: translateX(15px) translateY(-15px);
            transform: translateX(15px) translateY(-15px);
  }
  30.1% {
    opacity: 0;
    -webkit-transform: translateX(-15px) translateY(15px);
            transform: translateX(-15px) translateY(15px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
  }
}
@-webkit-keyframes moveArrow-outward {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate(-50%, -20px);
            transform: translate(-50%, -20px);
  }
  30.1% {
    opacity: 0;
    -webkit-transform: translate(-50%, 20px);
            transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@keyframes moveArrow-outward {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate(-50%, -20px);
            transform: translate(-50%, -20px);
  }
  30.1% {
    opacity: 0;
    -webkit-transform: translate(-50%, 20px);
            transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.js-fadeHead {
  opacity: 0;
  -webkit-transition: all 1.3s ease-in-out;
  transition: all 1.3s ease-in-out;
}

.js-fadein,
.js-fadein-delay {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease; /* スムーズに表示 */
}

.p-vanta-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

.p-vanta-container::before {
  content: "";
  width: 100vw;
  height: 100%;
  aspect-ratio: 1920/1080;
  background: transparent url(../images/common/bg_texture.png) no-repeat center center/120rem 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.08;
}
@media (min-width: 1921px) {
  .p-vanta-container::before {
    background: transparent url(../images/common/bg_texture.png) no-repeat center center/100%;
  }
}

/*****************************
* 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-bg-white {
  background: #fff;
}

.l-inner {
  width: 100%;
  padding-right: 2.1875rem;
  padding-left: 2.1875rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    width: 84.0277777778%;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.l-recruit {
  padding-top: 4.5rem;
  padding-bottom: 6.875rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 4.875rem;
}
@media screen and (min-width: 768px) {
  .l-recruit {
    padding-top: 8.375rem;
    padding-bottom: 15rem;
    row-gap: 8.625rem;
  }
}

.c-btn01 {
  display: block;
  width: 100%;
  padding: 0.75rem 1.875rem 0.75rem 1.5625rem;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 500;
  border-radius: 1.4375rem;
  background: #060E31;
  border: 1px solid #060E31;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-btn01 {
    display: inline-block;
    width: auto;
    min-width: 13.125rem;
    padding: 0.84375rem 3.5625rem 0.84375rem 1.5625rem;
    font-size: 0.9375rem;
    border-radius: 1.875rem;
  }
}

.c-btn01--left {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .c-btn01--sm {
    width: 11.25rem;
    min-width: auto;
    padding: 0.84375rem 1.125rem 0.84375rem 1.5625rem;
  }
}

.c-btn01__dot {
  width: 0.3125rem;
  height: 0.3125rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-btn01__dot {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}

.c-btn01__dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .7);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .c-btn01:hover .c-btn01__dot::before {
    -webkit-animation: ripple 1s ease-out;
            animation: ripple 1s ease-out;
  }
}

.c-btn02 {
  display: block;
  width: 100%;
  padding: 0.8125rem 1.875rem 0.8125rem 1.5625rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 500;
  border-radius: 1.4375rem;
  background: #fff;
  border: 1px solid #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-btn02 {
    display: inline-block;
    min-width: 13.125rem;
    padding: 0.9375rem 3.5625rem 0.9375rem 1.875rem;
    font-size: 0.875rem;
    border-radius: 1.875rem;
  }
}

.c-btn02__dot {
  width: 0.3125rem;
  height: 0.3125rem;
  background: #060E31;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-btn02__dot {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}

.c-btn02__dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(6, 14, 49, .7);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .c-btn02:hover .c-btn02__dot::before {
    -webkit-animation: ripple 1s ease-out;
            animation: ripple 1s ease-out;
  }
}

.c-btn03 {
  display: inline-block;
  min-width: 9.625rem;
  padding: 0.53125rem 2.3125rem 0.53125rem 1.25rem;
  font-size: 0.9375rem;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  border-radius: 1.4375rem;
  border: 1px solid #060E31;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-btn03 {
    min-width: 11.25rem;
    padding: 0.8125rem 2.5rem 0.8125rem 1.875rem;
    font-size: max(10px, 1rem);
    border-radius: 1.875rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1350px) {
  .c-btn03 {
    padding: 0.8125rem 1.875rem 0.8125rem 1rem;
    font-size: max(10px, 0.875rem);
  }
}

.c-btn03--blue {
  background: #2B80CB;
  border-color: #2B80CB;
}

.c-btn03--orange {
  background: #F58E61;
  border-color: #F58E61;
}

.c-btn03--green {
  background: #66C593;
  border-color: #66C593;
}

.c-btn03--yellow {
  background: #EFDC62;
  border-color: #EFDC62;
}

.c-btn03--pink {
  background: #F1A0A7;
  border-color: #F1A0A7;
}

.c-btn03--light-green {
  background: #98CF64;
  border-color: #98CF64;
}

.c-btn03::after {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background: transparent url(../images/common/arrow_right.svg) no-repeat center center/100%;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-image: url(../images/common/arrow_right.svg);
          mask-image: url(../images/common/arrow_right.svg);
  position: absolute;
  top: 50%;
  right: 1.1875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-btn03::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1350px) {
  .c-btn03::after {
    right: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .c-btn03:hover::after,
  a:hover .c-btn03::after {
    -webkit-animation: moveArrow 0.3s forwards;
            animation: moveArrow 0.3s forwards;
  }
}

.c-category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.3125rem 0.9375rem 0.3125rem;
  font-size: 0.6875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  border: 1px solid #060E31;
  border-radius: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-category {
    padding: 0.28125rem 0.875rem 0.34375rem;
    font-size: 0.75rem;
  }
}

.c-pdf-list {
  display: inline-block;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.c-pdf-list__link {
  display: inline;
  padding-bottom: 0.125rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#060E31), to(#060E31)) 100% 100%/0 1px no-repeat;
  background: linear-gradient(#060E31, #060E31) 100% 100%/0 1px no-repeat;
  background-size: 100% 1px;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
}
@media screen and (min-width: 768px) {
  .c-pdf-list__link {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .c-pdf-list__link:hover {
    background-size: 0 1px;
  }
}

.c-pdf-list__icon {
  display: inline-block;
  width: 1.6875rem;
  position: relative;
  top: 0.25rem;
  left: 0.125rem;
}

.c-pdf-list__icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.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;
  gap: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .c-title01 {
    gap: 1.25rem;
  }
}

.c-title01__main {
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-title01__main {
    font-size: 1rem;
  }
}

.c-title01__sub {
  font-size: 2.375rem;
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  background: -webkit-gradient(linear, left top, left bottom, from(#2B80CB), to(#71C789));
  background: linear-gradient(180deg, #2B80CB 0%, #71C789 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (min-width: 768px) {
  .c-title01__sub {
    font-size: 4.0625rem;
  }
}

.c-title02 {
  padding-bottom: 0.9375rem;
  font-size: 1.375rem;
  line-height: 1.3636363636;
  letter-spacing: 0.05em;
  font-weight: 700;
  border-bottom: 2px solid #D3D7E6;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title02 {
    padding-bottom: 1.6875rem;
    font-size: 1.75rem;
    line-height: 1.4285714286;
  }
}

.c-title02::after {
  content: "";
  width: 1.875rem;
  height: 2px;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#2C81CA), to(#6DC38C));
  background: linear-gradient(90deg, #2C81CA 0%, #6DC38C 100%);
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-title02::after {
    width: 3rem;
  }
}

.c-title03 {
  padding-left: 1rem;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title03 {
    padding-left: 1rem;
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}

.c-title03::before {
  content: "";
  width: 0.25rem;
  height: 68.9655172414%;
  background: -webkit-gradient(linear, left top, left bottom, from(#2B80CB), to(#71C789));
  background: linear-gradient(180deg, #2B80CB 0%, #71C789 100%);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

.p-article p {
  margin-bottom: 1.75rem;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-article p {
    margin-bottom: 2.125rem;
    font-size: 1rem;
    line-height: 2;
  }
}

.p-article p a {
  text-decoration: underline;
}

.p-article #toc_container {
  margin-bottom: 6.0625rem;
  padding: 2.75rem 2.625rem 5rem;
  background: #e4f1ea;
}
@media screen and (min-width: 768px) {
  .p-article #toc_container {
    margin-bottom: 5rem;
    padding: 1.5625rem 1.25rem 2.5rem;
  }
}

.p-article #toc_container .toc_title {
  margin-bottom: 0;
  font-size: 1.5625rem;
  text-align: center;
  line-height: 1;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-article #toc_container .toc_title {
    font-size: 1.25rem;
  }
}

.p-article #toc_container .toc_list {
  counter-reset: number 0;
  margin-top: 2.3125rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.5rem;
}

.p-article #toc_container .toc_list li {
  font-size: 1rem;
  color: #424242;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-article #toc_container .toc_list li {
    font-size: 0.9375rem;
  }
}

.p-article #toc_container .toc_list li:before {
  counter-increment: number 1;
  content: counter(number) ".";
  position: absolute;
  top: 0;
  left: 0;
}

.p-article #toc_container .toc_list li a {
  padding-left: 1.875rem;
  font-size: 1rem;
  color: #424242;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-article #toc_container .toc_list li a {
    padding-left: 1.25rem;
    font-size: 0.9375rem;
  }
}

.p-article h2 {
  margin-top: 3.625rem;
  margin-bottom: 1.125rem;
  padding-left: 1.3125rem;
  font-size: 1.3125rem;
  line-height: 1.5454545455;
  letter-spacing: 0.05em;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-article h2 {
    margin-top: 6rem;
    margin-bottom: 1.6875rem;
    padding-left: 1.5625rem;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-article h2::before {
  content: "";
  width: 0.3125rem;
  height: 90.9090909091%;
  background: #11193A;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .p-article h2::before {
    height: 100%;
  }
}

.p-article h3 {
  margin-top: 2.75rem;
  margin-bottom: 0.9375rem;
  padding-left: 1.6875rem;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.05em;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-article h3 {
    margin-top: 4rem;
    margin-bottom: 1.25rem;
    padding-left: 2.1875rem;
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.p-article h3::before {
  content: "";
  width: 0.9375rem;
  height: 0.125rem;
  background: #11193A;
  position: absolute;
  top: 1rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-article h3::before {
    width: 1.25rem;
    top: 1rem;
  }
}

.p-article h4 {
  margin-top: 2.5625rem;
  margin-bottom: 0.8125rem;
  font-size: 1.0625rem;
  line-height: 1.7058823529;
  letter-spacing: 0.05em;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-article h4 {
    margin-top: 3.4375rem;
    margin-bottom: 0.875rem;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}

.p-article .wp-block-flexible-table-block-table {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
  overflow-x: auto;
}
@media screen and (min-width: 768px) {
  .p-article .wp-block-flexible-table-block-table {
    margin-top: 2.125rem;
    margin-bottom: 2.125rem;
  }
}

.p-article .wp-block-flexible-table-block-table table {
  min-width: 22.5rem;
}
@media screen and (min-width: 768px) {
  .p-article .wp-block-flexible-table-block-table table {
    min-width: 100%;
  }
}

.p-article .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.p-article .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
  width: 12.5rem;
  min-height: 3.5rem;
  padding: 0.78125rem 0.75rem;
  font-size: 0.9375rem;
  text-align: center;
  line-height: 1.4666666667;
  letter-spacing: 0.05em;
  font-weight: 400;
  border-color: #C3C7D4;
}
@media screen and (min-width: 768px) {
  .p-article .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
  .p-article .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
    width: auto;
    padding: 1.09375rem 1.25rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-article .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
  background-color: #060E31;
  color: #fff;
}

.p-article .wp-block-image {
  margin-bottom: 3.625rem;
}
@media screen and (min-width: 768px) {
  .p-article .wp-block-image {
    margin-inline: auto;
    margin-bottom: 6.125rem;
  }
}

.p-article .wp-block-image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid #EEEEEE;
}

.p-article .wp-element-caption {
  margin-top: 0.375rem;
  font-size: 0.6875rem;
  line-height: 1.8181818182;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-article .wp-element-caption {
    margin-top: 0.8125rem;
    font-size: 0.8125rem;
    line-height: 1.7692307692;
  }
}

.p-article .wp-block-list {
  margin-top: 1.75rem;
  margin-bottom: 1.375rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 0.6875rem;
  counter-reset: number 0;
}
@media screen and (min-width: 768px) {
  .p-article .wp-block-list {
    margin-top: 2.125rem;
    margin-bottom: 2.25rem;
    row-gap: 0.6875rem;
  }
}

.p-article ol.wp-block-list {
  row-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-article ol.wp-block-list {
    row-gap: 0.6875rem;
  }
}

.p-article .wp-block-list li {
  padding-left: 0.9375rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-article .wp-block-list li {
    padding-left: 0.9375rem;
    font-size: 1rem;
    line-height: 1.8125;
  }
}

.p-article ul.wp-block-list li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  background: #060E31;
  border-radius: 50%;
  position: absolute;
  top: 0.8125rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-article ul.wp-block-list li::before {
    width: 0.375rem;
    height: 0.375rem;
    top: 0.625rem;
  }
}

.p-article ol.wp-block-list li {
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-article ol.wp-block-list li {
    padding-left: 1.75rem;
  }
}

.p-article ol.wp-block-list li::before {
  counter-increment: number 1;
  content: counter(number) ".";
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  position: absolute;
  top: 0.3125rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-article ol.wp-block-list li::before {
    font-size: 1.125rem;
    line-height: 1.2777777778;
    top: 0.1875rem;
  }
}

.p-article .wp-block-table {
  margin-bottom: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-article .wp-block-table {
    margin-bottom: 2.5rem;
  }
}

.p-article .wp-block-table table th,
.p-article .wp-block-table table td {
  padding: 0.4375rem 0.75rem;
  font-size: 0.9375rem;
  color: #575757;
  line-height: 1.4666666667;
  letter-spacing: 0.08em;
  font-weight: 500;
  border-color: #F3F3F3;
}
@media screen and (min-width: 768px) {
  .p-article .wp-block-table table th,
  .p-article .wp-block-table table td {
    min-height: 3.5rem;
    padding: 0.84375rem 0.625rem;
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
  }
}

.p-article .wp-block-quote {
  margin-bottom: 5rem;
  padding: 1.1875rem 2.25rem;
  background: #eeeeee;
}
@media screen and (min-width: 768px) {
  .p-article .wp-block-quote {
    margin-bottom: 3.125rem;
  }
}

.p-article .wp-block-quote p {
  margin-bottom: 2.625rem;
  font-size: 0.875rem;
  line-height: 2.5;
}
@media screen and (min-width: 768px) {
  .p-article .wp-block-quote p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 2;
  }
}

.p-article .wp-block-preformatted {
  padding: 1.1875rem 2.25rem;
  font-size: 0.875rem;
  color: #424242;
  line-height: 2.5;
  background: #eeeeee;
}
@media screen and (min-width: 768px) {
  .p-article .wp-block-preformatted {
    padding: 0.9375rem 1.5625rem;
    font-size: 0.8125rem;
    line-height: 2;
  }
}

.p-article .wp-block-file {
  margin-bottom: 1.75rem;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-article .wp-block-file {
    margin-bottom: 2.125rem;
    font-size: 1rem;
    line-height: 2;
  }
}

.p-article .wp-block-file a {
  text-decoration: underline;
}

.p-breadcrumb {
  padding: 1.25rem 0;
}

.p-breadcrumb__inner {
  padding-inline: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__inner {
    width: 93.0555555556%;
    margin-inline: auto;
    padding-inline: 0;
  }
}

.p-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__list {
    gap: 1.3125rem;
  }
}

.p-breadcrumb__item {
  position: relative;
}

.p-breadcrumb__item:nth-child(n+2):before {
  content: "/";
  display: inline-block;
  font-size: 0.625rem;
  color: #C3C7D4;
  line-height: 1.5;
  letter-spacing: 0.05em;
  position: absolute;
  top: 0;
  left: -0.5rem;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__item:nth-child(n+2):before {
    font-size: 0.75rem;
    left: -0.8125rem;
  }
}

.p-breadcrumb__link {
  display: block;
  font-size: 0.625rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__link {
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  a.p-breadcrumb__link:hover {
    opacity: 0.5;
  }
}

span.p-breadcrumb__link {
  color: #C3C7D4;
}

.p-card {
  background: rgba(255, 255, 255, .7);
  border-radius: 0.625rem;
  padding: 1.6875rem 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-card {
    padding: 2rem 2.25rem 2.3125rem;
  }
}

.p-card__list {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-card__list {
    margin-top: 1rem;
    gap: 0.3125rem;
  }
}

.p-card__item {
  padding-left: 0.6875rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-card__item {
    padding-left: 0.875rem;
    font-size: 1rem;
    line-height: 1.6875;
  }
}

.p-card__item::before {
  content: "";
  width: 0.1875rem;
  height: 0.1875rem;
  background: #060E31;
  border-radius: 50%;
  position: absolute;
  top: 0.625rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-card__item::before {
    width: 0.25rem;
    height: 0.25rem;
    top: 0.625rem;
  }
}

.p-card__item span {
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-card__item span {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.p-concept {
  padding-top: 4.75rem;
}
@media screen and (min-width: 768px) {
  .p-concept {
    padding-top: 9.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-concept__inner {
    width: 74.3055555556%;
  }
}

.p-concept__wrap {
  margin-top: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .p-concept__wrap {
    margin-top: 2.25rem;
  }
}

.p-concept__read {
  font-size: 1.6875rem;
  line-height: 1.5925925926;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-concept__read {
    font-size: 2rem;
    line-height: 1.3125;
  }
}

.p-concept__text {
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-concept__text {
    font-size: 1rem;
    line-height: 2;
  }
}

.p-contact {
  padding-bottom: 6.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-bottom: 15rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__inner {
    width: 74.3055555556%;
  }
}

.p-contact__read {
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-contact__read {
    font-size: 1rem;
  }
}

.p-contact__tel {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__tel {
    margin-top: 2.125rem;
  }
}

.p-contact__tel-wrap {
  padding: 1.6875rem 0 1.4375rem;
  text-align: center;
  background: #fff;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__tel-wrap {
    padding: 2.375rem 0 2rem;
  }
}

.p-contact__tel-inner {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-contact__tel-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.3125rem;
     -moz-column-gap: 0.3125rem;
          column-gap: 0.3125rem;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-contact__tel-number {
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
  }
}

.p-contact__tel-sm {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.05em;
  position: relative;
  top: -0.125rem;
}
@media screen and (min-width: 768px) {
  .p-contact__tel-sm {
    font-size: 1rem;
    top: 0;
  }
}

.p-contact__tel-link {
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-contact__tel-link {
    font-size: 2rem;
    pointer-events: none;
  }
}

.p-contact__tel-text {
  margin-top: 0.3125rem;
  font-size: 0.75rem;
  line-height: 1.4166666667;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact__tel-text {
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    line-height: 1.4615384615;
  }
}

.p-contact__tel-text span {
  font-size: 0.8125rem;
  line-height: 1.0769230769;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-contact__tel-text span {
    font-size: 0.875rem;
  }
}

.p-contact__form {
  margin-top: 4.9375rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    margin-top: 5.75rem;
  }
}

.p-disclosure {
  padding-top: 0.25rem;
  padding-bottom: 6.875rem;
}
@media screen and (min-width: 768px) {
  .p-disclosure {
    padding-top: 0.3125rem;
    padding-bottom: 15rem;
  }
}

@media screen and (min-width: 768px) {
  .p-disclosure__inner {
    width: 74.3055555556%;
  }
}

.p-disclosure__wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-disclosure__wrap {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 6.25rem;
       -moz-column-gap: 6.25rem;
            column-gap: 6.25rem;
    row-gap: 7.125rem;
  }
}

.p-disclosure__title {
  padding-bottom: 0.9375rem;
  font-size: 1.375rem;
  line-height: 1.4545454545;
  letter-spacing: 0.05em;
  font-weight: 700;
  position: relative;
  border-bottom: 2px solid #D3D7E6;
}
@media screen and (min-width: 768px) {
  .p-disclosure__title {
    padding-bottom: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
}

.p-disclosure__title::after {
  content: "";
  width: 1.875rem;
  height: 2px;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#2C81CA), to(#6DC38C));
  background: linear-gradient(90deg, #2C81CA 0%, #6DC38C 100%);
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-disclosure__title::after {
    width: 3rem;
  }
}

.p-disclosure__list {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-disclosure__list {
    margin-top: 1.5rem;
    gap: 0.8125rem;
  }
}

.p-disclosure__item {
  position: relative;
  padding-left: 0.875rem;
}

.p-disclosure__item::before {
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  background: #060E31;
  border-radius: 50%;
  position: absolute;
  top: 0.625rem;
  left: 0;
}

.p-donation-main {
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-donation-main {
    padding-bottom: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-donation-main__inner {
    max-width: 66.875rem;
  }
}

.p-donation-main__read {
  font-size: 1.6875rem;
  line-height: 1.5925925926;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-donation-main__read {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.p-donation-main__text {
  margin-top: 1.1875rem;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-donation-main__text {
    margin-top: 2.125rem;
    font-size: 1rem;
  }
}

.p-donation-main__wrap {
  margin-top: 2.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-donation-main__wrap {
    margin-top: 2.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.5625rem;
  }
}

.p-donation-main__link {
  display: inline-block;
  padding-right: 1.3125rem;
  padding-bottom: 0.125rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#060E31), to(#060E31)) 100% 100%/0 1px no-repeat;
  background: linear-gradient(#060E31, #060E31) 100% 100%/0 1px no-repeat;
  background-size: 100% 1px;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
}
@media screen and (min-width: 768px) {
  .p-donation-main__link {
    padding-right: 1.5rem;
    padding-bottom: 0.125rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .p-donation-main__link:hover {
    background-size: 0 1px;
  }
}

.p-donation-main__link::after {
  content: "";
  width: 1rem;
  height: 1rem;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-image: url(../images/common/arrow_bottom.png);
          mask-image: url(../images/common/arrow_bottom.png);
  background: #060E31;
  position: absolute;
  top: 42%;
  right: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

.p-donation-section {
  padding-top: 2.25rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-donation-section {
    padding-top: 4.25rem;
    padding-bottom: 4.375rem;
  }
}

#Donation02 {
  padding-top: 3rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  #Donation02 {
    padding-top: 4.25rem;
    padding-bottom: 4.375rem;
  }
}

#Donation03 {
  padding-top: 2.75rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  #Donation03 {
    padding-top: 4.25rem;
    padding-bottom: 4.375rem;
  }
}

#Donation04 {
  padding-top: 2.75rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  #Donation04 {
    padding-top: 4.25rem;
    padding-bottom: 4.375rem;
  }
}

#Donation05 {
  padding-top: 3.125rem;
  padding-bottom: 7rem;
}
@media screen and (min-width: 768px) {
  #Donation05 {
    padding-top: 4.25rem;
    padding-bottom: 12.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-donation-section__inner {
    max-width: 66.875rem;
  }
}

.p-donation-section__read {
  margin-top: 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-donation-section__read {
    margin-top: 2.125rem;
    font-size: 1rem;
    line-height: 2;
  }
}
.p-donation-section__read + .p-donation-section__read {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-donation-section__read + .p-donation-section__read {
    margin-top: 0.875rem;
  }
}

@media screen and (min-width: 768px) {
  #Donation02 .p-donation-section__read {
    line-height: 1.6875;
  }
}

.p-donation-section__list {
  margin-top: 1.625rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-donation-section__list {
    margin-top: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.p-donation-section__wrap {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-donation-section__wrap {
    margin-top: 2.875rem;
    row-gap: 5rem;
  }
}

.p-donation-section__container-read {
  margin-top: 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-donation-section__container-read {
    margin-top: 1.375rem;
    font-size: 1rem;
    line-height: 2;
  }
}

.p-donation-section__container-attention {
  margin-top: 1.25rem;
  padding-left: 1.0625rem;
  font-size: 0.8125rem;
  line-height: 1.8461538462;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-donation-section__container-attention {
    margin-top: 0.875rem;
    margin-bottom: 2.375rem;
    padding-left: 1.0625rem;
    font-size: 0.8125rem;
    line-height: 1.8461538462;
  }
}

.p-donation-section__container-attention::before {
  content: "※";
  font-size: 0.8125rem;
  color: #8D9099;
  line-height: 1.8461538462;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-donation-section__container-attention::before {
    font-size: 0.8125rem;
    line-height: 1.8461538462;
  }
}

.p-donation-section__container-wrap {
  margin-top: 1.125rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-donation-section__container-wrap {
    margin-top: 1.25rem;
  }
}

.p-donation-section__container-block {
  background: rgba(255, 255, 255, .7);
  border-radius: 0.625rem;
  padding: 1.5rem 1.5625rem 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-donation-section__container-block {
    padding: 1.875rem 2.25rem 2.3125rem;
  }
}

.p-donation-section__container-subtitle {
  padding-bottom: 0.625rem;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  border-bottom: 2px solid #D3D7E6;
}
@media screen and (min-width: 768px) {
  .p-donation-section__container-subtitle {
    padding-bottom: 1rem;
    font-size: 1.1875rem;
    line-height: 1.4210526316;
  }
}

.p-donation-section__container-subread {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-donation-section__container-subread {
    margin-top: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.5882352941;
  }
}

.p-donation-section__container-list {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-donation-section__container-list {
    margin-top: 1.4375rem;
    row-gap: 1.125rem;
  }
}

.p-donation-section__container-list--05 {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-donation-section__container-list--05 {
    margin-top: 0.75rem;
  }
}

.p-donation-section__container-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.4375rem;
     -moz-column-gap: 0.4375rem;
          column-gap: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-donation-section__container-head {
    -webkit-column-gap: 0.4375rem;
       -moz-column-gap: 0.4375rem;
            column-gap: 0.4375rem;
  }
}

.p-donation-section__container-number {
  width: 1rem;
  height: 1rem;
  margin-top: 0.1875rem;
  font-size: 0.625rem;
  color: #fff;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#3389C2), to(#6CC28E));
  background: linear-gradient(180deg, #3389C2 0%, #6CC28E 100%);
  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;
}
@media screen and (min-width: 768px) {
  .p-donation-section__container-number {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.1875rem;
    font-size: max(10px, 0.6875rem);
  }
}

.p-donation-section__container-text {
  width: calc(100% - 1.5rem);
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-donation-section__container-text {
    width: calc(100% - 1.6875rem);
    font-size: 1rem;
    line-height: 1.6875;
  }
}

.p-donation-section__container-text strong {
  font-weight: 700;
}

.p-donation-section__container-link {
  display: inline-block;
  padding-bottom: 0.125rem;
  line-height: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(#060E31), to(#060E31)) 100% 100%/0 1px no-repeat;
  background: linear-gradient(#060E31, #060E31) 100% 100%/0 1px no-repeat;
  background-size: 100% 1px;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
}

@media screen and (min-width: 768px) {
  .p-donation-section__container-link:hover {
    background-size: 0 1px;
  }
}

.p-donation-section__container-body {
  margin-top: 0.625rem;
  margin-left: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-donation-section__container-body {
    margin-top: 0.9375rem;
    margin-left: 1.625rem;
  }
}

.p-donation-section__container-btn a {
  padding: 0.875rem 1.875rem 0.875rem 1.5625rem;
  border-radius: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-donation-section__container-btn a {
    padding: 0.84375rem 3.5625rem 0.84375rem 1.5625rem;
  }
}

.p-donation-section__container-sending {
  padding-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-donation-section__container-sending {
    padding-top: 0.1875rem;
  }
}

.p-donation-section__sending + .p-donation-section__sending {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-donation-section__sending + .p-donation-section__sending {
    margin-top: 1.5rem;
  }
}

.p-donation-section__sending--02 {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-donation-section__sending--02 {
    margin-top: 1.25rem;
  }
}

.p-donation-section__sending-title {
  padding-left: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-donation-section__sending-title {
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-donation-section__sending-title::before {
  content: "";
  width: 0.9375rem;
  height: 0.125rem;
  background: -webkit-gradient(linear, left top, right top, from(#2B80CB), to(#71C789));
  background: linear-gradient(90deg, #2B80CB 0%, #71C789 100%);
  position: absolute;
  top: 0.75rem;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .p-donation-section__sending-title::before {
    top: 0.75rem;
  }
}

.p-donation-section__sending-body {
  margin-top: 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-donation-section__sending-body {
    margin-top: 0.375rem;
  }
}

.p-donation-section__sending-text {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-donation-section__sending-text {
    font-size: 1rem;
    line-height: 1.6875;
  }
}

.p-donation-section__sending-list {
  margin-top: 0.625rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .p-donation-section__sending-list {
    margin-top: 0;
    margin-left: 0.4375rem;
  }
}

.p-donation-section__sending-item {
  padding-left: 0.6875rem;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-donation-section__sending-item {
    padding-left: 0.6875rem;
    font-size: 1rem;
    line-height: 1.6875;
  }
}

.p-donation-section__sending-item::before {
  content: "";
  width: 0.1875rem;
  height: 0.1875rem;
  background: #060E31;
  border-radius: 50%;
  position: absolute;
  top: 0.625rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-donation-section__sending-item::before {
    width: 0.25rem;
    height: 0.25rem;
    top: 0.625rem;
  }
}

.p-donation-section__container-tax {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-donation-section__container-tax {
    margin-top: 1.3125rem;
  }
}

.p-donation-tax__read {
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__read {
    font-size: 1rem;
    line-height: 1.6875;
  }
}

.p-donation-tax__area {
  margin-top: 1rem;
  padding: 0.875rem 1.25rem 0.875rem;
  background: #EFF0F5;
  border-radius: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__area {
    display: inline-block;
    margin-top: 1.125rem;
    padding: 1rem 2.5rem 1rem;
  }
}

.p-donation-tax__area.u-mt0 {
  margin-top: 0;
  padding: 0.875rem 0.25rem 0.875rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__area.u-mt0 {
    padding: 1rem 3.125rem 1rem 1.3125rem;
  }
}

.p-donation-tax__area-text {
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__area-text {
    font-size: 1rem;
    line-height: 2;
  }
}

.p-donation-tax__area-text--sm {
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__area-text--sm {
    font-size: 1rem;
    line-height: 2;
  }
}

.p-donation-tax__area-text-br {
  display: block;
  margin-left: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__area-text-br {
    display: inline-block;
    margin-left: 0;
  }
}

.p-donation-tax__area-text-kome {
  content: "※";
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: absolute;
  top: 0.375rem;
  left: 3.9375rem;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__area-text-kome {
    font-size: 0.625rem;
    top: 0.375rem;
    left: 4.125rem;
  }
}

.p-donation-tax__area-text-kome.kome01 {
  top: 0.375rem;
  left: 3.9375rem;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__area-text-kome.kome01 {
    top: 0.5625rem;
    left: 34%;
  }
}

.p-donation-tax__area-text-kome.kome02 {
  top: 0.3125rem;
  left: 85%;
  left: 11.75rem;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__area-text-kome.kome02 {
    top: 0.5625rem;
    left: 74%;
  }
}

.p-donation-tax__area-text-kome.kome03 {
  left: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__area-text-kome.kome03 {
    top: 0.5625rem;
    left: 98%;
  }
}

.p-donation-tax__area-text-kome.kome04 {
  top: 0.3125rem;
  left: 4.5625rem;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__area-text-kome.kome04 {
    top: 0.5625rem;
    left: 38%;
  }
}

.p-donation-tax__area-text-kome.kome05 {
  top: 0.3125rem;
  left: 11.875rem;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__area-text-kome.kome05 {
    top: 0.5625rem;
    left: 99%;
  }
}

.p-donation-tax__area-list {
  margin-top: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__area-list {
    margin-top: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-donation-tax__area-list + .p-donation-tax__area-list {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__area-list + .p-donation-tax__area-list {
    margin-top: 0;
  }
}

.p-donation-tax__area-term {
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__area-term {
    width: 12.625rem;
    font-size: 1rem;
    line-height: 2;
  }
}

.p-donation-tax__area-desc {
  margin-left: 0.3125rem;
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__area-desc {
    width: calc(100% - 12.625rem);
    margin-left: 0;
    font-size: 1rem;
    line-height: 2;
  }
}

.p-donation-tax__attentionList {
  counter-reset: number 0;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__attentionList {
    margin-top: 1.625rem;
  }
}

.p-donation-tax__attention {
  margin-top: 0.125rem;
  padding-left: 0.875rem;
  font-size: 0.8125rem;
  color: #8D9099;
  line-height: 2.0769230769;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__attention {
    margin-top: 0.25rem;
    padding-left: 1.0625rem;
    font-size: 0.8125rem;
    line-height: 1.7692307692;
  }
}

li.p-donation-tax__attention {
  margin-top: 0;
  left: -0.8125rem;
}
@media screen and (min-width: 768px) {
  li.p-donation-tax__attention {
    left: -0.8125rem;
  }
}

.p-donation-tax__attention::before {
  content: "※";
  font-size: 0.8125rem;
  color: #8D9099;
  line-height: 2.0769230769;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__attention::before {
    font-size: 0.8125rem;
    line-height: 1.7692307692;
  }
}

li.p-donation-tax__attention::before {
  counter-increment: number 1;
  content: "※" counter(number);
}
@media screen and (min-width: 768px) {
  li.p-donation-tax__attention::before {
    left: -0.8125rem;
  }
}

.p-donation-tax__detail {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__detail {
    margin-top: 1.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-donation-tax__text {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__text {
    font-size: 0.8125rem;
    line-height: 1.4615384615;
    display: block;
  }
}

.p-donation-tax__link {
  display: inline;
  padding-right: 0.625rem;
  padding-bottom: 0.25rem;
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#060E31), to(#060E31)) 100% 100%/0 1px no-repeat;
  background: linear-gradient(#060E31, #060E31) 100% 100%/0 1px no-repeat;
  background-size: 100% 1px;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
}
@media screen and (min-width: 768px) {
  .p-donation-tax__link {
    padding-right: 0.5rem;
    padding-bottom: 0.25rem;
    font-size: 0.8125rem;
    line-height: 1.4615384615;
  }
}

@media screen and (min-width: 768px) {
  .p-donation-tax__link:hover {
    background-size: 0 1px;
  }
}

.p-donation-tax__link::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-image: url(../images/common/icon_blank.svg);
          mask-image: url(../images/common/icon_blank.svg);
  background: #060E31;
  position: absolute;
  bottom: 0.25rem;
  right: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .p-donation-tax__link::after {
    bottom: 0.3125rem;
  }
}

.p-footer {
  padding-top: 3.75rem;
  padding-bottom: 2.1875rem;
  background: #060E31;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-top: 6.875rem;
    padding-bottom: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__head {
    width: 49.5689655172%;
  }
}

.p-footer__nav {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__navbox {
    width: 45.2173913043%;
  }
}

.p-footer__navList {
  color: #fff;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__navList {
    row-gap: 2.1875rem;
  }
}

.p-footer__navLink {
  display: block;
  padding-bottom: 0.625rem;
  font-size: 0.8125rem;
  line-height: 1.4615384615;
  letter-spacing: 0.05em;
  font-weight: 600;
  border-bottom: 1px solid #C3C7D4;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-footer__navLink {
    padding-bottom: 0.9375rem;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.p-footer__navLink__dot {
  width: 0.25rem;
  height: 0.25rem;
  background: #B7BCCB;
  border-radius: 50%;
  position: absolute;
  top: 30%;
  right: 0.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-footer__navLink__dot {
    width: 0.25rem;
    height: 0.25rem;
  }
}

.p-footer__navLink__dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(183, 188, 203, .7);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .p-footer__navLink:hover .p-footer__navLink__dot::before {
    -webkit-animation: ripple 1s ease-out;
            animation: ripple 1s ease-out;
  }
}

.p-footer__navSubList {
  margin-top: 1.125rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__navSubList {
    margin-top: 1.0625rem;
    row-gap: 0.375rem;
  }
}

.p-footer__navSubItem {
  padding-left: 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-footer__navSubItem {
    padding-left: 0.875rem;
  }
}

.p-footer__navSubItem::before {
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  background: #C3C7D4;
  border-radius: 50%;
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-footer__navSubItem::before {
    top: 0.6875rem;
    left: 0;
  }
}

.p-footer__navSubLink {
  font-size: 0.875rem;
  color: #C3C7D4;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-footer__navSubLink {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.p-footer__navSubLink--blank::after {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background: transparent url(../images/common/icon_blank.svg) no-repeat center center/cover;
  position: absolute;
  bottom: 0.25rem;
  right: -1.125rem;
}

@media screen and (min-width: 768px) {
  .p-footer__navSubLink--blank:hover::after {
    -webkit-animation: moveArrow-footer 0.3s forwards;
            animation: moveArrow-footer 0.3s forwards;
  }
}

@-webkit-keyframes moveArrow-footer {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  30% {
    opacity: 0;
    -webkit-transform: translateX(15px) translateY(-15px);
            transform: translateX(15px) translateY(-15px);
  }
  30.1% {
    opacity: 0;
    -webkit-transform: translateX(-15px) translateY(15px);
            transform: translateX(-15px) translateY(15px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}

@keyframes moveArrow-footer {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  30% {
    opacity: 0;
    -webkit-transform: translateX(15px) translateY(-15px);
            transform: translateX(15px) translateY(-15px);
  }
  30.1% {
    opacity: 0;
    -webkit-transform: translateX(-15px) translateY(15px);
            transform: translateX(-15px) translateY(15px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}
.p-footer__btnWrap {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__btnWrap {
    margin-top: 2.125rem;
    row-gap: 0.9375rem;
  }
}

.p-footer__body {
  margin-top: 2.5rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-footer__body {
    width: 34.9137931034%;
    margin-top: 0;
  }
}

.p-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.1875rem;
}

.p-footer__logoText {
  font-size: 0.8125rem;
  line-height: 1.4615384615;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-footer__logoText {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.p-footer__logoName {
  font-size: 1.0625rem;
  line-height: 1.4705882353;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-footer__logoName {
    font-size: 1.25rem;
    line-height: 1.45;
  }
}

.p-footer__access {
  margin-top: 0.8125rem;
  font-size: 0.8125rem;
  line-height: 1.7692307692;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-footer__access {
    margin-top: 1.125rem;
    font-size: 0.9375rem;
    line-height: 1.6666666667;
  }
}

.p-footer__tel {
  font-size: 0.8125rem;
  line-height: 1.7692307692;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-footer__tel {
    font-size: 0.9375rem;
    line-height: 1.6666666667;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__tel a {
    pointer-events: none;
  }
}

.p-footer__fax {
  font-size: 0.8125rem;
  line-height: 1.7692307692;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-footer__fax {
    font-size: 0.9375rem;
    line-height: 1.6666666667;
  }
}

.p-footer__bottom {
  margin-top: 2.6875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom {
    margin-top: 5.625rem;
  }
}

.p-footer__copyright {
  font-size: 0.6875rem;
  color: #C3C7D4;
  line-height: 1.4545454545;
  letter-spacing: 0.025em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.4166666667;
    letter-spacing: 0.05em;
  }
}

.p-form__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 2.6875rem;
}
@media screen and (min-width: 768px) {
  .p-form__list {
    row-gap: 1.875rem;
  }
}

.p-form__item dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-form__item dl {
    -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;
  }
}

.p-form__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-form__head {
    width: 23.5294117647%;
  }
}

.form_note .p-form__head {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .form_note .p-form__head {
    padding-top: 0.5625rem;
  }
}

.p-form__head__title {
  width: 100%;
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.4666666667;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-form__head__title {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-form__head__title p {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-form span.required,
.p-form span.any {
  width: 2.0625rem;
  margin-top: 0.125rem;
  padding: 0.25rem 0 0.3125rem;
  margin-right: 0.5rem;
  font-size: 0.6875rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-form span.required,
  .p-form span.any {
    width: 2.5rem;
    margin-top: 0;
    margin-right: 1.25rem;
    font-size: 0.75rem;
  }
}

.p-form span.required {
  background-color: #E68D75;
}

.p-form span.any {
  background-color: #B3B3B3;
}

.p-form__body {
  width: 100%;
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-form__body {
    margin-top: 0;
    width: 74.5098039216%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-form__body .mw_wp_form .error {
  margin-top: 0.3125rem;
}

/******************* form base *******************/
.p-form .wpcf7-form-control-wrap {
  width: 100%;
}

.p-form input,
.p-form textarea,
.p-form select {
  width: 100%;
  height: 3.5rem;
  padding: 1.0625rem 1.25rem 1.125rem;
  font-size: 1rem;
  color: #060E31;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 400;
  background-color: #fff;
  border-radius: 0.3125rem;
  border: none;
}
@media screen and (min-width: 768px) {
  .p-form input,
  .p-form textarea,
  .p-form select {
    height: 3.75rem;
    padding: 1.125rem 1.25rem 1.125rem;
    font-size: 0.9375rem;
  }
}

.p-form ::-webkit-input-placeholder {
  color: #CACACC;
}

.p-form ::-moz-placeholder {
  color: #CACACC;
}

.p-form ::-ms-input-placeholder {
  color: #CACACC;
}

.p-form ::placeholder {
  color: #CACACC;
}

.p-form input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  padding: 0;
  margin-right: 0.625rem;
  border-radius: 0.125rem;
  border: 0.0625rem solid #CCCCCC;
  vertical-align: middle;
}

.p-form input.required,
.p-form textarea.required,
.p-form select.required {
  background-color: #F9D5D5;
}

.p-form textarea {
  height: 10rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-form textarea {
    height: 12.5rem;
  }
}

.p-form input.form_name,
.p-form input.form_kana {
  width: 18.75rem;
}
@media screen and (min-width: 768px) {
  .p-form input.form_name,
  .p-form input.form_kana {
    width: 100%;
    margin-top: 0.625rem;
  }
}

.p-form input.form_company,
.p-form input.form_tel,
.p-form input.form_mail {
  width: 26.5625rem;
}
@media screen and (min-width: 768px) {
  .p-form input.form_company,
  .p-form input.form_tel,
  .p-form input.form_mail {
    width: 100%;
  }
}

/* 郵便番号,電話番号 */
@media screen and (min-width: 768px) {
  .p-form .p-form__item.form_post .p-form__detail,
  .p-form .p-form__item.form_tel .p-form__detail {
    width: 15rem;
  }
}

.p-form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/contact/arrow_select.svg) 96% 50% no-repeat;
  background-size: auto;
  background-size: 1.25rem;
  font-size: 1rem;
  color: #000;
  line-height: 2;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.p-form select::-webkit-calendar-picker-indicator {
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1rem;
  color: #060E31;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-form select {
    width: 100%;
    line-height: 1;
    background: url(../images/contact/arrow_select.svg) 94% 50% no-repeat;
    background-size: 0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-form select {
    font-size: 0.875rem;
  }
}

.mw_wp_form .error {
  width: 100%;
}

.wpcf7-radio {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .wpcf7-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 2.25rem;
       -moz-column-gap: 2.25rem;
            column-gap: 2.25rem;
    row-gap: 0.375rem;
  }
}

.wpcf7-radio .wpcf7-list-item {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wpcf7-radio .wpcf7-list-item:nth-child(n+2) {
  margin-top: 0;
}

.wpcf7-radio .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wpcf7-radio .wpcf7-list-item label input {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  padding: 0;
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}

/* デフォルトのボタン */
/* チェック前のボタン */
.wpcf7-list-item-label::before {
  background: #fff;
  border: 0.0625rem solid #333;
  border-radius: 100%; /* ラジオボタンっぽく丸くする */
  content: "";
  height: 1.2em;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  width: 1.2em;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: -1px;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  background: #fff;
  border: 0.125rem solid #060E31;
  border-radius: 100%; /* ラジオボタンっぽく丸くする */
  width: 1rem;
  height: 1rem;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
}

/* チェック後のボタン */
input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #060E31; /* チェック後の中心の色 */
  -webkit-box-shadow: inset 0 0 0 0.1875rem #fff;
          box-shadow: inset 0 0 0 0.1875rem #fff; /* 中心の色のスタイル */
}

/******************* END./form base *******************/
.p-form__head__text {
  margin-top: 0.3125rem;
  font-size: 0.875rem;
  line-height: 1.8571428571;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-form__head__text {
    margin-top: 0.625rem;
    font-size: 1rem;
    line-height: 1.875;
    letter-spacing: 0.08em;
  }
}

.p-form__detail {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-form__detail {
    display: block;
  }
}

.p-form__detail:nth-of-type(n+2) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-form__detail:nth-of-type(n+2) {
    margin-top: 1.25rem;
  }
}

.p-form__detail p {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-hope__title {
  width: 5rem;
  margin-right: 1.875rem;
  margin-left: 0.3125rem;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .form-hope__title {
    margin-right: 0.9375rem;
    margin-left: 0;
    font-size: 0.875rem;
  }
}

.p-form__body__text {
  width: 100%;
  margin-top: 0.625rem;
  font-size: 0.9375rem;
  color: #060E31;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-form__body__text {
    margin-top: 0;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}

.p-form__detail_name {
  width: 22.0625rem;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.005em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-form__detail_name {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .p-form__detail_name:nth-child(n+2) {
    margin-top: 0.625rem;
  }
}

.form-name__title {
  margin-right: auto;
  font-size: 1rem;
  color: #060E31;
  line-height: 2;
  letter-spacing: 0.005em;
}
@media screen and (min-width: 768px) {
  .form-name__title {
    font-size: 0.875rem;
  }
}

.p-form__item.form_name .form-name__title {
  margin-right: 2.1875rem;
}

.p-form__item.form_kana .form-name__title {
  margin-right: 1.25rem;
}

.p-form__policy {
  margin-top: 1.875rem;
  margin-left: 1.5625rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-form__policy {
    margin-top: 4rem;
    margin-left: 0;
    text-align: center;
  }
}

.p-form__policy p {
  display: inline;
  font-size: 0.9375rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-form__policy p {
    font-size: 1rem;
    line-height: 1.8125;
  }
}

.p-form .p-form__policy span.wpcf7-list-item {
  display: inline-block;
  margin: 0;
}

.p-form__policy p span.wpcf7-form-control-wrap {
  width: 0.9375rem;
  height: 0.9375rem;
  display: block;
  position: absolute;
  top: -0.375rem;
  left: -1.8125rem;
}
@media screen and (min-width: 768px) {
  .p-form__policy p span.wpcf7-form-control-wrap {
    width: auto;
    height: 0.9375rem;
    display: inline;
    position: static;
  }
}

.p-form__policy p span.wpcf7-list-item-label {
  display: none;
}

.p-form__policy .wpcf7-form-control {
  width: 1rem;
  height: 1rem;
}

.p-form__policy a {
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
  font-weight: 500;
  background: -webkit-gradient(linear, left top, left bottom, from(#060E31), to(#060E31)) 100% 93%/0 1px no-repeat;
  background: linear-gradient(#060E31, #060E31) 100% 93%/0 1px no-repeat;
  background-size: 100% 1px;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
}
@media screen and (min-width: 768px) {
  .p-form__policy a {
    font-size: 1rem;
    line-height: 1.8125;
  }
}

@media screen and (min-width: 768px) {
  .p-form__policy a:hover {
    background-size: 0 1px;
  }
}

.p-form__policy .wpcf7-not-valid-tip {
  width: 15.625rem;
  position: absolute;
  bottom: -4.125rem;
  left: 0;
}
@media (min-width: 600px) {
  .p-form__policy .wpcf7-not-valid-tip {
    bottom: -2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-form__policy .wpcf7-not-valid-tip {
    bottom: -2.5rem;
    left: -1.875rem;
  }
}

.form-btn {
  width: 100%;
  max-width: 20rem;
  height: 4.5rem;
  margin-top: 2.5rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .form-btn {
    margin-top: 4.75rem;
  }
}

.form-btn input {
  height: 4.5rem;
  padding: 1.25rem 0;
  font-size: 0.9375rem;
  text-align: center;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  background: #060E31;
  border: 1px solid #060E31;
  border-radius: 2.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .form-btn input {
    font-size: 1rem;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}

@media screen and (min-width: 768px) {
  .form-btn input:hover {
    color: #060E31;
    background: #fff;
  }
}

.p-header {
  width: 100%;
  background: transparent;
}

.p-header__inner {
  height: 100%;
  padding: 0.9375rem 0.9375rem 0 1.125rem;
  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;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    height: auto;
    padding: 2.5rem 2.5rem 0 3.125rem;
  }
}

.p-header__logo {
  width: 6.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 9.375rem;
  }
}

.p-header__logo--link {
  width: 100%;
}

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

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

.p-header__hamburger {
  display: block;
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #060E31;
  border-radius: 50%;
  position: fixed;
  top: 0.9375rem;
  right: 0.9375rem;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger.is-footer {
  background: #fff;
}

.p-header__hamburger.is-footer.active {
  background: #060E31;
}

.p-header__hamburger .p-header__hamburger--line {
  width: 20px;
  height: 1px;
  display: block;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-header__hamburger.is-footer .p-header__hamburger--line {
  background-color: #060E31;
}

.p-header__hamburger.is-footer.active .p-header__hamburger--line {
  background-color: #fff;
}

.p-header__hamburger .p-header__hamburger--line:nth-child(2),
.p-header__hamburger .p-header__hamburger--line:nth-child(3) {
  margin-top: 4px;
}

.p-header__hamburger.active .p-header__hamburger--line:nth-child(1) {
  -webkit-transform: translateY(5px) rotate(45deg);
          transform: translateY(5px) rotate(45deg);
}

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

.p-header__hamburger.active .p-header__hamburger--line:nth-child(3) {
  -webkit-transform: translate(0, -5px) rotate(-45deg);
          transform: translate(0, -5px) rotate(-45deg);
}

.p-header__nav {
  width: 100%;
  height: 100svh;
  padding: 3.75rem 2.1875rem 4.375rem;
  -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: #F3F4F9;
  position: fixed;
  top: 0;
  right: -120%;
  z-index: 90;
  -webkit-transition: right 0.5s;
  transition: right 0.5s;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    width: auto;
    height: auto;
    padding: 0;
    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-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
    background: transparent;
    right: auto;
    overflow: visible;
    position: fixed;
    top: 2.5rem;
    right: 2.5rem;
  }
}

.p-header__nav.active {
  right: 0;
}
.p-header__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-header__head {
    padding: 1.25rem 3rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0.75rem;
    background: rgba(255, 255, 255, .95);
    border-radius: 1.875rem;
    overflow: visible;
  }
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .p-header__head {
    padding: 1.25rem 1.25rem 0;
  }
}

.p-header__navList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-header__navList {
    -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-column-gap: 1.5625rem;
       -moz-column-gap: 1.5625rem;
            column-gap: 1.5625rem;
    overflow: visible;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .p-header__navList {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}

.p-header__navItem {
  border-bottom: 1px solid rgba(43, 128, 203, .1);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-header__navItem {
    border-bottom: none;
    overflow: visible;
  }
}

.p-header__navLink {
  display: block;
  padding-top: 1.4375rem;
  padding-bottom: 1.125rem;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 600;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-header__navLink {
    padding-top: 0;
    padding-bottom: 1.0625rem;
    font-size: 0.875rem;
    line-height: 1.4285714286;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}

@media screen and (min-width: 768px) {
  .p-header__navLink.active,
  .p-header__navLink:hover {
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  span.p-header__navLink {
    cursor: default;
  }
}

.p-header__navLink.js-hover::before {
  content: "";
  width: 7px;
  height: 1px;
  background: #060E31;
  position: absolute;
  top: 1.875rem;
  right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-header__navLink.js-hover::before {
    content: "";
    width: 100%;
    height: 2px;
    background: #060E31;
    position: absolute;
    bottom: -3px;
    left: 0;
    top: auto;
    right: auto;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    z-index: 1;
  }
}

.p-header__navLink.js-hover::after {
  content: "";
  width: 7px;
  height: 1px;
  background: #060E31;
  position: absolute;
  top: 1.875rem;
  right: 0.625rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-header__navLink.js-hover::after {
    display: none;
  }
}

.p-header__navLink.js-hover.active::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media screen and (min-width: 768px) {
  .p-header__navLink.js-hover.active::after {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .p-header__navLink::before {
    content: "";
    width: 100%;
    height: 2px;
    background: #060E31;
    position: absolute;
    bottom: -3px;
    left: 0;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -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 (min-width: 768px) {
  .p-header__navLink:hover::before,
  .p-header__navLink.js-hover:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .p-header__navLink.active::after {
    -webkit-mask-position: center center;
            mask-position: center center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
            mask-size: 100%;
    -webkit-mask-image: url(../images/common/arrow_bottom.svg);
            mask-image: url(../images/common/arrow_bottom.svg);
    background: #2B80CB;
  }
}

.p-header__navText {
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-header__navText {
    display: block;
  }
}

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

.p-header__navText.js-hover {
  padding-right: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-header__navText.js-hover {
    padding-right: 0;
  }
}

.p-header__body {
  margin-inline: auto;
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-header__body {
    margin-inline: 0;
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 0.3125rem;
       -moz-column-gap: 0.3125rem;
            column-gap: 0.3125rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .p-header__body {
    width: 15.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-header__btn {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}

.p-header__btn-inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-header__btn-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
  }
}

.p-header__btn-link {
  height: 100%;
  padding: 1.3125rem 1.5625rem 1.4375rem;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  background: #060E31;
  border-radius: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-header__btn-link {
    padding: 1.25rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 1.875rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .p-header__btn-link {
    padding: 1.25rem 1rem;
  }
}

.p-header__btn-link::after {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 1.5625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-header__btn-link::after {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .p-header__btn-link:hover {
    color: #11193A;
    background: #fff;
  }
}

.p-header__wrapper {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__wrapper {
    display: block;
    min-width: 10.3125rem;
    width: auto;
    height: auto;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: visibility 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: visibility 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    position: absolute;
    top: 2.75rem;
    left: 50%;
    pointer-events: none;
    overflow: visible;
    clip: auto;
    z-index: 999;
  }
}

.p-header__wrapper.js-navAccord-body {
  display: none;
  -webkit-transition: none;
  transition: none;
}
@media screen and (min-width: 768px) {
  .p-header__wrapper.js-navAccord-body {
    display: block;
  }
}

.p-header__wrapper.js-navAccord-body.is-active {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-header__wrapper.js-navAccord-body.is-active {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .p-header__wrapper.bg::after {
    content: "";
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(23px);
    background: rgba(255, 255, 255, .01);
    position: fixed;
    top: 0;
    left: 0;
  }
}

.p-header__dropdown {
  display: block;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-header__dropdown {
    background: transparent;
    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;
    z-index: 1000;
  }
}

.p-header__dropdownList {
  padding-top: 0.3125rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-header__dropdownList {
    width: auto;
    margin-inline: auto;
    padding-top: 0;
    row-gap: 0;
    border-radius: 0.3125rem;
    overflow: hidden;
    background: #fff;
  }
}

.p-header__dropdownItem {
  position: relative;
}

.p-header__dropdownLink {
  display: block;
  width: 100%;
  padding: 1.125rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  background: #fff;
  border-radius: 0.3125rem;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-header__dropdownLink {
    width: auto;
    height: 100%;
    padding: 1.09375rem 1.25rem;
    font-size: 0.875rem;
    line-height: 1;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #C3C7D4;
    background: transparent;
    border-radius: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    white-space: nowrap;
    background: transparent;
  }
}

@media screen and (min-width: 768px) {
  .p-header__dropdownItem:last-child .p-header__dropdownLink {
    border-bottom: none;
  }
}

@media screen and (min-width: 768px) {
  .p-header__dropdownLink:hover {
    color: #fff;
    background: #060E31;
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .p-header__navItem:hover .p-header__wrapper,
  .p-header__navItem .p-header__wrapper:hover,
  .p-header__navItem .p-header__wrapper.is-visible {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}

.p-history {
  padding-top: 0.1875rem;
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-history {
    padding-top: 0.3125rem;
    padding-bottom: 10.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-history__inner {
    width: 74.3055555556%;
  }
}

.p-history__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.p-history__item {
  padding-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.75rem;
     -moz-column-gap: 0.75rem;
          column-gap: 0.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-history__item {
    padding-bottom: 3rem;
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
}

.p-history__item::after {
  content: "";
  width: 0.125rem;
  height: 100%;
  background: #11193A;
  position: absolute;
  top: 0.5rem;
  left: 4.3125rem;
}
@media screen and (min-width: 768px) {
  .p-history__item::after {
    top: 0.875rem;
    left: 6.75rem;
  }
}

.p-history__top {
  width: 4.6875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-history__top {
    width: 7.125rem;
  }
}

.p-history__top::after {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background: #11193A;
  border-radius: 50%;
  position: absolute;
  top: 0.5rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-history__top::after {
    top: 0.875rem;
  }
}

.p-history__year {
  font-size: 1.375rem;
  line-height: 1.2727272727;
  letter-spacing: 0.05em;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-history__year {
    font-size: 2rem;
    line-height: 1.25;
  }
}

.p-history__bottom {
  width: calc(100% - 5.4375rem);
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-history__bottom {
    width: calc(100% - 9rem);
    margin-top: 0.375rem;
  }
}

.p-history__subList {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-history__subList {
    gap: 1.25rem;
  }
}

.p-history__subItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-history__subItem {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-history__subItem-date {
  font-size: 0.8125rem;
  color: #8D9099;
  line-height: 1.4615384615;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-history__subItem-date {
    width: 7.1875rem;
    margin-right: 0.3125rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-history__subItem-wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-history__subItem-wrap {
    width: calc(100% - 7.5rem);
    gap: 0.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-history__subItem-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-history__subItem-category {
  width: 3.375rem;
  height: 1.375rem;
  margin-top: 0.4375rem;
  font-size: 0.75rem;
  color: #fff;
  line-height: 1.4166666667;
  letter-spacing: 0.1em;
  font-weight: 500;
  background: #060E31;
  border-radius: 1.5625rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-history__subItem-category {
    width: 4.0625rem;
    height: 1.6875rem;
    margin-top: 0;
    margin-right: 0.9375rem;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.p-history__subItem-category.orange {
  background: #F58E61;
}

.p-history__subItem-category.green {
  background: #67C593;
}

.p-history__subItem-category.yellow {
  background: #EFDC62;
}

.p-history__subItem-category.blue {
  background: #2A80CB;
}

.p-history__subItem-category.gray {
  background: #8D9099;
}

.p-history__subItem-body {
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-history__subItem-body {
    width: calc(100% - 5rem);
    margin-top: 0;
  }
}

.p-history__subItem-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 500;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-history__subItem-text {
    font-size: 1rem;
    line-height: 1.5;
    row-gap: 0.1875rem;
  }
}

.p-history__subItem-attention {
  display: block;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-history__subItem-attention {
    font-size: 0.8125rem;
    line-height: 1.4615384615;
  }
}

.p-history__subItem-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-history__subItem-list {
    gap: 0.5rem;
  }
}

.p-history__subItem-item {
  padding-left: 1.0625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-history__subItem-item {
    padding-left: 1.0625rem;
  }
}

.p-history__subItem-item::before {
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  background: #11193A;
  border-radius: 50%;
  position: absolute;
  top: 0.625rem;
  left: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-history__subItem-item::before {
    top: 0.625rem;
    left: 0.3125rem;
  }
}

.p-list01__link {
  display: block;
  padding: 1.25rem 0.1875rem 1.0625rem;
  border-bottom: 1px solid #C3C7D4;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-list01__link {
    padding: 2.125rem 0 1.875rem;
  }
}

.p-list01__dot {
  width: 0.3125rem;
  height: 0.3125rem;
  background: #060E31;
  border-radius: 50%;
  position: absolute;
  top: 51.5%;
  right: 0.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-list01__dot {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}

.p-list01__dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(6, 14, 49, .7);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .p-list01__link:hover .p-list01__dot::before {
    -webkit-animation: ripple 1s ease-out;
            animation: ripple 1s ease-out;
  }
}

@media screen and (min-width: 768px) {
  .p-list01__link::after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    margin: auto;
    background-color: #060E31;
    position: absolute;
    bottom: 0;
    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 (min-width: 768px) {
  .p-list01__link:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    opacity: 1;
  }
}

.p-list01__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-list01__area {
    gap: 1.3125rem;
  }
}

.p-list01__date {
  margin-top: 0.3125rem;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-list01__date {
    margin-top: 0.3125rem;
    font-size: 0.875rem;
  }
}

.p-list01__title {
  margin-top: 0.5625rem;
  padding-right: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 768px) {
  .p-list01__title {
    padding-right: 1.875rem;
    font-size: 1rem;
    line-height: 2;
  }
}

.p-message {
  padding-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-message {
    padding-top: 2.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-message__inner {
    width: 74.3055555556%;
  }
}

.p-message__wrap {
  margin-top: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .p-message__wrap {
    margin-top: 3.375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-message__top {
    width: 70.3125%;
  }
}

.p-message__read {
  font-size: 1.6875rem;
  line-height: 1.5925925926;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-message__read {
    font-size: 1.875rem;
    line-height: 1.5333333333;
  }
}

.p-message__text {
  margin-top: 1.1875rem;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-message__text {
    margin-top: 2.3125rem;
    font-size: 1rem;
    line-height: 2;
  }
}

.p-message__bottom {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-message__bottom {
    width: 23.4375%;
    margin-top: 0.3125rem;
  }
}

.p-message__img {
  width: 78.6885245902%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-message__img {
    width: auto;
    margin-inline: 0;
  }
}

.p-message__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 240/300;
}

.p-message__img-caption {
  margin-top: 1rem;
  font-size: 0.9375rem;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-message__img-caption {
    margin-top: 0.9375rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-mv {
  height: calc(100vh - 3.375rem);
  min-height: 34.375rem;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv {
    height: calc(100vh - 6.1875rem);
    min-height: 43.75rem;
  }
}

.p-mv::after {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent url(../images/top/txt_mv-en_sp.png) no-repeat 100% bottom;
  background-size: 17.625rem 37.75rem;
  aspect-ratio: 282/604;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-mv::after {
    background: transparent url(../images/top/txt_mv-en.png) no-repeat center 98%;
    background-size: 100%;
    aspect-ratio: 1440/643;
    bottom: -1.875rem;
  }
}

.p-mv__inner {
  height: 100%;
  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;
  position: relative;
  z-index: 1;
}

.p-mv__wrap {
  width: 33.4426229508%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
  top: -2rem;
}
@media screen and (min-width: 768px) {
  .p-mv__wrap {
    width: 49.1379310345%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0.625rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: -5.125rem;
  }
}

.p-mv__read {
  font-size: 1.6875rem;
  line-height: 1.1851851852;
  letter-spacing: 0.1em;
  font-weight: 600;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv__read {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 3rem;
    letter-spacing: 0.1em;
  }
}

.p-mv__read:nth-child(2) {
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-mv__read:nth-child(2) {
    margin-top: 0;
  }
}

.p-mv__read span {
  margin-top: 0.4375rem;
  margin-bottom: 0.4375rem;
  font-size: 2.5rem;
  line-height: 1.15;
  letter-spacing: 0.1em;
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, from(#2B80CB), to(#71C789));
  background: linear-gradient(180deg, #2B80CB 0%, #71C789 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (min-width: 768px) {
  .p-mv__read span {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 4.375rem;
    line-height: 1.2857142857;
    letter-spacing: 0.1em;
  }
}

.p-mv__logo {
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv__logo {
    max-width: 36rem;
  }
}

.p-mv__svg {
  width: 100%;
  height: auto;
  display: block;
}

.p-mv__svg--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-mv__svg--pc {
    display: block;
  }
}

.p-mv__svg--sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-mv__svg--sp {
    display: none;
  }
}

.p-mv__svg--stroke {
  position: relative;
  z-index: 2;
  opacity: 1;
}

.p-mv__svg--stroke.p-mv__svg--pc {
  -webkit-animation: fadeOutStrokePC 1s ease-in-out 2.8s forwards;
          animation: fadeOutStrokePC 1s ease-in-out 2.8s forwards;
}

.p-mv__svg--stroke.p-mv__svg--sp {
  -webkit-animation: fadeOutStrokeSP 1s ease-in-out 2.8s forwards;
          animation: fadeOutStrokeSP 1s ease-in-out 2.8s forwards;
}

.p-mv__svg--fill {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
}

.p-mv__svg--fill-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-mv__svg--fill-pc {
    display: block;
    -webkit-animation: fadeInFillPC 1s ease-in-out 2.8s forwards;
            animation: fadeInFillPC 1s ease-in-out 2.8s forwards;
  }
}

.p-mv__svg--fill-sp {
  display: block;
  -webkit-animation: fadeInFillSP 1s ease-in-out 2.8s forwards;
          animation: fadeInFillSP 1s ease-in-out 2.8s forwards;
}
@media screen and (min-width: 768px) {
  .p-mv__svg--fill-sp {
    display: none;
  }
}

@-webkit-keyframes fadeOutStrokePC {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOutStrokePC {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeInFillPC {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInFillPC {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOutStrokeSP {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOutStrokeSP {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeInFillSP {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInFillSP {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 1295.9833984375px;
    stroke-dasharray: 1295.9833984375px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1295.9833984375px;
  }
}
@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 1295.9833984375px;
    stroke-dasharray: 1295.9833984375px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1295.9833984375px;
  }
}
@-webkit-keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 246.2999725342px;
    stroke-dasharray: 246.2999725342px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 246.2999725342px;
  }
}
@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 246.2999725342px;
    stroke-dasharray: 246.2999725342px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 246.2999725342px;
  }
}
@-webkit-keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 300.2462158203px;
    stroke-dasharray: 300.2462158203px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 300.2462158203px;
  }
}
@keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 300.2462158203px;
    stroke-dasharray: 300.2462158203px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 300.2462158203px;
  }
}
@-webkit-keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 352.2593383789px;
    stroke-dasharray: 352.2593383789px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 352.2593383789px;
  }
}
@keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 352.2593383789px;
    stroke-dasharray: 352.2593383789px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 352.2593383789px;
  }
}
@-webkit-keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 53.8693122864px;
    stroke-dasharray: 53.8693122864px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 53.8693122864px;
  }
}
@keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 53.8693122864px;
    stroke-dasharray: 53.8693122864px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 53.8693122864px;
  }
}
@-webkit-keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 104.1648712158px;
    stroke-dasharray: 104.1648712158px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 104.1648712158px;
  }
}
@keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 104.1648712158px;
    stroke-dasharray: 104.1648712158px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 104.1648712158px;
  }
}
@-webkit-keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 72.5458526611px;
    stroke-dasharray: 72.5458526611px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 72.5458526611px;
  }
}
@keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 72.5458526611px;
    stroke-dasharray: 72.5458526611px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 72.5458526611px;
  }
}
@-webkit-keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 148.0304107666px;
    stroke-dasharray: 148.0304107666px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 148.0304107666px;
  }
}
@keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 148.0304107666px;
    stroke-dasharray: 148.0304107666px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 148.0304107666px;
  }
}
@-webkit-keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 175.046585083px;
    stroke-dasharray: 175.046585083px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 175.046585083px;
  }
}
@keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 175.046585083px;
    stroke-dasharray: 175.046585083px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 175.046585083px;
  }
}
@-webkit-keyframes animate-svg-stroke-10 {
  0% {
    stroke-dashoffset: 234.5926513672px;
    stroke-dasharray: 234.5926513672px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 234.5926513672px;
  }
}
@keyframes animate-svg-stroke-10 {
  0% {
    stroke-dashoffset: 234.5926513672px;
    stroke-dasharray: 234.5926513672px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 234.5926513672px;
  }
}
@-webkit-keyframes animate-svg-stroke-11 {
  0% {
    stroke-dashoffset: 208.9999389648px;
    stroke-dasharray: 208.9999389648px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 208.9999389648px;
  }
}
@keyframes animate-svg-stroke-11 {
  0% {
    stroke-dashoffset: 208.9999389648px;
    stroke-dasharray: 208.9999389648px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 208.9999389648px;
  }
}
@-webkit-keyframes animate-svg-stroke-12 {
  0% {
    stroke-dashoffset: 93.1200256348px;
    stroke-dasharray: 93.1200256348px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 93.1200256348px;
  }
}
@keyframes animate-svg-stroke-12 {
  0% {
    stroke-dashoffset: 93.1200256348px;
    stroke-dasharray: 93.1200256348px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 93.1200256348px;
  }
}
@-webkit-keyframes animate-svg-stroke-13 {
  0% {
    stroke-dashoffset: 207.5013427734px;
    stroke-dasharray: 207.5013427734px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 207.5013427734px;
  }
}
@keyframes animate-svg-stroke-13 {
  0% {
    stroke-dashoffset: 207.5013427734px;
    stroke-dasharray: 207.5013427734px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 207.5013427734px;
  }
}
@-webkit-keyframes animate-svg-stroke-14 {
  0% {
    stroke-dashoffset: 53.1802368164px;
    stroke-dasharray: 53.1802368164px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 53.1802368164px;
  }
}
@keyframes animate-svg-stroke-14 {
  0% {
    stroke-dashoffset: 53.1802368164px;
    stroke-dasharray: 53.1802368164px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 53.1802368164px;
  }
}
@-webkit-keyframes animate-svg-stroke-15 {
  0% {
    stroke-dashoffset: 39.1450157166px;
    stroke-dasharray: 39.1450157166px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 39.1450157166px;
  }
}
@keyframes animate-svg-stroke-15 {
  0% {
    stroke-dashoffset: 39.1450157166px;
    stroke-dasharray: 39.1450157166px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 39.1450157166px;
  }
}
@-webkit-keyframes animate-svg-stroke-16 {
  0% {
    stroke-dashoffset: 117.441368103px;
    stroke-dasharray: 117.441368103px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 117.441368103px;
  }
}
@keyframes animate-svg-stroke-16 {
  0% {
    stroke-dashoffset: 117.441368103px;
    stroke-dasharray: 117.441368103px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 117.441368103px;
  }
}
@-webkit-keyframes animate-svg-stroke-17 {
  0% {
    stroke-dashoffset: 129.8081741333px;
    stroke-dasharray: 129.8081741333px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.8081741333px;
  }
}
@keyframes animate-svg-stroke-17 {
  0% {
    stroke-dashoffset: 129.8081741333px;
    stroke-dasharray: 129.8081741333px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.8081741333px;
  }
}
@-webkit-keyframes animate-svg-stroke-18 {
  0% {
    stroke-dashoffset: 1158.2976074219px;
    stroke-dasharray: 1158.2976074219px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1158.2976074219px;
  }
}
@keyframes animate-svg-stroke-18 {
  0% {
    stroke-dashoffset: 1158.2976074219px;
    stroke-dasharray: 1158.2976074219px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1158.2976074219px;
  }
}
@-webkit-keyframes animate-svg-stroke-19 {
  0% {
    stroke-dashoffset: 1396.7805175781px;
    stroke-dasharray: 1396.7805175781px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1396.7805175781px;
  }
}
@keyframes animate-svg-stroke-19 {
  0% {
    stroke-dashoffset: 1396.7805175781px;
    stroke-dasharray: 1396.7805175781px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1396.7805175781px;
  }
}
@-webkit-keyframes animate-svg-stroke-20 {
  0% {
    stroke-dashoffset: 249.654083252px;
    stroke-dasharray: 249.654083252px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 249.654083252px;
  }
}
@keyframes animate-svg-stroke-20 {
  0% {
    stroke-dashoffset: 249.654083252px;
    stroke-dasharray: 249.654083252px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 249.654083252px;
  }
}
@-webkit-keyframes animate-svg-stroke-21 {
  0% {
    stroke-dashoffset: 103.1800003052px;
    stroke-dasharray: 103.1800003052px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 103.1800003052px;
  }
}
@keyframes animate-svg-stroke-21 {
  0% {
    stroke-dashoffset: 103.1800003052px;
    stroke-dasharray: 103.1800003052px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 103.1800003052px;
  }
}
@-webkit-keyframes animate-svg-stroke-22 {
  0% {
    stroke-dashoffset: 114.3400115967px;
    stroke-dasharray: 114.3400115967px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 114.3400115967px;
  }
}
@keyframes animate-svg-stroke-22 {
  0% {
    stroke-dashoffset: 114.3400115967px;
    stroke-dasharray: 114.3400115967px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 114.3400115967px;
  }
}
@-webkit-keyframes animate-svg-stroke-23 {
  0% {
    stroke-dashoffset: 66.9086837769px;
    stroke-dasharray: 66.9086837769px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 66.9086837769px;
  }
}
@keyframes animate-svg-stroke-23 {
  0% {
    stroke-dashoffset: 66.9086837769px;
    stroke-dasharray: 66.9086837769px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 66.9086837769px;
  }
}
@-webkit-keyframes animate-svg-stroke-24 {
  0% {
    stroke-dashoffset: 113.056098938px;
    stroke-dasharray: 113.056098938px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 113.056098938px;
  }
}
@keyframes animate-svg-stroke-24 {
  0% {
    stroke-dashoffset: 113.056098938px;
    stroke-dasharray: 113.056098938px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 113.056098938px;
  }
}
@-webkit-keyframes animate-svg-stroke-25 {
  0% {
    stroke-dashoffset: 182.6398925781px;
    stroke-dasharray: 182.6398925781px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 182.6398925781px;
  }
}
@keyframes animate-svg-stroke-25 {
  0% {
    stroke-dashoffset: 182.6398925781px;
    stroke-dasharray: 182.6398925781px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 182.6398925781px;
  }
}
@-webkit-keyframes animate-svg-stroke-26 {
  0% {
    stroke-dashoffset: 159.1005554199px;
    stroke-dasharray: 159.1005554199px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 159.1005554199px;
  }
}
@keyframes animate-svg-stroke-26 {
  0% {
    stroke-dashoffset: 159.1005554199px;
    stroke-dasharray: 159.1005554199px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 159.1005554199px;
  }
}
@-webkit-keyframes animate-svg-stroke-27 {
  0% {
    stroke-dashoffset: 170.7129211426px;
    stroke-dasharray: 170.7129211426px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 170.7129211426px;
  }
}
@keyframes animate-svg-stroke-27 {
  0% {
    stroke-dashoffset: 170.7129211426px;
    stroke-dasharray: 170.7129211426px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 170.7129211426px;
  }
}
@-webkit-keyframes animate-svg-stroke-28 {
  0% {
    stroke-dashoffset: 66.9084701538px;
    stroke-dasharray: 66.9084701538px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 66.9084701538px;
  }
}
@keyframes animate-svg-stroke-28 {
  0% {
    stroke-dashoffset: 66.9084701538px;
    stroke-dasharray: 66.9084701538px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 66.9084701538px;
  }
}
@-webkit-keyframes animate-svg-stroke-29 {
  0% {
    stroke-dashoffset: 113.0578536987px;
    stroke-dasharray: 113.0578536987px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 113.0578536987px;
  }
}
@keyframes animate-svg-stroke-29 {
  0% {
    stroke-dashoffset: 113.0578536987px;
    stroke-dasharray: 113.0578536987px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 113.0578536987px;
  }
}
.p-mv__svg--pc .svg-elem-1 {
  -webkit-animation: animate-svg-stroke-1 1.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
  animation: animate-svg-stroke-1 1.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

.p-mv__svg--pc .svg-elem-18 {
  -webkit-animation: animate-svg-stroke-18 1.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
  animation: animate-svg-stroke-18 1.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

.p-mv__svg--pc .svg-elem-19 {
  -webkit-animation: animate-svg-stroke-19 1.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
  animation: animate-svg-stroke-19 1.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

.p-mv__svg--pc .svg-elem-22 {
  -webkit-animation: animate-svg-stroke-22 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-22 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-21 {
  -webkit-animation: animate-svg-stroke-21 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-21 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-20 {
  -webkit-animation: animate-svg-stroke-20 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-20 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-24 {
  -webkit-animation: animate-svg-stroke-24 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-24 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-23 {
  -webkit-animation: animate-svg-stroke-23 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-23 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-25 {
  -webkit-animation: animate-svg-stroke-25 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-25 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-27 {
  -webkit-animation: animate-svg-stroke-27 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-27 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-26 {
  -webkit-animation: animate-svg-stroke-26 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-26 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-29 {
  -webkit-animation: animate-svg-stroke-29 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-29 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-28 {
  -webkit-animation: animate-svg-stroke-28 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-28 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-2 {
  -webkit-animation: animate-svg-stroke-2 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-2 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-3 {
  -webkit-animation: animate-svg-stroke-3 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-3 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-4 {
  -webkit-animation: animate-svg-stroke-4 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-4 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-6 {
  -webkit-animation: animate-svg-stroke-6 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-6 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-5 {
  -webkit-animation: animate-svg-stroke-5 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-5 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-7 {
  -webkit-animation: animate-svg-stroke-7 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-7 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-8 {
  -webkit-animation: animate-svg-stroke-8 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-8 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-9 {
  -webkit-animation: animate-svg-stroke-9 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-9 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-12 {
  -webkit-animation: animate-svg-stroke-12 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-12 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-11 {
  -webkit-animation: animate-svg-stroke-11 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-11 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-10 {
  -webkit-animation: animate-svg-stroke-10 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-10 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-13 {
  -webkit-animation: animate-svg-stroke-13 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-13 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-14 {
  -webkit-animation: animate-svg-stroke-14 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-14 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-16 {
  -webkit-animation: animate-svg-stroke-16 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-16 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-15 {
  -webkit-animation: animate-svg-stroke-15 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-15 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--pc .svg-elem-17 {
  -webkit-animation: animate-svg-stroke-17 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-17 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-1 {
  -webkit-animation: animate-svg-stroke-1-sp 1.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
  animation: animate-svg-stroke-1-sp 1.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

.p-mv__svg--sp .svg-elem-2 {
  -webkit-animation: animate-svg-stroke-2-sp 1.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
  animation: animate-svg-stroke-2-sp 1.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

.p-mv__svg--sp .svg-elem-13 {
  -webkit-animation: animate-svg-stroke-13-sp 1.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
  animation: animate-svg-stroke-13-sp 1.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s both;
}

.p-mv__svg--sp .svg-elem-8 {
  -webkit-animation: animate-svg-stroke-8-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-8-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-9 {
  -webkit-animation: animate-svg-stroke-9-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-9-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-10 {
  -webkit-animation: animate-svg-stroke-10-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-10-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-12 {
  -webkit-animation: animate-svg-stroke-12-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-12-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-11 {
  -webkit-animation: animate-svg-stroke-11-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-11-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-3 {
  -webkit-animation: animate-svg-stroke-3-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-3-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-4 {
  -webkit-animation: animate-svg-stroke-4-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-4-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-5 {
  -webkit-animation: animate-svg-stroke-5-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-5-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-7 {
  -webkit-animation: animate-svg-stroke-7-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-7-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-6 {
  -webkit-animation: animate-svg-stroke-6-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-6-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-14 {
  -webkit-animation: animate-svg-stroke-14-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-14-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-15 {
  -webkit-animation: animate-svg-stroke-15-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-15-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-16 {
  -webkit-animation: animate-svg-stroke-16-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-16-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-19 {
  -webkit-animation: animate-svg-stroke-19-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-19-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-18 {
  -webkit-animation: animate-svg-stroke-18-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-18-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-17 {
  -webkit-animation: animate-svg-stroke-17-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-17-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-20 {
  -webkit-animation: animate-svg-stroke-20-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-20-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-21 {
  -webkit-animation: animate-svg-stroke-21-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-21-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-22 {
  -webkit-animation: animate-svg-stroke-22-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-22-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-23 {
  -webkit-animation: animate-svg-stroke-23-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-23-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-24 {
  -webkit-animation: animate-svg-stroke-24-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-24-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-25 {
  -webkit-animation: animate-svg-stroke-25-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-25-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-26 {
  -webkit-animation: animate-svg-stroke-26-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-26-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-27 {
  -webkit-animation: animate-svg-stroke-27-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-27-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-28 {
  -webkit-animation: animate-svg-stroke-28-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-28-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

.p-mv__svg--sp .svg-elem-29 {
  -webkit-animation: animate-svg-stroke-29-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-29-sp 0.8s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

@-webkit-keyframes animate-svg-stroke-1-sp {
  0% {
    stroke-dashoffset: 822.4796142578px;
    stroke-dasharray: 822.4796142578px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 822.4796142578px;
  }
}
@keyframes animate-svg-stroke-1-sp {
  0% {
    stroke-dashoffset: 822.4796142578px;
    stroke-dasharray: 822.4796142578px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 822.4796142578px;
  }
}
@-webkit-keyframes animate-svg-stroke-2-sp {
  0% {
    stroke-dashoffset: 662.7552490234px;
    stroke-dasharray: 662.7552490234px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 662.7552490234px;
  }
}
@keyframes animate-svg-stroke-2-sp {
  0% {
    stroke-dashoffset: 662.7552490234px;
    stroke-dasharray: 662.7552490234px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 662.7552490234px;
  }
}
@-webkit-keyframes animate-svg-stroke-3-sp {
  0% {
    stroke-dashoffset: 101.6527709961px;
    stroke-dasharray: 101.6527709961px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 101.6527709961px;
  }
}
@keyframes animate-svg-stroke-3-sp {
  0% {
    stroke-dashoffset: 101.6527709961px;
    stroke-dasharray: 101.6527709961px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 101.6527709961px;
  }
}
@-webkit-keyframes animate-svg-stroke-4-sp {
  0% {
    stroke-dashoffset: 96.920791626px;
    stroke-dasharray: 96.920791626px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 96.920791626px;
  }
}
@keyframes animate-svg-stroke-4-sp {
  0% {
    stroke-dashoffset: 96.920791626px;
    stroke-dasharray: 96.920791626px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 96.920791626px;
  }
}
@-webkit-keyframes animate-svg-stroke-5-sp {
  0% {
    stroke-dashoffset: 90.3550949097px;
    stroke-dasharray: 90.3550949097px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 90.3550949097px;
  }
}
@keyframes animate-svg-stroke-5-sp {
  0% {
    stroke-dashoffset: 90.3550949097px;
    stroke-dasharray: 90.3550949097px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 90.3550949097px;
  }
}
@-webkit-keyframes animate-svg-stroke-6-sp {
  0% {
    stroke-dashoffset: 63.2370986938px;
    stroke-dasharray: 63.2370986938px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 63.2370986938px;
  }
}
@keyframes animate-svg-stroke-6-sp {
  0% {
    stroke-dashoffset: 63.2370986938px;
    stroke-dasharray: 63.2370986938px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 63.2370986938px;
  }
}
@-webkit-keyframes animate-svg-stroke-7-sp {
  0% {
    stroke-dashoffset: 37.7806777954px;
    stroke-dasharray: 37.7806777954px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 37.7806777954px;
  }
}
@keyframes animate-svg-stroke-7-sp {
  0% {
    stroke-dashoffset: 37.7806777954px;
    stroke-dasharray: 37.7806777954px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 37.7806777954px;
  }
}
@-webkit-keyframes animate-svg-stroke-8-sp {
  0% {
    stroke-dashoffset: 58.9199943542px;
    stroke-dasharray: 58.9199943542px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 58.9199943542px;
  }
}
@keyframes animate-svg-stroke-8-sp {
  0% {
    stroke-dashoffset: 58.9199943542px;
    stroke-dasharray: 58.9199943542px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 58.9199943542px;
  }
}
@-webkit-keyframes animate-svg-stroke-9-sp {
  0% {
    stroke-dashoffset: 65.1799926758px;
    stroke-dasharray: 65.1799926758px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 65.1799926758px;
  }
}
@keyframes animate-svg-stroke-9-sp {
  0% {
    stroke-dashoffset: 65.1799926758px;
    stroke-dasharray: 65.1799926758px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 65.1799926758px;
  }
}
@-webkit-keyframes animate-svg-stroke-10-sp {
  0% {
    stroke-dashoffset: 141.3136291504px;
    stroke-dasharray: 141.3136291504px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 141.3136291504px;
  }
}
@keyframes animate-svg-stroke-10-sp {
  0% {
    stroke-dashoffset: 141.3136291504px;
    stroke-dasharray: 141.3136291504px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 141.3136291504px;
  }
}
@-webkit-keyframes animate-svg-stroke-11-sp {
  0% {
    stroke-dashoffset: 63.2370300293px;
    stroke-dasharray: 63.2370300293px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 63.2370300293px;
  }
}
@keyframes animate-svg-stroke-11-sp {
  0% {
    stroke-dashoffset: 63.2370300293px;
    stroke-dasharray: 63.2370300293px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 63.2370300293px;
  }
}
@-webkit-keyframes animate-svg-stroke-12-sp {
  0% {
    stroke-dashoffset: 37.7806549072px;
    stroke-dasharray: 37.7806549072px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 37.7806549072px;
  }
}
@keyframes animate-svg-stroke-12-sp {
  0% {
    stroke-dashoffset: 37.7806549072px;
    stroke-dasharray: 37.7806549072px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 37.7806549072px;
  }
}
@-webkit-keyframes animate-svg-stroke-13-sp {
  0% {
    stroke-dashoffset: 741.4404296875px;
    stroke-dasharray: 741.4404296875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 741.4404296875px;
  }
}
@keyframes animate-svg-stroke-13-sp {
  0% {
    stroke-dashoffset: 741.4404296875px;
    stroke-dasharray: 741.4404296875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 741.4404296875px;
  }
}
@-webkit-keyframes animate-svg-stroke-14-sp {
  0% {
    stroke-dashoffset: 169.81590271px;
    stroke-dasharray: 169.81590271px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 169.81590271px;
  }
}
@keyframes animate-svg-stroke-14-sp {
  0% {
    stroke-dashoffset: 169.81590271px;
    stroke-dasharray: 169.81590271px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 169.81590271px;
  }
}
@-webkit-keyframes animate-svg-stroke-15-sp {
  0% {
    stroke-dashoffset: 139.4799804688px;
    stroke-dasharray: 139.4799804688px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 139.4799804688px;
  }
}
@keyframes animate-svg-stroke-15-sp {
  0% {
    stroke-dashoffset: 139.4799804688px;
    stroke-dasharray: 139.4799804688px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 139.4799804688px;
  }
}
@-webkit-keyframes animate-svg-stroke-16-sp {
  0% {
    stroke-dashoffset: 199.0433044434px;
    stroke-dasharray: 199.0433044434px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 199.0433044434px;
  }
}
@keyframes animate-svg-stroke-16-sp {
  0% {
    stroke-dashoffset: 199.0433044434px;
    stroke-dasharray: 199.0433044434px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 199.0433044434px;
  }
}
@-webkit-keyframes animate-svg-stroke-17-sp {
  0% {
    stroke-dashoffset: 40.9354858398px;
    stroke-dasharray: 40.9354858398px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 40.9354858398px;
  }
}
@keyframes animate-svg-stroke-17-sp {
  0% {
    stroke-dashoffset: 40.9354858398px;
    stroke-dasharray: 40.9354858398px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 40.9354858398px;
  }
}
@-webkit-keyframes animate-svg-stroke-18-sp {
  0% {
    stroke-dashoffset: 58.4217910767px;
    stroke-dasharray: 58.4217910767px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 58.4217910767px;
  }
}
@keyframes animate-svg-stroke-18-sp {
  0% {
    stroke-dashoffset: 58.4217910767px;
    stroke-dasharray: 58.4217910767px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 58.4217910767px;
  }
}
@-webkit-keyframes animate-svg-stroke-19-sp {
  0% {
    stroke-dashoffset: 30.6841926575px;
    stroke-dasharray: 30.6841926575px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 30.6841926575px;
  }
}
@keyframes animate-svg-stroke-19-sp {
  0% {
    stroke-dashoffset: 30.6841926575px;
    stroke-dasharray: 30.6841926575px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 30.6841926575px;
  }
}
@-webkit-keyframes animate-svg-stroke-20-sp {
  0% {
    stroke-dashoffset: 82.5304107666px;
    stroke-dasharray: 82.5304107666px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 82.5304107666px;
  }
}
@keyframes animate-svg-stroke-20-sp {
  0% {
    stroke-dashoffset: 82.5304107666px;
    stroke-dasharray: 82.5304107666px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 82.5304107666px;
  }
}
@-webkit-keyframes animate-svg-stroke-21-sp {
  0% {
    stroke-dashoffset: 97.8289260864px;
    stroke-dasharray: 97.8289260864px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 97.8289260864px;
  }
}
@keyframes animate-svg-stroke-21-sp {
  0% {
    stroke-dashoffset: 97.8289260864px;
    stroke-dasharray: 97.8289260864px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 97.8289260864px;
  }
}
@-webkit-keyframes animate-svg-stroke-22-sp {
  0% {
    stroke-dashoffset: 118.4199829102px;
    stroke-dasharray: 118.4199829102px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 118.4199829102px;
  }
}
@keyframes animate-svg-stroke-22-sp {
  0% {
    stroke-dashoffset: 118.4199829102px;
    stroke-dasharray: 118.4199829102px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 118.4199829102px;
  }
}
@-webkit-keyframes animate-svg-stroke-23-sp {
  0% {
    stroke-dashoffset: 53.2400054932px;
    stroke-dasharray: 53.2400054932px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 53.2400054932px;
  }
}
@keyframes animate-svg-stroke-23-sp {
  0% {
    stroke-dashoffset: 53.2400054932px;
    stroke-dasharray: 53.2400054932px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 53.2400054932px;
  }
}
@-webkit-keyframes animate-svg-stroke-24-sp {
  0% {
    stroke-dashoffset: 132.8337097168px;
    stroke-dasharray: 132.8337097168px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 132.8337097168px;
  }
}
@keyframes animate-svg-stroke-24-sp {
  0% {
    stroke-dashoffset: 132.8337097168px;
    stroke-dasharray: 132.8337097168px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 132.8337097168px;
  }
}
@-webkit-keyframes animate-svg-stroke-25-sp {
  0% {
    stroke-dashoffset: 115.3231048584px;
    stroke-dasharray: 115.3231048584px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 115.3231048584px;
  }
}
@keyframes animate-svg-stroke-25-sp {
  0% {
    stroke-dashoffset: 115.3231048584px;
    stroke-dasharray: 115.3231048584px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 115.3231048584px;
  }
}
@-webkit-keyframes animate-svg-stroke-26-sp {
  0% {
    stroke-dashoffset: 32.3007106781px;
    stroke-dasharray: 32.3007106781px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 32.3007106781px;
  }
}
@keyframes animate-svg-stroke-26-sp {
  0% {
    stroke-dashoffset: 32.3007106781px;
    stroke-dasharray: 32.3007106781px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 32.3007106781px;
  }
}
@-webkit-keyframes animate-svg-stroke-27-sp {
  0% {
    stroke-dashoffset: 65.678276062px;
    stroke-dasharray: 65.678276062px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 65.678276062px;
  }
}
@keyframes animate-svg-stroke-27-sp {
  0% {
    stroke-dashoffset: 65.678276062px;
    stroke-dasharray: 65.678276062px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 65.678276062px;
  }
}
@-webkit-keyframes animate-svg-stroke-28-sp {
  0% {
    stroke-dashoffset: 22.4878292084px;
    stroke-dasharray: 22.4878292084px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 22.4878292084px;
  }
}
@keyframes animate-svg-stroke-28-sp {
  0% {
    stroke-dashoffset: 22.4878292084px;
    stroke-dasharray: 22.4878292084px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 22.4878292084px;
  }
}
@-webkit-keyframes animate-svg-stroke-29-sp {
  0% {
    stroke-dashoffset: 72.4372558594px;
    stroke-dasharray: 72.4372558594px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 72.4372558594px;
  }
}
@keyframes animate-svg-stroke-29-sp {
  0% {
    stroke-dashoffset: 72.4372558594px;
    stroke-dasharray: 72.4372558594px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 72.4372558594px;
  }
}
.p-news-archive {
  padding-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-news-archive {
    padding-bottom: 12.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-news-archive__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-news-archive__cateList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  row-gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-news-archive__cateList {
    width: 34.4827586207%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-column-gap: 0.9375rem;
       -moz-column-gap: 0.9375rem;
            column-gap: 0.9375rem;
    row-gap: 0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-news-archive__cateItem--base {
    margin-bottom: 1.25rem;
  }
}

.p-news-archive__cateItem .c-category {
  padding: 0.4375rem 1.46875rem;
  font-size: 0.9375rem;
  border-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .p-news-archive__cateItem .c-category {
    padding: 0.4375rem 1.4375rem;
    font-size: 0.9375rem;
  }
}

.p-news-archive__cateItem.active .c-category {
  background: #060E31;
  color: #fff;
}

.p-news-archive__body {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-news-archive__body {
    width: 65.0862068966%;
    margin-top: 0;
  }
}

.p-news-archive__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.9375rem;
  border-top: 1px solid #C3C7D4;
}
@media screen and (min-width: 768px) {
  .p-news-archive__list {
    gap: 0.625rem;
  }
}

.p-news-archive__list .p-list01__area {
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-news-archive__list .p-list01__area {
    gap: 1.125rem;
  }
}

.p-news-archive__pagination {
  margin-top: 3.1875rem;
}
@media screen and (min-width: 768px) {
  .p-news-archive__pagination {
    margin-top: 5.0625rem;
  }
}

.p-news-single {
  padding-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-news-single {
    padding-top: 0.25rem;
    padding-bottom: 9.625rem;
  }
}

.p-news-single__inner {
  padding-inline: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__inner {
    padding-inline: 1.5625rem;
  }
}

.p-news-single__wrap {
  padding: 2.1875rem 1.25rem 1rem;
  background: rgba(255, 255, 255, .4);
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__wrap {
    padding: 6.875rem 5.625rem 4.875rem;
    border-radius: 1.25rem;
  }
}

.p-news-single__top {
  padding-bottom: 1.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.375rem;
  border-bottom: 1px solid #C3C7D4;
}
@media screen and (min-width: 768px) {
  .p-news-single__top {
    padding-bottom: 1.375rem;
    gap: 2.25rem;
  }
}

.p-news-single__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__area {
    gap: 0.9375rem;
  }
}

.p-news-single__date {
  margin-top: 0.3125rem;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-news-single__date {
    font-size: 0.875rem;
  }
}

.p-news-single__cate {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.25rem 0.9375rem 0.375rem;
  font-size: 0.6875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  border: 1px solid #060E31;
  border-radius: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__cate {
    padding: 0.25rem 0.875rem 0.375rem;
    font-size: 0.75rem;
  }
}

.p-news-single__title {
  font-size: 1.375rem;
  line-height: 1.6363636364;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-news-single__title {
    font-size: 1.5rem;
    line-height: 1.6666666667;
  }
}

.p-news-single__article {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__article {
    margin-top: 2.8125rem;
  }
}

.p-news-single__btn {
  margin-top: 2.8125rem;
  padding-inline: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news-single__btn {
    margin-top: 4.375rem;
    padding-inline: 0;
  }
}

.p-notfound {
  padding-top: 3.75rem;
  padding-bottom: 6.875rem;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-notfound {
    padding-top: 7.5rem;
    padding-bottom: 12.125rem;
  }
}

.p-notfound__inner {
  padding-top: 4.25rem;
}
@media screen and (min-width: 768px) {
  .p-notfound__inner {
    padding-top: 8.125rem;
  }
}

.p-notfound__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;
  gap: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-notfound__title {
    gap: 0.625rem;
  }
}

.p-notfound__title-sub {
  font-size: 3.5rem;
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  background: -webkit-gradient(linear, left top, left bottom, from(#2B80CB), to(#71C789));
  background: linear-gradient(180deg, #2B80CB 0%, #71C789 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (min-width: 768px) {
  .p-notfound__title-sub {
    margin-left: -0.1875rem;
    font-size: 5rem;
    letter-spacing: 0.05em;
  }
}

.p-notfound__title-main {
  font-size: 1.3125rem;
  line-height: 1.619047619;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-notfound__title-main {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
}

.p-notfound__read {
  margin-top: 2.125rem;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-notfound__read {
    font-size: 1rem;
  }
}

.p-notfound__btn {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-notfound__btn {
    margin-top: 3.375rem;
  }
}

.p-organization {
  padding-top: 4.5rem;
  padding-bottom: 6.875rem;
}
@media screen and (min-width: 768px) {
  .p-organization {
    padding-top: 9.6875rem;
    padding-bottom: 12.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-organization__inner {
    width: 74.3055555556%;
  }
}

.p-organization__wrap {
  margin-top: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .p-organization__wrap {
    margin-top: 3.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-organization__img {
    max-width: 66.5rem;
    margin-inline: auto;
  }
}

.p-organization__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 305/771;
}
@media screen and (min-width: 768px) {
  .p-organization__img img {
    aspect-ratio: 1020/1150;
  }
}

.p-others {
  padding-bottom: 6.875rem;
}
@media screen and (min-width: 768px) {
  .p-others {
    padding-top: 0.3125rem;
    padding-bottom: 15rem;
  }
}

@media screen and (min-width: 768px) {
  .p-others__inner {
    width: 74.3055555556%;
  }
}

.p-others__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-others__list {
    gap: 1.0625rem;
  }
}

.p-others__item {
  position: relative;
  padding-left: 0.875rem;
}

.p-others__item::before {
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  background: #060E31;
  border-radius: 50%;
  position: absolute;
  top: 0.625rem;
  left: 0;
}

.p-page-top {
  width: 2.1875rem;
  height: 6.5625rem;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .p-page-top {
    width: 2.5rem;
    height: 7.5rem;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
.p-page-top.is-active {
  opacity: 1;
  visibility: visible;
}

.p-page-top__link {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: 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;
  background: #fff;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (min-width: 768px) {
  .p-page-top__link:hover {
    opacity: 1;
  }
}

.p-page-top__link::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background: transparent url(../images/common/arrow_outward.png) no-repeat center center/100%;
  position: absolute;
  top: 0.8125rem;
  left: 51%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .p-page-top__link::after {
    width: 0.8125rem;
    height: 0.8125rem;
    top: 1.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-page-top__link:hover::after {
    -webkit-animation: moveArrow-outward 0.3s forwards;
            animation: moveArrow-outward 0.3s forwards;
  }
}

.p-page-top__text {
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  white-space: nowrap;
  position: absolute;
  top: 56%;
  left: -39%;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-page-top__text {
    font-size: 0.875rem;
    top: 54%;
    left: -25%;
  }
}

.p-pagination .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  row-gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-pagination .wp-pagenavi {
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
  }
}

.p-pagination .wp-pagenavi span,
.p-pagination .wp-pagenavi a {
  width: 0.9375rem;
  height: 1.3125rem;
  padding: 0;
  margin: 0;
  padding-bottom: 0.625rem;
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #C3C7D4;
}
@media screen and (min-width: 768px) {
  .p-pagination .wp-pagenavi span,
  .p-pagination .wp-pagenavi a {
    width: 0.9375rem;
  }
}

.p-pagination .current,
.p-pagination .page {
  background: #fff;
  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.0625rem;
  line-height: 3;
  letter-spacing: 0.05em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-pagination .current,
  .p-pagination .page {
    font-size: 1.0625rem;
  }
}

.p-pagination .page:hover {
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  .p-pagination .page::after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    margin: auto;
    background-color: #060E31;
    position: absolute;
    bottom: 0;
    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 (min-width: 768px) {
  .p-pagination .page:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    opacity: 1;
  }
}

.p-pagination .current {
  border-bottom-color: #060E31;
}

.p-pagination .wp-pagenavi span.current {
  font-weight: 400;
}

.p-pagination .page {
  color: #060E31;
}

.p-pagination .wp-pagenavi .previouspostslink,
.p-pagination .wp-pagenavi .nextpostslink {
  width: auto;
  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.0625rem;
  line-height: 3;
  letter-spacing: 0.05em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-pagination .wp-pagenavi .previouspostslink,
  .p-pagination .wp-pagenavi .nextpostslink {
    font-size: 1.0625rem;
  }
}

.p-pagination .wp-pagenavi .previouspostslink:hover,
.p-pagination .wp-pagenavi .nextpostslink:hover {
  border-bottom: none;
}

.p-pagination .wp-pagenavi .previouspostslink {
  margin-right: 0.3125rem;
}

.p-pagination .wp-pagenavi .nextpostslink {
  margin-left: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .p-pagination .wp-pagenavi .previouspostslink::after,
  .p-pagination .wp-pagenavi .nextpostslink::after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    margin: auto;
    background-color: #060E31;
    position: absolute;
    bottom: 0;
    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 (min-width: 768px) {
  .p-pagination .wp-pagenavi .previouspostslink:hover::after,
  .p-pagination .wp-pagenavi .nextpostslink:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    opacity: 1;
  }
}

.p-privacy {
  padding-bottom: 6.625rem;
}
@media screen and (min-width: 768px) {
  .p-privacy {
    padding-top: 2.5rem;
    padding-bottom: 15rem;
  }
}

@media screen and (min-width: 768px) {
  .p-privacy__inner {
    width: 74.3055555556%;
  }
}

.p-privacy__read {
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-privacy__read {
    font-size: 1rem;
  }
}

.p-privacy__wrap {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 3.5625rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__wrap {
    width: 94.1176470588%;
    margin-right: auto;
    margin-top: 4.4375rem;
    row-gap: 4.375rem;
  }
}

.p-privacy__title {
  padding-bottom: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #C3C7D4;
}
@media screen and (min-width: 768px) {
  .p-privacy__title {
    padding-bottom: 0.9375rem;
  }
}

.p-privacy__title-number {
  margin-top: 0.25rem;
  width: 1.4375rem;
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-privacy__title-number {
    margin-top: 0.375rem;
    width: 1.625rem;
    font-size: 1.625rem;
  }
}

.p-privacy__title-main {
  width: calc(100% - 1.4375rem);
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-privacy__title-main {
    width: calc(100% - 1.9375rem);
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
}

.p-privacy__bottom {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__bottom {
    margin-top: 1.4375rem;
  }
}

.p-privacy__text {
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-privacy__text {
    font-size: 1rem;
    line-height: 1.8125;
  }
}

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

.p-privacy__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-privacy__item-number {
  margin-top: 0.25rem;
  width: 1.6875rem;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-privacy__item-number {
    margin-top: 0.375rem;
    width: 2rem;
    font-size: 1.125rem;
  }
}

.p-privacy__item-text {
  width: calc(100% - 1.6875rem);
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-privacy__item-text {
    width: calc(100% - 2rem);
    font-size: 1rem;
    line-height: 1.8125;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-main__inner {
    width: 74.3055555556%;
  }
}

.p-recruit-main__read {
  font-size: 1.6875rem;
  line-height: 1.5925925926;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-recruit-main__read {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.p-recruit-main__text {
  margin-top: 1.125rem;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-recruit-main__text {
    margin-top: 2.1875rem;
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit__inner {
    width: 74.3055555556%;
  }
}

.p-recruit__list {
  margin-top: 1.9375rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 2.6875rem;
}
@media screen and (min-width: 768px) {
  .p-recruit__list {
    margin-top: 3.0625rem;
    row-gap: 3.25rem;
  }
}

.p-recruit__item-wrap {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit__item-wrap {
    margin-top: 0.9375rem;
  }
}

.p-recruit__item-link {
  display: inline;
  padding-bottom: 0.125rem;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#060E31), to(#060E31)) 100% 100%/0 1px no-repeat;
  background: linear-gradient(#060E31, #060E31) 100% 100%/0 1px no-repeat;
  background-size: 100% 1px;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
}
@media screen and (min-width: 768px) {
  .p-recruit__item-link {
    margin-right: 1.0625rem;
    padding-bottom: 0.125rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit__item-link:hover {
    background-size: 0 1px;
  }
}

.p-recruit__item-link::after {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-image: url(../images/common/icon_blank.svg);
          mask-image: url(../images/common/icon_blank.svg);
  background: #060E31;
  position: absolute;
  bottom: 0.5rem;
  right: -1.0625rem;
}

.p-recruit__item-text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-recruit__item-text {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-related {
  padding-bottom: 6.875rem;
}
@media screen and (min-width: 768px) {
  .p-related {
    padding-bottom: 15rem;
  }
}

.p-related__wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-related__wrap {
    row-gap: 12.5rem;
  }
}

.p-related__list {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .p-related__list {
    margin-top: 3.625rem;
    row-gap: 7.5rem;
  }
}

.p-related__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.875rem;
}
@media screen and (min-width: 768px) {
  .p-related__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-related__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .p-related__head {
    width: 50%;
  }
}

.p-related__test-slider {
  cursor: pointer;
}

.p-related__img-slider .splide__pagination,
.p-related__test-slider .splide__pagination {
  gap: 0.3125rem;
  bottom: -1.125rem;
}
@media screen and (min-width: 768px) {
  .p-related__img-slider .splide__pagination,
  .p-related__test-slider .splide__pagination {
    gap: 0.5rem;
    bottom: -1.5rem;
  }
}

.p-related__img-slider .splide__pagination .splide__pagination__page,
.p-related__test-slider .splide__pagination .splide__pagination__page {
  margin: 0;
  width: 1.25rem;
  height: 0.125rem;
  background: #C3C7D4;
  border-radius: 0.625rem !important;
}
@media screen and (min-width: 768px) {
  .p-related__img-slider .splide__pagination .splide__pagination__page,
  .p-related__test-slider .splide__pagination .splide__pagination__page {
    width: 1.875rem;
  }
}

.p-related__img-slider .splide__pagination .splide__pagination__page.is-active,
.p-related__test-slider .splide__pagination .splide__pagination__page.is-active {
  -webkit-transform: scale(1);
          transform: scale(1);
  background: #11193A;
}

.p-related__img {
  border-radius: 0.625rem;
  overflow: hidden;
  position: relative;
}

.p-related__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 370/230;
}
@media screen and (min-width: 768px) {
  .p-related__img img {
    aspect-ratio: 720/450;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}

@media screen and (min-width: 768px) {
  .p-related__body {
    width: 43.9655172414%;
  }
}

.p-related__name {
  font-size: 1.375rem;
  line-height: 1.5909090909;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-related__name {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
}

.p-related__text {
  margin-top: 0.8125rem;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-related__text {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.875;
  }
}

.p-related__area {
  margin-top: 1.125rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-related__area {
    margin-top: 1.375rem;
    row-gap: 0.75rem;
  }
}

.p-related__access {
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-related__access {
    font-size: 0.875rem;
    line-height: 1.6428571429;
  }
}

.p-related__btn {
  display: block;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-related__btn {
    margin-top: 2rem;
  }
}

.p-related__btn .c-btn03 {
  width: 100%;
  min-width: 9.625rem;
  padding: 0.75rem 2.125rem 0.9375rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-related__btn .c-btn03 {
    width: auto;
    min-width: 11.25rem;
    padding: 0.8125rem 2.5rem 0.8125rem 1.875rem;
    font-size: max(10px, 1rem);
  }
}

.p-sub-mv {
  padding-top: 0.375rem;
  padding-bottom: 4.6875rem;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-sub-mv {
    padding-top: 1.25rem;
    padding-bottom: 10rem;
  }
}

.p-sub-mv--single {
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-mv--single {
    padding-bottom: 5.375rem;
  }
}

.p-sub-mv__inner {
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__inner {
    padding-top: 4.375rem;
  }
}

.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;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__title {
    gap: 0.25rem;
  }
}

.p-sub-mv__title-sub {
  margin-left: -0.1875rem;
  font-size: 3rem;
  display: inline-block;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  background: -webkit-gradient(linear, left top, left bottom, from(#2B80CB), to(#71C789));
  background: linear-gradient(180deg, #2B80CB 0%, #71C789 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__title-sub {
    font-size: 5rem;
    letter-spacing: 0.05em;
  }
}

.p-sub-mv__title-main {
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__title-main {
    font-size: 1.125rem;
  }
}

.p-thanks {
  padding-top: 3.75rem;
  padding-bottom: 6.875rem;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-thanks {
    padding-top: 7.5rem;
    padding-bottom: 12.125rem;
  }
}

.p-thanks__inner {
  padding-top: 4.25rem;
}
@media screen and (min-width: 768px) {
  .p-thanks__inner {
    padding-top: 8.125rem;
  }
}

.p-thanks__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;
  gap: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-thanks__title {
    gap: 0.625rem;
  }
}

.p-thanks__title-sub {
  font-size: 3.5rem;
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  background: -webkit-gradient(linear, left top, left bottom, from(#2B80CB), to(#71C789));
  background: linear-gradient(180deg, #2B80CB 0%, #71C789 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (min-width: 768px) {
  .p-thanks__title-sub {
    margin-left: -0.1875rem;
    font-size: 5rem;
    letter-spacing: 0.05em;
  }
}

.p-thanks__title-main {
  font-size: 1.3125rem;
  line-height: 1.619047619;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-thanks__title-main {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
}

.p-thanks__read {
  margin-top: 2.125rem;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-thanks__read {
    margin-top: 1.875rem;
    font-size: 1rem;
  }
}

.p-thanks__btn {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-thanks__btn {
    margin-top: 3.375rem;
  }
}

.p-top-about {
  padding-top: 4.6875rem;
  padding-bottom: 4.6875rem;
  background: #F3F4F9;
}
@media screen and (min-width: 768px) {
  .p-top-about {
    padding-top: 12.5rem;
    padding-bottom: 12.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-about__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-top-about__title {
    width: 30.1724137931%;
  }
}

.p-top-about__body {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__body {
    width: 65.0862068966%;
    margin-top: 3.125rem;
  }
}

.p-top-about__read {
  font-size: 1.3125rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-top-about__read {
    font-size: 2.5rem;
    line-height: 1.4;
    font-weight: 700;
  }
}

.p-top-about__text {
  margin-top: 1.3125rem;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-top-about__text {
    margin-top: 1.9375rem;
    font-size: 1rem;
    line-height: 2;
  }
}

.p-top-about__btnWrap {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__btnWrap {
    margin-top: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-top-donation {
  padding-top: 4.125rem;
  padding-bottom: 5rem;
  background: transparent url(../images/top/bg_donation_sp.png) no-repeat center center/cover;
  position: relative;
  overflow: clip;
}
@media screen and (min-width: 768px) {
  .p-top-donation {
    padding-top: 8.75rem;
    padding-bottom: 15rem;
    background: transparent url(../images/top/bg_donation.png) no-repeat center center/cover;
  }
}

.p-top-donation::after {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent url(../images/top/txt_support_sp.png) repeat-x center 98%;
  -webkit-animation: bgloop-sp 70s linear infinite;
          animation: bgloop-sp 70s linear infinite;
  background-size: 72.1875rem 7.5rem;
  position: absolute;
  bottom: -2.5rem;
  left: 0;
  opacity: 0.3;
}
@media screen and (min-width: 768px) {
  .p-top-donation::after {
    background: transparent url(../images/top/txt_support.png) repeat-x center 98%;
    background-size: 217.5rem 15rem;
    bottom: -4.125rem;
    -webkit-animation: bgloop 60s linear infinite;
            animation: bgloop 60s linear infinite;
  }
}

@-webkit-keyframes bgloop {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -142.0625rem;
  }
}

@keyframes bgloop {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -142.0625rem;
  }
}
@-webkit-keyframes bgloop-sp {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -142.0625rem;
  }
}
@keyframes bgloop-sp {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -142.0625rem;
  }
}
.p-top-donation__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.625rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top-donation__inner {
    -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;
    row-gap: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1290px) {
  .p-top-donation__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-donation__title {
    width: 25.8620689655%;
  }
}

@media screen and (min-width: 768px) {
  .p-top-donation__body {
    width: 65.0862068966%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1290px) {
  .p-top-donation__body {
    width: 100%;
  }
}

.p-top-donation__read {
  font-size: 1.3125rem;
  line-height: 1.8095238095;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-top-donation__read {
    font-size: 2.5rem;
    line-height: 1.5;
  }
}

.p-top-donation__text {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-top-donation__text {
    margin-top: 2.125rem;
    font-size: 1rem;
    line-height: 2;
  }
}

.p-top-donation__btn {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-donation__btn {
    margin-top: 2.5rem;
  }
}

.p-top-news {
  padding-top: 4.375rem;
  padding-bottom: 6.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-news {
    padding-top: 10rem;
    padding-bottom: 12.5625rem;
  }
}

.p-top-news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-top-news__inner {
    -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;
  }
}

.p-top-news_head {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-top-news_head {
    display: block;
    width: 25.8620689655%;
  }
}

.p-top-news__title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.p-top-news__btn {
  margin-top: 2.5rem;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (min-width: 768px) {
  .p-top-news__btn {
    margin-top: 2.75rem;
  }
}

.p-top-news__body {
  margin-top: 1.875rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 768px) {
  .p-top-news__body {
    margin-top: 0;
    width: 65.0862068966%;
  }
}

.p-top-news__list {
  border-top: 1px solid #C3C7D4;
}

.p-top-school {
  padding-top: 4.6875rem;
  padding-bottom: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .p-top-school {
    padding-top: 10rem;
    padding-bottom: 15rem;
  }
}

.p-top-school__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-top-school__head {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-top-school__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.p-top-school__title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.p-top-school__btn {
  margin-top: 2.1875rem;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (min-width: 768px) {
  .p-top-school__btn {
    margin-top: 0;
    margin-bottom: 0.3125rem;
  }
}

.p-top-school__body {
  margin-top: 1.875rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 768px) {
  .p-top-school__body {
    margin-top: 3.375rem;
  }
}

.p-top-school__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-top-school__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5625rem;
  }
}

.p-top-school__item {
  position: relative;
}

.p-top-school__item-img {
  display: block;
  border-radius: 0.625rem;
  overflow: hidden;
}

.p-top-school__item-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 305/192;
}
@media screen and (min-width: 768px) {
  .p-top-school__item-img img {
    aspect-ratio: 370/230;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}

@media screen and (min-width: 768px) {
  .p-top-school__item-img:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.p-top-school__item-btn {
  position: absolute;
  bottom: 0.3125rem;
  right: 0.3125rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top-school__item-btn {
    bottom: 0.625rem;
    right: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-school__item-img:hover .c-btn03::after {
    -webkit-animation: moveArrow 0.3s forwards;
            animation: moveArrow 0.3s forwards;
  }
}

.u-outfit-font {
  display: inline-block;
  font-family: "Outfit", sans-serif;
}

.u-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-pc {
    display: block;
  }
}

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