@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  min-height: 100vh;
  color: #333;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳＰゴシック", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a[target=_blank]::after {
  display: inline-block;
  content: "";
}

hr {
  margin: 0;
  border: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  height: auto;
}

dialog {
  padding: 0;
  width: 85%;
  max-width: 800px;
  border-radius: 5px;
  border: none;
}
dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}

button {
  padding: 0;
  border: none;
  background: none;
}

.l-header {
  position: relative;
  z-index: 10;
  width: 100%;
}
@media screen and (width >= 1080px) {
  .l-header {
    display: flex;
    justify-content: space-between;
    position: fixed;
    height: 8rem;
    background-color: #fff;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.16);
  }
}

.l-header-left {
  display: flex;
  align-items: center;
  padding: 1rem;
}

@media screen and (width >= 1080px) {
  .l-header__logo {
    width: 80px;
    height: 50px;
  }
}

.l-header__text {
  margin-left: 1rem;
  font-size: 1.2rem;
}
@media screen and (width >= 1080px) {
  .l-header__text {
    font-size: 1.6rem;
  }
}

.l-header-right {
  display: none;
}
@media screen and (width >= 1080px) {
  .l-header-right {
    display: flex;
    justify-content: center;
    padding: 1rem;
    gap: 1rem;
    background-color: transparent;
    font-size: 1.6rem;
  }
}

.js-footer.is-show {
  bottom: 0;
}

.l-footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-block: 8rem;
}
@media screen and (width >= 1080px) {
  .l-footer {
    padding-bottom: 0;
  }
}

.l-footer-logo {
  margin-block: 1rem 3rem;
}
@media screen and (width > 768px) {
  .l-footer-logo {
    width: 170px;
    height: 104px;
  }
}

.l-footer__mail {
  display: flex;
  align-items: baseline;
  margin-block: 1rem;
  color: #f06292;
  font-size: 2.4rem;
}
.l-footer__mail:hover {
  text-decoration: underline;
}

.l-footer__mail-icon {
  margin-right: 1rem;
}

.l-footer-date {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (width > 768px) {
  .l-footer-date {
    flex-direction: row;
  }
}

.l-footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-block: 3rem 4rem;
  gap: 0.5rem;
}
@media screen and (width > 768px) {
  .l-footer-nav {
    font-size: 1.4rem;
  }
}

.l-footer-nav__item {
  display: flex;
  line-height: 1.2rem;
  border-right: 1px solid #999;
  font-size: 1.2rem;
}
@media screen and (width > 768px) {
  .l-footer-nav__item {
    font-size: 1.4rem;
  }
}

.l-footer-nav__url {
  margin-right: 1rem;
}

.l-footer__end {
  margin-block: 1rem;
  font-size: 1rem;
}

.l-footer__hr {
  height: 3px;
  width: 100%;
  background: linear-gradient(to top, #ccc, #fff);
}

.c-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 5.5rem;
  border: none;
  border-radius: 5rem;
  box-shadow: 0px 4px #b53963;
  background-color: #f06292;
  color: #fff;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 2rem;
  font-weight: bold;
}
.c-button::after {
  display: block;
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  -webkit-mask: url("../img/cmn/cmn_icon_arrow.svg") no-repeat center/contain;
  mask: url("../img/cmn/cmn_icon_arrow.svg") no-repeat center/contain;
  content: "";
}
@media screen and (width > 768px) {
  .c-button::after {
    width: 2.4rem;
    height: 2.4rem;
  }
}
@media screen and (width >= 1080px) {
  .c-button::after {
    width: clamp(2rem, 2vw, 3rem);
    height: clamp(2rem, 2vw, 3rem);
  }
}
.c-button:hover {
  transform: translateY(4px);
  box-shadow: none;
}
@media screen and (width > 768px) {
  .c-button {
    padding: 1.5rem 8.5rem;
    font-size: 2.4rem;
  }
}

