@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: auto;
}

/* 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;
}

/* 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;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  color: #000525;
  background-color: #f0f5f7;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  body {
    margin-top: 70px;
  }
}

.l-header {
  position: relative;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 90px;
}
.l-header ul,
.l-header ol,
.l-header li {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .l-header {
    position: fixed;
    height: 70px;
  }
  .l-header.is-sticky .l-header__inner {
    background: #fff;
  }
  .l-header.is-sticky .l-header__menuBtn--contact {
    background: #6c85ae;
  }
  .l-header.is-sticky .l-header__menuBtn--contact .l-header__menuBtnText {
    color: #fff;
  }
  .l-header.is-sticky .l-header__menuBtn--contact svg path {
    fill: #fff;
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 40px;
  max-width: 1450px;
  width: 100%;
  height: 100%;
  padding: 18px 15px;
  margin: 0 auto;
}
@media screen and (max-width: 1365px) {
  .l-header__inner {
    padding: 18px 80px 18px 15px;
  }
}
@media screen and (max-width: 1279px) {
  .l-header__inner {
    gap: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    justify-content: flex-start;
    gap: 0;
    padding: 0 0 0 15px;
    background: #f0f5f7;
    border-bottom: solid 1px #6c85ae;
    transition: background 0.3s ease;
  }
}
.l-header__logo {
  max-width: 280px;
  width: 100%;
  flex-shrink: 0;
}
@media screen and (max-width: 1279px) {
  .l-header__logo {
    max-width: 234px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    max-width: 200px;
  }
}
.l-header__logo img {
  width: 100%;
  height: auto;
}
.l-header__logo a {
  display: block;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__logo a:hover {
    opacity: 0.8;
  }
}
.l-header__menu,
.l-header__menu--contact {
  display: flex;
  align-items: center;
  gap: 0 60px;
  margin-left: auto;
}
@media screen and (max-width: 1279px) {
  .l-header__menu,
  .l-header__menu--contact {
    gap: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__menu,
  .l-header__menu--contact {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    max-height: 100vh;
    padding-top: 70px;
    background: #f0f5f7;
    transform: translate(0, -100%);
    overflow: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .l-header__menu.is-active,
  .is-active.l-header__menu--contact {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 767px) {
  .l-header__menu--contact .l-header-ctabox__inner {
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.l-header__nav > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 30px;
}
@media screen and (max-width: 767px) {
  .l-header__nav > ul {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 0 20px 50px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav > ul > li {
    border-bottom: solid 1px #cad3e0;
  }
}
.l-header__nav > ul > li > a {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  display: block;
  color: #000525;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1279px) {
  .l-header__nav > ul > li > a {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav > ul > li > a {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    padding: 25px 0;
    position: relative;
  }
  .l-header__nav > ul > li > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 10px;
    height: 10px;
    border-top: solid 2px #e36211;
    border-right: solid 2px #e36211;
    transform: translate(0, -50%) rotate(45deg);
  }
}
@media (any-hover: hover) {
  .l-header__nav > ul > li > a:hover {
    opacity: 0.8;
  }
}
.l-header__nav > ul > li > a.l-header__accordionBtn {
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header__nav > ul > li > a.l-header__accordionBtn::before,
  .l-header__nav > ul > li > a.l-header__accordionBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
    width: 15px;
    height: 2px;
    background: #e36211;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .l-header__nav > ul > li > a.l-header__accordionBtn::after {
    transform: translate(0, -50%) rotate(90deg);
  }
  .l-header__nav > ul > li > a.l-header__accordionBtn.is-active::after {
    transform: translate(0, -50%) rotate(0);
    opacity: 0;
  }
}
.l-header__nav > ul > li > ul {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__nav > ul > li > ul {
    display: none;
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 0 20px;
    background: #fff;
  }
}
.l-header__nav > ul > li > ul > li > a {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  display: block;
  color: #000525;
  text-decoration: none;
  padding: 25px 0;
  background: #fff;
  position: relative;
}
.l-header__nav > ul > li > ul > li > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 10px;
  height: 10px;
  border-top: solid 2px #e36211;
  border-right: solid 2px #e36211;
  transform: translate(0, -50%) rotate(45deg);
}
.l-header__tel {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .l-header__tel {
    display: none;
  }
}
.l-header__telLink {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 500;
  color: #000525;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__telLink:hover {
    opacity: 0.8;
  }
}
.l-header__telLinkIcon {
  width: 15px;
}
.l-header__telLinkIcon img {
  width: 100%;
  height: auto;
}
.l-header__telTime {
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
}
.l-header__fixedMenu {
  position: fixed;
  right: 0;
  top: 20px;
}
@media screen and (max-width: 767px) {
  .l-header__fixedMenu {
    display: none;
  }
}
.l-header__fixedMenuBtn,
.l-header__fixedMenuBtn--trial,
.l-header__fixedMenuBtn--request {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 160px;
  writing-mode: vertical-rl;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
  color: #000525;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.l-header__fixedMenuBtn + .l-header__fixedMenuBtn,
.l-header__fixedMenuBtn--trial + .l-header__fixedMenuBtn,
.l-header__fixedMenuBtn + .l-header__fixedMenuBtn--trial,
.l-header__fixedMenuBtn--trial + .l-header__fixedMenuBtn--trial,
.l-header__fixedMenuBtn--request + .l-header__fixedMenuBtn,
.l-header__fixedMenuBtn--request + .l-header__fixedMenuBtn--trial,
.l-header__fixedMenuBtn + .l-header__fixedMenuBtn--request,
.l-header__fixedMenuBtn--trial + .l-header__fixedMenuBtn--request,
.l-header__fixedMenuBtn--request + .l-header__fixedMenuBtn--request {
  margin-top: 20px;
}
.l-header__fixedMenuBtn--request {
  background: #fff;
  color: #6c85ae;
  border-top: solid 2px #a6b8d3;
  border-left: solid 2px #a6b8d3;
  border-bottom: solid 2px #a6b8d3;
  border-radius: 10px 0 0 10px;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__fixedMenuBtn--request:hover {
    background: #6c85ae;
    color: #fff;
    border-color: #6c85ae;
  }
}
.l-header__fixedMenuBtn--trial {
  background: transparent linear-gradient(208deg, #57c4e6 0%, #acd134 100%) 0%
    0% no-repeat padding-box;
  color: #fff;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  border-bottom: solid 2px #fff;
  border-radius: 10px 0 0 10px;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__fixedMenuBtn--trial:hover {
    opacity: 0.7;
  }
}
.l-header__fixedMenuInner {
  margin-bottom: -5px;
}
.l-header__fixedMenuInner span {
  display: block;
}
.l-header__fixedMenuInner span:first-child {
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
  margin-left: 5px;
}
.l-header__menuBtnWrapper {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__menuBtnWrapper {
    display: flex;
    margin-left: auto;
    height: 100%;
  }
}
.l-header__menuBtn,
.l-header__menuBtn--contact {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  display: block;
  width: 70px;
  height: 100%;
  position: relative;
}
.l-header__menuBtn::before,
.l-header__menuBtn--contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #6c85ae;
}
.l-header__menuBtn--contact {
  transition: background 0.3s ease;
}
.l-header__menuBtn--contact .l-header__menuBtnText {
  transition: color 0.3s ease;
}
.l-header__menuBtn--contact svg path {
  transition: fill 0.3s ease;
}
.l-header__menuBtn--contact .l-header__menuBtnLine {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.l-header__menuBtn--contact .l-header__menuBtnLine span {
  background: #fff;
}
.l-header__menuBtn--contact .l-header__menuBtnLine span:nth-child(1) {
  transform: translate(0, -50%) rotate(45deg);
  top: 50%;
}
.l-header__menuBtn--contact .l-header__menuBtnLine span:nth-child(2) {
  opacity: 0;
}
.l-header__menuBtn--contact .l-header__menuBtnLine span:nth-child(3) {
  transform: translate(0, -50%) rotate(-45deg);
  top: 50%;
}
.l-header__menuBtn--contact.is-active {
  background: #6c85ae;
}
.l-header__menuBtn--contact.is-active .l-header__menuBtnText {
  color: #fff;
}
.l-header__menuBtn--contact.is-active svg path {
  fill: #fff;
}
.l-header__menuBtn--contact.is-active .l-header__menuBtnIcon {
  opacity: 0;
}
.l-header__menuBtn--contact.is-active .l-header__menuBtnLine {
  opacity: 1;
}
.l-header__menuBtn.is-active .l-header__menuBtnLine span:nth-child(1),
.is-active.l-header__menuBtn--contact .l-header__menuBtnLine span:nth-child(1) {
  transform: translate(0, -50%) rotate(45deg);
  top: 50%;
}
.l-header__menuBtn.is-active .l-header__menuBtnLine span:nth-child(2),
.is-active.l-header__menuBtn--contact .l-header__menuBtnLine span:nth-child(2) {
  opacity: 0;
}
.l-header__menuBtn.is-active .l-header__menuBtnLine span:nth-child(3),
.is-active.l-header__menuBtn--contact .l-header__menuBtnLine span:nth-child(3) {
  transform: translate(0, -50%) rotate(-45deg);
  top: 50%;
}
.l-header__menuBtnLine {
  width: 22px;
  height: 14px;
  position: absolute;
  left: 0;
  right: 0;
  top: 22px;
  margin: auto;
}
.l-header__menuBtnLine span {
  display: block;
  width: 100%;
  height: 2px;
  background: #6c85ae;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.l-header__menuBtnLine span:nth-child(1) {
  top: 0;
}
.l-header__menuBtnLine span:nth-child(2) {
  top: 50%;
  width: calc(100% - 4px);
  transform: translate(0, -50%);
}
.l-header__menuBtnLine span:nth-child(3) {
  bottom: 0;
}
.l-header__menuBtnText {
  color: #6c85ae;
  font-family: "Jost", sans-serif;
  font-size: 8px;
  line-height: 1;
  font-weight: 500;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  margin: auto;
}
.l-header__menuBtnIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  position: absolute;
  left: 0;
  right: 0;
  top: 22px;
  margin: auto;
  transition: opacity 0.3s ease;
}
.l-header__menuBtnIcon img,
.l-header__menuBtnIcon svg {
  width: 100%;
  height: auto;
}
.l-header .l-header-ctabox {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header .l-header-ctabox {
    display: block;
  }
}

.l-header-ctabox {
  background: transparent linear-gradient(238deg, #57c4e6 0%, #acd134 100%) 0%
    0% no-repeat padding-box;
}
.l-header-ctabox__inner {
  max-width: 948px;
  width: 100%;
  margin: auto;
  padding: 50px 20px;
}
.l-header-ctabox__title {
  font-size: 24px;
  line-height: 1.9;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .l-header-ctabox__title {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
    margin-bottom: 30px;
  }
}
.l-header-ctabox__btnWrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .l-header-ctabox__btnWrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
.l-header-ctabox__btnWrapper .c-btn {
  margin: 0;
}
.l-header-ctabox__tel {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  border-radius: 100px;
  border: solid 2px #fff;
  padding: 20px 20px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-header-ctabox__tel {
    flex-direction: column;
    align-items: center;
    border-radius: 35px;
    border: solid 1px #fff;
    padding: 18px 20px;
  }
}
@media (any-hover: hover) {
  .l-header-ctabox__tel:hover {
    opacity: 0.8;
  }
}
.l-header-ctabox__telText {
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  padding-right: 50px;
  margin-right: 50px;
  border-right: solid 1px #fff;
}
@media screen and (max-width: 767px) {
  .l-header-ctabox__telText {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 700;
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-right: none;
    position: relative;
  }
  .l-header-ctabox__telText::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 47px;
    height: 1px;
    background: #fff;
  }
}
.l-header-ctabox__telContent {
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-family: "Jost", sans-serif;
  font-size: 38px;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-header-ctabox__telContent {
    align-items: center;
    font-size: 28px;
    line-height: 1.4;
    font-weight: 500;
  }
}
.l-header-ctabox__telTime {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-header-ctabox__telTime {
    font-size: 13px;
    line-height: 2;
    font-weight: 500;
  }
}

.l-footer {
  background: #fff;
  padding: 50px 0 30px;
}
.l-footer ul,
.l-footer ol,
.l-footer li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-footer__inner {
  max-width: 1040px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.l-footer__head {
  display: flex;
  gap: 0 30px;
}
@media screen and (max-width: 767px) {
  .l-footer__head {
    flex-direction: column;
    gap: 30px 0;
  }
}
.l-footer__headCol {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .l-footer__headCol {
    width: 100%;
  }
}
.l-footer__msLogo {
  max-width: 204px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-footer__msLogo {
    margin-right: auto;
  }
}
.l-footer__msLogo img {
  display: block;
  width: 129px;
  height: auto;
  margin: 0 auto;
}
.l-footer__msLogo p {
  margin-top: 5px;
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-footer__msLogo p {
    font-size: 10px;
    line-height: 1.4;
    font-weight: 400;
  }
}
.l-footer__title {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .l-footer__title {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
  }
}
.l-footer__text {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-footer__text {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
  }
}
.l-footer__text--sm {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-footer__text--sm {
    font-size: 10px;
    line-height: 1.4;
    font-weight: 400;
  }
}
.l-footer__nav {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    margin-top: 30px;
  }
}
.l-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 40px;
}
@media screen and (max-width: 767px) {
  .l-footer__nav ul {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.l-footer__nav ul li a {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  display: block;
  color: #000525;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-footer__nav ul li a:hover {
    opacity: 0.8;
  }
}
.l-footer__copy {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  display: block;
  text-align: center;
  padding: 30px 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    text-align: left;
  }
}

.l-main {
  display: block;
}

.l-section {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .l-section {
    margin-top: 50px;
  }
}
.l-section--last {
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .l-section--last {
    margin-top: 100px;
  }
}
.l-section__inner,
.l-section__inner--lg {
  max-width: 1040px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.l-section__inner--lg {
  max-width: 1180px;
}

.c-sectionTitle {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 50px;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle {
    margin: 0 calc(50% - 50vw) 30px;
  }
}
.c-sectionTitle__en {
  display: block;
  width: fit-content;
  margin: auto;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 128px;
  font-weight: 600;
  line-height: 1.6875;
  letter-spacing: 0.2em;
  color: #fff;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
  opacity: 0.4;
}
@media screen and (max-width: 1023px) {
  .c-sectionTitle__en {
    font-size: 12.5122189638vw;
  }
}
@media screen and (max-width: 767px) {
  .c-sectionTitle__en {
    font-size: 48px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  }
}
.c-sectionTitle__ja {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  margin: -94px auto 0;
  text-align: center;
  font-size: 54px;
  line-height: 1.5;
  font-weight: 700;
  color: #6c85ae;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle__ja {
    margin: -40px auto 0;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 900;
  }
}
.c-sectionTitle__ja span {
  display: block;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle__ja span {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 900;
  }
}

.c-sectionLead {
  font-size: 24px;
  line-height: 1.9;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-sectionLead {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
  }
}

.c-fullWidthImg {
  position:relative;
  width: 100%;
}
.c-fullWidthImg img {
  width: 100%;
  height: auto;
  display: block;
}
.c-fullWidthImg .p-form-form__btn{
  position: absolute;
  bottom: 32%;
  left: 140px;
}
.c-fullWidthImg .p-form-form__btn .c-btn--submit{
  position:relative;
  height:75px;
  padding: 0 80px;
}
.c-fullWidthImg .p-form-form__btn svg {
    position: absolute;
    top: 50%;
    right: 40px;
    width: 20px;
    height: 20px;
    transform: translate(0, -50%);
    transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
	.c-fullWidthImg .p-form-form__btn{
		bottom: auto;
		top: 25%;
		right: auto;
		left: 10px;
		width: 94%;
	}
}
.c-btn,
.c-btn--confirm,
.c-btn--submit,
.c-btn--sm {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 400px;
  width: 100%;
  height: 86px;
  padding: 0 60px;
  margin: auto;
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 5px 20px rgba(103, 103, 103, 0.2);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #000525;
  text-decoration: none;
  position: relative;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-btn,
  .c-btn--confirm,
  .c-btn--submit,
  .c-btn--sm {
    height: 68px;
    padding: 0 42px;
    box-shadow: 0 3px 10px rgba(103, 103, 103, 0.1);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
  }
}
@media (any-hover: hover) {
  .c-btn:hover,
  .c-btn--confirm:hover,
  .c-btn--submit:hover,
  .c-btn--sm:hover {
    opacity: 0.8;
  }
  .c-btn:hover::before,
  .c-btn--confirm:hover::before,
  .c-btn--submit:hover::before,
  .c-btn--sm:hover::before {
    transform: translate(5px, -50%);
  }
}
.c-btn::before,
.c-btn--confirm::before,
.c-btn--submit::before,
.c-btn--sm::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  width: 20px;
  height: 20px;
  transform: translate(0, -50%);
  border-radius: 100%;
  background-image: url("../images/common/icon-btn-arrow.svg");
  background-size: cover;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-btn::before,
  .c-btn--confirm::before,
  .c-btn--submit::before,
  .c-btn--sm::before {
    right: 26px;
    width: 16px;
    height: 16px;
  }
}
.c-btn__wrapper {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .c-btn__wrapper {
    margin-top: 30px;
  }
}

.c-btn--sm {
  height: 66px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-btn--sm {
    height: 48px;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 700;
  }
}

.c-btn--submit {
  padding: 0;
  background: #e36211;
  color: #fff;
}
.c-btn--submit::before {
  display: none;
}
.c-btn--submit svg path {
  stroke: #e36211;
}
@media (any-hover: hover) {
  .c-btn--submit:hover {
    opacity: 0.8;
  }
  .c-btn--submit:hover svg {
    transform: translate(5px, -50%);
  }
}
.c-btn--submit[disabled],
.c-btn--submit.is-disabled {
  pointer-events: none;
  background: #cad3e0;
  color: #fff;
}
.c-btn--submit[disabled] svg path,
.c-btn--submit.is-disabled svg path {
  stroke: #cad3e0;
}
.c-btn--submit svg {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 20px;
  height: 20px;
  transform: translate(0, -50%);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-btn--submit svg {
    right: 26px;
    width: 16px;
    height: 16px;
  }
}
.c-btn--submit input[type="submit"],
.c-btn--submit input[type="button"] {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  border-radius: 100px;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 60px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-btn--submit input[type="submit"],
  .c-btn--submit input[type="button"] {
    padding: 0 42px;
  }
}
.c-btn--submit.is-back {
  background: #fff;
}
.c-btn--submit.is-back input[type="submit"],
.c-btn--submit.is-back input[type="button"] {
  color: #000525;
}
.c-btn--submit.is-back svg circle {
  fill: #e36211;
}
.c-btn--submit.is-back svg path {
  stroke: #fff;
}
.c-btn--submit span.wpcf7-spinner {
  display: none;
}

.c-btn--confirm {
  background: #e36211;
  color: #fff;
}
.c-btn--confirm::before {
  display: none;
}
.c-btn--confirm svg path {
  stroke: #e36211;
}
@media (any-hover: hover) {
  .c-btn--confirm:hover {
    opacity: 0.8;
  }
  .c-btn--confirm:hover svg {
    transform: translate(5px, -50%);
  }
}
.c-btn--confirm[disabled] {
  pointer-events: none;
  background: #cad3e0;
  color: #fff;
}
.c-btn--confirm[disabled] svg path {
  stroke: #cad3e0;
}
.c-btn--confirm.is-back {
  background: #fff;
  color: #000525;
}
.c-btn--confirm.is-back svg circle {
  fill: #e36211;
}
.c-btn--confirm.is-back svg path {
  stroke: #fff;
}
.c-btn--confirm svg {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 20px;
  height: 20px;
  transform: translate(0, -50%);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-btn--confirm svg {
    right: 26px;
    width: 16px;
    height: 16px;
  }
}

.c-btn--plus::before,
.c-btn--plus::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translate(0, -50%);
  width: 15px;
  height: 2px;
  background: #e36211;
}
@media screen and (max-width: 767px) {
  .c-btn--plus::before,
  .c-btn--plus::after {
    right: 17px;
    width: 14px;
    height: 2px;
  }
}
.c-btn--plus::after {
  transform: translate(0, -50%) rotate(90deg);
}
@media (any-hover: hover) {
  .c-btn--plus:hover {
    opacity: 0.8;
  }
  .c-btn--plus:hover::before {
    transform: translate(0, -50%);
  }
}

button.c-btn,
button.c-btn--sm,
button.c-btn--submit,
button.c-btn--confirm {
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
}

.c-textLink {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
  position: relative;
  display: block;
  width: fit-content;
  padding-right: 28px;
  color: #000525;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-textLink {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    padding-right: 26px;
  }
}
@media (any-hover: hover) {
  .c-textLink:hover {
    text-decoration: underline;
    opacity: 0.8;
  }
  .c-textLink:hover::before {
    transform: translate(5px, -50%);
  }
}
.c-textLink::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 18px;
  height: 18px;
  transform: translate(0, -50%);
  border-radius: 100%;
  background-image: url("../images/common/icon-btn-arrow.svg");
  background-size: cover;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-textLink::before {
    width: 16px;
    height: 16px;
  }
}

.c-blogCard {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-blogCard {
    max-width: 100%;
  }
}
.c-blogCard__logo {
  height: 40px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 767px) {
  .c-blogCard__logo {
    margin: 0 auto 5px;
  }
}
.c-blogCard__logo img {
  display: block;
  height: 100%;
  width: auto;
}
.c-blogCard > a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-blogCard > a:hover {
    opacity: 0.8;
  }
}
.c-blogCard__inner {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #000525;
  text-decoration: none;
  width: 100%;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  background: #fff;
}
@media screen and (max-width: 767px) {
  .c-blogCard__inner {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }
}
.c-blogCard__img {
  width: 100%;
  height: 169px;
}
@media screen and (max-width: 767px) {
  .c-blogCard__img {
    height: 189px;
  }
}
.c-blogCard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-blogCard__body {
  padding: 10px 15px 25px;
}
@media screen and (max-width: 767px) {
  .c-blogCard__body {
    padding: 10px 15px;
  }
}
.c-blogCard__title {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .c-blogCard__title {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 900;
  }
}
.c-blogCard__text {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-blogCard__text {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
  }
}
.c-blogCard__categoryList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .c-blogCard__categoryList {
    margin-bottom: 5px;
  }
}
.c-blogCard__categoryItem a {
  display: block;
  padding: 6px 24px;
  border: solid 1px #000525;
  border-radius: 100px;
  color: #000525;
  text-decoration: none;
  font-size: 11px;
  line-height: 1;
  font-weight: 400;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-blogCard__categoryItem a:hover {
    opacity: 0.8;
  }
}

.c-modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.c-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.c-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.c-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 49px 0 0 0;
  width: calc(100% - 30px);
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
}
.c-modal__content img {
  width: 100%;
  height: auto;
}

.c-modal__close {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
}
.c-modal__close img {
  width: 100%;
  height: 100%;
}

body.is-fixed {
  overflow: hidden;
}

.c-pageTitle {
  max-width: 1180px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  color: #fff;
  font-size: 54px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-pageTitle {
    font-size: 33px;
    line-height: 1.5;
    font-weight: 700;
  }
}
.c-pageTitle__wrapper {
  overflow: hidden;
}
.c-pageTitle__en {
  display: block;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.1em;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-pageTitle__en {
    font-size: 10px;
    line-height: 1.4;
    font-weight: 500;
  }
}
.c-pageTitle__inner {
  display: block;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-top: 60px;
  padding-bottom: 60px;
  background: transparent linear-gradient(238deg, #57c4e6 0%, #acd134 100%) 0%
    0% no-repeat padding-box;
  border-radius: 0px 20px 20px 0px;
}
@media screen and (max-width: 767px) {
  .c-pageTitle__inner {
    margin-right: calc(50% - 50vw);
    padding-right: calc(50vw - 50%);
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 0;
  }
}
.c-pageTitle__content {
  position: relative;
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}
.c-pageTitle__logo {
  display: block;
  width: 463px;
  position: absolute;
  right: 0;
  bottom: -78px;
  opacity: 0.14;
}
@media screen and (max-width: 767px) {
  .c-pageTitle__logo {
    width: 206px;
    right: 20px;
    bottom: -48px;
  }
}
.c-pageTitle__logo img {
  width: 100%;
  height: auto;
}

.c-breadcrumb {
  max-width: 1040px;
  width: 100%;
  padding: 0 20px;
  margin: 10px auto 0;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    margin: 5px auto 0;
    overflow: auto;
  }
}
.c-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px 18px;
}
.c-breadcrumb__list li {
  position: relative;
  flex-shrink: 0;
  font-size: 13px;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__list li {
    font-size: 12px;
    line-height: 2;
    font-weight: 400;
  }
}
.c-breadcrumb__list li::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 1px #000525;
  border-right: solid 1px #000525;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
}
.c-breadcrumb__list li:last-child::after {
  display: none;
}
.c-breadcrumb__list li a {
  color: #acd134;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-size: 13px;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__list li a {
    font-size: 12px;
    line-height: 2;
    font-weight: 500;
  }
}
@media (any-hover: hover) {
  .c-breadcrumb__list li a:hover {
    opacity: 0.8;
    text-decoration: underline;
  }
}

.c-footerCta {
  overflow: hidden;
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .c-footerCta {
    margin-top: 100px;
  }
}
.c-footerCta__inner {
  max-width: 1040px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.c-footerCta__copy {
  text-align: center;
  font-feature-settings: "palt";
  font-size: 54px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .c-footerCta__copy {
    font-size: 33px;
    line-height: 1.5;
    font-weight: 700;
  }
}
.c-footerCta__copy img {
  display: inline-block;
  width: 148px;
}
@media screen and (max-width: 767px) {
  .c-footerCta__copy img {
    width: 92px;
    margin-top: 10px;
  }
}
.c-footerCta__content {
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-footerCta__content {
    flex-direction: column;
    margin: 0 calc(50% - 50vw);
  }
}
.c-footerCta__title {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-footerCta__title {
    min-height: auto;
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
  }
}
.c-footerCta__text {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
  margin-top: 30px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-footerCta__text {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
  }
}
.c-footerCta__item {
  width: 100%;
  padding-top: 64px;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .c-footerCta__item {
    padding-top: 50px;
  }
}
.c-footerCta__item .c-btn {
  max-width: 420px;
}
.c-footerCta__item:nth-child(odd) {
  padding-right: 80px;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  background: transparent linear-gradient(228deg, #6c85ae 0%, #a6b8d3 100%) 0%
    0% no-repeat padding-box;
}
@media screen and (max-width: 767px) {
  .c-footerCta__item:nth-child(odd) {
    padding-right: 20px;
    margin-left: 0;
    padding-left: 20px;
  }
}
.c-footerCta__item:nth-child(even) {
  padding-left: 80px;
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  background: transparent linear-gradient(228deg, #57c4e6 0%, #acd134 100%) 0%
    0% no-repeat padding-box;
}
@media screen and (max-width: 767px) {
  .c-footerCta__item:nth-child(even) {
    padding-left: 20px;
    margin-right: 0;
    padding-right: 20px;
  }
}
.c-footerCta__tel {
  display: flex;
  width: 100%;
  margin-top: 30px;
  justify-content: center;
}
.c-footerCta__telText {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  color: #fff;
  margin-right: 24px;
  padding-right: 24px;
  flex-shrink: 0;
  align-content: center;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .c-footerCta__telText {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 700;
    margin-right: 10px;
    padding-right: 10px;
  }
}
.c-footerCta__telContent {
  font-family: "Jost", sans-serif;
  color: #fff;
  text-decoration: none;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-footerCta__telContent {
    align-items: center;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
  }
}
.c-footerCta__telItem {
  display: block;
  padding-left: 22px;
  position: relative;
}
.c-footerCta__telIcon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.c-footerCta__telTime {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-footerCta__telTime {
    font-size: 10px;
    line-height: 1;
    font-weight: 500;
  }
}

.c-catList {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .c-catList {
    flex-direction: column;
    gap: 10px;
  }
}
.c-catList__title {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 900;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-catList__title {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 900;
  }
}
.c-catList__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.c-catList__item a {
  display: block;
  padding: 6px 24px;
  border: solid 1px #000525;
  border-radius: 100px;
  color: #000525;
  text-decoration: none;
  font-size: 11px;
  line-height: 1;
  font-weight: 400;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-catList__item a:hover {
    opacity: 0.8;
  }
}

.c-pagination > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 80px auto 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .c-pagination > ul {
    margin: 50px auto 0;
  }
}
.c-pagination > ul > li:first-child * {
  margin-left: 0 !important;
}
.c-pagination > ul > li:last-child * {
  margin-right: 0 !important;
}
.c-pagination > ul > li a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-pagination > ul > li a:hover {
    opacity: 0.8;
  }
}
.c-pagination > ul > li .page-numbers {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000525;
  margin: 0 9px;
}
.c-pagination > ul > li .page-numbers.current {
  background: #000525;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagination > ul > li .page-numbers.dots {
  display: block;
  width: 3px;
  height: 3px;
  background: #000525;
  border-radius: 100%;
  margin: 0 31px;
  font-size: 0;
  position: relative;
}
.c-pagination > ul > li .page-numbers.dots::before,
.c-pagination > ul > li .page-numbers.dots::after {
  display: block;
  content: "";
  width: 3px;
  height: 3px;
  background: #000525;
  border-radius: 100%;
}
.c-pagination > ul > li .page-numbers.dots::before {
  position: absolute;
  left: -8px;
}
.c-pagination > ul > li .page-numbers.dots::after {
  position: absolute;
  right: -8px;
}
.c-pagination > ul > li .page-numbers.prev,
.c-pagination > ul > li .page-numbers.next {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #000525;
  width: 87px;
  height: 46px;
  border: solid 1px #000525;
  border-radius: 23px;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-pagination > ul > li .page-numbers.prev,
  .c-pagination > ul > li .page-numbers.next {
    display: none;
  }
}
.c-pagination > ul > li .page-numbers.prev {
  padding: 0 20px 0 37px;
  margin-right: 41px;
}
.c-pagination > ul > li .page-numbers.prev::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 1px #000525;
  border-right: solid 1px #000525;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translate(0, -50%) rotate(225deg);
}
.c-pagination > ul > li .page-numbers.next {
  padding: 0 37px 0 20px;
  margin-left: 41px;
}
.c-pagination > ul > li .page-numbers.next::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 1px #000525;
  border-right: solid 1px #000525;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
}

.c-author,
.c-author--case {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
}
@media screen and (max-width: 767px) {
  .c-author,
  .c-author--case {
    border-radius: 0;
    padding: 20px;
  }
}
.c-author__title {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  display: flex;
  gap: 5px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: solid 1px #000525;
}
@media screen and (max-width: 767px) {
  .c-author__title {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
    margin-bottom: 15px;
  }
}
.c-author__title img {
  align-self: center;
  width: 30px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-author__title img {
    width: 26px;
  }
}
.c-author__body {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .c-author__body {
    gap: 15px;
  }
}
.c-author__img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-author__img {
    width: 90px;
    height: 90px;
  }
}
.c-author__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-author__name {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .c-author__name {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 900;
  }
}
.c-author__desc {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .c-author__desc {
    font-size: 10px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.c-author__text {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .c-author__text {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .c-author--case .c-author__title img {
    width: 28px;
  }
}
@media screen and (max-width: 767px) {
  .c-author--case .c-author__body {
    flex-direction: column;
    gap: 20px;
  }
}
.c-author--case .c-author__text {
  margin-top: 10px;
}
.c-author--case .c-author__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: auto;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .c-author--case .c-author__img {
    width: 100%;
  }
}
.c-author--case .c-author__img img {
  width: auto;
  height: auto;
  object-fit: unset;
}

.c-postContent {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-postContent {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
  }
}
.c-postContent > * {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-postContent > * {
    margin-bottom: 15px;
  }
}
.c-postContent > :first-child,
.c-postContent div > :first-child {
  margin-top: 0 !important;
}
.c-postContent > :last-child,
.c-postContent dd > :last-child,
.c-postContent ul > :last-child,
.c-postContent ol > :last-child,
.c-postContent div > :last-child {
  margin-bottom: 0 !important;
}
.c-postContent .has-small-font-size {
  font-size: 12px !important;
}
@media screen and (max-width: 767px) {
  .c-postContent .has-small-font-size {
    font-size: 10px !important;
  }
}
.c-postContent .has-medium-font-size {
  font-size: 18px !important;
}
@media screen and (max-width: 767px) {
  .c-postContent .has-medium-font-size {
    font-size: 14px !important;
  }
}
.c-postContent .has-large-font-size {
  font-size: 24px !important;
}
@media screen and (max-width: 767px) {
  .c-postContent .has-large-font-size {
    font-size: 16px !important;
  }
}
.c-postContent .has-x-large-font-size {
  font-size: 30px !important;
}
@media screen and (max-width: 767px) {
  .c-postContent .has-x-large-font-size {
    font-size: 20px !important;
  }
}
.c-postContent strong {
  font-weight: 700;
}
.c-postContent h1 {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
  margin: 50px 0 30px;
}
@media screen and (max-width: 767px) {
  .c-postContent h1 {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    margin: 30px 0 20px;
  }
}
.c-postContent h2 {
  font-size: 24px;
  line-height: 1.9;
  font-weight: 700;
  margin: 50px 0 30px;
  padding-left: 17px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-postContent h2 {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
    margin: 30px 0 20px;
    padding-left: 13px;
  }
}
.c-postContent h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 7px;
  height: calc(100% - 10px);
  background: #000525;
}
@media screen and (max-width: 767px) {
  .c-postContent h2::before {
    width: 5px;
    height: calc(100% - 3px);
  }
}
.c-postContent h3 {
  font-size: 18px;
  line-height: 2;
  font-weight: 700;
  margin: 50px 0 30px;
  padding-bottom: 10px;
  border-bottom: solid 1px #000525;
}
@media screen and (max-width: 767px) {
  .c-postContent h3 {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
    margin: 30px 0 20px;
    padding-bottom: 8px;
  }
}
.c-postContent h4,
.c-postContent h5,
.c-postContent h6 {
  font-size: 18px;
  line-height: 2;
  font-weight: 700;
  margin: 50px 0 30px;
}
@media screen and (max-width: 767px) {
  .c-postContent h4,
  .c-postContent h5,
  .c-postContent h6 {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
    margin: 30px 0 20px;
  }
}
.c-postContent figure {
  margin: 30px 0 50px;
}
@media screen and (max-width: 767px) {
  .c-postContent figure {
    margin: 20px 0 30px;
  }
}
.c-postContent .wp-embed-aspect-16-9 .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.c-postContent .wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-postContent iframe {
  vertical-align: bottom;
}
.c-postContent a {
  color: #57c4e6;
  text-decoration: underline;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-postContent a:hover {
    opacity: 0.8;
  }
}
.c-postContent ul,
.c-postContent ol {
  padding-left: 0;
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-postContent ul,
  .c-postContent ol {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
  }
}
.c-postContent ul li,
.c-postContent ol li {
  margin: 15px 0;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .c-postContent ul li,
  .c-postContent ol li {
    margin: 10px 0;
  }
}
.c-postContent ul li {
  list-style: none;
}
.c-postContent ul li::before {
  content: "・";
}
.c-postContent > ul,
.c-postContent > ol {
  margin: 30px 0 20px;
}
@media screen and (max-width: 767px) {
  .c-postContent > ul,
  .c-postContent > ol {
    margin: 20px 0 20px;
  }
}
.c-postContent hr {
  border: none;
  border-top: solid 1px #6c85ae;
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .c-postContent hr {
    margin: 20px 0;
  }
}

.c-postContent-overview {
  background: #e7ebf0;
  padding: 40px 20px;
  margin: 50px 0 50px;
}
@media screen and (max-width: 767px) {
  .c-postContent-overview {
    width: calc(100% + 40px);
    padding: 30px 20px;
    margin: 30px -20px 30px;
  }
}
.c-postContent-overview__title {
  font-size: 18px;
  line-height: 2;
  font-weight: 900;
  margin: 30px 0 20px;
  padding-bottom: 10px;
  border-bottom: solid 1px #6c85ae;
  color: #6c85ae;
}
@media screen and (max-width: 767px) {
  .c-postContent-overview__title {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 900;
    margin: 30px 0 10px;
    padding-bottom: 8px;
  }
}
.c-postContent-overview__content > * {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .c-postContent-overview__content > * {
    margin-bottom: 10px;
  }
}

.wp-block-lazyblock-overviewlabel {
  margin-top: 50px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .wp-block-lazyblock-overviewlabel {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 900;
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
.wp-block-lazyblock-overviewlabel + * {
  margin-top: 30px !important;
}
@media screen and (max-width: 767px) {
  .wp-block-lazyblock-overviewlabel + * {
    margin-top: 20px !important;
  }
}
.wp-block-lazyblock-overviewlabel .c-postContent-overviewLabel {
  font-size: 18px;
  line-height: 2;
  font-weight: 900;
  color: #6c85ae;
  box-shadow: 8px 8px 8px rgba(185, 199, 220, 0.6),
    -8px -8px 8px rgba(255, 255, 255, 0.6);
  background: #f0f5f7;
  border-radius: 20px;
  width: fit-content;
  padding: 17px 22px;
}
@media screen and (max-width: 767px) {
  .wp-block-lazyblock-overviewlabel .c-postContent-overviewLabel {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 900;
  }
}

.c-postContent-faq__item {
  padding: 20px 0;
  border-bottom: solid 1px #cad3e0;
}
.c-postContent-faq__item:first-child {
  padding-top: 0;
}
.c-postContent-faq__itemHead {
  display: flex;
}
.c-postContent-faq__itemHeadMark,
.c-postContent-faq__itemBodyMark {
  flex-shrink: 0;
  width: 32px;
  text-align: left;
  font-family: "Jost", sans-serif;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-postContent-faq__itemHeadMark,
  .c-postContent-faq__itemBodyMark {
    width: 30px;
    font-size: 21px;
    line-height: 1.5;
    font-weight: 600;
  }
}
.c-postContent-faq__itemHeadMark {
  color: #acd134;
}
.c-postContent-faq__itemBodyMark {
  color: #57c4e6;
}
.c-postContent-faq__itemHeadText {
  padding-top: 2px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-postContent-faq__itemHeadText {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
  }
}
.c-postContent-faq__itemBody {
  display: flex;
  padding-top: 20px;
}
.c-postContent-faq__itemBodyText {
  padding-top: 2px;
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-postContent-faq__itemBodyText {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
  }
}

.p-top {
  overflow: hidden;
}

:where(.p-top) ul,
:where(.p-top) ol,
:where(.p-top) li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-top-list__item + .p-top-list__item {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-list__item + .p-top-list__item {
    margin-top: 10px;
  }
}
.p-top-list__item {
  position: relative;
  padding-left: 33px;
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top-list__item {
    padding-left: 22px;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
  }
}
.p-top-list__item::before {
  content: "";
  display: block;
  width: 26px;
  height: 24px;
  background-image: url("../images/top/icon-list.svg");
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0.4em;
}
@media screen and (max-width: 767px) {
  .p-top-list__item::before {
    width: 17px;
    height: 16px;
    top: 0.2em;
  }
}

.p-top-copy,
.p-top-copy--spleft {
  text-align: center;
  font-feature-settings: "palt";
  font-size: 54px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-copy,
  .p-top-copy--spleft {
    font-size: 33px;
    line-height: 1.5;
    font-weight: 700;
  }
}
.p-top-copy img,
.p-top-copy--spleft img {
  display: inline-block;
  width: 148px;
}
@media screen and (max-width: 767px) {
  .p-top-copy img,
  .p-top-copy--spleft img {
    width: 92px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-copy--spleft {
    text-align: left;
  }
}

.p-top-sectionHead {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-top-sectionHead {
    margin-bottom: 20px;
  }
}
.p-top-sectionHead .c-textLink {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-sectionHead .c-textLink {
    margin-top: 10px;
  }
}

.p-top-sectionTitle {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-top-sectionTitle {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 900;
  }
}
.p-top-sectionTitle span {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  color: #6c85ae;
}
@media screen and (max-width: 767px) {
  .p-top-sectionTitle span {
    font-size: 10px;
    line-height: 1.4;
    font-weight: 500;
  }
}

.p-top-sectionLead {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-sectionLead {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    margin-top: 10px;
  }
}

.p-top-result {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-top-result {
    margin-top: 50px;
  }
}
.p-top-result__splide {
  margin: 0 calc(50% - 50vw);
}
.p-top-result__splide .splide__slide img {
  width: auto;
  height: 100%;
}

.p-top-ctabox--full {
  margin: 0 calc(50% - 50vw);
  background: transparent linear-gradient(238deg, #57c4e6 0%, #acd134 100%) 0%
    0% no-repeat padding-box;
}
@media screen and (max-width: 767px) {
  .p-top-ctabox--full .p-top-ctabox__inner {
    padding: 50px 20px;
  }
}
.p-top-ctabox--leftfull {
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  background: transparent linear-gradient(238deg, #57c4e6 0%, #acd134 100%) 0%
    0% no-repeat padding-box;
  border-radius: 0px 20px 20px 0px;
}
@media screen and (max-width: 767px) {
  .p-top-ctabox--leftfull .p-top-ctabox__inner {
    padding: 50px 20px 50px 0;
  }
}
.p-top-ctabox--rightfull {
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  background: transparent linear-gradient(238deg, #57c4e6 0%, #acd134 100%) 0%
    0% no-repeat padding-box;
  border-radius: 20px 0px 0px 20px;
}
@media screen and (max-width: 767px) {
  .p-top-ctabox--rightfull .p-top-ctabox__inner {
    padding: 50px 0 50px 20px;
  }
}
.p-top-ctabox__inner {
  max-width: 948px;
  width: 100%;
  margin: auto;
  padding: 50px 20px 50px 20px;
}
.p-top-ctabox__title {
  font-size: 24px;
  line-height: 1.9;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-top-ctabox__title {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
    margin-bottom: 30px;
  }
}
.p-top-ctabox__btnWrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-ctabox__btnWrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
.p-top-ctabox__btnWrapper .c-btn {
  margin: 0;
}
.p-top-ctabox__tel {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  border-radius: 100px;
  border: solid 2px #fff;
  padding: 20px 20px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-top-ctabox__tel {
    flex-direction: column;
    align-items: center;
    border-radius: 35px;
    border: solid 1px #fff;
    padding: 18px 20px;
  }
}
@media (any-hover: hover) {
  .p-top-ctabox__tel:hover {
    opacity: 0.8;
  }
}
.p-top-ctabox__telText {
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  padding-right: 50px;
  margin-right: 50px;
  border-right: solid 1px #fff;
}
@media screen and (max-width: 767px) {
  .p-top-ctabox__telText {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 700;
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-right: none;
    position: relative;
  }
  .p-top-ctabox__telText::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 47px;
    height: 1px;
    background: #fff;
  }
}
.p-top-ctabox__telContent {
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-family: "Jost", sans-serif;
  font-size: 38px;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top-ctabox__telContent {
    align-items: center;
    font-size: 28px;
    line-height: 1.4;
    font-weight: 500;
  }
}
.p-top-ctabox__telTime {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top-ctabox__telTime {
    font-size: 13px;
    line-height: 2;
    font-weight: 500;
  }
}

.p-top-about {
  margin-top: 50px;
}
.p-top-about__list {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .p-top-about__list {
    gap: 26px;
  }
}
.p-top-about__listItem {
  width: calc((100% - 72px) / 3);
}
@media screen and (max-width: 767px) {
  .p-top-about__listItem {
    width: 100%;
  }
}
.p-top-about__listItemInner {
  box-shadow: 8px 8px 8px rgba(185, 199, 220, 0.6),
    -8px -8px 8px rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  padding: 42px 27px;
}
@media screen and (max-width: 767px) {
  .p-top-about__listItemInner {
    display: flex;
    align-items: center;
    border-radius: 30px;
    padding: 36px 5px;
  }
}
.p-top-about__listImg {
  width: 120px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-top-about__listImg {
    margin: 0;
    width: 95px;
    flex-shrink: 0;
  }
}
.p-top-about__listImg img {
  width: 100%;
  height: auto;
}
.p-top-about__listText {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-about__listText {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
    margin-top: 0;
    width: 100%;
  }
}
.p-top-about__listNote {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-top-about__listNote {
    padding-left: 1em;
    text-indent: -1em;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
  }
}

.p-top-news {
  margin-top: 50px;
}
.top-news_list {
  width: 100%;
}
.top-news_list {
  width: 100%;
}
.top-news_list dl {
  display: flex;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 30px;
  padding-top: 30px;
}
/*.top-news_list dl:first-child {
			padding-top: 0;
		}*/
