@charset "UTF-8";
.p-hero {
  position: relative;
  width: 100%;
  margin: 0 auto 48px;
}
.p-hero:after{
  content: '';
  display: block;
  width: 100%;
  height: 10vw;
  max-height: 100px;
  background: #E59C00;
  background: linear-gradient(90deg, rgba(229, 156, 0, 1) 0%, rgba(221, 83, 13, 1) 100%);
  position: absolute;
  bottom: 0;
  z-index: 0;
  opacity: 0.8;
  clip-path: polygon(0 90%, 100% 0, 100% 100%, 0 100%);
}
.p-hero .p-hero__bg img{
  max-height: 740px;
  object-fit: cover;
}
.p-hero img.hero-lead{
  position: absolute;
  bottom:5vw;
  left: calc(-50% + 15vw);
  right:0;
  margin-inline: auto;
  width: min(30vw,414px);
  z-index: 1;
}
.p-hero img.hero-badge{
  position: absolute;
  right: 12vw;
  bottom: -3vw;
  width: min(20vw,270px);
  z-index: 1;
}
@media (max-width: 576px) {
  .p-hero:after{
    width: 100%;
    height: 30vw;
    max-height: 150px;
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  }
  .p-hero .p-hero__bg img{  
    max-height: none;
  }
  .p-hero img.hero-badge{
    width: 44%;
    right: 2vw;
  }
  .p-hero img.hero-lead{
    width: 58%;
    left: -10px;
    right: 0;
    margin: 0;
  }
  .l-header__main-image{
    padding-block: 0;
  }
  .l-header__main-image a{
    display: flex;
    align-items: center;
    height: 100%;
  }
  .l-header__nav-md-bar span{
    width: 24px;
  }
}
.p-service__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-service__logo {
  margin-bottom: 16px;
}
.p-service__text {
  text-align: center;
  margin-bottom: 32px;
}
.p-service__cards {
  width: 100%;
}
.p-service__cards > ul {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  width: 100%;
}
.p-service__cards > ul li {
  flex: 1;
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-service__cards > ul li:nth-of-type(1) {
  background-color: #a1dfe9;
}
.p-service__cards > ul li:nth-of-type(2) {
  background-color: #b1f09d;
}
.p-service__cards > ul li:nth-of-type(3) {
  background-color: #e2867e;
}
.p-service__cards > ul li:nth-of-type(3) * {
  color: white;
}
.p-service__cards > ul li:nth-of-type(3) h3 {
  border-top: 2px dotted white;
  border-bottom: 2px dotted white;
}
.p-service__cards > ul li h3 {
  font-size: 1.8rem;
  width: 90%;
  padding-block: 12px;
  text-align: center;
  border-top: 2px dotted black;
  border-bottom: 2px dotted black;
}
.p-service__cards > ul li span,
.p-service__cards > ul li p {
  flex: 1;
}
.p-service__cards > ul li span {
  display: inline-block;
  font-size: 88px;
  line-height: 64px;
  translate: 0 32px;
  text-align: center;
}
.p-service__cards > ul li p {
  display: inline-block;
  padding-top: 16px;
  text-align: center;
}
@media (max-width: 992px) {
  .p-service__cards > ul li span {
    font-size: 4.5rem;
    translate: 0 20%;
  }
  .p-service__cards > ul li h3 {
    font-size: 1.4rem;
  }
  .p-service__cards > ul li p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .p-service__cards {
    width: 100%;
    margin-bottom: 24px;
  }
  .p-service__cards > ul {
    flex-direction: column;
  }
  .p-service__cards > ul li {
    width: 100%;
    border-radius: unset;
    aspect-ratio: unset;
    position: relative;
    border-radius: 12px;
  }
  .p-service__cards > ul li span {
    position: absolute;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    top: 0;
    height: 100%;
    left: 16px;
    text-align: left;
    font-style: oblique;
  }
  .p-service__cards > ul li h3 {
    text-align: left;
    border-top: unset;
    width: calc(100% - 96px);
    margin-left: 68px;
    padding-block: 8px;
  }
  .p-service__cards > ul li p {
    text-align: left;
    width: calc(100% - 96px);
    margin-left: 68px;
    padding-block: 8px;
  }
  .p-service__cards > ul li:nth-of-type(3) h3 {
    border-top: unset;
  }
}
@media (max-width: 768px) {
  .p-service__wrap > p {
    order: 4;
  }
  .p-service__text {
    text-align: left;
  }
}
.p-merit {
  counter-reset: merit;
}
.p-merit__message {
  text-align: center;
  margin-bottom: 64px;
}
.p-merit__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  row-gap: 64px;
}
.p-merit__card {
  --theme: #014d71;
  --badge-size: 72px;
  position: relative;
  width: calc((100% - 48px) / 3);
  counter-increment: merit;
  border: 1px solid var(--theme);
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
.p-merit__card-title {
  background: var(--theme);
  color: white;
  position: relative;
  padding-block: 16px;
  padding-right: 16px;
}
.p-merit__card-title span {
  position: relative;
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
  text-align: right;
}
.p-merit__card-title h3 {
  font-weight: 400;
  text-align: center;
  text-align: right;
}
.p-merit__card-title::before {
  position: absolute;
  display: block;
  content: "メリット";
  padding-top: 9px;
  left: 0;
  top: 0;
  translate: 8px -50%;
  width: var(--badge-size);
  aspect-ratio: 1;
  text-align: center;
  background-color: #fa7d05;
  border-radius: 50%;
  border: 2px solid white;
  color: white;
  font-size: 13px;
}
.p-merit__card-title::after {
  position: absolute;
  content: counter(merit);
  left: 0;
  top: 0;
  padding-top: 14px;
  translate: 8px -50%;
  width: var(--badge-size);
  aspect-ratio: 1;
  text-align: center;
  font-weight: 600;
  font-style: italic;
  font-size: 36px;
  color: white;
}
.p-merit__card-contents {
  flex: 1;
  display: flex;
  justify-content: stretch;
  flex-direction: column;
}
.p-merit__card-contents > p {
  flex: 1;
  padding-bottom: 56px;
  position: relative;
}
.p-merit__card-contents > p > a {
  position: absolute;
  bottom: 16px;
  right: 16px;
}
.p-merit__card-text {
  padding: 16px;
  padding-bottom: 0;
}
@media (max-width: 992px) {
  .p-merit__cards {
    gap: 16px;
    row-gap: 64px;
  }
  .p-merit__card {
    width: calc((100% - 16px) / 2);
  }
}
@media (max-width: 768px) {
  .p-merit__cards {
    flex-direction: column;
  }
  .p-merit__card {
    width: 100%;
    --badge-size: 80px;
  }
  .p-merit__card-title {
    padding-block: 8px;
    padding-left: 8px;
  }
  .p-merit__card-title::before {
    inset: 0;
    border-radius: 12px;
    aspect-ratio: unset;
    translate: unset;
    height: calc(100% - 16px);
    top: 50%;
    left: 8px;
    translate: 0 -50%;
    padding-top: 0;
  }
  .p-merit__card-title::after {
    inset: 0;
    translate: unset;
    aspect-ratio: unset;
    left: 8px;
    top: 0;
    translate: 0 3px;
    font-size: 32px;
  }
  .p-merit__card-title span {
    text-align: left;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 0;
    margin-left: calc(var(--badge-size) + 16px);
  }
  .p-merit__card-title h3 {
    text-align: left;
    margin-bottom: 0;
    margin-left: calc(var(--badge-size) + 16px);
  }
  .p-merit__card-contents {
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 8px;
  }
  .p-merit__card-contents > p {
    font-size: 1rem;
    padding: 0;
    margin-bottom: 32px;
  }
  .p-merit__card-contents > p > a {
    padding-right: 0px;
    bottom: unset;
    top: 100%;
    right: 8px;
  }
  .p-merit__card-image {
    width: 128px;
    height: 128px;
    aspect-ratio: 1;
  }
  .p-merit__card-image img {
    -o-object-fit: cover;
       object-fit: cover;
    max-width: unset;
    width: 100%;
    height: 100%;
  }
}
.p-reason__cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.p-reason__text {
  text-align: center;
  margin-bottom: 32px;
}
.p-reason__card {
  display: flex;
  align-items: center;
}
.p-reason__card > div {
  width: 50%;
}
.p-reason__card:nth-of-type(even) {
  flex-direction: row-reverse;
}
.p-reason__card-text {
  padding: 16px;
}
.p-reason__card-text > span {
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 12px;
}
.p-reason__card-text h3 {
  font-size: 24px;
  text-align: center;
  color: #f64e79;
  margin-bottom: 24px;
  position: relative;
}
.p-reason__card-text h3::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 1px;
  background-color: #f42158;
  left: 50%;
  top: 100%;
  translate: -50% 12px;
}
@media (max-width: 992px) {
  .p-reason__card-text {
    padding: 8px;
  }
  .p-reason__card-text > span {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .p-reason__card-text h3 {
    font-size: 20px;
  }
  .p-reason__card-text > p {
    font-size: 16px;
    margin-bottom: 0px;
  }
}
@media (max-width: 768px) {
  .p-reason__text {
    text-align: left;
  }
  .p-reason__card-text {
    padding: 8px;
  }
  .p-reason__card-text > span {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .p-reason__card-text h3 {
    font-size: 20px;
  }
  .p-reason__card-text > p {
    font-size: 16px;
    margin-bottom: 0px;
  }
  .p-reason__card-image {
    height: 100%;
  }
  .p-reason__card-image img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    aspect-ratio: 1.2;
  }
}
@media (max-width: 576px) {
  .p-reason__card-text {
    padding: 8px;
  }
  .p-reason__card-text > span {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .p-reason__card-text h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .p-reason__card-text h3::after {
    content: none;
  }
  .p-reason__card-text > p {
    font-size: 14px;
    margin-bottom: 0px;
  }
  .p-reason__card-image img {
    aspect-ratio: 0.85;
  }
}

.p-voice__title-accent {
  position: relative;
  translate: 100%;
  rotate: -8deg;
  background-color: #f42158;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 28px;
  font-weight: 400;
  color: white;
  padding: 8px 16px;
  border-radius: 12px;
}
.p-voice__title-accent::after {
  position: absolute;
  content: "";
  background-color: #f42158;
  width: 16px;
  height: 16px;
  clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 0% 0%);
  left: 50%;
  top: 100%;
  translate: -50% -2px;
}
.p-voice__title > p {
  text-align: center;
}
.p-voice__cards {
  display: flex;
}
.p-voice__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid black;
}
.p-voice__card-image {
  margin-bottom: 24px;
}
.p-voice__card > span {
  font-size: 1.6rem;
  margin-bottom: 24px;
  padding-inline: 24px;
}
.p-voice__card > p {
  margin-bottom: 24px;
  padding-inline: 24px;
}
.p-voice__card:first-of-type {
  border-right: 1px solid black;
}
@media (max-width: 992px) {
  .p-voice__title-accent {
    translate: 60%;
  }
  .p-voice__cards {
    flex-direction: column;
    gap: 16px;
  }
  .p-voice__card:first-of-type {
    border-right: none;
  }
  .p-voice__card:last-of-type {
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .p-voice__title-accent {
    translate: 10%;
  }
}
.p-flow .l-section__title::before {
  background-image: url("/assets/img/flow/flight.png");
  background-size: contain;
  width: 110px;
  height: 110px;
  translate: -105% 10%;
}
.p-flow__call {
  width: 60%;
  margin: 36px auto;
  text-align: center;
}
.p-flow__flow {
  display: flex;
  flex-direction: column;
  counter-reset: flow;
}
.p-flow__flow-item {
  counter-increment: flow;
}
.p-flow__flow-item h3 {
  position: relative;
  font-size: 24px;
  font-weight: 400;
  background-color: #b6d462;
  padding: 12px 0 12px 96px;
}
.p-flow__flow-item h3::before {
  position: absolute;
  content: "step" counter(flow);
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  left: 8px;
  top: 50%;
  translate: 0 -50%;
  background-color: #708f1a;
  padding: 6px 12px;
  font-size: 16px;
  color: white;
  border-radius: 8px;
}
.p-flow__flow-item-wrap {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 16px 0 16px 96px;
  --head-size: 32px;
  --arrow-width: 16px;
  --arrow-left: 32px;
}
.p-flow__flow-item-wrap::before {
  position: absolute;
  content: "";
  background-color: #f5b11e;
  width: var(--arrow-width);
  height: calc(100% - var(--head-size));
  top: 0;
  left: var(--arrow-left);
  translate: calc(-1 * var(--arrow-width) / 2) 0;
}
.p-flow__flow-item-wrap::after {
  position: absolute;
  content: "";
  background-color: #f5b11e;
  width: var(--head-size);
  height: var(--head-size);
  top: calc(100% - var(--head-size));
  left: var(--arrow-left);
  translate: calc(-1 * var(--head-size) / 2) 0;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
.p-flow__flow-item-wrap--no-arrow::before {
  content: unset;
}
.p-flow__flow-item-wrap--no-arrow::after {
  content: unset;
}
.p-flow__flow-item:nth-of-type(1) .p-flow__flow-item-wrap {
  align-items: center;
}
.p-flow__flow-item:nth-of-type(2) .p-flow__flow-item-wrap {
  align-items: center;
}
.p-flow__flow-item:nth-of-type(4) .p-flow__flow-item-wrap {
  align-items: center;
}
.p-flow__flow-item-image {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 110px;
}
.p-flow__flow-item-text {
  flex: 1;
}
.p-flow__flow-item-text > dl {
  margin-bottom: 16px;
}
.p-flow__flow-item-text > dl:last-of-type {
  margin-bottom: 0;
}
.p-flow__flow-item-text > dl dt {
  color: #f61485;
}
.p-flow__flow-item-text > dl dd {
  position: relative;
  margin-left: 16px;
}
.p-flow__flow-item-text > dl dd::before {
  position: relative;
  content: "・";
  color: inherit;
}
.p-flow__flow-item-text--bg {
  background-image: url("/assets/img/flow/bg.png");
  background-position: 100% center;
  background-size: 50%;
  background-repeat: no-repeat;
}
.p-flow__message {
  text-align: center;
  font-weight: 600;
}
@media (max-width: 992px) {
  .p-flow__flow-item-image {
    width: 100px;
  }
  .p-flow__flow-item-text--bg {
    background-size: 40%;
  }
}
@media (max-width: 768px) {
  .p-flow .l-section__title {
    margin-top: 128px;
  }
  .p-flow .l-section__title::before {
    background-image: url("/assets/img/flow/flight.png");
    background-size: contain;
    background-position-y: bottom;
    width: 88px;
    height: 150px;
    left: 50%;
    top: 0;
    translate: -50% -100%;
    z-index: -1;
  }
  .p-flow__call {
    width: 100%;
    margin: auto 0 16px;
  }
  .p-flow__flow-item h3 {
    padding-left: 156px;
  }
  .p-flow__flow-item h3::before {
    font-size: 24px;
    left: 16px;
    width: 120px;
    text-align: center;
    border: 1px solid white;
  }
  .p-flow__flow-item-image {
    width: 80px;
  }
  .p-flow__flow-item-wrap {
    padding-left: 64px;
  }
  .p-flow__flow-item-text {
    font-size: 1rem;
  }
  .p-flow__flow-item-text p {
    font-size: 1rem;
  }
  .p-flow__flow-item-text--bg {
    background-image: none;
  }
}
.p-cost .l-section__title::before {
  background-image: url("/assets/img/cost/coin.png");
  background-size: contain;
  width: 128px;
  height: 110%;
  translate: -105% 10%;
}
.p-cost__text {
  text-align: center;
  margin-bottom: 16px;
}
.p-cost__example {
  border-radius: 12px;
  border: 1px solid #8a8a8a;
  padding: 16px;
}
.p-cost__example > p {
  font-size: 26px;
  color: white;
  padding: 12px 0 12px 16px;
  background-color: #8a8a8a;
  margin-bottom: 16px;
}
.p-cost__example-box {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.p-cost__example-header {
  color: white;
  background-color: #f3914a;
  border-radius: 6px;
  padding: 8px 0 8px 12px;
  font-size: 24px;
  margin-bottom: 16px;
}
.p-cost__example-innerbox {
  display: flex;
  justify-content: space-between;
}
.p-cost__example-text {
  width: 60%;
  z-index: 1;
}
.p-cost__example-text > span {
  font-size: 36px;
  font-weight: 600;
  color: #f94e98;
}
.p-cost__example-text > ul {
  display: flex;
  flex-direction: column;
}
.p-cost__example-text > ul li {
  position: relative;
  margin-left: 48px;
  font-weight: 600;
}
.p-cost__example-text > ul li > small {
  display: block;
  font-weight: 400;
}
.p-cost__example-text > ul li::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background-image: url("/assets/img/common/check.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  translate: calc(-100% - 8px);
}
.p-cost__example-images {
  position: relative;
}
.p-cost__example-images > img:nth-of-type(2) {
  position: absolute;
  left: -100%;
  bottom: 0;
}
@media (max-width: 992px) {
  .p-cost__example {
    padding: 8px;
  }
  .p-cost__example > p {
    font-size: 20px;
  }
  .p-cost__example-box {
    padding: 8px;
  }
  .p-cost__example-header {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .p-cost__example-text > span {
    font-size: 22px;
  }
  .p-cost__example-images > img:nth-of-type(1) {
    width: 250px;
  }
  .p-cost__example-images > img:nth-of-type(2) {
    width: 200px;
    translate: 50px;
  }
}
@media (max-width: 768px) {
  .p-cost .l-section__title {
    margin-top: 128px;
  }
  .p-cost .l-section__title::before {
    background-image: url("/assets/img/cost/coin.png");
    background-size: contain;
    background-position-y: bottom;
    width: 96px;
    height: 150px;
    left: 50%;
    top: 0;
    translate: -50% -90%;
    z-index: -1;
  }
  .p-cost__example-text--first {
    width: 100%;
  }
  .p-cost__example-images > img:nth-of-type(1) {
    width: 180px;
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-cost__example-images > img:nth-of-type(2) {
    width: 150px;
    translate: 30px;
  }
}
@media (max-width: 576px) {
  .p-cost__example-images > img:nth-of-type(1) {
    width: 130px;
    height: 130px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-cost__example-images > img:nth-of-type(2) {
    width: 100px;
    translate: 30px;
  }
}

.p-study-support__wrap {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-inline: 32px;
  margin-bottom: 16px;
}
.p-study-support__forfree {
  position: relative;
  background-color: #f94e98;
  display: block;
  width: 156px;
  aspect-ratio: 1;
  border-radius: 50%;
  flex-shrink: 0;
  color: white;
}
.p-study-support__forfree > span {
  text-align: center;
}
.p-study-support__forfree > span:nth-child(1) {
  position: absolute;
  font-weight: 500;
  font-size: 1.2rem;
  display: block;
  bottom: 50%;
  left: 50%;
  translate: -50% -12px;
  white-space: nowrap;
}
.p-study-support__forfree > span:nth-child(2) {
  position: absolute;
  font-weight: 500;
  font-size: 3rem;
  display: block;
  top: 50%;
  left: 50%;
  translate: -50% -20px;
}
.p-study-support__forfree::after {
  content: "";
  position: absolute;
  background-color: inherit;
  width: 20px;
  height: 16px;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  left: 100%;
  top: 50%;
  translate: -5px -50%;
}
.p-study-support__images {
  display: flex;
  gap: 16px;
  width: 100%;
}
.p-study-support__images div {
  flex: 1;
}
@media (max-width: 768px) {
  .p-study-support__images div:last-of-type {
    display: none;
  }
}
@media (max-width: 576px) {
  .p-study-support__wrap {
    padding-inline: 0;
  }
  .p-study-support__forfree {
    width: 144px;
  }
}

.p-support-detail dl {
  border: 1px solid #ccc;
}
.p-support-detail dl dt {
  background-color: #eddfa8;
  padding: 12px;
  font-size: 1.2rem;
  font-weight: 400;
}
.p-support-detail dl dd {
  border-top: 1px solid #ccc;
  padding: 12px;
  font-size: 1.1em;
  font-weight: 400;
}
.p-support-detail dl dd ul {
  display: flex;
  flex-wrap: wrap;
}
.p-support-detail dl dd ul li:last-of-type::after {
  content: unset;
}
.p-support-detail dl dd ul li::after {
  display: inline-block;
  content: "/";
  padding: 0 4px;
}
.p-support-detail dl dd ul li:first-of-type::before {
  content: unset;
}
.p-support-detail--sup::after {
  content: "（＊）";
  color: #f94e98;
  margin-right: -6px;
}
.p-support-detail__wrap {
  display: flex;
  align-items: center;
}
.p-support-detail__wrap ul {
  width: 70%;
}
@media (max-width: 992px) {
  .p-support-detail__wrap ul {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .p-support-detail__title {
    background-color: #f0518e;
    color: white;
    font-weight: 300;
    padding: 12px;
    position: relative;
    border-radius: 6px;
    top: 50px;
  }
  .p-support-detail__title::after {
    position: absolute;
    content: "";
    inset: 0;
    translate: 6px 6px;
    background-color: #f7b4cf;
    border-radius: 6px;
    z-index: -1;
  }
  .p-support-detail dl {
    position: relative;
    z-index: -2;
  }
  .p-support-detail dl dt {
    display: none;
  }
  .p-support-detail dl dd {
    font-size: 1rem;
    border-top: none;
    padding-top: 48px;
    background: #fbfcee;
  }
  .p-support-detail__wrap ul {
    width: 100%;
  }
  .p-support-detail__image {
    display: none;
  }
}
.p-commission__wrap {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  align-items: center;
}
.p-commission__text {
  width: 65%;
}
.p-commission__image img {
  height: auto;
  margin: 0 auto;
  display: block;
}
@media (max-width: 992px) {
  .p-commission__wrap {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .p-commission__wrap {
    gap: 16px;
    flex-direction: column;
  }
  .p-commission__text {
    width: 100%;
    order: 2;
  }
  .p-commission__image {
    order: 1;
    width: 100%;
  }
}
.p-qa .l-section__title::before {
  background-image: url("/assets/img/qa/title-key.png");
  background-size: contain;
  width: 128px;
  height: 110%;
  translate: -105% 10%;
}
.p-qa__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 16px;
}
.p-qa__item {
  border: 1px solid red;
}
.p-qa__item dt,
.p-qa__item dd {
  padding: 24px 24px 0 24px;
  display: flex;
  align-items: flex-start;
}
.p-qa__item-mark {
  width: 32px;
  height: auto;
  margin-right: 12px;
}
.p-qa__item-question {
  flex: 1;
  font-size: 1.4rem;
  font-weight: 400;
}
.p-qa__item-answer {
  flex: 1;
  font-weight: 400;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .p-qa .l-section__title {
    margin-top: 128px;
    margin-bottom: 0;
  }
  .p-qa .l-section__title::before {
    background-image: url("/assets/img/qa/title-key.png");
    background-size: contain;
    background-position-y: bottom;
    width: 196px;
    height: 150px;
    left: 50%;
    top: 0;
    translate: -50% -90%;
    z-index: -1;
  }
  .p-qa__list {
    gap: 0px;
  }
  .p-qa__item {
    border: none;
  }
  .p-qa__item dt,
  .p-qa__item dd {
    padding: 24px 56px 0 56px;
    display: flex;
    align-items: flex-start;
  }
  .p-qa__item-question {
    position: relative;
    flex: 1;
    font-size: 1rem;
    font-weight: 400;
    color: inherit;
    background-color: #ffe0b2;
    padding: 8px;
    border-radius: 8px;
  }
  .p-qa__item-question::before {
    content: "Q";
    position: absolute;
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background-color: inherit;
    left: 0;
    top: 0;
    border-radius: 50%;
    font-weight: 600;
    font-size: 1.4rem;
    translate: -120% 0;
  }
  .p-qa__item-answer {
    position: relative;
    flex: 1;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 24px;
    background-color: #ddf4f7;
    padding: 8px;
    border-radius: 8px;
  }
  .p-qa__item-answer::before {
    content: "A";
    position: absolute;
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background-color: inherit;
    right: 0;
    top: 0;
    border-radius: 50%;
    font-weight: 600;
    font-size: 1.4rem;
    translate: 120% 0;
  }
  .p-qa__item-question, .p-qa__item-answer {
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
  }
  .p-qa__item-mark {
    display: none;
  }
}
.p-message__key-image {
  margin-bottom: 24px;
}
.p-message__list {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}
.p-message__item {
  display: flex;
  flex-direction: column;
  border: 1px solid #fa871a;
  padding: 40px;
  flex: 1;
}
.p-message__item-photo {
  width: 128px;
  height: auto;
  margin: 0 auto 16px;
}
.p-message__item-name {
  text-align: center;
  display: block;
  font-size: 24px;
  margin-bottom: 16px;
}
.p-message__item-univ {
  text-align: center;
  background-color: orange;
  color: white;
  padding: 6px 0;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.p-message__item-message {
  font-size: 1rem;
  margin-bottom: 16px;
  flex-grow: 1;
}
@media (max-width: 992px) {
  .p-message__list {
    flex-direction: column;
    margin: 0 auto 16px;
  }
  .p-message__item-photo {
    width: 256px;
  }
}
@media (max-width: 576px) {
  .p-message__item {
    padding: 8px;
  }
}

.p-contact__mail {
  display: block;
  text-align: center;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 32px;
}
.p-contact__mail img {
  width: 100%;
  margin: 0 auto;
}
.p-contact__time {
  text-align: center;
}
.p-contact__tel {
  display: grid;
  grid-template-columns: 20em auto;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin: 0 auto;
  justify-content: center;
}
.p-contact__tel > span {
  text-align: right;
}
.p-contact__tel > a {
  display: flex;
  gap: 6px;
  align-items: center;
}
.p-contact__tel > a > span {
  font-size: 24px;
  color: #f42158;
}
.p-contact__tel > a img {
  width: 24px;
  height: auto;
}
.p-contact__sep {
  border-bottom: 1px solid #999;
  margin-top: 24px;
  margin-bottom: 16px;
}
.p-contact__other {
  font-size: 1.4rem;
  text-align: left;
}
.p-contact__time2 {
  margin-left: 24px;
  margin-bottom: 16px;
}
.p-contact__add-line {
  margin: 0 auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .p-contact__tel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .p-contact__tel > a > span {
    font-size: 32px;
    display: block;
  }
  .p-contact__tel > a img {
    width: 32px;
    height: auto;
  }
  .p-contact__otherbox {
    display: none;
  }
}
@media (max-width: 768px) {
  .p-widget {
    display: none;
  }
}
.c-plusmark {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #f94e98;
  margin: 0 auto;
}
.c-plusmark::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 4px;
  background-color: #fff;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
.c-plusmark::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 4px;
  background-color: #fff;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  rotate: 90deg;
}

.p-qa__item-question {
  color: #687bf1;
}

.p-flow__message {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .p-flow__message {
    font-size: max(22px, min(0.0291666667 * 100vw, 0.0291666667 * var(--max_width))); font-size: max(22px, min(0.0291666667 * 100vw, 0.0291666667 * var(--max_width)));
  }
}
@media (max-width: 576px) {
  .p-flow__message {
    font-size: max(17px, min(0.0381944444 * 100vw, 0.0381944444 * var(--max_width))); font-size: max(17px, min(0.0381944444 * 100vw, 0.0381944444 * var(--max_width)));
  }
}