@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body.misora-lp {
  scroll-behavior: smooth;
  font-family: 'Noto Sans JP', sans-serif, 'Shippori Mincho', serif;
  color: #011a43;
  font-size: clamp(14px, 2.0833333333vw, 16px);
  font-feature-settings: 'palt';
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: justify;
}

.misora-lp * {
  box-sizing: border-box;
}

.misora-lp__header {
  display: block !important;
}

.misora-lp p {
  margin: 0;
}

.misora-lp h1,
.misora-lp h2,
.misora-lp h3,
.misora-lp h4,
.misora-lp h5,
.misora-lp h6 {
  margin: 0;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.misora-lp ul,
.misora-lp ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.misora-lp ul li,
.misora-lp ol li {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  transition: ease 0.3s;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

*,
::after,
::before {
  box-sizing: border-box;
}

/* utility */
.sp-on {
  display: none;
}

@media screen and (max-width: 480px) {
  .sp-on {
    display: block;
  }
}

.u-bg-blue {
  background: linear-gradient(90deg, #001a43 0%, #043d6f 26%, #004785 47%, #043d6f 72%, #001a43 100%);
}

.u-bg-light-blue {
  background-color: #eff5f8;
}

/* component */
.c-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.c-logo {
  max-width: 100px;
  width: fit-content;
}

.c-logo a {
  display: block;
}

.c-fuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, -7px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.c-scroll {
  overflow: scroll;
  padding: 10px 4px;
}

.c-title {
  width: fit-content;
}

.c-button a {
  position: relative;
  background: linear-gradient(90deg, #ebc464 0%, #fff8aa 33%, #f8da6e 66%, #e6bf5d 100%);
  padding: 14px 10px;
  border-radius: 2px;
  text-align: center;
  display: inline-block;
  transition: ease 0.3s;
  font-weight: 500;
  display: block;
}

.c-button a::before {
  content: '';
  display: block;
  width: calc(100% - 12px);
  height: calc(100% - 8px);
  background: linear-gradient(90deg, #10346e 0%, #728eb6 50%, #0d2e62 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-button a::after {
  content: '';
  display: block;
  width: calc(100% - 13px);
  height: calc(100% - 9px);
  background: linear-gradient(90deg, #ebc464 0%, #fff8aa 33%, #f8da6e 66%, #e6bf5d 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-button a span {
  position: relative;
  z-index: 2;
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, #014581 0%, #002c54 50%, #0055a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* layout */
.l-footer {
  position: relative;
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.l-footer a {
  text-decoration: underline;
}

.l-footer small {
  display: inline-block;
  width: 100%;
  margin-top: 40px;
  text-align: center;
  color: #fff;
}

.l-header {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
}

.l-header__logo {
  padding-top: 4px;
  padding-left: 6px;
  width: 100%;
  max-width: 177px;
  height: 51px;
  background-color: #fafaef;
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}

.l-header__logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 150px;
}

.l-header__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.l-center {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.l-left,
.l-right {
  position: fixed;
  z-index: 8888;
  width: calc((100% - 480px) / 2);
  margin: 0;
}

@media screen and (max-width: 1144px) {

  .l-left,
  .l-right {
    display: none;
  }
}

.l-left {
  top: 0;
  left: 0;
}

.l-right {
  top: 0;
  right: 0;
}

.l-main {
  overflow-x: hidden;
  position: relative;
}

.l-container {
  width: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.l-container::before {
  content: '';
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url(../images/img-back.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.l-wrap {
  padding: clamp(2.5rem, 1.607rem + 3.81vw, 2.75rem) 24px;
  width: 100%;
  margin: 0 auto;
}

/* common */
#topBtn {
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 9999;
  border-radius: 100%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  width: clamp(3.125rem, 1.25rem + 8vw, 3.75rem);
}

/* p-fv */
.misora-lp .p-fv {
  position: relative;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 64px;
  background-image: url(../images/img-fv.webp);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: #fff;
}

.misora-lp .p-fv__inner {
  max-width: 375px;
  width: 100%;
  margin: 0 auto;
}

.misora-lp .p-fv__title {
  width: 100%;
  margin: 0 auto;
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.5rem, 1.607rem + 3.81vw, 2.75rem);
  line-height: 1.5;
  letter-spacing: initial;
  color: #fff;
}

.misora-lp .p-fv__title span {
  font-size: clamp(3rem, 1.661rem + 5.71vw, 3.375rem);
  background-image: linear-gradient(90deg, #fae6ae 0, #c68d26 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.misora-lp .p-fv__catch {
  width: 100%;
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.563rem, 0.893rem + 2.86vw, 1.75rem);
  line-height: 1.4;
  margin: clamp(1rem, 0.554rem + 1.9vw, 1.125rem) auto clamp(2rem, 1.107rem + 3.81vw, 2.25rem);
}

.misora-lp .p-fv__catch span {
  display: block;
  background-image: linear-gradient(90deg, #fae6ae 0, #c68d26 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.misora-lp .p-fv__text {
  width: 100%;
  margin: 0 auto 2rem;
  font-size: 16px;
}

.misora-lp .p-fv__text p:first-child {
  margin-bottom: 0.5rem;
}

.misora-lp .p-fv__button {
  margin-top: 2rem;
}

/* p-intro */
.misora-lp .p-intro {
  width: 100%;
}

.misora-lp .p-intro__cause {
  width: 100%;
  text-align: center;
}

.misora-lp .p-intro__cause-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-weight: 600;
}

.misora-lp .p-intro__cause-title {
  position: relative;
  margin-top: 54px;
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  font-weight: 600;
}

.misora-lp .p-intro__cause-title::before {
  content: '';
  display: block;
  width: 1px;
  height: 30px;
  background-color: #000;
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
}

.misora-lp .p-intro__cause-title span {
  font-size: 24px;
  font-weight: 700;
  background-image: linear-gradient(90deg, #1870ff 0, #002454 76%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.misora-lp .p-intro__list {
  width: 100%;
  margin-top: 32px;
  display: grid;
  gap: 24px;
}

.misora-lp .p-intro__list-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  list-style: none;
  background-color: #fff;
  padding: 24px 20px;
  border-radius: 5px;
}

.misora-lp .p-intro__list-icon {
  width: 100px;
}

.misora-lp .p-intro__list-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.misora-lp .p-intro__list-title {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 600;
}

.misora-lp .p-intro__list-text {
  margin-top: 8px;
  font-size: 16px;

  text-align: center;
  color: #222;
}

.misora-lp .p-intro__button {
  margin-top: 32px;
}

/* p-sec01 */
.misora-lp .p-sec01 {
  width: 100%;
}

.misora-lp .p-sec01__title {
  display: grid;
  gap: 8px;
}

.misora-lp .p-sec01__title .p-sec01__title-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  font-weight: 600;

  color: #fff;
  text-align: center;
}

.misora-lp .p-sec01__title .p-sec01__title-text .linear-gradient {
  background-image: linear-gradient(90deg, #eacc87 0, #c6922f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.misora-lp .p-sec01__list {
  width: 100%;
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.misora-lp .p-sec01__list-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  list-style: none;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 24px 18px;
  border-radius: 2px;
  border: 1px solid #fff;
}

.misora-lp .p-sec01__list-icon {
  width: 106px;
}

.misora-lp .p-sec01__list-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.misora-lp .p-sec01__list-title {
  margin-top: 16px;
  font-size: 24px;

  color: #fff;
}

.misora-lp .p-sec01__list-text {
  margin-top: 8px;
  font-size: 16px;

  color: #fff;
  text-align: center;
}

.misora-lp .p-sec01__flow {
  width: 100%;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 24px;
}

.misora-lp .p-sec01__flow-img {
  width: 100%;
}

.misora-lp .p-sec01__flow-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.misora-lp .p-sec01__flow-items {
  width: 100%;
}

.misora-lp .p-sec01__flow-item {
  width: 100%;
  border-bottom: 1px solid #fff;
}

.misora-lp .p-sec01__flow-item:not(:last-child) {
  padding-bottom: 24px;
}

.misora-lp .p-sec01__flow-item:not(:first-child) {
  padding-top: 24px;
}

.misora-lp .p-sec01__flow-item:last-child {
  border-bottom: none;
}

.misora-lp .p-sec01__flow-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  font-weight: 600;

  color: #fff;
}

.misora-lp .p-sec01__flow-text {
  margin-top: 8px;
  font-size: 16px;

  color: #fff;
}

/* p-sec02 */
.misora-lp .p-sec02 {
  width: 100%;
}

.misora-lp .p-sec02__title {
  width: 100%;
  text-align: center;
}

.misora-lp .p-sec02__title-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 17px;
  font-weight: 600;
}

.misora-lp .p-sec02__title-text .text-l {
  font-size: 20px;
  font-weight: 600;
}

.misora-lp .p-sec02__title-text .text-blue {
  color: #0055a0;
}

.misora-lp .p-sec02__items {
  width: 100%;
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.misora-lp .p-sec02__item {
  width: 100%;
}

.misora-lp .p-sec02__item-img {
  width: 100%;
}

.misora-lp .p-sec02__item-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.misora-lp .p-sec02__item-title {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 500;

  color: #024079;
  text-align: center;
}

.misora-lp .p-sec02__item-text {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #aabac8;
  font-size: 16px;

  color: #222;
  text-align: center;
}

.misora-lp .p-sec02__arrow {
  width: 26px;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}

.misora-lp .p-sec02__arrow img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.misora-lp .p-sec02__message-wrap {
  position: relative;
  width: 100%;
  margin-top: 16px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  align-self: 330 / 135;
  background: linear-gradient(180deg, #6e8bc6 0%, #014581 100%);
  border-radius: 5px;
}

.misora-lp .p-sec02__message-wrap::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 10px;
  left: 10px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}

.misora-lp .p-sec02__message-wrap::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.misora-lp .p-sec02__message {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  font-weight: 600;

  color: #fff;
  text-align: center;
}

/* p-profile */
.misora-lp .p-profile {
  width: 100%;
}

.misora-lp .p-profile__title {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  background: linear-gradient(90deg, #6e8bc6 0%, #0055a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.misora-lp .p-profile__name-wrap {
  width: 100%;
  margin-top: 8px;
  font-family: 'Shippori Mincho', serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.misora-lp .p-profile__name-position {
  font-size: 16px;
  font-weight: 600;
}

.misora-lp .p-profile__name-text {
  font-size: 20px;
  font-weight: 600;
}

.misora-lp .p-profile__img {
  width: 100%;
  max-width: 260px;
  margin-top: 28px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  overflow: hidden;
}

.misora-lp .p-profile__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.misora-lp .p-profile__content {
  width: 100%;
  margin-top: 24px;
  padding: 32px 24px;
  background-color: #fff;
  border-radius: 5px;
}

.misora-lp .p-profile__content-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.misora-lp .p-profile__content-title p {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  color: #024079;
}

.misora-lp .p-profile__content-title p .text-orange {
  color: #f0ab00;
}

.misora-lp .p-profile__content-text {
  width: 100%;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 400;
  color: #222;
  display: grid;
  gap: 8px;
}

.misora-lp .p-profile__message-wrap {
  position: relative;
  width: 100%;
  margin-top: 24px;
  padding: 28px;
  background: linear-gradient(175deg, #eff5f8 0%, #bfe0f1 100%);
  border-radius: 5px;
}

.misora-lp .p-profile__message-wrap::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 10px;
  left: 10px;
  border-top: 1px solid #0367c0;
  border-left: 1px solid #0367c0;
}

.misora-lp .p-profile__message-wrap::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  border-right: 1px solid #0367c0;
  border-bottom: 1px solid #0367c0;
}

.misora-lp .p-profile__message {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(180deg, #036ac4 0%, #024079 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.misora-lp .p-profile__info {
  width: 100%;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #aabac8;
}

.misora-lp .p-profile__info-name {
  display: flex;
  align-items: center;
  gap: 16px;
}

.misora-lp .p-profile__info-name .name {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(90deg, #004b8d 0%, #0062b9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.misora-lp .p-profile__info-name .sns {
  display: block;
  width: 22px;
  height: 22px;
}

.misora-lp .p-profile__info-text {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #4f5a63;
}

.misora-lp .p-profile__button {
  margin-top: 24px;
}

/* p-seminar */
.misora-lp .p-seminar {
  width: 100%;
}

.misora-lp .p-seminar__title {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.misora-lp .p-seminar__title .linear-gradient {
  background-image: linear-gradient(90deg, #eacc87 0, #c6922f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.misora-lp .p-seminar__content {
  width: 100%;
  margin-top: 24px;
}

.misora-lp .p-seminar__content-title {
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #fff;
}

.misora-lp .p-seminar__list-wrap {
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.misora-lp .p-seminar__list {
  display: grid;
  gap: 8px;
  list-style: none;
}

.misora-lp .p-seminar__item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #fff;
}

.misora-lp .p-seminar__item::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('../../misora_assets/images/icon-check.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 6px;
}

.misora-lp .p-seminar__img {
  width: 100%;
  margin-top: 24px;
  border-radius: 5px;
  overflow: hidden;
}

.misora-lp .p-seminar__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.misora-lp .p-seminar__text {
  width: 100%;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

.misora-lp .p-seminar__button {
  margin-top: 24px;
}

/* p-story */
.misora-lp .p-story {
  width: 100%;
}

.misora-lp .p-story__title {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  font-weight: 600;
  color: #011a43;
  text-align: center;
}

.misora-lp .p-story__items {
  width: 100%;
  margin-top: 24px;
  display: grid;
  gap: 32px;
}

.misora-lp .p-story__item {
  position: relative;
  padding-top: 18px;
}

.p-story__item-title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #024079;
  padding: 6px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  width: 198px;
}

.misora-lp .p-story__item-wrap {
  width: 100%;
  background-color: #eff5f8;
  border-radius: 5px;
  padding: 40px 10px 32px;
}

.misora-lp .p-story__item-heading {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(90deg, #0055a0 0, #024079 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.misora-lp .p-story__item-flow {
  width: 100%;
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.misora-lp .p-story__item-flow-wrap {
  width: 100%;
  padding: 16px;
  background-color: #fff;
  border-radius: 5px;
}

.misora-lp .p-story__item-content-label {
  font-family: 'PT Serif', serif;
  font-size: 14px;
}

.misora-lp .p-story__item-content-label.before {
  color: #024079;
}

.misora-lp .p-story__item-content-label.after {
  color: #c6a84a;
}

.misora-lp .p-story__item-content-text {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 400;
  color: #222;
}

.misora-lp .p-story__item-flow-arrow {
  width: 26px;
  margin-left: auto;
  margin-right: auto;
}

.misora-lp .p-story__item-flow-arrow img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.misora-lp .p-story__item-result {
  width: 100%;
  margin-top: 24px;
  padding: 24px;
  border-top: 1px solid #aabac8;
}

.misora-lp .p-story__item-result-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.misora-lp .p-story__item-result-name {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #39708c;
  text-align: right;
}

/* p-difference */
.misora-lp .p-difference {
  width: 100%;
  padding: clamp(2.5rem, 1.607rem + 3.81vw, 2.75rem) 10px;
}

.misora-lp .p-difference__title {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  font-weight: 600;
  color: #011a43;
  text-align: center;
}

.misora-lp .p-difference__table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
}

.misora-lp .p-difference__table th,
.misora-lp .p-difference__table td {
  vertical-align: middle;
  padding: 10px 5px;
}

.misora-lp .p-difference__table th .inner,
.misora-lp .p-difference__table td .inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.misora-lp .p-difference__table th {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  background-color: #024079;
  text-align: left;
}

.misora-lp .p-difference__table th.th-title1 {
  width: 16%;
}

.misora-lp .p-difference__table th.th-title2 {
  width: 25%;
}

.misora-lp .p-difference__table th.th-title3 {
  width: 25%;
}

.misora-lp .p-difference__table th.th-title4 {
  width: 34%;
}

.misora-lp .p-difference__table th.bg-orange {
  background-color: #f0ab00;
}

.misora-lp .p-difference__table td {
  font-size: 12px;
  font-weight: 400;
  color: #1d1d1d;
  text-align: left;
  background-color: #fcfcfc;
}

.misora-lp .p-difference__table td.bg-light-blue {
  background-color: #f9fdff;
  text-align: center;
}

.misora-lp .p-difference__table td.bg-light-orange {
  background-color: #fffefa;
}

/* p-question */
.misora-lp .p-question {
  width: 100%;
}

.misora-lp .p-question__title {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  font-weight: 600;
  color: #011a43;
  text-align: center;
}

.misora-lp .p-question__items {
  width: 100%;
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.misora-lp .p-question__item {
  width: 100%;
  background-color: #fff;
  padding: 24px 16px;
  border-radius: 5px;
}

.misora-lp .p-question__item-title {
  display: flex;
  gap: 12px;
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  font-weight: 600;
  color: #024079;
  padding-bottom: 16px;
  border-bottom: 1px solid #aabac8;
}

.misora-lp .p-question__item-title span {
  font-family: 'PT Serif', serif;
}

.misora-lp .p-question__item-text {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  color: #222;
  line-height: 1.7;
}

/* p-summary */
.misora-lp .p-summary {
  width: 100%;
}

.misora-lp .p-summary__title {
  font-family: 'Shippori Mincho', serif;
  font-size: 23px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.misora-lp .p-summary__title span.linear-gradient {
  background: linear-gradient(90deg, #eacc87 0%, #c6922f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.misora-lp .p-summary__img {
  width: 100%;
  margin-top: 24px;
  border-radius: 5px;
  overflow: hidden;
}

.misora-lp .p-summary__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.misora-lp .p-summary__text {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

/* p-contact */
.misora-lp .p-contact {
  width: 100%;
}

.misora-lp .p-contact__title {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  font-weight: 600;
  color: #011a43;
  text-align: center;
}

.misora-lp .p-contact__text {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #011a43;
  text-align: center;
}

.misora-lp .p-contact__form {
  width: 100%;
  margin-top: 24px;
}

.misora-lp .p-contact__form .p-form__items {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
}

.misora-lp .p-contact__form .p-form__item {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
}

.misora-lp .p-contact__form .p-form__label p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #222;
}

.misora-lp .p-contact__form .p-form__badge {
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #fff;
  background-color: #024079;
  padding: 0 16px;
  border-radius: 2px;
}

.misora-lp .p-contact__form .p-form__input {
  margin-bottom: 0;
}

.misora-lp .p-contact__form .p-form__input .wpcf7-form-control-wrap {
  margin: 0 !important;
}

.misora-lp .p-contact__form .p-form__input input[type='text'],
.misora-lp .p-contact__form .p-form__input input[type='email'] {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: none;
}

.misora-lp .p-contact__form .p-form__input input[type='text']::placeholder,
.misora-lp .p-contact__form .p-form__input input[type='email']::placeholder {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #ccc;
}

.misora-lp .p-contact__form .p-form__policy {
  margin-top: 24px;
}

.misora-lp .p-contact__form .p-form__policy .wpcf7-form-control-wrap,
.misora-lp .p-contact__form .p-form__policy .wpcf7-list-item {
  margin: 0;
}

.misora-lp .p-contact__form .p-form__policy .wpcf7-list-item {
  display: block;
}

.misora-lp .p-contact__form .p-form__policy label {
  display: flex !important;
  gap: 8px;
  width: 100%;
  justify-content: center;
}

.misora-lp .p-contact__form .p-form__policy .wpcf7-list-item-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #222;
}

.misora-lp .p-contact__form .p-form__policy .wpcf7-list-item-label a {
  color: #024079;
  text-decoration: underline;
}

.misora-lp .p-contact__form .p-form__btn.c-button {
  margin-top: 24px;
}

.misora-lp .p-contact__form .p-form__btn.c-button p {
  position: relative;
  background: linear-gradient(90deg, #ebc464 0%, #fff8aa 33%, #f8da6e 66%, #e6bf5d 100%);
  /* padding: 14px 10px; */
  border-radius: 2px;
  text-align: center;
  display: inline-block;
  transition: ease 0.3s;
  font-weight: 500;
  display: block;
}

.misora-lp .p-contact__form .p-form__btn.c-button p::before {
  content: '';
  display: block;
  width: calc(100% - 12px);
  height: calc(100% - 8px);
  background: linear-gradient(90deg, #10346e 0%, #728eb6 50%, #0d2e62 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.misora-lp .p-contact__form .p-form__btn.c-button p::after {
  content: '';
  display: block;
  width: calc(100% - 13px);
  height: calc(100% - 9px);
  background: linear-gradient(90deg, #ebc464 0%, #fff8aa 33%, #f8da6e 66%, #e6bf5d 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.misora-lp .p-contact__form .p-form__btn.c-button p input[type='submit'] {
  position: relative;
  z-index: 2;
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  background: linear-gradient(90deg, #014581 0%, #002c54 50%, #0055a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 14px 10px;
  display: block;
  width: 100%;
  border-radius: 0;
}

.misora-lp .p-contact__form .p-form__btn.c-button p input[type='submit']:hover {
  color: initial;
  box-shadow: none;
}

.misora-lp .p-contact__form .p-form__btn.c-button p:has(input[type='submit']:hover) {
  opacity: 0.8;
}

.misora-lp .wpcf7 form.init .wpcf7-response-output,
.misora-lp .wpcf7 form.sent .wpcf7-response-output,
.misora-lp .wpcf7 form.resetting .wpcf7-response-output,
.misora-lp .wpcf7 form.submitting .wpcf7-response-output {
  display: block;
  border: none;
  margin: 20px 0 0;
}

/* footer */
.misora-lp footer {
  width: 100%;
  padding: 24px;
  text-align: center;
  background-color: #0d2e62;
}

.misora-lp footer small {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
}

/* p-left */
.misora-lp .p-left {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

@media screen and (max-width: 1144px) {
  .misora-lp .p-left {
    display: none;
  }
}

.misora-lp .p-left__content {
  height: 100%;
  max-height: 480px;
  overflow-y: auto;
  padding: 20px;
}

.misora-lp .p-left__list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.misora-lp .p-left__list-item {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  padding-bottom: 10px;
  position: relative;
}

.misora-lp .p-left__list-item a:hover {
  color: #fff;
}

.misora-lp .p-left__list-item.active::before,
.misora-lp .p-left__list-item a:hover::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: -20px;
  top: 44%;
  transform: translateY(-50%);
}

/* p-right */
.misora-lp .p-right {
  height: 100vh;
}

.misora-lp .p-right__content {
  position: fixed;
  bottom: 13px;
  right: 13px;
  width: 305px;
  padding: 26px 18px;
  background: linear-gradient(180deg, #001A43 0%, #043D6F 26%, #004785 47%, #043D6F 72%, #001A43 100%);
}

.misora-lp .p-right__title {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.misora-lp .p-right__title span.linear-gradient {
  background: linear-gradient(90deg, #EACC87 0%, #c6922f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.misora-lp .p-right__img {
  width: 100%;
  margin-top: 16px;
  border-radius: 5px;
  overflow: hidden;
}

.misora-lp .p-right__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.misora-lp .p-right__button {
  margin-top: 16px;
}