.top-news_list dl dt {
  font-family: "Jost", sans-serif;
  color: #6c85ae;
  margin-right: 10px;
}
.top-news_list dl dd {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 2;
}
section.p-top-news .news__btn1 {
  height: 68px;
  padding: 0 42px;
  box-shadow: 0 3px 10px rgba(103, 103, 103, 0.1);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.notice-template-default .c-author {
  display: none;
}

.post-type-archive-notice .c-breadcrumb__list li:nth-child(2),
.single-notice .c-breadcrumb__list li:nth-child(2) {
  display: none !important;
}
.single-notice .c-breadcrumb__list li:nth-child(3) {
  display: inline-block !important;
}

.single .c-breadcrumb__list li:nth-child(2) {
  display: inline-block;
}
.single .c-breadcrumb__list li:nth-child(3) {
  display: none;
}

.c-blogCard__img img.news_thumbnail {
  display: none;
}
.post-type-archive-notice .c-blogCard__img img.news_thumbnail {
  display: inline-block;
}
.post-type-archive-notice .c-blogCard__img img.contents_thumbnail {
  display: none;
}

.p-top-message .p-top-list__item {
  padding-left: 54px;
  font-size: 24px;
  line-height: 1.9;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top-message .p-top-list__item {
    padding-left: 22px;
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
  }
}
.p-top-message .p-top-list__item::before {
  width: 36px;
  height: 33px;
  top: 0.3em;
}
@media screen and (max-width: 767px) {
  .p-top-message .p-top-list__item::before {
    width: 17px;
    height: 16px;
    top: 0.2em;
  }
}
.p-top-message__content + .p-top-message__content {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-top-message__content + .p-top-message__content {
    margin-top: 50px;
  }
}
.p-top-message__head {
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-top-message__head {
    margin-bottom: 30px;
  }
}
.p-top-message__deco {
  position: absolute;
  z-index: -1;
  top: 6px;
  right: 88px;
  width: 530px;
}
@media screen and (max-width: 767px) {
  .p-top-message__deco {
    display: none;
  }
}
.p-top-message__deco img {
  width: 100%;
  height: auto;
}
.p-top-message__title {
  font-feature-settings: "palt";
  font-size: 54px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top-message__title {
    font-size: 33px;
    line-height: 1.5;
    font-weight: 700;
  }
}
.p-top-message__title img {
  display: inline-block;
  width: 74px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-message__title img {
    width: 46px;
    margin-right: 10px;
  }
}
.p-top-message__lead {
  font-size: 24px;
  line-height: 1.9;
  font-weight: 700;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-message__lead {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 500;
  }
}
.p-top-message__list {
  width: fit-content;
}
.p-top-message__ellipses {
  width: 8px;
  margin: 24px auto 0;
}
@media screen and (max-width: 767px) {
  .p-top-message__ellipses {
    margin: 10px auto 0;
    width: 6px;
  }
}
.p-top-message__ellipses img {
  width: 100%;
  height: auto;
}

.p-top-features__listItem {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-top-features__listItem {
    flex-direction: column;
  }
}
.p-top-features__listItem + .p-top-features__listItem {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-top-features__listItem + .p-top-features__listItem {
    margin-top: 20px;
  }
}
.p-top-features__listItem:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-top-features__listItem:nth-child(even) {
    flex-direction: column;
  }
}
.p-top-features__listItem:nth-child(even) .p-top-features__num {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-top-features__listItem:nth-child(even) .p-top-features__num {
    text-align: left;
  }
}
.p-top-features__num {
  width: 35%;
  font-family: "Jost", sans-serif;
  font-size: 240px;
  line-height: 1.445;
  font-weight: 500;
  color: #e2ebd0;
}
@media screen and (max-width: 767px) {
  .p-top-features__num {
    width: 100%;
    font-size: 120px;
    line-height: 1.441;
    font-weight: 500;
  }
}
.p-top-features__textbox {
  margin-top: 100px;
  width: 65%;
}
@media screen and (max-width: 767px) {
  .p-top-features__textbox {
    margin-top: -82px;
    width: 88%;
    margin-left: auto;
  }
}
.p-top-features__title {
  font-size: 24px;
  line-height: 1.9;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-features__title {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
  }
}
.p-top-features__text {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-top-features__text {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
  }
}
.p-top-features .p-top-list {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-top-features .p-top-list {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-top-reason__listItem + .p-top-reason__listItem {
    margin-top: 20px;
  }
}
.p-top-reason__listItem .p-top-reason__listNum:nth-child(1) {
  color: #bbe1ea;
}
.p-top-reason__listItem .p-top-reason__listNum:nth-child(1) {
  color: #e2def0;
}
.p-top-reason__listItem .p-top-reason__listNum:nth-child(1) {
  color: #e3e2e7;
}
.p-top-reason__listInner {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-top-reason__listInner {
    flex-direction: column;
    gap: 20px;
  }
}
.p-top-reason__listImgBox,
.p-top-reason__listTextBox {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-top-reason__listImgBox,
  .p-top-reason__listTextBox {
    width: 100%;
  }
}
.p-top-reason__listImgBox {
  position: relative;
  padding: 140px 0 118px;
}
@media screen and (max-width: 767px) {
  .p-top-reason__listImgBox {
    padding: 90px 0 0;
  }
}
.p-top-reason__listTextBox {
  padding: 140px 0 0;
}
@media screen and (max-width: 767px) {
  .p-top-reason__listTextBox {
    padding: 0;
  }
}
.p-top-reason__listNum {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  font-family: "Jost", sans-serif;
  font-size: 156px;
  line-height: 1.448;
  font-weight: 300;
  color: #bbe1ea;
}
@media screen and (max-width: 767px) {
  .p-top-reason__listNum {
    font-size: 100px;
    line-height: 1.45;
    font-weight: 300;
  }
}
.p-top-reason__listNum span {
  font-size: 90px;
  line-height: 1.448;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-top-reason__listNum span {
    font-size: 60px;
    line-height: 1.45;
    font-weight: 300;
  }
}
.p-top-reason__listImgBg {
  position: absolute;
  z-index: -1;
  right: -60px;
  bottom: 0;
  width: 380px;
}
@media screen and (max-width: 767px) {
  .p-top-reason__listImgBg {
    right: -85px;
    bottom: -146px;
  }
}
.p-top-reason__listImgBg img {
  width: 100%;
  height: auto;
}
.p-top-reason__listImg {
  max-width: 500px;
  width: 100%;
  padding: 0 50px 0 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-reason__listImg {
    padding: 0;
    width: calc(100% + 10px);
    margin: 0 -5px;
  }
}
.p-top-reason__listImg img {
  width: 100%;
  height: auto;
}
.p-top-reason__listBtn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  position: absolute;
  right: 60px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-top-reason__listBtn {
    right: 5px;
    width: 29px;
    height: 29px;
  }
}
.p-top-reason__listBtn img {
  width: 100%;
  height: auto;
}
@media (any-hover: hover) {
  .p-top-reason__listBtn:hover {
    opacity: 0.8;
  }
}
.p-top-reason__listTitle {
  font-size: 24px;
  line-height: 1.9;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-reason__listTitle {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
    margin-bottom: 20px;
  }
}
.p-top-reason__listText {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-top-reason__listText {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
  }
}