.c-button--small {
  font-size: 1.6rem;
  padding-inline: 4rem;
}
.c-button--small::after {
  width: 1.6rem;
  height: 1.6rem;
}

.c-button-fixedarea {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  padding-block: 1rem;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 11;
  background-color: #fff;
  box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.1);
}
@media screen and (width >= 1080px) {
  .c-button-fixedarea {
    display: none;
  }
}

.c-button--fixed {
  font-size: 1.6rem;
  padding: 1.5rem 4rem;
}

.c-button--login {
  padding: 1.5rem;
  color: #333;
  background-color: #fee9ef;
  box-shadow: 0px 4px #e1ccd2;
}
.c-button--login::after {
  content: none;
}

.c-button--top {
  z-index: 1;
}

.c-form {
  margin-inline: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  z-index: 1;
  margin-top: 4rem;
}
@media screen and (width > 768px) {
  .c-form {
    margin-top: 6rem;
  }
}

.c-form__text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: bold;
}
.c-form__text::before, .c-form__text::after {
  width: 2rem;
  height: 0.1rem;
  background-color: #333;
  content: "";
}
.c-form__text::before {
  margin-right: 5px;
  transform: rotate(60deg);
}
.c-form__text::after {
  margin-left: 5px;
  transform: rotate(-60deg);
}
@media screen and (width >= 1080px) {
  .c-form__text {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

.c-form__url {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  z-index: 1;
  color: #295cba;
  font-size: 1.4rem;
}
@media screen and (width >= 1080px) {
  .c-form__url {
    font-size: 1.6rem;
    margin-top: 2rem;
  }
}

.c-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
  color: #000;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: bold;
}
@media screen and (width > 768px) {
  .c-title {
    margin-bottom: 6rem;
  }
}

.c-title__sub {
  letter-spacing: 0.2rem;
}
@media screen and (width > 768px) {
  .c-title__sub {
    font-size: 2.4rem;
  }
}

.c-title__main {
  position: relative;
  z-index: 1;
  padding-inline: 0.5rem;
  font-size: 2.7rem;
  letter-spacing: 0.2rem;
}
.c-title__main::before {
  position: absolute;
  top: 70%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 10px;
  background-color: #f9bcce;
  border-radius: 20px;
  content: "";
}
@media screen and (width > 768px) {
  .c-title__main::before {
    height: 20px;
  }
}
@media screen and (width > 768px) {
  .c-title__main {
    padding-inline: 1rem;
    font-size: 4rem;
  }
}

.c-title__accent {
  color: #f06292;
  font-size: 4.6rem;
}
@media screen and (width > 768px) {
  .c-title__accent {
    font-size: 7.4rem;
  }
}

.c-title__under-white::before {
  background-color: #fff;
}

.c-space {
  margin-inline: 2rem;
}

.c-space-button {
  margin-top: 6rem;
}

.c-space-section {
  padding-block: 8rem;
}

.c-space-example {
  margin-left: 0.5rem;
}

.c-responsible-interview {
  flex-direction: row-reverse;
}
@media screen and (width >= 1080px) {
  .c-responsible-interview {
    flex-direction: row;
  }
}

.c-responsible-display--pc {
  display: none;
}
@media screen and (width >= 1080px) {
  .c-responsible-display--pc {
    display: flex;
  }
}

.c-responsible-display--sp {
  display: flex;
}
@media screen and (width >= 1080px) {
  .c-responsible-display--sp {
    display: none;
  }
}

.c-font-small {
  font-size: 1.4rem;
}

.c-font-bold {
  font-weight: bold;
}

.p-top-mainimg {
  display: block;
  margin-inline: auto;
  width: 120%;
  height: auto;
}
@media screen and (width >= 1080px) {
  .p-top-mainimg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    top: 8rem;
    width: 100%;
    max-width: 1920px;
  }
}

.p-top-balloon {
  display: inline-block;
  align-items: center;
  position: relative;
}