.p-top-difference__list {
  display: flex;
  flex-wrap: wrap;
  gap: 46px;
}
@media screen and (max-width: 767px) {
  .p-top-difference__list {
    gap: 26px;
  }
}
.p-top-difference__listItem {
  position: relative;
  width: calc((100% - 46px) / 2);
  box-shadow: 8px 8px 8px rgba(185, 199, 220, 0.6),
    -8px -8px 8px rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 42px 55px 46px;
}
@media screen and (max-width: 767px) {
  .p-top-difference__listItem {
    width: 100%;
    border-radius: 30px;
    padding: 32px 15px;
  }
}
.p-top-difference__listNum {
  position: absolute;
  top: 54px;
  left: -16px;
  transform: matrix(0, -1, 1, 0, 0, 0);
  font-family: "Jost", sans-serif;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  color: #6c85ae;
}
.p-top-difference__listImg {
  width: 120px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  .p-top-difference__listImg {
    margin: 0 auto 20px;
    width: 95px;
  }
}
.p-top-difference__listImg img {
  width: 100%;
  height: auto;
}
.p-top-difference__listTitle {
  font-size: 24px;
  line-height: 1.9;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-difference__listTitle {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
  }
}
.p-top-difference__listText {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-top-difference__listText {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
  }
}
.p-top-difference__function {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 20px;
}
@media screen and (max-width: 767px) {
  .p-top-difference__function {
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 54px;
  }
}
.p-top-difference__function:nth-of-type(2)
  .p-top-difference__functionTitle--head {
  color: #acd134;
}
.p-top-difference__function:nth-of-type(2) .p-top-difference__functionBg {
  right: -32px;
  width: 262px;
}
@media screen and (max-width: 767px) {
  .p-top-difference__function:nth-of-type(2) .p-top-difference__functionBg {
    right: -100px;
  }
}
.p-top-difference__functionHead {
  position: relative;
  padding-top: 50px;
  width: calc(100% - 350px - 20px);
}
@media screen and (max-width: 767px) {
  .p-top-difference__functionHead {
    padding-top: 0;
    width: 100%;
  }
}
.p-top-difference__functionBody,
.p-top-difference__functionBody--wide {
  max-width: 350px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-difference__functionBody,
  .p-top-difference__functionBody--wide {
    max-width: 100%;
  }
}
.p-top-difference__functionBody--wide {
  max-width: 100%;
}
.p-top-difference__functionBody .c-btn__wrapper,
.p-top-difference__functionBody--wide .c-btn__wrapper {
  margin-top: 0;
}
.p-top-difference__functionBody .c-btn__wrapper + .c-btn__wrapper,
.p-top-difference__functionBody--wide .c-btn__wrapper + .c-btn__wrapper {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-difference__functionBody .c-btn__wrapper + .c-btn__wrapper,
  .p-top-difference__functionBody--wide .c-btn__wrapper + .c-btn__wrapper {
    margin-top: 15px;
  }
}
.p-top-difference__functionBg {
  position: absolute;
  top: 0;
  right: -62px;
  z-index: -1;
  width: 345px;
}
@media screen and (max-width: 767px) {
  .p-top-difference__functionBg {
    top: 18px;
    right: -140px;
  }
}
.p-top-difference__functionBg img {
  width: 100%;
  height: auto;
}
.p-top-difference__functionTitle {
  font-size: 54px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top-difference__functionTitle {
    font-size: 33px;
    line-height: 1.5;
    font-weight: 700;
  }
}
.p-top-difference__functionTitle--head {
  display: block;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  color: #57c4e6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-top-difference__functionTitle--head {
    font-size: 10px;
    line-height: 1;
    font-weight: 500;
  }
}
.p-top-difference__functionTitle--head span {
  font-family: "Jost", sans-serif;
  letter-spacing: normal;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top-difference__functionTitle--head span {
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
  }
}
.p-top-difference__functionLead {
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-difference__functionLead {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 500;
    margin-top: 20px;
  }
}
.p-top-difference__scalability .c-btn__wrapper {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-top-difference__scalability .c-btn__wrapper {
    margin-top: 30px;
  }
}
.p-top-difference__scalabilityList {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 36px;
}
@media screen and (max-width: 767px) {
  .p-top-difference__scalabilityList {
    gap: 11px 7px;
  }
}
.p-top-difference__scalabilityItem {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: calc((100% - 72px) / 3);
  height: 104px;
  border-radius: 20px;
  box-shadow: 8px 8px 8px rgba(185, 199, 220, 0.6),
    -8px -8px 8px rgba(255, 255, 255, 0.6);
  background: #f0f5f7;
}
@media screen and (max-width: 767px) {
  .p-top-difference__scalabilityItem {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 900;
    width: calc((100% - 7px) / 2);
    height: 94px;
    box-shadow: 3px 3px 3px rgba(185, 199, 220, 0.6),
      -3px -3px 3px rgba(255, 255, 255, 0.6);
  }
}