.p-top-balloon__text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  right: -15px;
  top: -70px;
  padding: 1rem;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background-color: #6291f0;
  color: #fff;
  line-height: 1.2;
}
@media screen and (width > 768px) {
  .p-top-balloon__text {
    top: -75%;
    right: 0;
    width: 11rem;
    height: 11rem;
    font-size: 2.5rem;
  }
}
@media screen and (width >= 1080px) {
  .p-top-balloon__text {
    top: -15px;
    right: clamp(-100px, -5vw, 0px);
    width: clamp(10rem, 9vw, 16rem);
    height: clamp(10rem, 9vw, 16rem);
    font-size: clamp(2rem, 1.8vw, 3.2rem);
  }
}
.p-top-balloon__text::after {
  position: absolute;
  bottom: 0;
  right: 50px;
  border: 10px solid transparent;
  transform: rotate(60deg);
  border-right-color: #6291f0;
  content: "";
}
@media screen and (width > 768px) {
  .p-top-balloon__text::after {
    border: 15px solid transparent;
    border-right-color: #6291f0;
    right: 75px;
    bottom: 4px;
  }
}
@media screen and (width >= 1080px) {
  .p-top-balloon__text::after {
    border: 20px solid transparent;
    border-right-color: #6291f0;
    transform: rotate(70deg);
    right: clamp(50px, 5vw, 110px);
    bottom: 3px;
  }
}

.p-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 4rem;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}
@media screen and (width >= 1080px) {
  .p-top {
    padding-block: clamp(10rem, 9vw, 15rem);
    margin-top: 0;
  }
}

.p-top-title {
  position: relative;
  display: inline-block;
  padding-inline: 0.5rem;
  color: #f06292;
  font-size: clamp(3rem, 6vw, 6rem);
}
@media screen and (width > 768px) {
  .p-top-title {
    font-size: 6rem;
  }
}
@media screen and (width >= 1080px) {
  .p-top-title {
    font-size: clamp(6rem, 5vw, 8rem);
    line-height: 1.3;
  }
}
.p-top-title::before {
  position: absolute;
  width: 100%;
  height: 10px;
  left: 0;
  bottom: 10px;
  z-index: -1;
  background-color: #fffb87;
  border-radius: 20px;
  content: "";
}
@media screen and (width > 768px) {
  .p-top-title::before {
    width: 102%;
    left: -2px;
    height: 20px;
    bottom: 15px;
  }
}
@media screen and (width >= 1080px) {
  .p-top-title::before {
    width: 105%;
    bottom: 10px;
  }
}
.p-top-title::after {
  position: absolute;
  right: -5%;
  transform: rotate(15deg);
  content: "！";
}
@media screen and (width > 768px) {
  .p-top-title::after {
    right: -6%;
  }
}
@media screen and (width >= 1080px) {
  .p-top-title::after {
    right: -10%;
  }
}

.p-top-title--accent {
  position: relative;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
}
@media screen and (width > 768px) {
  .p-top-title--accent {
    font-size: 6.2rem;
  }
}
@media screen and (width >= 1080px) {
  .p-top-title--accent {
    font-size: clamp(6.5rem, 6vw, 10.5rem);
  }
  .p-top-title--accent::after {
    position: absolute;
    width: 125%;
    height: 20px;
    bottom: 10px;
    left: -5%;
    z-index: -1;
    background-color: #fffb87;
    border-radius: 20px;
    content: "";
  }
}
.p-top-title--accent::before {
  position: absolute;
  top: -65%;
  font-size: 1em;
  content: "・・・";
}
@media screen and (width >= 1080px) {
  .p-top-title--accent::before {
    top: -45%;
  }
}

.p-top-title--small {
  font-size: 2.1rem;
  margin-right: 0.2rem;
}
@media screen and (width > 768px) {
  .p-top-title--small {
    font-size: 4rem;
  }
}

.p-top-title--debut {
  letter-spacing: -0.1em;
}
@media screen and (width >= 1080px) {
  .p-top-title--debut {
    font-size: clamp(6rem, 4vw, 7.5rem);
  }
}

.p-top-unit {
  display: flex;
  margin-block: 2rem;
  gap: 1rem;
}
@media screen and (width >= 1080px) {
  .p-top-unit {
    margin-block: clamp(1.5rem, 1.5vw, 3rem);
    gap: 2rem;
  }
}

.p-top-unit__sp {
  gap: 1rem;
}

.p-top-unit__img {
  width: clamp(100px, 20vw, 200px);
}
@media screen and (width > 768px) {
  .p-top-unit__img {
    width: 220px;
  }
}

.p-top-unit__pc {
  gap: 2rem;
}

@media screen and (width >= 1080px) {
  .p-top-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: clamp(8rem, 10vw, 16rem);
    height: clamp(8rem, 10vw, 16rem);
    border-radius: 50%;
    background-color: #fee9ef;
    font-size: clamp(1.5rem, 1.5vw, 2.2rem);
    line-height: 1.5;
  }
}

@media screen and (width >= 1080px) {
  .p-top-item__img {
    width: clamp(20px, 1.5vw, 24px);
    height: clamp(20px, 1.5vw, 24px);
  }
}

@media screen and (width >= 1080px) {
  .p-top-item__accent {
    color: #6291f0;
    font-size: clamp(1.5rem, 1.5vw, 2.6rem);
  }
}

.p-card-backbround {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -33px;
  padding-bottom: 8rem;
  position: relative;
}
@media screen and (width > 768px) {
  .p-card-backbround {
    margin-top: -38px;
  }
}
@media screen and (width >= 1080px) {
  .p-card-backbround {
    margin-top: 0;
  }
}
.p-card-backbround::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../img/top/index_bg.webp") no-repeat center/cover;
  clip-path: ellipse(200% 50% at 50% 50%);
  content: "";
}
@media screen and (width > 768px) {
  .p-card-backbround::before {
    clip-path: ellipse(100% 50% at 50% 50%);
  }
}
@media screen and (width >= 1080px) {
  .p-card-backbround::before {
    z-index: -2;
    clip-path: ellipse(200% 100% at 50% 0%);
    top: -100%;
  }
}

.p-card__title {
  position: absolute;
  top: 33px;
  padding-top: 4rem;
  line-height: 1.1;
}
@media screen and (width > 768px) {
  .p-card__title {
    top: 38px;
  }
}
@media screen and (width >= 1080px) {
  .p-card__title {
    top: clamp(-40px, 5vw - 95px, 0px);
  }
}

.p-card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-card {
  display: flex;
  flex-direction: column;
  margin-top: 17rem;
  gap: 3rem;
  margin-bottom: 1rem;
}
@media screen and (width > 768px) {
  .p-card {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 20rem;
    gap: 0;
  }
}
@media screen and (width >= 1080px) {
  .p-card {
    flex-wrap: nowrap;
    gap: 5rem;
  }
}

.p-card-item {
  position: relative;
  padding: 2rem;
  min-height: 45rem;
  max-width: 35rem;
  border-radius: 0 30px 0 30px;
  background-color: #fff;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.1);
}
@media screen and (width > 768px) {
  .p-card-item {
    margin-top: 4rem;
  }
}
@media screen and (width >= 1080px) {
  .p-card-item {
    flex: 1;
    margin-top: 0;
  }
}

.p-card-tag {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 7rem;
  height: 7rem;
  background-color: #6291f0;
  border-radius: 0 0 70px 0;
  line-height: 1.5;
}

.p-card-tag__text {
  position: absolute;
  top: 10%;
  left: 15%;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.p-card-tag__number {
  position: absolute;
  top: 80%;
  left: 40%;
  font-size: 2.4rem;
}

.p-card-item__sub-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-block: 2rem 1rem;
  color: #f06292;
}
.p-card-item__sub-title::before {
  background-color: #f06292;
  height: 1px;
  width: 12px;
  content: "";
}