.p-top-price__list {
  display: flex;
  flex-wrap: wrap;
  gap: 46px;
}
@media screen and (max-width: 767px) {
  .p-top-price__list {
    gap: 26px;
  }
}
.p-top-price__listItem {
  display: flex;
  flex-direction: column;
  width: calc((100% - 46px) / 2);
  box-shadow: 8px 8px 8px rgba(185, 199, 220, 0.6),
    -8px -8px 8px rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  background: #f0f5f7;
  border: solid 10px #f0f5f7;
  padding: 0 0 30px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-price__listItem {
    width: 100%;
    padding: 0 0 20px;
  }
}
.p-top-price__listItem:nth-child(2) .p-top-price__listTitle {
  background: #acd134;
}
.p-top-price__listItem:nth-child(2) .p-top-price__listPrice::after {
  background: #acd134;
}
.p-top-price__listTitle {
  font-size: 24px;
  line-height: 1.9;
  font-weight: 900;
  color: #fff;
  background: #57c4e6;
  text-align: center;
  padding: 18px 0;
}
@media screen and (max-width: 767px) {
  .p-top-price__listTitle {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 900;
  }
}
.p-top-price__listSubTitle {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  color: #57c4e6;
  margin: 26px 0 20px;
}
@media screen and (max-width: 767px) {
  .p-top-price__listSubTitle {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
    margin: 0 0 10px;
  }
}
.p-top-price__listItemBottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top-price__listItemBottom {
    margin-top: 20px;
  }
}
.p-top-price__listText {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
  max-width: 300px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top-price__listText {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 100%;
    padding: 0 5px;
  }
}
.p-top-price__listPrice {
  display: flex;
  align-items: center;
  gap: 0 8px;
  padding-top: 20px;
  margin-top: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-price__listPrice {
    gap: 0 5px;
  }
}
.p-top-price__listPrice::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  width: 60px;
  height: 3px;
  background: #57c4e6;
}
@media screen and (max-width: 767px) {
  .p-top-price__listPrice::after {
    height: 2px;
  }
}
.p-top-price__listPrice--first {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .p-top-price__listPrice--first {
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
  }
}
.p-top-price__listPrice--lg {
  font-family: "Jost", sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top-price__listPrice--lg {
    font-size: 36px;
    line-height: 1;
    font-weight: 500;
  }
}
.p-top-price__listPrice--sm {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  padding-top: 6px;
}
@media screen and (max-width: 767px) {
  .p-top-price__listPrice--sm {
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
  }
}
.p-top-price__note {
  max-width: 900px;
  width: 100%;
  margin: 30px auto 0;
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .p-top-price__note {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
  }
}

.p-top-other {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-top-other {
    flex-direction: column;
    gap: 20px;
  }
}
.p-top-other__col {
  max-width: 352px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-other__col {
    max-width: 100%;
  }
}
.p-top-other__col:nth-child(2) {
  max-width: calc(100% - 352px);
}
@media screen and (max-width: 767px) {
  .p-top-other__col:nth-child(2) {
    max-width: 100%;
  }
}

.top-faq__item {
  padding: 20px 0;
  border-bottom: solid 1px #cad3e0;
}
.top-faq__item:first-child {
  padding-top: 0;
}
.top-faq__itemHead {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  display: flex;
  align-items: center;
  text-align: left;
  width: 100%;
  padding-right: 35px;
  transition: opacity 0.3s ease;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-faq__itemHead {
    padding-right: 25px;
  }
}
.top-faq__itemHead.is-active::after {
  transform: translate(0, -50%) rotate(0);
  opacity: 0;
}
.top-faq__itemHead::before,
.top-faq__itemHead::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  width: 15px;
  height: 2px;
  background: #e36211;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top-faq__itemHead::before,
  .top-faq__itemHead::after {
    right: 0;
  }
}
.top-faq__itemHead::after {
  transform: translate(0, -50%) rotate(90deg);
}
@media (any-hover: hover) {
  .top-faq__itemHead:hover {
    opacity: 0.8;
  }
}
.top-faq__itemBody {
  display: none;
}
.top-faq__itemHeadMark,
.top-faq__itemBodyMark {
  flex-shrink: 0;
  width: 32px;
  text-align: left;
  font-family: "Jost", sans-serif;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-faq__itemHeadMark,
  .top-faq__itemBodyMark {
    width: 30px;
    font-size: 21px;
    line-height: 1.5;
    font-weight: 600;
  }
}
.top-faq__itemHeadMark {
  color: #acd134;
}
.top-faq__itemBodyMark {
  color: #57c4e6;
}
.top-faq__itemHeadText {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-faq__itemHeadText {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
  }
}
.top-faq__itemBodyInner {
  display: flex;
  padding-top: 20px;
}
.top-faq__itemBodyText {
  padding-top: 5px;
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .top-faq__itemBodyText {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
  }
}

.p-top-blogCard {
  margin-right: calc(50% - 50vw);
}
.p-top-blogCard__list {
  position: relative;
  width: calc(100% + 15px);
  margin-left: -15px;
}
@media screen and (max-width: 767px) {
  .p-top-blogCard__list {
    width: calc(100% + 10px);
    margin-left: -10px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-blogCard__list .c-blogCard__img {
    height: 158px;
  }
}
.p-top-blogCard__list .c-blogCard__inner {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-top-blogCard__list .c-blogCard__inner {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }
}
.p-top-blogCard__list .splide__slide {
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .p-top-blogCard__list .splide__slide {
    padding: 10px;
  }
}
.p-top-blogCard__list .splide__arrows {
  position: absolute;
  left: -61px;
  top: 50%;
  z-index: 1;
  transform: translate(0, -50%);
  max-width: 800px;
  width: 100%;
}
.p-top-blogCard__list .splide__arrow {
  width: 46px;
  height: 46px;
  background: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-top-blogCard__list .splide__arrow:hover {
    opacity: 0.8;
  }
}
.p-top-blogCard__list .splide__arrow--prev {
  left: 0;
}
.p-top-blogCard__list .splide__arrow--next {
  right: 0;
}

.page {
  overflow: clip;
}

.p-page-content {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-page-content {
    margin-top: 50px;
  }
}
.p-page-content .c-sectionTitle {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-page-content .c-sectionTitle {
    margin-top: 50px;
  }
}
.p-page-content .p-page-inner > *:last-child,
.p-page-content .p-page-inner--lg > *:last-child {
  margin-bottom: 0;
}

.p-page-lead {
  text-align: center;
  font-size: 24px;
  line-height: 1.9;
  font-weight: 700;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-page-lead {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
    margin-bottom: 30px;
  }
}

.p-page-inner,
.p-page-inner--lg {
  max-width: 1040px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.p-page-inner--lg {
  max-width: 1180px;
}

.p-page-headImg {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-page-headImg {
    margin-top: 30px;
  }
}
.p-page-headImg img {
  width: 100%;
  height: auto;
}

.p-page-about {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .p-page-about {
    gap: 26px;
  }
}
.p-page-about__item {
  width: calc((100% - 72px) / 3);
  box-shadow: 8px 8px 8px rgba(185, 199, 220, 0.6),
    -8px -8px 8px rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  padding: 42px 22px;
}
@media screen and (max-width: 767px) {
  .p-page-about__item {
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 30px;
    padding: 30px 13px;
  }
}
.p-page-about__img {
  width: 115px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-page-about__img {
    margin: 0;
    width: 85px;
    flex-shrink: 0;
  }
}
.p-page-about__img img {
  width: 100%;
  height: auto;
}
.p-page-about__text {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-page-about__text {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
    margin-top: 0;
    width: 100%;
  }
}
.p-page-about__text span {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-page-about__text span {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
  }
}

.p-page-purpose {
  max-width: 800px;
  margin: 80px auto;
}
@media screen and (max-width: 767px) {
  .p-page-purpose {
    margin: 50px auto;
  }
}
.p-page-purpose__title {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 900;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-page-purpose__title {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 900;
  }
}
.p-page-purpose__title span {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  color: #6c85ae;
}
@media screen and (max-width: 767px) {
  .p-page-purpose__title span {
    font-size: 10px;
    line-height: 1.4;
    font-weight: 500;
  }
}
.p-page-purpose__text {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-page-purpose__text {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
  }
}

.p-page-flow {
  margin: 80px calc(50% - 50vw);
  background: #fff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-page-flow {
    margin: 50px calc(50% - 50vw);
  }
}
.p-page-flow__inner {
  max-width: 960px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.p-page-flow__content {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-page-flow__content {
    flex-direction: column;
    margin: 0 calc(50% - 50vw);
  }
}
.p-page-flow__item {
  width: 100%;
  height: 560px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-page-flow__item {
    height: auto;
  }
}
.p-page-flow__item:nth-child(odd) {
  padding-right: 60px;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
}
@media screen and (max-width: 767px) {
  .p-page-flow__item:nth-child(odd) {
    padding-right: 20px;
    margin-left: 0;
    padding-left: 20px;
    padding-bottom: 8px;
    clip-path: polygon(0 0, 100% 0%, 100% 89.5%, 50% 100%, 0 89.5%);
  }
}
.p-page-flow__item:nth-child(odd)::before {
  content: "";
  width: calc(100% + 24px);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #cad3e0;
  clip-path: polygon(0% 0%, 88% 0%, 100% 50%, 88% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .p-page-flow__item:nth-child(odd)::before {
    width: 100%;
    height: calc(100% - 8px);
    clip-path: polygon(0 0, 100% 0%, 100% 89.5%, 50% 100%, 0 89.5%);
  }
}
.p-page-flow__item:nth-child(odd)::after {
  content: "";
  width: calc(100% + 36px);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: #f0f5f7;
  clip-path: polygon(0% 0%, 88% 0%, 100% 50%, 88% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .p-page-flow__item:nth-child(odd)::after {
    width: 100%;
    clip-path: polygon(0 0, 100% 0%, 100% 89.5%, 50% 100%, 0 89.5%);
  }
}
.p-page-flow__item:nth-child(even) {
  padding-left: 60px;
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
}
@media screen and (max-width: 767px) {
  .p-page-flow__item:nth-child(even) {
    padding-left: 20px;
    margin-right: 0;
    padding-right: 20px;
  }
}
.p-page-flow__item:nth-child(even) .p-page-flow__itemTitle--en {
  color: #57c4e6;
}
.p-page-flow__itemTitle {
  margin-bottom: 20px;
}
.p-page-flow__itemTitle--en {
  display: block;
  width: fit-content;
  margin: auto;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.6875;
  letter-spacing: 0.2em;
  color: #fff;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
  opacity: 0.4;
}
@media screen and (max-width: 1023px) {
  .p-page-flow__itemTitle--en {
    font-size: 5.8651026393vw;
  }
}
@media screen and (max-width: 767px) {
  .p-page-flow__itemTitle--en {
    font-size: 48px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  }
}
.p-page-flow__itemTitle--ja {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  margin: -42px auto 0;
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 900;
  color: #000525;
}
@media screen and (max-width: 767px) {
  .p-page-flow__itemTitle--ja {
    margin: -40px auto 0;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 900;
  }
}
.p-page-flow__itemText {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-page-flow__itemText {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
  }
}
.p-page-flow__itemInner {
  position: relative;
  height: 100%;
  padding-top: 35px;
}
@media screen and (max-width: 767px) {
  .p-page-flow__itemInner {
    padding-top: 30px;
  }
}
.p-page-flow__itemImg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-page-flow__itemImg {
    position: static;
    margin: 30px calc(50% - 50vw) 0;
  }
}
.p-page-flow__itemImg img {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-page-flow__itemImg img {
    width: 100%;
  }
}

.p-page-relation,
.p-page-relation--option,
.p-page-relation--center {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 26px 36px;
}
@media screen and (max-width: 767px) {
  .p-page-relation,
  .p-page-relation--option,
  .p-page-relation--center {
    gap: 26px;
  }
}
.p-page-relation--center {
  justify-content: center;
}
.p-page-relation--option {
  gap: 26px 29px;
}
@media screen and (max-width: 767px) {
  .p-page-relation--option {
    gap: 7px;
  }
}
.p-page-relation--option .p-page-relation__item {
  width: calc((100% - 87px) / 4);
}
@media screen and (max-width: 767px) {
  .p-page-relation--option .p-page-relation__item {
    width: calc((100% - 7px) / 2);
  }
}
.p-page-relation--option .p-page-relation__itembox {
  gap: 5px;
  align-items: center;
  height: 104px;
  padding: 22px 5px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .p-page-relation--option .p-page-relation__itembox {
    height: 94px;
    box-shadow: 3px 3px 3px rgba(185, 199, 220, 0.6),
      -3px -3px 3px rgba(255, 255, 255, 0.6);
  }
}
@media screen and (max-width: 767px) {
  .p-page-relation--option .p-page-relation__itemTitle {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  .p-page-relation--option .p-page-relation__itemText {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
  }
}
.p-page-relation__item {
  width: calc((100% - 72px) / 3);
}
@media screen and (max-width: 767px) {
  .p-page-relation__item {
    width: 100%;
  }
}
.p-page-relation__itembox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  height: 178px;
  padding: 22px;
  border-radius: 50px;
  box-shadow: 8px 8px 8px rgba(185, 199, 220, 0.6),
    -8px -8px 8px rgba(255, 255, 255, 0.6);
  background: #f0f5f7;
}
@media screen and (max-width: 767px) {
  .p-page-relation__itembox {
    gap: 5px;
    height: auto;
    padding: 22px 5px;
    border-radius: 30px;
  }
}
.p-page-relation__itemTitle {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-page-relation__itemTitle {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
  }
}
.p-page-relation__itemText {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-page-relation__itemText {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    text-align: center;
  }
}
.p-page-relation__itemNote {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-page-relation__itemNote {
    padding-left: 1em;
    text-indent: -1em;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
  }
}

.p-single {
  overflow: visible !important;
}

.p-single-content {
  margin-top: 58px;
}
@media screen and (max-width: 767px) {
  .p-single-content {
    margin-top: 40px;
  }
}
.p-single-content .p-single-inner > *:last-child,
.p-single-content .p-single-inner--lg > *:last-child {
  margin-bottom: 0;
}
.p-single-content .c-breadcrumb {
  margin-top: 0;
  margin-bottom: 30px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-single-content .c-breadcrumb {
    margin-bottom: 20px;
  }
}
.p-single-content .c-author {
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .p-single-content .c-author {
    width: calc(100% + 40px);
    margin: 50px -20px 0;
  }
}

.p-single-inner,
.p-single-inner--lg {
  max-width: 1040px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.p-single-inner--lg {
  max-width: 1180px;
}

.p-single-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .p-single-wrapper {
    gap: 50px;
  }
}

.p-single-main {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .p-single-main {
    width: 100%;
  }
}

.p-single-sidebar {
  width: calc(35% - 48px);
}
@media screen and (max-width: 767px) {
  .p-single-sidebar {
    width: 100%;
  }
}
.p-single-sidebar > *:first-child {
  margin-top: 0;
}
.p-single-sidebar__sticky {
  position: sticky;
  top: 0;
}
.p-single-sidebar__title,
.p-single-sidebar__title--sub {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
  padding-bottom: 8px;
  margin: 50px 0 20px;
  position: relative;
}
.p-single-sidebar__title::after,
.p-single-sidebar__title--sub::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #57c4e6;
  position: absolute;
  left: 0;
  bottom: 0;
}
.p-single-sidebar__title--sub::after {
  background: #acd134;
}

.p-single-sidebarPostList__item:first-child a {
  padding-top: 0;
  border-top: none;
}
.p-single-sidebarPostList__item a {
  display: flex;
  padding: 20px 0;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-single-sidebarPostList__item a:hover {
    opacity: 0.8;
  }
}
.p-single-sidebarPostList__img {
  width: 100px;
  height: 56px;
  flex-shrink: 0;
}
.p-single-sidebarPostList__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-single-sidebarPostList__text {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 700;
  color: #000525;
}
@media screen and (max-width: 767px) {
  .p-single-sidebarPostList__text {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 700;
  }
}

.p-single-thumbnail {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-single-thumbnail {
    margin-bottom: 10px;
  }
}
.p-single-thumbnail img {
  width: 100%;
  height: auto;
}

.p-single-title {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-single-title {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 30px;
  }
}

.p-single-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.p-single-meta time {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  line-height: 2;
  font-weight: 400;
}

.p-singleCase {
  overflow: visible !important;
}

.p-singleCase-content {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-singleCase-content {
    margin-top: 50px;
  }
}
.p-singleCase-content .p-singleCase-inner > *:last-child,
.p-singleCase-content .p-singleCase-inner--lg > *:last-child {
  margin-bottom: 0;
}
.p-singleCase-content .c-author--case {
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .p-singleCase-content .c-author--case {
    width: calc(100% + 40px);
    margin: 50px -20px 0;
  }
}

.p-singleCase-inner,
.p-singleCase-inner--lg {
  max-width: 840px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.p-singleCase-inner--lg {
  max-width: 1180px;
}

.p-singleCase-thumbnail {
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-singleCase-thumbnail {
    margin-bottom: 30px;
  }
}
.p-singleCase-thumbnail img {
  width: 100%;
  height: auto;
}

.p-singleCase-title {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-singleCase-title {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 20px;
  }
}

.p-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 46px;
}
@media screen and (max-width: 767px) {
  .p-price-list {
    gap: 26px;
  }
}
.p-price-list__item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 46px) / 2);
  box-shadow: 8px 8px 8px rgba(185, 199, 220, 0.6),
    -8px -8px 8px rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  background: #f0f5f7;
  border: solid 10px #f0f5f7;
  padding: 0 0 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-price-list__item {
    width: 100%;
  }
}
.p-price-list__item:nth-child(2) .p-price-list__title {
  background: #acd134;
}
.p-price-list__item:nth-child(2) .p-price-list__bodyPrice::after {
  background: #acd134;
}
.p-price-list__item:nth-child(2) .p-price-list__bottomTitle {
  color: #acd134;
}
.p-price-list__title {
  font-size: 24px;
  line-height: 1.9;
  font-weight: 900;
  color: #fff;
  background: #57c4e6;
  text-align: center;
  padding: 18px 0;
}
@media screen and (max-width: 767px) {
  .p-price-list__title {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 900;
  }
}
.p-price-list__body {
  margin-top: 33px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-price-list__body {
    margin-top: 20px;
  }
}
.p-price-list__bodyText {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-price-list__bodyText {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 100%;
    padding: 0 5px;
  }
}
.p-price-list__bodyPrice {
  display: flex;
  align-items: center;
  gap: 0 8px;
  padding-top: 20px;
  margin-top: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-price-list__bodyPrice {
    gap: 0 5px;
  }
}
.p-price-list__bodyPrice::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  width: 60px;
  height: 3px;
  background: #57c4e6;
}
@media screen and (max-width: 767px) {
  .p-price-list__bodyPrice::after {
    height: 2px;
  }
}
.p-price-list__bodyPrice--first {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .p-price-list__bodyPrice--first {
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
  }
}
.p-price-list__bodyPrice--lg {
  font-family: "Jost", sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-price-list__bodyPrice--lg {
    font-size: 36px;
    line-height: 1;
    font-weight: 500;
  }
}
.p-price-list__bodyPrice--sm {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  padding-top: 6px;
}
@media screen and (max-width: 767px) {
  .p-price-list__bodyPrice--sm {
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
  }
}
.p-price-list__bottom {
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .p-price-list__bottom {
    padding: 0;
  }
}
.p-price-list__bottomInner {
  padding-top: 20px;
  margin-top: 20px;
  border-top: solid 1px #fff;
}
.p-price-list__bottomInner > *:first-child {
  margin-top: 0;
}
.p-price-list__bottomTitle {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #57c4e6;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-price-list__bottomTitle {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
  }
}
.p-price-list__bottomText {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-price-list__bottomText {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
  }
}