.p-card-item__title {
  color: #222;
  font-size: 2.2rem;
}

.p-card__img {
  border-radius: 30px;
}

.p-card-text {
  margin-block: 1rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳＰゴシック", sans-serif;
}

.p-card-text--small {
  font-size: 1.2rem;
}

.p-card-item__url {
  color: #295cba;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳＰゴシック", sans-serif;
}

.p-card-text__modal {
  margin-left: 0.5rem;
}

.p-example-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-inline: auto;
  max-width: 1200px;
}

.p-example {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
}

.p-example__sub-title {
  display: inline-block;
  padding-inline: 1rem;
  margin-bottom: 0.5rem;
  color: #fff;
  background-color: #f06292;
  border-radius: 5px;
}

.p-example__ul {
  display: flex;
  flex-direction: column;
}
@media screen and (width > 768px) {
  .p-example__ul {
    flex-direction: row;
    gap: 2rem;
  }
}

.p-example__li::before {
  margin-right: 0.5em;
  content: "•";
}

.p-example__button {
  margin-top: 6rem;
}

.p-table-background {
  background: rgba(0, 0, 0, 0.5) url("../img/top/index_bg.webp") no-repeat center/cover;
}

.p-table-main {
  display: block;
  margin-inline: auto;
  padding: 0.5rem 2rem;
  position: relative;
  width: 100%;
  max-width: 1000px;
  border-radius: 0 30px 0 30px;
  border-spacing: 0;
  background-color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.1);
}
@media screen and (width > 768px) {
  .p-table-main {
    padding: 2rem 4rem;
  }
}

.p-table__tr {
  background: linear-gradient(to right, #536c94 5px, transparent 5px) repeat-x left bottom/13px 1px;
}
.p-table__tr:last-child {
  background: none;
}

.p-table__th,
.p-table__td {
  padding-block: 1.5rem;
}

.p-table__th {
  width: 30%;
  color: #f06292;
  text-align: left;
  vertical-align: top;
}

.p-table__td {
  padding-left: 2rem;
  width: 70%;
}

.p-interview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8rem;
}
@media screen and (width >= 1080px) {
  .p-interview {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 10rem;
  }
}

.p-interview-wrap {
  max-width: 370px;
}

.p-interview-top {
  display: flex;
  margin-bottom: 2rem;
  align-items: center;
  gap: 1rem;
}

.p-interview-top__img {
  width: clamp(80px, -420px + 133.33vw, 100px);
}

.p-interview-top__title {
  color: #f06292;
  font-size: 2rem;
  font-weight: bold;
}

.p-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("../img/top/index_bg_flow.webp") no-repeat center/cover;
}

.p-flow-wrap {
  display: flex;
  flex-direction: column;
}
@media screen and (width > 768px) {
  .p-flow-wrap {
    max-width: 690px;
  }
}
@media screen and (width >= 1080px) {
  .p-flow-wrap {
    max-width: 1170px;
  }
}
@media (min-width: 1080px) and (max-width: 1279px) {
  .p-flow-wrap {
    max-width: 930px;
  }
}