.p-price-note {
  max-width: 800px;
  width: 100%;
  margin: 30px auto 0;
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .p-price-note {
    font-size: 10px;
    line-height: 1.5;
    font-weight: 400;
  }
}

.p-function-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-function-list__item + .p-function-list__item {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-function-list__item + .p-function-list__item {
    margin-top: 50px;
  }
}
.p-function-list__title {
  margin-bottom: 30px;
  color: #acd134;
  font-size: 54px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-function-list__title {
    margin-bottom: 20px;
    font-size: 33px;
    line-height: 1.5;
    font-weight: 700;
  }
}
.p-function-list__text {
  font-size: 24px;
  line-height: 1.9;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-function-list__text {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
  }
}
.p-function-list__img {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-function-list__img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
.p-function-list__img img {
  width: 100%;
  height: auto;
}
.p-function-list__btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-function-list__btn {
    right: 20px;
    bottom: 10px;
    width: 29px;
    height: 29px;
  }
}
.p-function-list__btn img {
  width: 100%;
  height: auto;
}
@media (any-hover: hover) {
  .p-function-list__btn:hover {
    opacity: 0.8;
  }
}
.p-function-list__row {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-function-list__row {
    flex-direction: column;
    gap: 30px;
  }
}
.p-function-list__col {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-function-list__col {
    width: 100%;
  }
}

.p-function-desc {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-function-desc {
    margin: 20px 0 0;
  }
}
.p-function-desc__item + .p-function-desc__item {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-function-desc__item + .p-function-desc__item {
    margin-top: 10px;
  }
}
.p-function-desc__item {
  position: relative;
  padding-left: 33px;
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-function-desc__item {
    padding-left: 22px;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
  }
}
.p-function-desc__item::before {
  content: "";
  display: block;
  width: 26px;
  height: 24px;
  background-image: url("../images/top/icon-list.svg");
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0.4em;
}
@media screen and (max-width: 767px) {
  .p-function-desc__item::before {
    width: 17px;
    height: 16px;
    top: 0.2em;
  }
}

.p-flow-content + .p-flow-content {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-flow-content + .p-flow-content {
    margin-top: 30px;
  }
}
.p-flow-content__title {
  font-size: 24px;
  line-height: 1.9;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-flow-content__title {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
    text-align: left;
  }
}
.p-flow-content__text,
.p-flow-content__text--note {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-flow-content__text,
  .p-flow-content__text--note {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    text-align: left;
  }
}
.p-flow-content__text--note {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
  margin-top: -15px;
}
.p-flow-content .p-flow-relation {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-flow-content .p-flow-relation {
    margin-top: 20px;
    gap: 7px;
  }
}
@media screen and (max-width: 767px) {
  .p-flow-content .p-flow-relation .p-page-relation__item {
    width: calc((100% - 7px) / 2);
  }
}
.p-flow-content .p-flow-relation .p-page-relation__itembox {
  gap: 5px;
  height: 148px;
  padding: 22px 10px;
}
@media screen and (max-width: 767px) {
  .p-flow-content .p-flow-relation .p-page-relation__itembox {
    gap: 0;
    height: 94px;
    padding: 0;
    box-shadow: 3px 3px 3px rgba(185, 199, 220, 0.6),
      -3px -3px 3px rgba(255, 255, 255, 0.6);
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-flow-content .p-flow-relation .p-page-relation__itemTitle {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.05em;
  }
}
.p-flow-content .p-flow-relation .p-page-relation__itemText {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-flow-content .p-flow-relation .p-page-relation__itemText {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.05em;
  }
}
.p-flow-content .p-flow-relation .p-page-relation__itemText span {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-flow-content .p-flow-relation .p-page-relation__itemText span {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  .p-flow-content .p-flow-relation .p-page-relation__itemNote {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.5;
    font-weight: 400;
  }
}

.p-form {
  overflow: visible !important;
}
.p-form .p-page-inner {
  max-width: 840px;
}

.p-form-tel a {
  display: flex;
  justify-content: center;
  padding: 42px 20px;
  border-radius: 50px;
  box-shadow: 8px 8px 8px rgba(185, 199, 220, 0.6),
    -8px -8px 8px rgba(255, 255, 255, 0.6);
  background: #f0f5f7;
  color: #000525;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-form-tel a {
    flex-direction: column;
    align-items: center;
    padding: 20px 20px;
    border-radius: 30px;
  }
}
@media (any-hover: hover) {
  .p-form-tel a:hover {
    opacity: 0.8;
  }
}
.p-form-tel__telText {
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  padding-right: 50px;
  margin-right: 50px;
  border-right: solid 1px #000525;
}
@media screen and (max-width: 767px) {
  .p-form-tel__telText {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 700;
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-right: none;
    position: relative;
  }
  .p-form-tel__telText::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 47px;
    height: 1px;
    background: #000525;
  }
}
.p-form-tel__telContent {
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-family: "Jost", sans-serif;
  font-size: 38px;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-form-tel__telContent {
    align-items: center;
    font-size: 28px;
    line-height: 1.4;
    font-weight: 500;
  }
}
.p-form-tel__telTime {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-form-tel__telTime {
    font-size: 13px;
    line-height: 2;
    font-weight: 500;
  }
}

.p-form-content {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-form-content {
    margin-top: 50px;
  }
}

.p-form-form--confirm .p-form-form__required {
  display: none;
}
.p-form-form--confirm .p-form-form__el {
  padding-top: 10px;
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-form-form--confirm .p-form-form__el {
    padding-top: 0;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
  }
}
.p-form-form--confirm .p-form-form__row--checkbox .p-form-form__el {
  padding-top: 0;
}
.p-form-form--confirm .p-form-form__btn {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-form-form--confirm .p-form-form__btn {
    flex-direction: column;
  }
}
.p-form-form__content + .p-form-form__content {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-form-form__content + .p-form-form__content {
    margin-top: 30px;
  }
}
.p-form-form__row,
.p-form-form__row--checkbox {
  display: flex;
  padding: 30px 0;
  border-bottom: solid 1px #cad3e0;
}
.p-form-form__row:first-child,
.p-form-form__row--checkbox:first-child {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .p-form-form__row,
  .p-form-form__row--checkbox {
    flex-direction: column;
    gap: 15px;
  }
}
.p-form-form__row--checkbox .p-form-form__label {
  padding-top: 0;
}
.p-form-form__label {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-top: 10px;
  width: 252px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-form-form__label {
    gap: 15px;
    padding-top: 0;
    width: 100%;
  }
}
.p-form-form__label span:not([class]) {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-form-form__label span:not([class]) {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 700;
  }
}
.p-form-form__required {
  font-size: 11px;
  line-height: 1;
  font-weight: 400;
  color: #e36211;
  border: solid 1px #e36211;
  border-radius: 100px;
  padding: 7px 20px;
}
@media screen and (max-width: 767px) {
  .p-form-form__required {
    font-size: 10px;
    line-height: 1;
    font-weight: 400;
    align-self: center;
    padding: 5px 15px;
  }
}
.p-form-form__el {
  width: 100%;
}
.p-form-form__el label {
  cursor: pointer;
}
.p-form-form__el input[type="text"],
.p-form-form__el input[type="tel"],
.p-form-form__el input[type="email"],
.p-form-form__el textarea {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
  width: 100%;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #000525;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-form-form__el input[type="text"],
  .p-form-form__el input[type="tel"],
  .p-form-form__el input[type="email"],
  .p-form-form__el textarea {
    padding: 8px 10px;
  }
}
.p-form-form__el input[type="text"]::placeholder,
.p-form-form__el input[type="tel"]::placeholder,
.p-form-form__el input[type="email"]::placeholder,
.p-form-form__el textarea::placeholder {
  color: #cad3e0;
}
.p-form-form__el input[type="checkbox"] {
  appearance: none;
  height: 16px;
  width: 16px;
  border: 1px solid #000525;
  background: none;
  border-radius: 5px;
  position: relative;
  margin: 0;
}
.p-form-form__el input[type="checkbox"]:checked {
  border: 1px solid #e36211;
}
.p-form-form__el input[type="checkbox"]:checked::before {
  content: "";
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #e36211;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.p-form-form__checkbox {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  width: fit-content;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-form-form__checkbox {
    font-size: 16px;
    line-height: 1.6875;
    font-weight: 400;
    gap: 8px;
  }
}
.p-form-form__checkbox.wpcf7-form-control {
  display: block;
}
.p-form-form__checkbox .wpcf7-list-item {
  margin-left: 0;
}
.p-form-form__checkbox .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 10px;
}
.p-form-form__checkbox span {
  display: block;
}
.p-form-form__checkbox label {
  width: fit-content;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-form-form__checkbox label {
    gap: 8px;
  }
}
.p-form-form__checkbox input[type="checkbox"] {
  margin-top: 5.5px;
  flex-shrink: 0;
}
.p-form-form__checkbox + .p-form-form__checkbox {
  margin-top: 10px;
}
.p-form-form__agreeWrap {
  margin-top: 30px;
}
.p-form-form__agreeWrap .p-form-form__checkbox {
  margin: 0 auto;
}
.p-form-form__agreeWrap .p-form-form__error,
.p-form-form__agreeWrap .wpcf7-not-valid-tip {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form-form__agreeWrap .p-form-form__error,
  .p-form-form__agreeWrap .wpcf7-not-valid-tip {
    text-align: left;
  }
}
.p-form-form__linkWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 50px;
}
@media screen and (max-width: 767px) {
  .p-form-form__linkWrap {
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px;
  }
}
.p-form-form__link {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
  width: fit-content;
  color: #000525;
  text-decoration: none;
  padding-right: 23px;
  position: relative;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-form-form__link {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
  }
}
@media (any-hover: hover) {
  .p-form-form__link:hover {
    opacity: 0.8;
  }
}
.p-form-form__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 18px;
  height: 18px;
  background-image: url("../images/common/icon-blank.svg");
  background-size: cover;
  transform: translate(0, -50%);
}
.p-form-form__btn {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-form-form__btn {
    margin-top: 50px;
  }
}
.p-form-form__error {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
  display: none;
  width: 100%;
  color: #f93a48;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-form-form__error {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
  }
}

.wpcf7-not-valid-tip.wpcf7-not-valid-tip {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
  width: 100%;
  color: #f93a48;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .wpcf7-not-valid-tip.wpcf7-not-valid-tip {
    font-size: 14px;
    line-height: 1.7;
  }
}

.wpcf7-response-output.wpcf7-response-output {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
  text-align: center;
  margin: 80px 0 0 !important;
  padding: 0 !important;
  border: none !important;
}
@media screen and (max-width: 767px) {
  .wpcf7-response-output.wpcf7-response-output {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    text-align: left;
    margin: 30px 0 0 !important;
  }
}

.wpcf7-form.sent .p-form-form__btn {
  display: none;
}

.wpcf7-form.invalid .wpcf7-response-output.wpcf7-response-output {
  color: #f93a48;
}

.p-contents {
  overflow: visible !important;
}
.p-contents .p-page-lead {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-contents .p-page-lead {
    margin-bottom: 30px;
  }
}
.p-contents .p-contents-wrapper {
  padding-top: 50px;
  margin-top: 50px;
  border-top: solid 1px #cad3e0;
}
@media screen and (max-width: 767px) {
  .p-contents .p-contents-wrapper {
    padding-top: 30px;
    margin-top: 30px;
  }
}

.p-archive .p-contents-wrapper {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.p-contents-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .p-contents-wrapper {
    gap: 50px;
  }
}

.p-contents-main {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .p-contents-main {
    width: 100%;
  }
}

.p-contents-sidebar {
  width: calc(35% - 48px);
}
@media screen and (max-width: 767px) {
  .p-contents-sidebar {
    width: 100%;
  }
}
.p-contents-sidebar > *:first-child {
  margin-top: 0;
}
.p-contents-sidebar__title,
.p-contents-sidebar__title--sub {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
  padding-bottom: 8px;
  margin: 50px 0 20px;
  position: relative;
}
.p-contents-sidebar__title::after,
.p-contents-sidebar__title--sub::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #57c4e6;
  position: absolute;
  left: 0;
  bottom: 0;
}
.p-contents-sidebar__title--sub::after {
  background: #acd134;
}

.p-contents-postList {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .p-contents-postList {
    gap: 20px;
  }
}
.p-contents-postList .c-blogCard {
  width: calc((100% - 50px) / 2);
}
@media screen and (max-width: 767px) {
  .p-contents-postList .c-blogCard {
    width: 100%;
  }
}

.p-contents-sidebarPostList__item:first-child a {
  padding-top: 0;
  border-top: none;
}
.p-contents-sidebarPostList__item a {
  display: flex;
  padding: 20px 0;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-contents-sidebarPostList__item a:hover {
    opacity: 0.8;
  }
}
.p-contents-sidebarPostList__img {
  width: 100px;
  height: 56px;
  flex-shrink: 0;
}
.p-contents-sidebarPostList__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-contents-sidebarPostList__text {
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 700;
  color: #000525;
}
@media screen and (max-width: 767px) {
  .p-contents-sidebarPostList__text {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 700;
  }
}

.p-case {
  overflow: visible !important;
}

.p-case-postList {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .p-case-postList {
    gap: 20px;
  }
}
.p-case-postList .c-blogCard {
  width: calc((100% - 100px) / 3);
}
@media screen and (max-width: 767px) {
  .p-case-postList .c-blogCard {
    width: 100%;
  }
}

.u-pc-only {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
}

.u-clear {
  overflow: hidden !important;
}

.u-text-underline {
  text-decoration: underline;
}

.u-text-bold {
  font-weight: bold;
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.p-policy-note {
  max-width: 800px;
  width: 100%;
  margin: 30px auto 0;
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .p-policy-note {
    font-size: 10px;
    line-height: 1.5;
    font-weight: 400;
  }
}
.p-policy-note__text {
  margin-bottom: 20px;
}
.policy-list {
  list-style: none;
}

/* 無料相談申し込みコンテンツの追加 */
.single-notice .cons_banner,
.single-notice .cons_banner img {
  display: none;
}
.cons_banner {
  margin: 40px auto;
}
.cons_banner img {
  max-width: 100%;
}

/* お役立ちコラム　フッター */
/* ==================================
footer nav button
================================== */

#footer-nav-button {
  padding-top: 10em;
  background-color: #ecf2f2;
}

#footer_btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.9);
  padding-top: 1em;
  padding-bottom: 1em;
  width: 100%;
  margin: 0 auto;
}

#footer_cta {
  display: flex;
  justify-content: center;
  align-items: center;
}

#footer_cta .img-cover {
  padding-left: 0.5em;
  padding-right: 0.5em;
}
#footer_cta .img-cover img {
  max-width: 410px;
}

@media screen and (max-width: 767px) {
  #footer-nav-button {
    padding-top: 8em;
  }

  #footer_btn {
    position: fixed;
    bottom: 0px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1em 0;
    z-index: 1;
    border-top: 1px #1cc059 solid;
    width: 100%;
  }

  #footer_cta .img-cover {
    width: calc(50% - 0.4em);
    padding-left: 0.2em;
    padding-right: 0.2em;
  }
  #footer_cta .img-cover img {
    max-width: 100%;
  }
}

/*member*/
.prof_pc {
  display: block;
}
.prof_sp {
  display: none;
}

.prof_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.profile_table {
  background: #ccc;
  max-width: calc(100% / 3 - 20px);
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.profile_table .image {
  position: relative;
  width: 100%;
  max-height: 380px;
  margin: auto;
}
.profile_table .image img {
  max-width: 100%;
  width: 100%;
  height: 380px;
  object-fit: cover;
  vertical-align: bottom;
}
.profile_table a {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  background: transparent linear-gradient(208deg, #57c4e6 0%, #acd134 100%) 0%
    0% no-repeat padding-box;
  color: #fff;
  width: 65px;
  height: 65px;
  text-decoration: none;
  text-align: center;
  padding: 1em;
}
.modal {
  z-index: 10;
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.4);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content {
  display: flex;
  background: #fff;
  left: 50%;
  padding: 40px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}
.modal__content .prof_left {
  width: 30%;
}
.modal__content .prof_left img {
  object-fit: cover;
  vertical-align: bottom;
  max-width: 100%;
  height: 320px;
}
.modal__content .prof_right {
  width: 70%;
}
.modal__content .prof_right h3 {
  color: #6c85ae;
  margin-bottom: 1em;
}
.js-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  text-align: center;
}
.modal__content .js-modal-close {
  top: 1em;
  right: 1em;
  background: transparent linear-gradient(208deg, #57c4e6 0%, #acd134 100%) 0%
    0% no-repeat padding-box;
  color: #fff;
  line-height: 1;
  font-size: 1.4em;
  width: 65px;
  height: 65px;
  text-decoration: none;
  text-align: center;
  padding: 1em;
}
.profile_table {
  margin-bottom: 20px;
}
.profile_table .prof_name {
  position: absolute;
  bottom: 0;
  background: #fff;
  text-align: left;
  width: 100%;
  height: 65px;
  padding: 0 20px;
}
.profile_table p {
  margin: 0;
}
.profile_table .position {
}
.profile_table .name {
  font-weight: bold;
  font-size: 1.2em;
}
.modal__content .prof_right div.award {
  color: #6c85ae;
  font-weight: bold;
  padding-left: 2em;
}
.modal__content .prof_right h4 {
  color: #6c85ae;
  font-size: 1.2em;
  margin: 1em 0 0.5em 0;
}
.modal__content .prof_right div.award img {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .prof_pc {
    display: none;
  }
  .prof_sp {
    display: block;
  }

  .profile_table {
    max-width: 100%;
  }
  .modal__content {
    flex-direction: column;
    justify-content: center;
    width: 90%;
    padding: 20px;
  }
  .modal__content .prof_left,
  .modal__content .prof_right {
    width: 100%;
  }
}

/* 導入を支えるプロフェッショナルの存在 */
ul.slider01 li {
  padding: 0 5px;
}
ul.slider01 li img {
  background: #ccc;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: 0% 20%;
}
ul.slider01 li a {
  text-decoration: none;
  color: #000525;
}
ul.slider01 li a h3 {
  line-height: 1.4;
  color: #6c85ae !important;
  min-height: 2.2em;
  margin-top: 10px;
}
ul.slider01 li a h3 span.slider_position {
  display: block;
  font-size: 0.5em;
}
ul.slider01 .prev-arrow,
ul.slider01 .next-arrow {
  z-index: 1;
  position: absolute;
  top: 50%;
}
.slick-slider .prev-arrow {
  left: 10px;
}
.slick-slider .next-arrow {
  right: 10px;
}

/* 導入を支えるプロフェッショナルの存在 - 個別ページ */
.profile_contents {
  display: flex;
  width: 100%;
}
.profile_contents .profile_left {
  width: 30%;
}
.profile_contents .profile_left img {
  background: #ccc;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.profile_contents .profile_left h2 {
  line-height: 1.4;
  font-size: 1.8em;
  min-height: 2.2em;
  color: #6c85ae;
  margin-top: 10px;
}
.profile_contents .profile_left h2 span {
  display: block;
  font-size: 0.5em;
}

.profile_contents .profile_right {
  width: 70%;
  padding: 0 20px;
}
.profile_contents .profile_right h3 {
  line-height: 1.4;
  color: #6c85ae;
  font-size: 1.6em;
}
.profile_contents .profile_right p {
  margin: 1em 0;
}
.profile_contents .profile_right div.award {
  color: #6c85ae;
  font-weight: bold;
  padding-left: 2em;
}
.profile_contents .profile_right h4 {
  color: #6c85ae;
  font-size: 1.2em;
  margin-top: 1em;
}
.profile_contents .profile_right div.award img {
  margin-top: 20px;

  @media screen and (max-width: 767px) {
    .profile_contents {
      flex-direction: column;
      justify-content: center;
    }
    .profile_contents .profile_left,
    .profile_contents .profile_right {
      width: 100%;
    }
    .profile_contents .profile_right {
      margin-top: 40px;
      padding: 0;
    }
    .profile_contents .profile_right div.award {
      padding-left: 0;
    }
  }
}
/* セミナーLP */
.p-lp-list {
  list-style: none;
}

.p-lp-content h2 {
  color: #6c85ae;
  font-size: 54px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.p-lp-content .p-lp-features__num {
  font-family: "Jost", sans-serif;
  font-size: 240px;
  line-height: 1.445;
  font-weight: 300;
  color: #e3e2e7;
}

.lp-contents .wp-block-table thead {
  border-bottom: #6c85ae 3px solid !important;
}
.lp-contents .wp-block-table.is-style-stripes th {
  color: #6c85ae !important;
}
.lp-contents .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #e7ebf0 !important;
}
.lp-side {
  height: 320px !important;
}
.wp-block-coblocks-accordion-item__title:not(.has-background) {
  background: #e7ebf0 !important;
}
@media screen and (max-width: 767px) {
  .p-lp-content h2 {
    font-size: 24px;
    line-height: 1.5;
  }
  .lp-contents .wp-block-columns-is-layout-flex {
    position: relative;
  }
  .lp-contents
    .wp-block-columns-is-layout-flex
    .wp-block-column-is-layout-flow:first-of-type {
    position: absolute;
    top: -38px;
    left: 0;
  }
  .p-lp-content .p-lp-features__num {
    font-size: 32px;
    color: #6c85ae;
  }
}

.p-form-form__el span:nth-child(odd) {
  display: block;
}

/* セミナー申し込み追従バナー */
.banner-seminar {
  position: fixed;
  right: 0;
  bottom: 120px;
  transition: opacity 0.3s ease;
  /*background: #e36212;
	color: #fff;*/
  text-align: center;
  text-decoration: none;
  width: 300px;
  /*border-top: solid 2px #fff;
	border-left: solid 2px #fff;
	border-bottom: solid 2px #fff;
	border-radius: 10px 0 0 10px;*/
  padding: 10px 0;
  /*animation: blinking 3s ease-in-out infinite alternate;*/
}
.banner-seminar img {
  max-width: 100%;
  height: auto;
}
/*.banner-seminar span{
		display:block;
		font-weight:900;
	}
		.banner-seminar span:first-child {
			font-size: 13px;
			line-height: 1.2;
			font-weight: 500;
			margin-left: 5px;
		}*/
/*@keyframes blinking {
	0%, 100% {opacity: 1;}
	50% {opacity: .3;}
}
@media (any-hover: hover) {
  .banner-seminar:hover {
    opacity: 0.7;
  }
}
*/
@media screen and (max-width: 767px) {
  .banner-seminar {
    bottom: 70px;
    width: 100%;
  }
  .banner-seminar img {
    max-width: 100%;
    height: auto;
  }
  /*.banner-seminar span:first-child{
			font-size:11px;
		}*/
}

/* メールフォーム */
.howknow .wpcf7-list-item{
	width:100%;
}
.howknow .wpcf7-checkbox label{
	display:block;
	width:100%;
	margin:5px 0;
	padding:5px 10px;
	background:transparent;
	border:#e36211 1px solid;
	border-radius:5px;
}
.howknow .wpcf7-checkbox label:hover{
	background:#FFF;
	color:#e36211;
}
.howknow input:checked + label{
	background:#FFF;
	color:#e36211;
}

.howknow input[type="text"]{
	display:block;
	width:100%;
	margin: 5px 0 5px 1em;
	padding:5px 10px;
	background:transparent;
	border-radius:5px;
}