.p-flow-wrap__top {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (width > 768px) {
  .p-flow-wrap__top {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
  }
}

.p-flow-wrap__unit {
  position: relative;
}
.p-flow-wrap__unit::before, .p-flow-wrap__unit::after {
  position: absolute;
  bottom: -32px;
  box-sizing: border-box;
  margin-top: 2rem;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background-color: #f06292;
  content: "";
}
.p-flow-wrap__unit::before {
  right: calc(50% - 1px);
  transform-origin: top right;
  transform: rotate(-45deg);
}
@media screen and (width > 768px) {
  .p-flow-wrap__unit::before {
    top: calc(50% + 3px);
    right: -20px;
    transform-origin: center;
  }
}
.p-flow-wrap__unit::after {
  right: calc(50% + 1px);
  transform-origin: top left;
  transform: rotate(45deg);
}
@media screen and (width > 768px) {
  .p-flow-wrap__unit::after {
    top: calc(50% - 3px);
    right: -20px;
    transform-origin: center;
  }
}
.p-flow-wrap__unit:last-child::before, .p-flow-wrap__unit:last-child::after {
  content: none;
}

.p-flow-wrap__number {
  color: #f06292;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (width >= 1080px) {
  .p-flow-wrap__number {
    font-size: 2.4rem;
  }
}

.p-flow-wrap__note {
  margin-top: 2rem;
  text-align: start;
  font-size: 1.2rem;
}

.p-flow-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 0 30px 0 30px;
  background-color: #fff;
  box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.1);
}
@media screen and (width > 768px) {
  .p-flow-item {
    flex: 1;
    flex-direction: column;
    padding: 2rem;
    width: 21rem;
    min-height: 26.5rem;
  }
}

.p-flow-item__img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 20%;
  width: 60px;
  height: 60px;
}
.p-flow-item__img-box::before {
  position: absolute;
  z-index: 0;
  width: 56px;
  height: 56px;
  background-color: #fee9ef;
  border-radius: 50%;
  content: "";
}

.p-flow-item__text-box {
  margin-left: 1rem;
}
@media screen and (width > 768px) {
  .p-flow-item__text-box {
    margin: 1.5rem 0 0 0;
  }
}

.p-flow-item__text {
  font-size: 1.4rem;
}
@media screen and (width >= 1080px) {
  .p-flow-item__text {
    font-size: 1.6rem;
  }
}

.p-flow-item__text-spacing {
  letter-spacing: -0.06rem;
}

.p-flow-item__img {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
}

.p-flow-item__title {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (width > 768px) {
  .p-flow-item__title {
    text-align: center;
  }
}

.p-modal {
  overflow: visible;
  color: #333;
  overscroll-behavior: none;
}
@media screen and (width > 768px) {
  .p-modal {
    max-height: 80vh;
  }
}

.p-modal-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-inline: auto;
  gap: 2rem;
  padding: 1rem 2rem;
  max-height: 80vh;
  max-width: 600px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.p-modal-wrap__button {
  position: absolute;
  z-index: 999;
  top: -21px;
  right: -21px;
  width: 44px;
  height: 44px;
  border: 1px solid #333;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.p-modal-wrap__button:focus, .p-modal-wrap__button:focus-visible {
  outline: none;
}
.p-modal-wrap__button::before, .p-modal-wrap__button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: #333;
  content: "";
}
.p-modal-wrap__button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-modal-wrap__button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-modal-wrap__title {
  text-align: center;
  color: #000;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 2.4rem;
}
@media screen and (width > 768px) {
  .p-modal-wrap__title::before {
    height: 10px;
  }
}

.p-modal-merit {
  padding: 1rem;
  background-color: #fee9ef;
}

.p-modal-merit__title {
  padding-bottom: 1rem;
  color: #f06292;
}

.p-modal-merit__ul {
  padding-left: 2rem;
  list-style: disc;
}

.p-link:hover {
  text-decoration: underline;
}
.p-link[target=_blank]::after {
  margin-left: 1rem;
  width: 1rem;
  height: 1rem;
  background-color: #295cba;
  -webkit-mask: url("../img/cmn/cmn_icon_link.svg") no-repeat center/contain;
  mask: url("../img/cmn/cmn_icon_link.svg") no-repeat center/contain;
}
.p-link--black[target=_blank]::after {
  margin-left: 0.5rem;
  background-color: #333;
}

.p-link-text {
  color: #295cba;
  text-decoration: underline;
  cursor: pointer;
}
.p-link-text:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */