@charset "UTF-8";

/* フォント変換 */
/* フレキシブルサイズ（clamp関数） */
/* スマートフォン用フレキシブルサイズ（320-767pxでスケール） */
/* レスポンシブフォントサイズ（768-1200pxで縮小） */
/* 点線パターン */
.p-front {
  background-color: #f5f5f5;
}

@media screen and (max-width: 767px) {
  .p-front {
    background-color: #fff;
  }
}

.p-front-bg01 {
  background: url("../img/front/bg01.png") no-repeat 0% -2%;
  background-size: 105% auto;
}

@media screen and (max-width: 767px) {
  .p-front-bg01 {
    background: url("../img/front/bg01-sp.png") no-repeat 0% -2%;
    background-size: 105% auto;
  }
}

.p-front-mv {
  position: relative;
  padding-bottom: var(--sp-8);
  background: url("../img/front/mv-bg01.svg") no-repeat -3% -12%;
  background-size: 66% auto;
}

@media screen and (max-width: 767px) {
  .p-front-mv {
    background: url("../img/front/mv-bg01-sp.svg") no-repeat -13% 3%;
    background-size: 79% auto;
    padding-bottom: var(--sp-13);
  }
}

.p-front-mv-block01 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: var(--sp-4-5);
}

@media screen and (max-width: 767px) {
  .p-front-mv-block01 {
    padding-top: var(--sp-14);
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.p-front-mv-block01__contents {
  position: relative;
  bottom: 5px;
  left: 3.8%;
  z-index: 2;
  width: 52%;
}

@media screen and (max-width: 767px) {
  .p-front-mv-block01__contents {
    bottom: -02em;
    left: 7.5%;
    width: 87%;
  }
}

.p-front-mv-block01__text01 {
  width: 100%;
}

.p-front-mv-block01__text02 {
  position: absolute;
  top: 39%;
  left: 34%;
  width: 47%;
}

.p-front-mv-block01__img-wrap-sp {
  display: contents;
}

@media screen and (max-width: 767px) {
  .p-front-mv-block01__img-wrap-sp {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 100%;
  }
}

.p-front-mv-block01__img {
  position: relative;
  width: 45%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 716/656;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

@media screen and (max-width: 767px) {
  .p-front-mv-block01__img {
    width: 80%;
    aspect-ratio: 312/347;
  }
}

.p-front-mv-banner01 {
  position: absolute;
  right: 8%;
  bottom: 11%;
  width: 50%;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .p-front-mv-banner01 {
    position: relative;
    top: 2.5rem;
    right: 2%;
    bottom: auto;
    width: 100%;
  }
}

.p-front-mv-banner01__img01 {
  display: inline-block;
  width: 18%;
}

@media screen and (max-width: 767px) {
  .p-front-mv-banner01__img01 {
    width: 30%;
    margin-right: 0.5em;
  }
}

.p-front-mv-banner01__img02 {
  display: inline-block;
  position: relative;
  top: 0.5em;
  width: 31.5%;
}

@media screen and (max-width: 767px) {
  .p-front-mv-banner01__img02 {
    width: 48%;
  }
}

/* スライド */
.p-front-slider01 {
  margin-bottom: var(--sp-8);
}

.p-front-slider01 .slick-slide {
  margin-inline: var(--sp-1-5);
}

@media screen and (max-width: 1090px) {
  .p-front-slider01 .slick-slide {
    margin-inline: var(--sp-1);
  }
}

@media screen and (max-width: 767px) {
  .p-front-slider01 .slick-slide {
    margin-inline: var(--sp-1);
  }
}

.p-front-slider01 .slick-slide img {
  border-radius: 15px;
}

.p-front-slider01 .slick-slide:nth-child(odd) {
  margin-top: var(--sp-1-5);
}

.p-front-lead-area {
  padding: 0 0 var(--sp-8);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(17.5px, 13.4322033898px + 0.5296610169vw, 20px);
  font-weight: bold;
  line-height: lh(50, 20);
  letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-front-lead-area {
    display: none;
  }
}

.p-front-row01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--sp-4);
}

@media screen and (max-width: 767px) {
  .p-front-row01 {
    flex-direction: column;
    gap: var(--sp-8);
    margin-bottom: 0;
  }
}

/* お知らせ */
.p-front-news {
  width: 48%;
  max-width: 600px;
}

@media screen and (max-width: 767px) {
  .p-front-news {
    width: 100%;
  }
}

.p-front-news .c-front-heading01__img img {
  width: clamp(104px, 10.4032258065vw, 129px);
}

@media screen and (max-width: 767px) {
  .p-front-news .c-front-heading01__img img {
    width: clamp(94px, 86.841163311px + 2.2371364653vw, 104px);
  }
}

.p-front-post-list {
  position: relative;
  margin: var(--sp-1-5) 0 var(--sp-2);
  padding: var(--sp-3) 0;
}

@media screen and (max-width: 767px) {
  .p-front-post-list {
    margin: var(--sp-3) 0 var(--sp-3);
    padding: var(--sp-4) 0;
  }
}

.p-front-post-list::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-image: radial-gradient(circle, #009fe8 2px, transparent 2px);
  background-size: 10px 4px;
  background-repeat: repeat-x;
  background-position: left center;
  top: 0;
  bottom: auto;
}

.p-front-post-list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-image: radial-gradient(circle, #009fe8 2px, transparent 2px);
  background-size: 10px 4px;
  background-repeat: repeat-x;
  background-position: left center;
}

.p-front-post-list__item {
  display: flex;
  align-items: center;
  gap: 2em;
  margin-bottom: var(--sp-1-6);
}

@media screen and (max-width: 767px) {
  .p-front-post-list__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }
}

.p-front-post-list__time {
  position: relative;
  top: 2px;
  font-family: "all_round_demi", sans-serif;
  font-size: clamp(15.75px, 12.0889830508px + 0.4766949153vw, 18px);
  line-height: 1;
  color: #009fe8;
}

@media screen and (max-width: 767px) {
  .p-front-post-list__time {
    padding-top: var(--sp-0-6);
  }
}

.p-front-post-list__title {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 1;
  font-weight: 500;
}

/* 診療情報 */
.p-front-info {
  width: 48%;
  max-width: 500px;
}

@media screen and (max-width: 767px) {
  .p-front-info {
    width: 100%;
    margin: 0 auto var(--sp-6);
  }
}

.p-front-info .c-front-heading01__img img {
  width: clamp(232px, 23.3870967742vw, 290px);
}

@media screen and (max-width: 767px) {
  .p-front-info .c-front-heading01__img img {
    width: clamp(210px, 194.2505592841px + 4.9217002237vw, 232px);
  }
}

.p-medical-info {
  margin-top: var(--sp-1);
  border-radius: 20px;
  background-color: #ff8d3e;
}

.p-medical-info__inner {
  padding: var(--sp-1) var(--sp-1) var(--sp-2);
  text-align: center;
  color: #fff;
}

.p-medical-info__img {
  margin-bottom: var(--sp-0-5);
}

@media screen and (max-width: 767px) {
  .p-medical-info__img {
    margin-bottom: var(--sp-2);
  }

  .p-medical-info__inner {
    padding: var(--sp-1) var(--sp-1) var(--sp-1);
  }
}

.p-medical-info__heading {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(15.75px, 12.0889830508px + 0.4766949153vw, 18px);
  font-weight: bold;
}

.p-medical-info__lead {
  font-size: clamp(13.125px, 10.0741525424px + 0.3972457627vw, 15px);
}

.p-medical-info__tel {
  width: fit-content;
  margin: 0 auto var(--sp-0-5);
  padding-left: 1em;
  background: url("../img/icon-tel-white.svg") no-repeat 0 50%;
  background-size: 0.7em auto;
  font-family: "all_round_demi", sans-serif;
  font-size: clamp(26.25px, 20.1483050847px + 0.7944915254vw, 30px);
  line-height: 1.6;
}

.p-medical-info__row {
  display: flex;
  justify-content: center;
  gap: var(--sp-1);
}

.p-medical-info__btn a {
  display: block flex;
  justify-content: center;
  align-items: center;
  width: 162px;
  background: url("../img/arrow-blue.svg") no-repeat calc(100% - 15px) 50%;
  background-color: #fcd13e;
  background-size: 7px auto;
  font-size: clamp(12.25px, 9.4025423729px + 0.3707627119vw, 14px);
  color: #411d03;
  padding-inline: 25px;
}

@media screen and (max-width: 767px) {
  .p-medical-info__btn a {
    width: 156px;
    min-width: auto;
    font-size: clamp(13.125px, 10.0741525424px + 0.3972457627vw, 15px);
  }

  .p-medical-info__heading {
    font-size: 4.0vw;
  }
}


.p-medical-info__footer {
  position: relative;
  margin-top: var(--sp-2);
  margin-bottom: calc(var(--sp-3-5) * -1);
  padding-top: var(--sp-1-6);
}

@media screen and (max-width: 767px) {
  .p-medical-info__footer {
    margin-bottom: 0;
  }
}

.p-medical-info__footer::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 4px;
  background-image: radial-gradient(circle, #fff 2px, transparent 2px);
  background-size: 10px 4px;
  background-position: left center;
  background-repeat: repeat-x;
}

/* コンセプト */
.p-front-concept {
  position: relative;
  z-index: 2;
  padding: var(--sp-9) 0;
}

@media screen and (max-width: 767px) {
  .p-front-concept {
    padding: var(--sp-20) 0 0;
    background-color: #f5f5f5;
  }

  .p-front-concept::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 13%;
    background: url("../img/front/concept-bg02-sp.png") no-repeat 0% 0%;
    background-size: 100% auto;
  }
}

.p-front-concept::before {
  content: "";
  position: absolute;
  inset: 2% 0 auto 22%;
  width: clamp(200px, 20.8064516129vw, 258px);
  height: 125px;
  background: url("../img/front/concept-bg01.png") no-repeat 40% 0%;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .p-front-concept::before {
    z-index: 2;
    background: url("../img/front/concept-bg01-sp.svg") no-repeat 40% 0%;
    background-size: contain;
  }
}

.p-front-concept__inner {
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-front-concept__inner {
    padding-bottom: var(--sp-20);
  }

  .p-front-concept__inner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 13%;
    background: url("../img/front/concept-bg03-sp.png") no-repeat 0% 100%;
    background-size: 100% auto;
  }
}

.p-front-concept .c-front-heading01__img {
  margin-bottom: var(--sp-1);
}

.p-front-concept .c-front-heading01__img img {
  width: clamp(326px, 32.9032258065vw, 408px);
}

@media screen and (max-width: 767px) {
  .p-front-concept .c-front-heading01__img img {
    width: clamp(257px, 22.9838709677vw, 285px);
  }
}

.p-front-concept-block01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .p-front-concept-block01 {
    flex-direction: column;
    gap: var(--sp-6);
    padding-top: var(--sp-6);
  }
}

.p-front-concept-block01__img {
  width: 48%;
}

@media screen and (max-width: 767px) {
  .p-front-concept-block01__img {
    width: 100%;
  }
}

.p-front-concept-block01__img img {
  border-radius: 50px;
}

.p-front-concept-block01__contents {
  width: 48%;
}

@media screen and (max-width: 767px) {
  .p-front-concept-block01__contents {
    width: 100%;
  }
}

.p-front-concept-block01__text {
  margin: var(--sp-2) 0;
}

.p-front-concept-block01__text h3 {
  color: #093c5b;
  font-size: 22px;
  margin-bottom: 30px;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.8;
}

.p-front-concept-block01__text p {
  color: #093c5b;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .p-front-concept-block01__text {
    margin: var(--sp-4) 0;
  }
}

.p-front-concept-block01__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 10px;
}

@media screen and (max-width: 767px) {
  .p-front-concept-block01__row {
    grid-template-columns: 264px;
    justify-content: center;
    gap: 1em;
    margin-bottom: var(--sp-8);
  }
}

.p-front-concept-block01__btn a {
  width: 100%;
}

.p-front-bg02 {
  background: url("../img/front/bg02.png") no-repeat 50% 0%;
  background-size: 130% auto;
}

/* 診療メニュー */
.p-front-medical {
  position: relative;
  padding: var(--sp-8) 0 var(--sp-9);
  background: url("../img/front/medical-bg01.svg") no-repeat 50% 0%, url("../img/front/medical-bg02.svg") no-repeat 67% 93.5%;
  background-size: 80% auto, clamp(150px, 15.8870967742vw, 197px) auto;
}

@media screen and (max-width: 767px) {
  .p-front-medical {
    padding: var(--sp-8) 0 var(--sp-15);
    background: url("../img/front/medical-bg02.svg") no-repeat 67% 93.5%;
    background-size: clamp(120px, 10.4838709677vw, 130px) auto;
  }

  .p-front-medical::before {
    content: "";
    position: absolute;
    top: -144px;
    left: 11%;
    z-index: 2;
    width: 70%;
    height: 30%;
    background: url("../img/front/medical-bg01-sp.svg") no-repeat 50% 0%;
    background-size: contain;
  }

  .p-front-medical::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 10%;
    background-color: #f5f5f5;
  }
}

.p-front-medical .c-front-heading01 {
  margin-bottom: var(--sp-4);
  padding-top: var(--sp-4);
}

@media screen and (max-width: 767px) {
  .p-front-medical .c-front-heading01 {
    margin-bottom: var(--sp-6);
  }
}

.p-front-medical .c-front-heading01__img img {
  width: clamp(296px, 29.8387096774vw, 370px);
}

.p-front-medical-block01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-1-5) var(--sp-2-5) var(--sp-2);
  border-radius: 30px;
  color: #fff;
  margin-bottom: var(--sp-2);
}

@media screen and (max-width: 767px) {
  .p-front-medical-block01 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--sp-4);
    position: relative;
    z-index: 3;
    padding: var(--sp-3) var(--sp-2-5) var(--sp-3);
  }
}

.p-front-medical-block01--pt1 {
  background-color: #009fe8;
}

.p-front-medical-block01--pt2 {
  background-color: #8dc32e;
}

.p-front-medical-block01--pt3 {
  background-color: #ff8d3e;
}

.p-front-medical-block01__contents {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .p-front-medical-block01__contents {
    width: 100%;
  }
}

.p-front-medical-block01__no {
  position: relative;
  font-family: "all_round_demi", sans-serif;
  font-size: clamp(17.5px, 13.4322033898px + 0.5296610169vw, 20px);
  line-height: 1;
  margin-bottom: var(--sp-2-5);
}

@media screen and (max-width: 767px) {
  .p-front-medical-block01__no {
    margin-bottom: var(--sp-4-5);
  }
}

.p-front-medical-block01__no::after {
  content: "";
  position: absolute;
  bottom: calc(var(--sp-1) * -1);
  left: calc(var(--sp-2-5) * -1 - 10px);
  width: 180px;
  height: 10px;
  background: url("../img/front/medical-deco02.svg") no-repeat 50% 50%;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .p-front-medical-block01__no::after {
    bottom: calc(var(--sp-1-5) * -1);
  }
}

.p-front-medical-block01__title {
  margin-bottom: var(--sp-1-5);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(26.25px, 20.1483050847px + 0.7944915254vw, 30px);
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .p-front-medical-block01__title {
    margin-bottom: var(--sp-2);
    font-size: clamp(24.5px, 18.8050847458px + 0.7415254237vw, 28px);
  }
}

.p-front-medical-block01__text {
  margin-bottom: var(--sp-2);
}

@media screen and (max-width: 767px) {
  .p-front-medical-block01__text {
    margin-bottom: var(--sp-4);
  }
}

.p-front-medical-block01__btn-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.p-front-medical-block01__btn a {
  width: 208px;
  background: url("../img/arrow-blue.svg") no-repeat calc(100% - 15px) 50%;
  background-color: #fff;
  background-size: 7px auto;
  color: #093c5b;
}

@media screen and (max-width: 1090px) {
  .p-front-medical-block01__btn a {
    width: clamp(162px, 15vw, 186px);
  }
}

@media screen and (max-width: 767px) {
  .p-front-medical-block01__btn a {
    width: 200px;
  }
}

.p-front-medical-block01__img {
  width: 44%;
}

@media screen and (max-width: 767px) {
  .p-front-medical-block01__img {
    width: 100%;
  }
}

.p-front-medical-block01__img img {
  border-radius: 20px;
}

.p-front-medical-block01--rev {
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .p-front-medical-block01--rev {
    flex-direction: column;
  }
}

.p-front-medical-block01--rev .p-front-medical-block01__no {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .p-front-medical-block01--rev .p-front-medical-block01__no {
    text-align: left;
  }
}

.p-front-medical-block01--rev .p-front-medical-block01__no::after {
  content: "";
  position: absolute;
  right: calc(var(--sp-2-5) * -1 - 10px);
  left: auto;
  background: url("../img/front/medical-deco01.svg") no-repeat 50% 50%;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .p-front-medical-block01--rev .p-front-medical-block01__no::after {
    content: "";
    position: absolute;
    bottom: calc(var(--sp-1-5) * -1);
    left: calc(var(--sp-2-5) * -1 - 10px);
    width: 180px;
    height: 10px;
    background: url("../img/front/medical-deco02.svg") no-repeat 50% 50%;
    background-size: contain;
  }
}

.p-front-medical-block01--rev .p-front-medical-block01__title {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .p-front-medical-block01--rev .p-front-medical-block01__title {
    text-align: left;
  }
}

.p-front-medical-block01--rev .p-front-medical-block01__btn-list {
  justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .p-front-medical-block01--rev .p-front-medical-block01__btn-list {
    justify-content: flex-start;
  }
}

.p-front-bg03 {
  background-color: #fff;
}

/* こどもの歯医者さんの特徴 */
.p-front-feature {
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-front-feature {
    padding-top: var(--sp-10);
  }
}

.p-front-feature::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("../img/front/feature-bg02.png") no-repeat 0% 0%;
  background-size: auto 100%;
}

.p-front-feature__inner {
  position: relative;
  z-index: 2;
  padding: var(--sp-8) 0 0;
  background: url("../img/front/feature-bg01.svg") no-repeat 50% 10%;
  background-color: #fff;
  background-size: 90% auto;
}

@media screen and (max-width: 767px) {
  .p-front-feature__inner {
    padding: 0;
  }
}

.p-front-feature .c-front-heading01 {
  margin-bottom: var(--sp-6);
}

@media screen and (max-width: 767px) {
  .p-front-feature .c-front-heading01 {
    margin-bottom: var(--sp-8);
  }
}

.p-front-feature .c-front-heading01__img img {
  width: clamp(305px, 30.7258064516vw, 381px);
}

@media screen and (max-width: 767px) {
  .p-front-feature .c-front-heading01__img img {
    width: clamp(247px, 22.0967741935vw, 274px);
  }
}

.p-front-feature-block01 {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--sp-3);
  gap: 2%;
}

@media screen and (max-width: 767px) {
  .p-front-feature-block01 {
    flex-direction: column-reverse;
    gap: var(--sp-2);
    margin-bottom: var(--sp-9);
  }
}

.p-front-feature-block01__img {
  position: relative;
  width: 30%;
}

@media screen and (max-width: 767px) {
  .p-front-feature-block01__img {
    width: 100%;
  }

  .p-front-feature-block01__img img {
    width: 100%;
  }
}

.p-front-feature-block01__img01 {
  border-radius: 20px;
}

.p-front-feature-block01__img02 {
  position: absolute;
  right: -1%;
  bottom: -10%;
}

@media screen and (max-width: 767px) {
  .p-front-feature-block01__img02 {
    display: none;
  }
}

.p-front-feature-block01__contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 68%;
  padding: var(--sp-2-5) var(--sp-3) var(--sp-2-5) var(--sp-3-5);
  border-radius: 20px;
  color: #fff;
}

@media screen and (max-width: 1090px) {
  .p-front-feature-block01__contents {
    padding: var(--sp-2-5) var(--sp-2) var(--sp-2-5) var(--sp-2-5);
  }
}

@media screen and (max-width: 767px) {
  .p-front-feature-block01__contents {
    flex-direction: column;
    width: 100%;
    padding: var(--sp-3) var(--sp-2-5) var(--sp-6) var(--sp-2-5);
  }
}

.p-front-feature-block01__left {
  width: 13%;
}

@media screen and (max-width: 1090px) {
  .p-front-feature-block01__left {
    width: 16%;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .p-front-feature-block01__left {
    width: fit-content;
  }
}

.p-front-feature-block01__title {
  font-family: "all_round_demi", sans-serif;
  font-size: clamp(19.25px, 14.7754237288px + 0.5826271186vw, 22px);
  line-height: 1;
  text-align: center;
  color: #ffd72b;
}

@media screen and (max-width: 1090px) {
  .p-front-feature-block01__title {
    font-size: clamp(15.75px, 12.0889830508px + 0.4766949153vw, 18px);
  }
}

@media screen and (max-width: 767px) {
  .p-front-feature-block01__title {
    font-size: clamp(19.25px, 14.7754237288px + 0.5826271186vw, 22px);
  }
}

.p-front-feature-block01__no {
  font-family: "all_round_demi", sans-serif;
  font-size: clamp(78.75px, 60.4449152542px + 2.3834745763vw, 90px);
  line-height: 1;
  text-align: center;
  color: #ffd72b;
}

@media screen and (max-width: 1090px) {
  .p-front-feature-block01__no {
    font-size: clamp(70px, 53.7288135593px + 2.1186440678vw, 80px);
  }
}

@media screen and (max-width: 767px) {
  .p-front-feature-block01__no {
    font-size: clamp(78.75px, 60.4449152542px + 2.3834745763vw, 90px);
  }
}

.p-front-feature-block01__right {
  width: 82%;
  padding-top: var(--sp-1-5);
}

@media screen and (max-width: 1090px) {
  .p-front-feature-block01__right {
    width: 80%;
  }
}

@media screen and (max-width: 767px) {
  .p-front-feature-block01__right {
    width: 100%;
  }
}

.p-front-feature-block01__heading {
  margin-bottom: var(--sp-2);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(21.875px, 16.7902542373px + 0.6620762712vw, 25px);
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .p-front-feature-block01__heading {
    margin-bottom: var(--sp-4);
  }
}

.p-front-feature-block01--pt1 .p-front-feature-block01__img02 {
  width: clamp(172px, 17.4193548387vw, 216px);
}

.p-front-feature-block01--pt1 .p-front-feature-block01__contents {
  background-color: #ff6a01;
}

.p-front-feature-block01--pt1 .p-front-feature-block01__contents::before {
  content: "";
  position: absolute;
  top: calc(50% - 70px);
  left: calc(var(--sp-1-5) * -1);
  width: 70px;
  height: 140px;
  background: url("../img/front/feature-deco01.svg") no-repeat 50% 50%;
  background-size: contain;
}

@media screen and (max-width: 1090px) {
  .p-front-feature-block01--pt1 .p-front-feature-block01__contents::before {
    width: clamp(40px, 5.6451612903vw, 70px);
  }
}

@media screen and (max-width: 767px) {
  .p-front-feature-block01--pt1 .p-front-feature-block01__contents::before {
    inset: auto 0 calc(var(--sp-12) * -1);
    width: 70px;
    margin: auto;
    rotate: -90deg;
  }
}

.p-front-feature-block01--pt2 {
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .p-front-feature-block01--pt2 {
    flex-direction: column-reverse;
  }
}

.p-front-feature-block01--pt2 .p-front-feature-block01__img02 {
  width: clamp(157px, 15.8064516129vw, 196px);
}

.p-front-feature-block01--pt2 .p-front-feature-block01__contents {
  padding: var(--sp-2-5) var(--sp-4) var(--sp-2-5) var(--sp-3);
  background-color: #005ebb;
}

@media screen and (max-width: 1090px) {
  .p-front-feature-block01--pt2 .p-front-feature-block01__contents {
    padding: var(--sp-2-5) var(--sp-3) var(--sp-2-5) var(--sp-2);
  }
}

@media screen and (max-width: 767px) {
  .p-front-feature-block01--pt2 .p-front-feature-block01__contents {
    padding: var(--sp-3) var(--sp-2-5) var(--sp-6) var(--sp-2-5);
  }
}

.p-front-feature-block01--pt2 .p-front-feature-block01__contents::before {
  content: "";
  position: absolute;
  top: calc(50% - 70px);
  right: calc(var(--sp-1-5) * -1);
  width: 70px;
  height: 140px;
  background: url("../img/front/feature-deco02.svg") no-repeat 50% 50%;
  background-size: contain;
}

@media screen and (max-width: 1090px) {
  .p-front-feature-block01--pt2 .p-front-feature-block01__contents::before {
    width: clamp(40px, 5.6451612903vw, 70px);
  }
}

@media screen and (max-width: 767px) {
  .p-front-feature-block01--pt2 .p-front-feature-block01__contents::before {
    inset: auto 0 calc(var(--sp-12) * -1);
    width: 70px;
    margin: auto;
    rotate: 90deg;
  }
}

.p-front-feature-block02-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-1-5);
  margin-top: var(--sp-4);
}

@media screen and (max-width: 767px) {
  .p-front-feature-block02-row {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    margin-top: var(--sp-6);
  }
}

.p-front-feature-block02 {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: var(--sp-3);
  gap: 3%;
}

@media screen and (max-width: 767px) {
  .p-front-feature-block02 {
    gap: var(--sp-2);
    margin-bottom: var(--sp-2);
  }
}

.p-front-feature-block02__img {
  position: relative;
  width: 100%;
}

.p-front-feature-block02__img01 {
  border-radius: 20px;
}

.p-front-feature-block02__img02 {
  position: absolute;
  right: 15%;
  bottom: -14%;
}

@media screen and (max-width: 767px) {
  .p-front-feature-block02__img02 {
    display: none;
  }
}

.p-front-feature-block02__contents {
  position: relative;
  width: 100%;
  padding: var(--sp-2) var(--sp-2-5) var(--sp-4) var(--sp-2-5);
  border-radius: 20px;
  color: #fff;
}

@media screen and (max-width: 1090px) {
  .p-front-feature-block02__contents {
    padding: var(--sp-2) var(--sp-1-5) var(--sp-4) var(--sp-1-5);
  }
}

@media screen and (max-width: 767px) {
  .p-front-feature-block02__contents {
    width: 100%;
    padding: var(--sp-3) var(--sp-2-5) var(--sp-6) var(--sp-2-5);
  }
}

.p-front-feature-block02__title {
  font-family: "all_round_demi", sans-serif;
  font-size: clamp(13.125px, 10.0741525424px + 0.3972457627vw, 15px);
  line-height: 1;
  color: #ffd72b;
}

@media screen and (max-width: 767px) {
  .p-front-feature-block02__title {
    font-size: clamp(19.25px, 14.7754237288px + 0.5826271186vw, 22px);
  }
}

.p-front-feature-block02__no {
  margin-bottom: var(--sp-0-5);
  font-family: "all_round_demi", sans-serif;
  font-size: clamp(49.875px, 38.281779661px + 1.5095338983vw, 57px);
  line-height: 1;
  color: #ffd72b;
}

@media screen and (max-width: 767px) {
  .p-front-feature-block02__no {
    font-size: clamp(78.75px, 60.4449152542px + 2.3834745763vw, 90px);
  }
}

.p-front-feature-block02__heading {
  margin-bottom: var(--sp-2);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(19.25px, 14.7754237288px + 0.5826271186vw, 22px);
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .p-front-feature-block02__heading {
    padding-top: var(--sp-1-5);
    font-size: clamp(21.875px, 16.7902542373px + 0.6620762712vw, 25px);
    margin-bottom: var(--sp-4);
  }
}

.p-front-feature-block02--pt1 .p-front-feature-block01__img02 {
  width: clamp(134px, 13.9516129032vw, 173px);
}

.p-front-feature-block02--pt1 .p-front-feature-block02__contents {
  background-color: #139032;
}

.p-front-feature-block02--pt1 .p-front-feature-block02__contents::before {
  content: "";
  position: absolute;
  inset: auto 0 calc(var(--sp-1-5) * -1);
  width: 140px;
  height: 70px;
  margin: auto;
  background: url("../img/front/feature-deco03.svg") no-repeat 50% 50%;
  background-size: contain;
}

@media screen and (max-width: 1090px) {
  .p-front-feature-block02--pt1 .p-front-feature-block02__contents::before {
    width: clamp(100px, 11.2903225806vw, 140px);
  }
}

@media screen and (max-width: 767px) {
  .p-front-feature-block02--pt1 .p-front-feature-block02__contents::before {
    bottom: calc(var(--sp-6) * -1);
    width: 140px;
  }
}

.p-front-feature-block02--pt2 {
  flex-direction: column;
  position: relative;
  top: var(--sp-4);
}

@media screen and (max-width: 767px) {
  .p-front-feature-block02--pt2 {
    flex-direction: column-reverse;
    top: 0;
  }
}

.p-front-feature-block02--pt2 .p-front-feature-block02__img02 {
  top: -25%;
  right: 3%;
  bottom: auto;
  width: clamp(117px, 11.7741935484vw, 146px);
}

.p-front-feature-block02--pt2 .p-front-feature-block02__contents {
  padding: var(--sp-3) var(--sp-2-5) var(--sp-3-5) var(--sp-2-5);
  background-color: #fcd13e;
  color: #15722c;
}

@media screen and (max-width: 1090px) {
  .p-front-feature-block02--pt2 .p-front-feature-block02__contents {
    padding: var(--sp-3) var(--sp-1-5) var(--sp-3-5) var(--sp-1-5);
  }
}

@media screen and (max-width: 767px) {
  .p-front-feature-block02--pt2 .p-front-feature-block02__contents {
    padding: var(--sp-3) var(--sp-2-5) var(--sp-6) var(--sp-2-5);
  }
}

.p-front-feature-block02--pt2 .p-front-feature-block02__contents::before {
  content: "";
  position: absolute;
  inset: calc(var(--sp-1-5) * -1) 0 auto;
  width: 140px;
  height: 70px;
  margin: auto;
  background: url("../img/front/feature-deco04.svg") no-repeat 50% 50%;
  background-size: contain;
}

@media screen and (max-width: 1090px) {
  .p-front-feature-block02--pt2 .p-front-feature-block02__contents::before {
    width: clamp(100px, 11.2903225806vw, 140px);
  }
}

@media screen and (max-width: 767px) {
  .p-front-feature-block02--pt2 .p-front-feature-block02__contents::before {
    top: auto;
    bottom: calc(var(--sp-6) * -1);
    width: 140px;
    rotate: 180deg;
  }
}

.p-front-feature-block02--pt2 .p-front-feature-block02__title,
.p-front-feature-block02--pt2 .p-front-feature-block02__no {
  color: #15722c;
}

.p-front-feature-block02--pt3 .p-front-feature-block02__img02 {
  right: auto;
  left: 5%;
  width: clamp(140px, 14.0322580645vw, 195px);
}

.p-front-feature-block02--pt3 .p-front-feature-block02__contents {
  background-color: #aa531e;
}

.p-front-feature-block02--pt3 .p-front-feature-block02__contents::before {
  content: "";
  position: absolute;
  inset: auto 0 calc(var(--sp-1-5) * -1);
  width: 140px;
  height: 70px;
  margin: auto;
  background: url("../img/front/feature-deco05.svg") no-repeat 50% 50%;
  background-size: contain;
}

@media screen and (max-width: 1090px) {
  .p-front-feature-block02--pt3 .p-front-feature-block02__contents::before {
    width: clamp(100px, 11.2903225806vw, 140px);
  }
}

@media screen and (max-width: 767px) {
  .p-front-feature-block02--pt3 .p-front-feature-block02__contents::before {
    bottom: calc(var(--sp-6) * -1);
    width: 140px;
  }
}

/* 院長メッセージ */
.p-front-greeting {
  padding: var(--sp-12) 0 0;
  overflow: hidden;
}

.p-front-greeting .c-front-heading01__img {
  margin-bottom: var(--sp-0-5);
}

.p-front-greeting .c-front-heading01__img img {
  width: clamp(343px, 34.5161290323vw, 428px);
}

@media screen and (max-width: 767px) {
  .p-front-greeting .c-front-heading01__img img {
    width: clamp(275px, 24.5967741935vw, 305px);
  }
}

.p-front-greeting-block01-outer {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-front-greeting-block01-outer {
    padding-block: var(--sp-6) 0;
  }
}

.p-front-greeting-block01-outer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(var(--sp-5) * -1);
  z-index: -1;
  width: calc(100vw + var(--sp-5));
  height: calc(100% - var(--sp-10));
  background-color: #f7f7f7;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

@media screen and (max-width: 767px) {
  .p-front-greeting-block01-outer::before {
    inset: 0 -1.2rem 0 auto;
    width: calc(100% + 1.2rem);
    height: 100%;
  }
}

.p-front-greeting-block01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .p-front-greeting-block01 {
    flex-direction: column;
    margin-top: var(--sp-3);
  }
}

.p-front-greeting-block01__contents {
  width: 48%;
  padding-bottom: var(--sp-3);
}

@media screen and (max-width: 767px) {
  .p-front-greeting-block01__contents {
    width: calc(100% - 1.2rem);
  }
}

.p-front-greeting-block01__title {
  margin-bottom: var(--sp-1);
  padding-top: var(--sp-2);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(21.875px, 16.7902542373px + 0.6620762712vw, 25px);
  font-weight: bold;
  line-height: 2.08;
  color: #093c5b;
}

@media screen and (max-width: 767px) {
  .p-front-greeting-block01__title {
    margin-bottom: var(--sp-4);
    padding-top: var(--sp-4);
    font-size: clamp(19.25px, 14.7754237288px + 0.5826271186vw, 22px);
  }
}

.p-front-greeting-block01__text {
  margin: var(--sp-2) 0;
}

@media screen and (max-width: 767px) {
  .p-front-greeting-block01__text {
    margin-bottom: var(--sp-4);
  }
}

.p-front-greeting-block01__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.p-front-greeting-block01__btn a {
  width: 238px;
  border: 1px solid #093c5b;
  background: url("../img/arrow-blue.svg") no-repeat calc(100% - 15px) 50%;
  background-color: transparent;
  background-size: 7px auto;
  color: #093c5b;
}

.p-front-greeting-block01__img {
  position: relative;
  z-index: 2;
  width: 48.5%;
  text-align: right;
  padding-top: 22px;
}

@media screen and (max-width: 767px) {
  .p-front-greeting-block01__img {
    width: 90%;
  }
}

.p-front-greeting-block01__img img {
  max-width: 80%;
  border-radius: 50px;
}

.p-front-greeting-block01__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url("../img/front/greeting-bg01.png") no-repeat 0% 65%;
  background-size: 100%;
}

.p-front-greeting-block01__img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
  width: 50vw;
  height: calc(100% - var(--sp-5));
  background: url("../img/front/greeting-bg02.png") no-repeat 0% 50%;
  background-size: auto 100%;
}

@media screen and (max-width: 767px) {
  .p-front-greeting-block01__img::after {
    width: 100%;
  }
}

.p-front-greeting-block01__name {
  position: absolute;
  bottom: 0;
  left: var(--sp-4);
  width: fit-content;
  padding: var(--sp-1) var(--sp-1-5) var(--sp-0-6);
  background-color: #ff6a01;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(15.75px, 12.0889830508px + 0.4766949153vw, 18px);
  font-weight: bold;
  line-height: 1.6;
  text-align: right;
  color: #fff;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

@media screen and (max-width: 767px) {
  .p-front-greeting-block01__name {
    font-size: clamp(14px, 10.7457627119px + 0.4237288136vw, 16px);
  }
}

.p-front-greeting-block01__name span {
  display: block;
  font-size: clamp(13.125px, 10.0741525424px + 0.3972457627vw, 15px);
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .p-front-greeting-block01__name span {
    font-size: clamp(12.25px, 9.4025423729px + 0.3707627119vw, 14px);
  }
}

/* 治療ブログ */
.p-front-blog {
  position: relative;
  padding: var(--sp-3) 0 0;
}

@media screen and (max-width: 767px) {
  .p-front-blog {
    padding: var(--sp-12) 0 0;
  }
}

.p-front-blog .c-front-heading01__img {
  margin-bottom: var(--sp-0-5);
}

.p-front-blog .c-front-heading01__img img {
  width: clamp(157px, 15.8064516129vw, 196px);
}

.p-front-blog__inner {
  position: relative;
  overflow: hidden;
}

.p-front-blog-block01-outer {
  position: relative;
  z-index: 2;
  padding: var(--sp-9) 0 var(--sp-8);
}

@media screen and (max-width: 767px) {
  .p-front-blog-block01-outer {
    padding: var(--sp-9) 0 var(--sp-8);
  }
}

.p-front-blog-block01-outer::before {
  content: "";
  position: absolute;
  right: calc(var(--sp-5) * -1);
  bottom: 0;
  z-index: -1;
  width: calc(100vw + var(--sp-5));
  max-width: 100vw;
  height: calc(100% - var(--sp-5));
  background-color: #f7f7f7;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

@media screen and (max-width: 767px) {
  .p-front-blog-block01-outer::before {
    inset: 0 auto 0 -1.2rem;
    width: calc(100% + 1.2rem);
    height: 100%;
  }
}

.p-front-blog-deco01 {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 26%;
  margin: auto;
  text-align: center;
  inset: 10% 0 auto -20%;
  pointer-events: none;
}

@media screen and (max-width: 1200px) {
  .p-front-blog-deco01 {
    display: none;
  }
}

.p-front-blog-block01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--sp-3);
}

@media screen and (max-width: 767px) {
  .p-front-blog-block01 {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: var(--sp-1);
  }
}

.p-front-blog-block01__btn {
  width: 146px;
}

.p-front-blog-block01__btn a {
  width: 100%;
  border: 1px solid #093c5b;
  background: url("../img/arrow-blue.svg") no-repeat calc(100% - 15px) 50%;
  background-color: transparent;
  background-size: 7px auto;
  color: #093c5b;
}

.p-front-blog-block02 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--sp-1-5);
}

@media screen and (max-width: 767px) {
  .p-front-blog-block02 {
    width: calc(100% - 1.2rem);
    margin-bottom: var(--sp-4);
  }
}

@media screen and (max-width: 767px) {
  .p-front-blog-block02 {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
}

.p-front-blog-block02__item {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.p-front-blog-block02__img {
  width: 100%;
}

.p-front-blog-block02__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 80/57;
}

.p-front-blog-block02__contents {
  padding: var(--sp-1) var(--sp-1) var(--sp-1-5);
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-front-blog-block02__contents {
    padding: var(--sp-2) var(--sp-2) var(--sp-3);
  }
}

.p-front-blog-block02__title {
  font-weight: bold;
  margin-bottom: 15px;
  min-height: 3em;
  font-size: 18px;
  line-height: 1.7;
  text-align: left;
  color: #093C5B;
}

.p-front-blog-block02__text {
  margin-bottom: var(--sp-0-5);
}

@media screen and (max-width: 767px) {
  .p-front-blog-block02__text {
    margin-bottom: var(--sp-1);
  }
}

.p-front-blog-block02__text p {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 14px;
  line-height: 1.7;
  ;
  letter-spacing: 1px;
  color: #093C5B;
}

.p-front-blog-block02__cat ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-front-blog-block02__cat ul li {
  width: fit-content;
  /* min-width: 120px; */
  padding: var(--sp-0-5) var(--sp-1);
  border-radius: 50px;
  font-size: clamp(10.5px, 8.0593220339px + 0.3177966102vw, 12px);
  line-height: 1;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-front-blog-block02__cat ul li {
    padding: var(--sp-1) var(--sp-2);
    font-size: clamp(12px, 8.7309322034px + 0.344279661vw, 13px);
  }
}

.p-front-blog-block02__cat ul li.preventive-dental-treatment {
  background-color: #8dc32e;
}

.p-front-blog-block02__cat ul li.general-dental-treatment {
  background-color: #009fe8;
}

.p-front-blog-block02__cat ul li.orthodontic-treatment {
  background-color: #ff8d3e;
}

.p-front-blog-block02__cat .cat01 {
  background-color: #009fe8;
}

.p-front-blog-block02__cat .cat02 {
  background-color: #8dc32e;
}

.p-front-blog-block02__cat .cat03 {
  background-color: #ff8d3e;
}

.p-front-blog-deco02 {
  position: relative;
  top: calc(var(--sp-3) * -1);
  right: var(--sp-3);
  z-index: 3;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .p-front-blog-deco02 {
    right: var(--sp-5);
  }

  .p-front-blog-deco02 img {
    width: 25px;
  }
}

/* インスタグラム */
.p-front-insta {
  position: relative;
  padding: var(--sp-4) 0 var(--sp-8);
  background: url("../img/front/insta-bg01.svg") no-repeat -3% 30%;
  background-size: 72% auto;
}

@media screen and (max-width: 767px) {
  .p-front-insta {
    padding: var(--sp-4) 0 var(--sp-20);
    background: none;
  }
}

.p-front-insta .c-front-heading01__img {
  margin-bottom: var(--sp-0-5);
}

.p-front-insta .c-front-heading01__img img {
  width: clamp(390px, 39.2741935484vw, 487px);
}

@media screen and (max-width: 767px) {
  .p-front-insta .c-front-heading01__img img {
    width: clamp(314px, 28.1451612903vw, 349px);
  }
}

.p-front-insta__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.p-front-insta__banner {
  margin: var(--sp-4) 0 var(--sp-2);
}

.p-front-insta-block01 {
  margin-top: var(--sp-4);
}

.p-front-insta-block02 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-2);
}

.p-front-insta-block02__btn {
  width: 280px;
}

.p-front-insta-block02__btn a {
  width: 100%;
}

.p-front-insta-block02__btn:first-of-type img {
  margin-right: 10px;
}

.p-front-insta-block02__btn:last-of-type a {
  border: 1px solid #093c5b;
  background: url("../img/arrow-blue.svg") no-repeat calc(100% - 15px) 50%;
  background-color: #fff;
  background-size: 7px auto;
  color: #093c5b;
}

/* 求人情報 */
.p-front-recruit {
  position: relative;
  padding: 4.5rem 0;
  background-color: #f7f7f7;
}

@media screen and (max-width: 767px) {
  .p-front-recruit {
    padding: 0;
  }
}

.p-front-recruit .c-front-heading01 {
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-front-recruit .c-front-heading01 {
    top: calc(var(--sp-3) * -1);
    margin-bottom: calc(var(--sp-2) * -1);
    text-align: center;
  }
}

.p-front-recruit .c-front-heading01__img img {
  width: 250px;
}

@media screen and (max-width: 767px) {
  .p-front-recruit .c-front-heading01__img img {
    width: 220px;
  }
}

.p-front-recruit__deco01 {
  position: absolute;
  top: calc(var(--sp-3) * -1);
  right: 20%;
  width: clamp(59px, 5.8870967742vw, 73px);
}

@media screen and (max-width: 767px) {
  .p-front-recruit__deco01 {
    display: none;
  }
}

.p-front-recruit-block01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .p-front-recruit-block01 {
    flex-direction: column-reverse;
    gap: var(--sp-10);
  }
}

.p-front-recruit-block01__img {
  padding-top: 0;
  width: 46%;
  text-align: center;
}

@media screen and (max-width: 1090px) {
  .p-front-recruit-block01__img {
    width: 48%;
  }
}

@media screen and (max-width: 767px) {
  .p-front-recruit-block01__img {
    position: relative;
    left: -1.2rem;
    width: calc(100% + 2.4rem);
  }
}

.p-front-recruit-block01__img img {
  border-radius: 50px;
}

@media screen and (max-width: 767px) {
  .p-front-recruit-block01__img img {
    border-radius: 0;
  }
}

.p-front-recruit-block01__contents {
  width: 48%;
}

@media screen and (max-width: 767px) {
  .p-front-recruit-block01__contents {
    width: 100%;
  }
}

.p-front-recruit-block01__text {
  margin: var(--sp-2) 0;
}

.p-front-recruit-block01__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.p-front-recruit-block01__btn a {
  width: 280px;
  border: 1px solid #093c5b;
  background: url("../img/arrow-blue.svg") no-repeat calc(100% - 15px) 50%;
  background-color: transparent;
  background-size: 7px auto;
  color: #093c5b;
}

@media screen and (max-width: 767px) {
  .p-front-recruit-block01__btn a {
    margin: auto;
  }

  .p-front-recruit-block01__text {
    margin: var(--sp-6) 0;
  }
}

/* --------------------------
共通
--------------------------- */
.p-block01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px var(--sp-2);
}

@media screen and (max-width: 767px) {
  .p-block01 {
    flex-direction: column;
    gap: 0;
  }
}

.p-block01__contents {
  width: 50%;
  max-width: 530px;
  font-size: clamp(14px, 10.7457627119px + 0.4237288136vw, 16px);
}

@media screen and (max-width: 767px) {
  .p-block01__contents {
    width: 100%;
    order: 2;
  }
}

.p-block01__heading {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 40px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(26.25px, 20.1483050847px + 0.7944915254vw, 30px);
  font-weight: 500;
  line-height: 1.67;
}

@media screen and (max-width: 767px) {
  .p-block01__heading {
    margin-bottom: 30px;
    padding-bottom: 0;
  }
}

.p-block01__heading::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: 0;
  width: calc(50vw + 150px);
  height: 1px;
  background-color: #000;
  opacity: 0.19;
}

@media screen and (max-width: 767px) {
  .p-block01__heading::after {
    inset: -265px auto auto -20px;
    width: calc(50vw + 0px);
  }
}

.p-block01__img {
  position: relative;
  z-index: 2;
  width: 520px;
  max-width: calc(50% - 20px);
  text-align: right;
}

@media screen and (max-width: 767px) {
  .p-block01__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    order: 1;
    text-align: center;
  }
}

.p-block01__img img {
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .p-block01__img img {
    width: 100%;
  }
}

.p-block02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px var(--sp-5);
}

@media screen and (max-width: 1090px) {
  .p-block02 {
    gap: 30px var(--sp-3);
  }
}

.p-block02--rev {
  flex-direction: row-reverse;
}

.p-block02__img {
  width: calc(50% - var(--sp-5));
}

@media screen and (max-width: 1090px) {
  .p-block02__img {
    width: calc(50% - var(--sp-3));
  }
}

@media screen and (max-width: 767px) {
  .p-block02__img {
    width: 100%;
    margin-bottom: 20px;
  }
}

.p-block02__contents {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .p-block02__contents {
    width: 100%;
    max-width: 100%;
  }
}

.p-block02__title {
  margin-bottom: var(--sp-2);
  font-size: clamp(17.5px, 13.4322033898px + 0.5296610169vw, 20px);
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.2em;
  color: #093c5b;
}

.p-block02__memo {
  margin-top: var(--sp-1-5);
  font-size: 14px;
  line-height: 1.79;
  color: #005ebb;
}

.p-block03 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px 20px;
}

@media screen and (max-width: 767px) {
  .p-block03 {
    flex-direction: column-reverse;
  }

  .p-block02__title {
    font-size: 4.2vw;
  }
}

.p-block03__content {
  width: 710px;
  max-width: 59%;
}

@media screen and (max-width: 767px) {
  .p-block03__content {
    width: 100%;
    max-width: 100%;
  }
}

.p-block03__img {
  position: relative;
  z-index: 2;
  width: 410px;
  max-width: calc(40% - 20px);
}

@media screen and (max-width: 767px) {
  .p-block03__img {
    width: 100%;
    max-width: 100%;
  }
}

.p-block04 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px var(--sp-4);
}

@media screen and (max-width: 767px) {
  .p-block04 {
    flex-direction: column;
    gap: 20px;
  }
}

.p-block04__content {
  flex: 1;
}

@media screen and (max-width: 767px) {
  .p-block04__content {
    width: 100%;
  }
}

.p-block04__img {
  width: fit-content;
  max-width: 50%;
}

@media screen and (max-width: 767px) {
  .p-block04__img {
    max-width: 100%;
    text-align: center;
    margin-inline: auto;
  }
}

.p-block05 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .p-block05 {
    flex-direction: column-reverse;
  }
}

.p-block05__content {
  width: calc(100% - 250px - 50px);
}

@media screen and (max-width: 767px) {
  .p-block05__content {
    width: 100%;
  }
}

.p-block05__head {
  padding-bottom: 45px;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.48);
}

.p-block05__body {
  padding-top: 45px;
}

.p-block05__body-inner {
  display: flex;
  flex-wrap: wrap;
}

.p-block05__body-inner:first-of-type {
  padding-bottom: 40px;
}

.p-block05__body-title {
  width: 123px;
  height: 35px;
  margin-right: 30px;
  padding: 7px 10px 4px;
  background-color: #eca2a2;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #fff;
}

.p-block05__body-title--02 {
  background-color: #baa2a2;
}

.p-block05__list {
  margin: 0;
  padding: 0 0 0 20px;
  font-weight: bold;
}

@media screen and (max-width: 1090px) {
  .p-block05__list {
    width: 100%;
    padding: 7px 0 0 20px;
  }
}

.p-block05__img {
  width: 250px;
}

@media screen and (max-width: 767px) {
  .p-block05__img {
    width: 100%;
    text-align: center;
  }

  .p-block05__img img {
    width: 250px;
    height: auto;
    margin-bottom: 20px;
  }
}

.p-block06 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px 20px;
}

@media screen and (max-width: 1090px) {
  .p-block06 {
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .p-block06 {
    flex-direction: column-reverse;
  }
}

.p-block06__content {
  width: 600px;
  max-width: 55%;
}

@media screen and (max-width: 767px) {
  .p-block06__content {
    max-width: 100%;
  }
}

.p-block06__img {
  position: relative;
  z-index: 2;
  width: 500px;
  max-width: calc(45% - 20px);
}

@media screen and (max-width: 767px) {
  .p-block06__img {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .p-block06__img>img {
    width: 80%;
  }
}

.p-block07 {
  padding: 50px 20px 80px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-block07 {
    padding: 30px 20px 40px;
  }
}

.p-block07__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 1000px;
  max-width: 100%;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .p-block07__inner {
    flex-direction: column-reverse;
  }
}

.p-block07__content {
  width: calc(100% - 340px - 50px);
}

@media screen and (max-width: 767px) {
  .p-block07__content {
    width: 100%;
  }
}

.p-block07__head {
  padding-bottom: 45px;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.48);
}

.p-block07__body {
  padding-top: 45px;
}

.p-block07__body-inner {
  display: flex;
  flex-wrap: wrap;
}

.p-block07__body-inner:first-of-type {
  padding-bottom: 40px;
}

.p-block07__body-title {
  width: 123px;
  height: 35px;
  margin-right: 30px;
  padding: 7px 10px 4px;
  background-color: #eca2a2;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #fff;
}

.p-block07__body-title--02 {
  background-color: #baa2a2;
}

.p-block07__list {
  margin: 0;
  padding: 0 0 0 20px;
  font-weight: bold;
}

@media screen and (max-width: 1090px) {
  .p-block07__list {
    width: 100%;
    padding: 7px 0 0 20px;
  }
}

.p-block07__img {
  padding-top: 35px;
  width: 340px;
  max-width: 100%;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .p-block07__img {
    width: 240px;
    margin: 0 auto 20px;
    text-align: center;
    padding-top: 0;
  }
}

.p-block08 {
  padding: 55px 20px 80px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-block08 {
    padding: 30px 20px;
  }
}

.p-block08__inner {
  width: 1000px;
  max-width: 100%;
  margin-inline: auto;
}

.p-block08__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.p-block08__img {
  width: 250px;
}

@media screen and (max-width: 767px) {
  .p-block08__img {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  .p-block08__img img {
    width: 250px;
  }
}

.p-block08__content {
  width: calc(100% - 250px);
  padding-left: 50px;
}

@media screen and (max-width: 767px) {
  .p-block08__content {
    width: 100%;
    padding: 0;
  }
}

.p-block08__title {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 8px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 2.08;
}

@media screen and (max-width: 767px) {
  .p-block08__title {
    font-size: 18px;
  }
}

.p-block08__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  opacity: 0.1;
}

.p-block08__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: #f3b3b3;
}

.p-block09 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 70px;
}

@media screen and (max-width: 767px) {
  .p-block09 {
    flex-flow: column-reverse wrap;
    gap: 20px 70px;
  }
}

.p-block09__img {
  position: relative;
  width: 230px;
}

.p-block09__img::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 3px;
  height: calc(100% + 100px);
  margin: auto;
  inset: auto 0 0;
  border-left: 3px dotted #f3b3b3;
}

.p-block09__content {
  width: 700px;
  max-width: 100%;
}

.p-block09__title {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 8px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 2.08;
}

.p-block09__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  opacity: 0.1;
}

.p-block09__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: #f3b3b3;
}

.p-heading01 {
  position: relative;
  max-width: 100%;
  margin: 0 0 var(--sp-1-5) 0;
  padding: 12px 20px 12px 30px;
  border-radius: 10px;
  background-color: #009fe8;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(17.5px, 13.4322033898px + 0.5296610169vw, 20px);
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-align: left;
  color: #fff;
}

.p-heading01::before {
  content: "";
  position: absolute;
  top: 11%;
  left: -12px;
  width: 23px;
  height: 45px;
  background: url("../img/semicircle-yellow.png") no-repeat 50% 50%;
  background-size: contain;
}

@media screen and (max-width: 1090px) {
  .p-heading01::before {
    top: 9%;
  }
}

.p-heading01 .memo {
  padding-left: 15px;
  font-size: clamp(13.125px, 10.0741525424px + 0.3972457627vw, 15px);
}

.p-heading01:has(.p-heading01__child) {
  padding-right: 110px;
}

@media screen and (max-width: 767px) {
  .p-heading01:has(.p-heading01__child) {
    padding-right: 68px;
  }
}

.p-heading01__child {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 8px;
  right: 12px;
  padding: 9px 23px 9px 24px;
  border-radius: 6px;
  background-color: #dcf4ff;
  font-size: clamp(13.125px, 10.0741525424px + 0.3972457627vw, 15px);
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  color: #093c5b;
}

@media screen and (max-width: 767px) {
  .p-heading01__child {
    top: 7px;
    right: 8px;
    padding: 7px 10px;
  }
}

.p-heading02 {
  text-align: center;
}

@media screen and (max-width: 1090px) {
  .p-heading02 {
    overflow: hidden;
  }
}

.p-heading02__title {
  position: relative;
  width: fit-content;
  margin: 10px auto 30px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(24px, 2.4193548387vw, 30px);
  font-weight: bold;
  line-height: 1.93;
  letter-spacing: 0.12em;
  text-align: center;
  color: #093c5b;
}

.p-heading02__title::before {
  content: "";
  position: absolute;
  top: calc(50% - 30px);
  left: -110px;
  width: 30px;
  height: 59px;
  background: url("../img/icon-page-title-left.png") no-repeat 50% 50%;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .p-heading02__title::before {
    top: calc(50% - 16px);
    left: -51px;
    width: 20px;
    height: 36px;
  }

  .p-heading02__title {
    margin: 10px auto 0px;
    font-size: 5vw;
    line-height: 1.8;
  }
}

.p-heading02__title::after {
  content: "";
  position: absolute;
  top: calc(50% - 23px);
  right: -200px;
  width: 144px;
  height: 46px;
  background: url("../img/icon-page-title-right.png") no-repeat 50% 50%;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .p-heading02__title::after {
    top: calc(50% - 6px);
    right: -102px;
    width: 88px;
    height: 21px;
  }
}

.p-heading03 {
  position: relative;
  padding-left: clamp(26px, 2.4193548387vw, 30px);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(15.75px, 12.0889830508px + 0.4766949153vw, 18px);
  font-weight: 900;
  line-height: 0.89;
  letter-spacing: 1.64px;
  text-align: left;
  color: #005ebb;
}

.p-heading03::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(16px, 1.4516129032vw, 18px);
  height: clamp(16px, 1.4516129032vw, 18px);
  border-radius: 50px;
  background-color: #ffd72b;
}

.p-feature01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 100px;
}

.p-feature01:nth-child(odd) {
  flex-direction: row-reverse;
}

.p-feature01:last-of-type {
  margin-bottom: 0;
}

.p-feature01__img {
  width: 500px;
  max-width: calc(50% - 40px);
}

@media screen and (max-width: 767px) {
  .p-feature01__img {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.p-feature01__img img {
  border-radius: 30px;
}

.p-feature01__content {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .p-feature01__content {
    width: 100%;
  }
}

.p-feature01__title-wrap {
  display: flex;
  align-items: center;
  gap: 0 35px;
  margin-bottom: 30px;
}

@media screen and (max-width: 1090px) {
  .p-feature01__title-wrap {
    gap: 0 20px;
  }
}

.p-feature01__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 85px;
  height: 85px;
  border-radius: 20px;
  background-color: #3ba3d5;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-feature01__head {
    width: 75px;
    height: 75px;
  }
}

.p-feature01__head-text {
  font-family: "all_round_demi", sans-serif;
  font-size: 8px;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 1.6px;
  text-align: center;
  color: #fff;
}

.p-feature01__no {
  font-size: 40px;
  font-weight: bold;
  line-height: 0.9;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-feature01__no {
    font-size: 35px;
  }
}

.p-feature01__title {
  flex: 1;
  font-size: 25px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .p-feature01__title {
    font-size: 20px;
  }
}

.p-feature01__text {
  font-family: "Zen Maru Gothic", sans-serif;
}

.p-sub-heading01 {
  position: relative;
  width: calc(100% + 11px);
  margin: 0 0 var(--sp-2) -11px;
  padding: 11px 0 14px 36px;
  background: url("../img/semicircle-yellow.png") no-repeat 0% 5px;
  background-size: 20px auto;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(17.5px, 13.4322033898px + 0.5296610169vw, 20px);
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #093c5b;
}

@media screen and (max-width: 767px) {
  .p-heading01 {
    width: 98%;
    right: -2%;
    padding: 10px 10px 10px 18px;
    font-size: 4.2vw;
    letter-spacing: 0.05em;
  }

  .p-heading01::before {
    width: 18px;
    top: 2px;
    left: -7px;
  }

  .p-sub-heading01 {
    padding: 20px 0 11px 25px;
    background-size: 15px auto;
    background-position: 0px 16px;
    font-size: 4.2vw;
    width: 100%;
    margin: 0 0 1rem;
  }

}

.p-sub-heading01::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #083c5b;
}

.p-sub-heading02 {
  position: relative;
  max-width: 100%;
  margin: 0 0 var(--sp-1-5) 0;
  padding: 12px 20px 12px 30px;
  border-radius: 10px;
  background-color: #005ebb;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(17.5px, 13.4322033898px + 0.5296610169vw, 20px);
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-align: left;
  color: #fff;
}



.p-sub-heading02::before {
  content: "";
  position: absolute;
  top: 12%;
  left: -12px;
  width: 23px;
  height: 45px;
  background: url("../img/semicircle-green.png") no-repeat 50% 50%;
  background-size: contain;
  rotate: 180deg;
}

.p-sub-heading02 .memo {
  padding-left: 15px;
  font-size: clamp(13.125px, 10.0741525424px + 0.3972457627vw, 15px);
}

.p-sub-heading03 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(17.5px, 13.4322033898px + 0.5296610169vw, 20px);
  font-weight: bold;
  line-height: 1.6;
  color: #093c5b;
  padding-bottom: 5px;
  border-bottom: 1px solid #035ebb;
  margin-bottom: 10px;
}

.p-sub-heading04 {
  position: relative;
  max-width: 100%;
  margin: 0 0 10px;
  padding: 5px 0 3px 26px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.7;
}

.p-sub-heading04::before {
  content: "";
  position: absolute;
  top: 12%;
  left: -12px;
  width: 15px;
  height: 30px;
  background: url("../img/semicircle-green.png") no-repeat 50% 50%;
  background-size: contain;
  rotate: 0deg;
}

@media screen and (max-width: 767px) {
  .p-sub-heading02 {
    width: 98%;
    right: -2%;
    padding: 8px 10px 8px 18px;
    font-size: 4.0vw;
    letter-spacing: 0.05em;
  }

  .p-sub-heading02::before {
    width: 15px;
    top: 0px;
    left: -6px;
  }

  .p-sub-heading03 {
    font-size: 4.0vw;
    padding-bottom: 5px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
  }
}

.p-merit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 184px;
  height: 44px;
  margin-bottom: 25px;
  border-radius: 50px;
  background-color: #3ba3d5;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-merit {
    height: 40px;
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.p-merit--de {
  background-color: #e3a765;
}

.p-list01 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 20px;
  border-radius: 34px;
  background-color: #ecf9ff;
  list-style: none;
}

.p-list01 li {
  position: relative;
  margin-bottom: 20px;
  padding: 0 20px 0 25px;
  font-weight: bold;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .p-list01 li {
    padding: 0 10px 0 20px;
  }
}

.p-list01 li::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
  padding-right: 8px;
  color: #66a5d2;
}

.p-list01 li:last-of-type {
  margin-bottom: 0;
}

.p-list01 li>a {
  color: #3ba3d5;
  border-bottom: 1px dotted #3ba3d5;
}

.p-list01--pt01 {
  padding: 50px 60px;
}

@media screen and (max-width: 767px) {
  .p-list01--pt01 {
    padding: 30px 20px;
  }
}

.p-list01--col01 li {
  width: 100%;
}

.p-list01--col02 li {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .p-list01--col02 li {
    width: 100%;
  }
}

.p-list01--col03 li {
  width: 33%;
}

@media screen and (max-width: 767px) {
  .p-list01--col03 li {
    width: 50%;
  }
}

.p-list01--col04 li {
  width: 25%;
}

@media screen and (max-width: 1090px) {
  .p-list01--col04 li {
    width: 33.3%;
  }
}

@media screen and (max-width: 767px) {
  .p-list01--col04 li {
    width: 50%;
  }
}

.p-list01--bgwhite {
  background-color: #fff;
}

.p-list02 {
  list-style: none;
  padding: 0;
}

.p-list02 li {
  position: relative;
  margin-bottom: 20px;
  padding: 0;
  font-weight: bold;
}

.p-list02 li::before {
  content: "●";
  position: relative;
  top: 0;
  left: 0;
  padding-right: 15px;
  color: #66a5d2;
}

@media screen and (max-width: 767px) {
  .p-list02 li::before {
    padding-right: 6px;
  }
}

.p-list03__item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding: 0 10px 0 30px;
}

.p-list03 dt {
  width: 150px;
  height: 40px;
  padding: 9px 10px 8px 12px;
  border-radius: 20px;
  background-color: #5b70a5;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: #fff;
}

.p-list03 dd {
  flex: 1;
  padding-left: 30px;
}

.p-list03--pt2 dt {
  width: 270px;
}

.p-ol01__item {
  display: flex;
  justify-content: space-between;
}

.p-ol01__item:last-of-type .p-ol01__no::before {
  inset: auto 0 50px;
  height: calc(100% - 50px);
}

.p-ol01__no {
  position: relative;
  z-index: 2;
  width: 60px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-ol01__no {
    width: 40px;
  }
}

.p-ol01__no::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 2px;
  height: 100%;
  margin: auto;
  border-left: 2px dotted #8dc32e;
  inset: auto 0 0;
}

.p-ol01__no--last::before {
  inset: auto 0 100px;
  height: calc(100% - 100px);
}

.p-ol01__no>p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background-color: #8dc32e;
  font-family: "all_round_demi", sans-serif;
  font-size: clamp(21.875px, 16.7902542373px + 0.6620762712vw, 25px);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .p-ol01__no>p {
    width: 40px;
    height: 40px;
    font-size: 23px;
    padding-bottom: 0px;
  }
}

.p-ol01__content {
  flex: 1;
  padding: 0 70px 80px 34px;
  font-family: "Zen Maru Gothic", sans-serif;
}

@media screen and (max-width: 1090px) {
  .p-ol01__content {
    padding: 0 34px 80px 24px;
  }
}

@media screen and (max-width: 767px) {
  .p-ol01__content {
    flex: none;
    width: calc(100% - 60px);
    padding: 0 5px 40px 0px;
  }
}

.p-ol01__img {
  width: 280px;
  max-width: 100%;
}

.p-ol01__img img {
  border-radius: 20px;
}

.p-ol02 {
  position: relative;
}

.p-ol02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 70px;
  z-index: 3;
  width: 2px;
  height: calc(100% - 50px);
  margin: auto;
  border-left: 2px dotted #8dc32e;
}

@media screen and (max-width: 1200px) {
  .p-ol02::before {
    left: 60px;
  }
}

@media screen and (max-width: 767px) {
  .p-ol02::before {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .p-ol02 {
    width: calc(100% + 40px);
    margin-inline: -20px;
    overflow: hidden;
  }
}

.p-ol02__item {
  display: flex;
  justify-content: space-between;
  gap: 1%;
}

@media screen and (max-width: 767px) {
  .p-ol02__item {
    flex-direction: column;
    gap: 10px;
  }
}

.p-ol02__no {
  position: relative;
  z-index: 4;
  width: 140px;
  background-color: transparent;
}

@media screen and (max-width: 1200px) {
  .p-ol02__no {
    width: 120px;
  }
}

@media screen and (max-width: 767px) {
  .p-ol02__no {
    left: 0;
    width: 100%;
  }
}

.p-ol02__no>p {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 4;
  width: 100%;
  height: 78px;
  border-radius: 100px;
  background-color: #8dc32e;
  font-family: "all_round_demi", sans-serif;
  font-size: clamp(21.875px, 16.7902542373px + 0.6620762712vw, 25px);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .p-ol02__no>p {
    justify-content: flex-start;
    width: 140px;
    height: 50px;
    padding-left: 20px;
    border-radius: 0 100px 100px 0;
  }
}

.p-ol02__no>p>span {
  padding-left: var(--sp-0-5);
  font-size: clamp(30.625px, 23.5063559322px + 0.9269067797vw, 35px);
}

.p-ol02__content {
  width: 86%;
  padding: 0 0 var(--sp-4);
  font-family: "Zen Maru Gothic", sans-serif;
}

@media screen and (max-width: 767px) {
  .p-ol02__content {
    width: 100%;
    padding: 0 0 60px;
  }
}

.p-ol02__content-inner {
  padding-left: var(--sp-2);
}

@media screen and (max-width: 767px) {
  .p-ol02__content-inner {
    padding: 0 20px;
  }
}

.p-ol02__title {
  display: flex;
  align-items: center;
  min-height: 78px;
  margin-bottom: 30px;
  padding: var(--sp-1) var(--sp-1-5) var(--sp-1) var(--sp-2);
  border-radius: 39px;
  background-color: #009fe8;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(17.5px, 13.4322033898px + 0.5296610169vw, 20px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-ol02__title {
    min-height: 55px;
    padding: 0 20px;
    border-radius: 0;
    margin-bottom: 2rem !important;
  }

  .p-ol02__title-alt {
    margin-bottom: 4rem !important;
  }
}

.p-ol02-block01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 var(--sp-2);
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .p-ol02-block01 {
    flex-direction: column;
    gap: 20px;
  }
}

.p-ol02-block01--align-center {
  align-items: center;
}

.p-ol02-block01--justify-center {
  justify-content: center;
  gap: 0 var(--sp-3);
}

.p-ol02-block01--pt2 {
  flex-direction: column;
  width: 100%;
  max-width: 380px;
  text-align: center;
}

.p-ol02-block01--pt2 .p-ol02-block01__img {
  width: 100%;
}

.p-ol02-block01--pt2 .p-ol02-lead {
  margin-top: 10px;
}

.p-ol02-block01--pt3 {
  flex-direction: column;
  width: 100%;
  max-width: 350px;
  text-align: center;
}

.p-ol02-block01--pt3 .p-ol02-block01__img {
  width: 100%;
}

.p-ol02-block01__img {
  width: clamp(150px, 16.1290322581vw, 200px);
}

@media screen and (max-width: 767px) {
  .p-ol02-block01__img {
    width: 200px;
    margin: auto;
  }

  .p-ol02-block01__img+.p-ol02-block01__img {
    margin-top: 20px;
  }
}

.p-ol02-block01__img--full {
  width: 100%;
  text-align: center;
}

.p-ol02-block01__img--full img {
  width: clamp(150px, 16.1290322581vw, 200px);
}

@media screen and (max-width: 767px) {
  .p-ol02-block01__img--full img {
    width: 200px;
  }
}

.p-ol02-block01__img--pt2 {
  width: 100%;
  max-width: 380px;
}

.p-ol02-block01__links {
  max-width: 30%;
}

@media screen and (max-width: 767px) {
  .p-ol02-block01__links {
    max-width: 230px;
  }
}

.p-ol02-block01__link {
  margin-bottom: var(--sp-1);
}

.p-ol02-block01__link:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
  .p-ol02-block01__banner {
    margin-top: 20px;
  }
}

.p-ol02-row01 {
  width: 100%;
  max-width: 667px;
}

@media screen and (max-width: 767px) {
  .p-ol02-row01 .p-ol02-block01__img+.p-ol02-block01__img {
    margin-top: 0;
  }
}

.p-ol02-row02 {
  width: 100%;
  max-width: 450px;
}

.p-ol02-row03 {
  width: 100%;
  max-width: 696px;
}

.p-ol02-lead {
  width: fit-content;
  margin: 20px auto 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(14px, 10.7457627119px + 0.4237288136vw, 16px);
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
  color: #24333b;
}

@media screen and (max-width: 1090px) {
  .p-ol02-lead {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-ol02-lead {
    margin-top: 10px;
  }
}

.p-ol02-block02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px 20px;
}

.p-ol02-block02__item {
  width: 47%;
}

@media screen and (max-width: 767px) {
  .p-ol02-block02__item {
    width: 100%;
    /* max-width: 400px; */
    margin: 0 auto;
    padding: 0 30px;
  }
}

.p-ol02-block02__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  height: 50px;
  border-radius: 25px;
  background-color: #005ebb;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(15.75px, 12.0889830508px + 0.4766949153vw, 18px);
  font-weight: bold;
  line-height: 1.6;
  color: #fff;
  padding-left: var(--sp-3);
}

@media screen and (max-width: 767px) {
  .p-ol02-block02__title {
    padding-left: 50px;
    position: relative;
    left: 10px;
  }
}

.p-ol02-block02__title>span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -12px;
  left: -18px;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #ffd72b;
  font-family: "all_round_demi", sans-serif;
  font-size: clamp(30.625px, 23.5063559322px + 0.9269067797vw, 35px);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-ol02-block02 .p-ol02-block01__img {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1090px) {
  .p-ol02-block02 .p-sub-heading01 {
    font-size: clamp(16px, 1.4516129032vw, 18px);
  }
}

@media screen and (max-width: 767px) {
  .p-ol03 {
    overflow: hidden;
  }
}

.p-ol03__item {
  display: flex;
  justify-content: space-between;
  gap: 0;
}

@media screen and (max-width: 767px) {
  .p-ol03__item {
    flex-direction: column;
    gap: 10px;
  }
}

.p-ol03__point {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  left: 1px;
  z-index: 2;
  width: 13%;
  max-width: 140px;
  height: auto;
  background-color: #fff;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .p-ol03__point {
    left: 0;
    width: 120px;
  }
}

@media screen and (max-width: 1090px) {
  .p-ol03__point {
    left: -2px;
  }
}

@media screen and (max-width: 767px) {
  .p-ol03__point {
    display: none;
  }
}

.p-ol03__point>span {
  display: inline-block;
  position: relative;
  top: 25px;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: #8dc32e;
}

.p-ol03__no {
  position: relative;
  z-index: 2;
  width: 13%;
  max-width: 140px;
  background-color: #fff;
  margin-right: 2%;
}

@media screen and (max-width: 1200px) {
  .p-ol03__no {
    width: 120px;
  }
}

@media screen and (max-width: 767px) {
  .p-ol03__no {
    left: 0;
    width: 100%;
  }
}

.p-ol03__no>p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 78px;
  border-radius: 100px;
  background-color: #8dc32e;
  font-family: "all_round_demi", sans-serif;
  font-size: clamp(21.875px, 16.7902542373px + 0.6620762712vw, 25px);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .p-ol03__no>p {
    justify-content: flex-start;
    width: 140px;
    height: 50px;
    padding-left: 20px;
    border-radius: 0 100px 100px 0;
  }
}

.p-ol03__no>p>span {
  padding-left: var(--sp-0-5);
  font-size: clamp(30.625px, 23.5063559322px + 0.9269067797vw, 35px);
}

.p-ol03__content {
  width: 85%;
  padding: 0 0 var(--sp-4);
  font-family: "Zen Maru Gothic", sans-serif;
}

@media screen and (max-width: 1200px) {
  .p-ol03__content {
    flex: 1;
  }
}

@media screen and (max-width: 767px) {
  .p-ol03__content {
    width: 100%;
    padding: 0 0 60px;
  }
}

.p-ol03__content-inner {
  padding-left: 10px;
}

@media screen and (max-width: 767px) {
  .p-ol03__content-inner {
    padding: 0 20px;
  }
}

.p-ol03__title {
  display: flex;
  align-items: center;
  min-height: 78px;
  margin-bottom: 30px;
  padding: var(--sp-1) var(--sp-1-5) var(--sp-1) var(--sp-2);
  border-radius: 39px;
  background-color: #009fe8;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(17.5px, 13.4322033898px + 0.5296610169vw, 20px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-ol03__title {
    min-height: 55px;
    padding: 0 20px;
    border-radius: 0;
  }
}

.p-ol03__title span {
  padding-top: 4px;
  padding-left: var(--sp-1);
  font-size: clamp(14px, 10.7457627119px + 0.4237288136vw, 16px);
}

.p-ol03__text {
  padding-left: var(--sp-2);
}

.p-ol03 .p-sub-heading02 {
  border-radius: 0 50px 50px 0;
}

@media screen and (max-width: 767px) {
  .p-ol03 .p-sub-heading02 {
    margin: 20px 0 20px 0;
  }

  .p-ol03__content-inner .p-ol02-block02__item {
    padding: 0 5px;
  }

  .p-ol03__content-inner .p-sub-heading01 {
    margin-left: 0;
  }
}

.p-ol03 .p-sub-heading02::before {
  background: url("../img/semicircle-yellow.png") no-repeat 50% 50%;
  background-size: contain;
  rotate: 0deg;
}

.p-ol03 .p-sub-heading01 {
  /* margin-left: -10px; */
}

@media screen and (max-width: 767px) {
  .p-ol03__sp-block01 {
    padding-inline: 5px;
  }

  .p-ol02-block02 {
    /* gap: 60px 20px; */
    /* margin-bottom: 50px !important; */
  }

  .p-ol02-row02 {
    margin-bottom: 80px !important;
  }

  .p-ol02-row02-alt {
    margin-bottom: 40px !important;
  }

  .p-ol02-block01--pt3 {
    margin: 2rem auto;
  }
}

.p-block-bgwhite01 {
  padding: 40px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-block-bgwhite01 {
    padding: 20px;
  }
}

.p-block-blue01 {
  padding: 30px;
  border: solid 2px #81a9e2;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-block-blue01 {
    padding: 20px;
  }
}

.p-medical-list01 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0 30px 0 0;
  list-style-type: none;
}

@media screen and (max-width: 767px) {
  .p-medical-list01 {
    padding: 0;
  }
}

.p-medical-list01>li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(25% - 15px);
  padding: 10px;
  border-radius: 10px;
  background-color: #ebf3fe;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-medical-list01>li {
    width: calc(50% - 10px);
  }
}

.p-medical-list01--white>li {
  background-color: #fff;
}

.p-frame01 {
  position: relative;
  padding: var(--sp-6) var(--sp-2) var(--sp-4) var(--sp-4);
  border: solid 3px #7cd6ff;
  border-radius: 50px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-frame01 {
    padding: 50px 20px 30px;
  }
}

.p-frame01--pt01 {
  padding: var(--sp-6) var(--sp-3) var(--sp-4) var(--sp-8);
}

@media screen and (max-width: 1090px) {
  .p-frame01--pt01 {
    padding: var(--sp-6) var(--sp-2) var(--sp-4) var(--sp-5);
  }
}

@media screen and (max-width: 767px) {
  .p-frame01 {
    border-radius: 20px;
  }

  .p-frame01--pt01 {
    padding: 70px 15px 50px 30px;
  }
}

.p-frame01__title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: -37px 0 0;
  width: fit-content;
  min-width: 580px;
  height: 60px;
  margin: 0 auto;
  padding: 12px 20px 12px 30px;
  border-radius: 10px;
  background-color: #009fe8;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(17.5px, 13.4322033898px + 0.5296610169vw, 20px);
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-align: left;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-frame01__title {
    min-width: auto;
    inset: -23px 0 0;
    height: 44px;
    padding: 12px 20px 12px 30px;
  }
}

.p-frame01__title::before {
  content: "";
  position: absolute;
  top: 13%;
  left: -10px;
  width: 22px;
  height: 44px;
  background: url("../img/semicircle-yellow.png") no-repeat 50% 50%;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .p-frame01__title::before {
    top: 11%;
    left: -10px;
    width: 18px;
    height: 34px;
  }
}

.p-frame01__title::after {
  content: "";
  position: absolute;
  top: 13%;
  right: -10px;
  width: 22px;
  height: 44px;
  background: url("../img/semicircle-yellow.png") no-repeat 50% 50%;
  background-size: contain;
  rotate: 180deg;
}

@media screen and (max-width: 767px) {
  .p-frame01__title::after {
    top: 11%;
    right: -10px;
    width: 18px;
    height: 34px;
  }
}

.p-frame01__title--pt2 {
  top: -36px;
  height: 74px;
  background-color: #005ebb;
}

.p-frame01__title--pt2::before {
  top: 25%;
  background: url("../img/semicircle-orange.png") no-repeat 50% 50%;
  background-size: contain;
}

.p-frame01__title--pt2::after {
  top: 25%;
  background: url("../img/semicircle-orange.png") no-repeat 50% 50%;
  background-size: contain;
  rotate: 180deg;
}

.p-frame01__lead {
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 65px;
  border-bottom: 2px dotted #3ba3d5;
}

@media screen and (max-width: 767px) {
  .p-frame01__lead {
    margin-bottom: 45px;
    padding-bottom: 40px;
  }

  .p-frame01__title--pt2 {
    top: -36px;
    height: 55px;
    font-size: 4.0vw;
    padding: 12px 15px 12px 15px;
  }
}

.p-frame01__list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.p-frame01__list li {
  width: 33.3%;
  padding: 0 15px 0 26px;
  background: url("../img/icon-check01.svg") no-repeat 0% 13px;
  background-size: 16px auto;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (max-width: 1090px) {
  .p-frame01__list li {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .p-frame01__list li {
    width: 100%;
  }
}

.p-frame01__list--pt01 {
  padding-inline: 50px;
}

@media screen and (max-width: 1090px) {
  .p-frame01__list--pt01 {
    padding-inline: 0;
  }
}

.p-frame01__list--col01 li {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-frame01__list--col01 li {
    margin-bottom: 20px;
    width: 100%;
    line-height: 1.6;
  }
}

.p-frame01__list--col02 li {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .p-frame01__list--col02 li {
    width: 100%;
  }
}

.p-frame01__text01 {
  position: relative;
  padding: 0 0 0 70px;
  font-size: 15px;
  font-weight: 500;
  line-height: 2.8;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .p-frame01__text01 {
    padding: 0 0 0 42px;
  }
}

.p-frame01__text01 span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #2e7ab2;
  font-family: "all_round_demi", sans-serif;
  font-size: 25px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  margin-right: 30px;
  padding-top: 11px;
}

@media screen and (max-width: 767px) {
  .p-frame01__text01 span {
    top: 6px;
    width: 30px;
    height: 30px;
    margin-right: 15px;
    padding-top: 7px;
    font-size: 20px;
  }
}

.p-flow01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px 20px;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .p-flow01 {
    justify-content: flex-start;
  }
}

.p-flow01::before {
  content: "";
  position: absolute;
  top: -224px;
  left: -444px;
  z-index: -1;
  width: 732px;
  height: 732px;
  border-radius: 500px;
  background-color: #fffbfb;
}

.p-flow01--white::before {
  background-color: #fff;
}

.p-flow01__item {
  width: 340px;
  max-width: 32%;
}

@media screen and (max-width: 1090px) {
  .p-flow01__item {
    max-width: none;
  }
}

@media screen and (max-width: 767px) {
  .p-flow01__item {
    width: 100%;
    max-width: 100%;
  }
}

.p-flow01__item:nth-child(2) {
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  .p-flow01__item:nth-child(2) {
    padding-top: 0;
  }
}

.p-flow01__item:nth-child(2) .p-flow01__number {
  background-color: #fba4a4;
}

.p-flow01__item:nth-child(3) {
  padding-top: 60px;
}

@media screen and (max-width: 767px) {
  .p-flow01__item:nth-child(3) {
    padding-top: 0;
  }
}

.p-flow01__item:nth-child(3) .p-flow01__number {
  background-color: #f88888;
}

.p-flow01__item-full {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.p-flow01__item-full .p-flow01__head {
  justify-content: flex-start;
  width: 468px;
}

@media screen and (max-width: 767px) {
  .p-flow01__item-full .p-flow01__head {
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }
}

.p-flow01__item-full .p-flow01__number {
  background-color: #fba4a4;
}

.p-flow01__item-full .p-flow01__body {
  width: calc(100% - 468px);
}

@media screen and (max-width: 767px) {
  .p-flow01__item-full .p-flow01__body {
    width: 100%;
  }
}

.p-flow01__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .p-flow01__head {
    align-items: flex-start;
  }
}

.p-flow01__number {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  width: 134px;
  height: 134px;
  border-radius: 100px;
  background-color: #f3b3b3;
  font-family: "didot-roman", serif;
  font-size: 55px;
  line-height: 1.1;
  text-align: center;
  color: #fff;
  padding-top: 2px;
}

@media screen and (max-width: 767px) {
  .p-flow01__number {
    width: 110px;
    height: 110px;
    padding-top: 4px;
    font-size: 50px;
  }
}

.p-flow01__number span {
  display: block;
  padding-top: 5px;
  font-size: 23px;
}

@media screen and (max-width: 767px) {
  .p-flow01__number span {
    padding-top: 7px;
    font-size: 16px;
  }
}

.p-flow01__number-inner--small span {
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .p-flow01__number-inner--small span {
    padding-top: 9px;
    font-size: 15px;
  }
}

.p-flow01__title {
  position: relative;
  width: 185px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.75;
  color: #491c1d;
  padding-top: 15px;
}

@media screen and (max-width: 767px) {
  .p-flow01__title {
    width: calc(100% - 110px);
    padding: 25px 20px 0;
  }
}

.p-flow01__title::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 0;
  width: calc(100% + 100px);
  height: 1px;
  background-color: #000;
  opacity: 0.21;
}

@media screen and (max-width: 767px) {
  .p-flow01__title::before {
    top: 6px;
    width: calc(100% + 50px);
  }
}

.p-flow01__title--full {
  width: fit-content;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .p-flow01__title--full {
    width: calc(100% - 120px);
    padding: 25px 20px 0;
  }
}

.p-flow02__item {
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
}

@media screen and (max-width: 767px) {
  .p-flow02__item {
    gap: 0 15px;
  }
}

.p-flow02__item:last-of-type .p-ol01__no::before {
  inset: auto 0 50px;
  height: calc(100% - 50px);
}

.p-flow02__no {
  position: relative;
  z-index: 2;
  width: 80px;
}

@media screen and (max-width: 767px) {
  .p-flow02__no {
    width: 60px;
  }
}

.p-flow02__no::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 3px;
  height: 100%;
  margin: auto;
  inset: auto 0 0;
  border-left: 3px dotted #f3b3b3;
}

.p-flow02__no--last::before {
  inset: auto 0 100px;
  height: calc(100% - 100px);
}

.p-flow02__no>p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 100px;
  font-family: "didot-roman", serif;
  font-size: 35px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  padding-bottom: 0;
}

@media screen and (max-width: 1090px) {
  .p-flow02__no>p {
    padding: 5px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .p-flow02__no>p {
    width: 60px;
    height: 60px;
    padding: 5px 0 0;
    font-size: 30px;
  }
}

.p-flow02__content {
  flex: 1;
  padding: 0 0 80px 55px;
}

@media screen and (max-width: 1090px) {
  .p-flow02__content {
    padding: 0 0 80px 24px;
  }
}

@media screen and (max-width: 767px) {
  .p-flow02__content {
    flex: none;
    width: calc(100% - 60px - 15px);
    padding: 0 0 60px;
  }
}

.p-flow02__content--last {
  padding: 0 0 0 55px;
}

@media screen and (max-width: 767px) {
  .p-flow02__content--last {
    padding: 0;
  }
}

.p-flow02__title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 35px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 2px;
}

.p-flow02__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  opacity: 0.1;
}

.p-flow02__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: #f3b3b3;
}

.p-flow02__img {
  width: 170px;
  max-width: 100%;
  margin-left: 50px;
}

.p-flow02__img img {
  border-radius: 20px;
}

.p-flow03 {
  position: relative;
}

.p-flow03::before {
  content: "";
  position: absolute;
  top: -224px;
  left: -444px;
  z-index: -1;
  width: 732px;
  height: 732px;
  border-radius: 500px;
  background-color: #fffbfb;
}

.p-flow03__item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.p-flow03__item:nth-child(2) {
  padding-left: 100px;
}

@media screen and (max-width: 1090px) {
  .p-flow03__item:nth-child(2) {
    padding-left: 30px;
  }
}

@media screen and (max-width: 767px) {
  .p-flow03__item:nth-child(2) {
    padding-left: 0;
  }
}

.p-flow03__item:nth-child(2) .p-flow03__number {
  background-color: #fba4a4;
}

.p-flow03__item:nth-child(3) {
  padding-left: 200px;
}

@media screen and (max-width: 1090px) {
  .p-flow03__item:nth-child(3) {
    padding-left: 60px;
  }
}

@media screen and (max-width: 767px) {
  .p-flow03__item:nth-child(3) {
    padding-left: 0;
  }
}

.p-flow03__item:nth-child(3) .p-flow03__number {
  background-color: #f88888;
}

.p-flow03__item:nth-child(4) {
  padding-left: 0;
}

.p-flow03__item:nth-child(4) .p-flow03__number {
  background-color: #e17877;
}

.p-flow03__item:nth-child(5) {
  padding-left: 100px;
}

@media screen and (max-width: 1090px) {
  .p-flow03__item:nth-child(5) {
    padding-left: 30px;
  }
}

@media screen and (max-width: 767px) {
  .p-flow03__item:nth-child(5) {
    padding-left: 0;
  }
}

.p-flow03__item:nth-child(5) .p-flow03__number {
  background-color: #c45353;
}

.p-flow03__item:nth-child(6) {
  padding-left: 200px;
}

@media screen and (max-width: 1090px) {
  .p-flow03__item:nth-child(6) {
    padding-left: 60px;
  }
}

@media screen and (max-width: 767px) {
  .p-flow03__item:nth-child(6) {
    padding-left: 0;
  }
}

.p-flow03__item:nth-child(6) .p-flow03__number {
  background-color: #8a0709;
}

.p-flow03__head {
  position: relative;
  z-index: 2;
  width: 134px;
}

.p-flow03__number {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  width: 134px;
  height: 134px;
  border-radius: 100px;
  background-color: #f3b3b3;
  font-family: "didot-roman", serif;
  font-size: 55px;
  line-height: 1.1;
  text-align: center;
  color: #fff;
  padding-top: 2px;
}

@media screen and (max-width: 767px) {
  .p-flow03__number {
    width: 100px;
    height: 100px;
    font-size: 45px;
  }
}

.p-flow03__number span {
  display: block;
  padding: 5px 0 2px;
  font-size: 23px;
}

@media screen and (max-width: 767px) {
  .p-flow03__number span {
    font-size: 18px;
  }
}

.p-flow03__body {
  width: 510px;
  padding: 0 50px 0 25px;
}

@media screen and (max-width: 767px) {
  .p-flow03__body {
    width: 100%;
    padding: 0 20px 0 25px;
  }
}

.p-flow03__title {
  position: relative;
  padding: 15px 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.75;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .p-flow03__title {
    font-size: 18px;
  }
}

.p-flow03__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -27px;
  width: calc(100% + 27px + 50px);
  height: 1px;
  background-color: #000;
  opacity: 0.21;
}

@media screen and (max-width: 767px) {
  .p-flow03__title::before {
    width: calc(100% + 27px + 13px);
  }
}

.p-flow03__img {
  position: relative;
  z-index: 2;
  width: 268px;
}

@media screen and (max-width: 1090px) {
  .p-flow03__img {
    margin: 15px 0 0 160px;
  }
}

.p-flow04__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 70px;
  padding-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .p-flow04__item {
    gap: 0 27px;
    padding-bottom: 30px;
  }
}

.p-flow04__item:first-of-type .p-flow04__img::before {
  display: none;
}

.p-flow04__item:nth-child(2) .p-flow04__img::before {
  height: calc(100% + 200px);
}

.p-flow04__img {
  position: relative;
  width: 230px;
}

.p-flow04__img::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 3px;
  height: calc(100% + 100px);
  margin: auto;
  inset: auto 0 0;
  border-left: 3px dotted #f3b3b3;
}

@media screen and (max-width: 767px) {
  .p-flow04__img::before {
    height: calc(100% + 300px);
  }
}

.p-flow04__content {
  width: 700px;
  max-width: 100%;
}

.p-flow04__title {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 8px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 2.08;
}

.p-flow04__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  opacity: 0.1;
}

.p-flow04__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: #f3b3b3;
}

.p-card01 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3-5) var(--sp-3-5);
  width: 100%;
  max-width: 1150px;
  margin: 100px auto 0;
}

@media screen and (max-width: 1090px) {
  .p-card01 {
    gap: var(--sp-4) var(--sp-2);
  }
}

@media screen and (max-width: 767px) {
  .p-card01 {
    grid-template-columns: 1fr;
    gap: 60px 20px;
    margin: 65px auto 0;
  }
}

.p-card01__item {
  position: relative;
  padding: 80px var(--sp-3) 50px var(--sp-3);
  border-radius: 20px;
  background-color: #fff;
}

.p-card01__no {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 100px;
  background-color: #8dc32e;
  font-family: "all_round_demi", sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  inset: -32px 0 auto;
  padding-top: 5px;
}

.p-card01__no>span {
  margin-top: 3px;
  font-size: clamp(28px, 21.4915254237px + 0.8474576271vw, 32px);
}

.p-card01__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(15.75px, 12.0889830508px + 0.4766949153vw, 18px);
  font-weight: 900;
  line-height: 1.78;
  text-align: center;
  color: #093c5b;
  margin-bottom: var(--sp-1-5);
  padding-bottom: var(--sp-1-5);
  border-bottom: 1px solid #083c5b;
}

.p-card02 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-7) var(--sp-1-5);
  width: 100%;
  max-width: 1140px;
  margin: 105px auto 0;
}

@media screen and (max-width: 1090px) {
  .p-card02 {
    gap: var(--sp-9) var(--sp-1-5);
  }
}

@media screen and (max-width: 767px) {
  .p-card02 {
    grid-template-columns: 1fr;
    gap: 100px 20px;
  }
}

.p-card02__item {
  position: relative;
  padding: 100px var(--sp-3) 40px var(--sp-3);
  border-radius: 20px;
  background-color: #fff;
}

.p-card02__img {
  position: absolute;
  inset: -75px 0 auto;
  text-align: center;
}

.p-card02__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(16.5px, 12.0889830508px + 0.4766949153vw, 18px);
  font-weight: 900;
  line-height: 1.78;
  text-align: center;
  color: #093c5b;
  margin-bottom: var(--sp-1-5);
  padding-bottom: var(--sp-1-5);
  border-bottom: 1px solid #083c5b;
}

.p-table01 {
  width: 1000px;
  max-width: 100%;
  margin-inline: auto;
  border: none;
}

.p-table01 th,
.p-table01 td {
  padding: 0;
  border: none;
  background-color: transparent;
}

.p-table01 th {
  width: 44%;
}

.p-table01 td {
  width: 28%;
}

.p-table01 thead td {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.56;
  text-align: center;
  color: #2d2d2d;
  padding-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .p-table01 thead td {
    font-size: 16px;
  }
}

.p-table01 tbody th {
  padding-bottom: 40px;
  text-align: left;
}

.p-table01 tbody td {
  text-align: center;
  padding-bottom: 40px;
}

@media screen and (max-width: 1090px) {
  .p-table01 tbody td {
    padding: 0 5px 40px;
  }
}

.p-table01__style01 {
  position: relative;
  z-index: 2;
}

.p-table01__style01::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 126px;
  height: 126px;
  margin: 0 auto;
  border-radius: 100px;
  background-color: #fff;
  opacity: 0.8;
  inset: -24px 0 0;
}

.p-table01__style01 p:first-of-type {
  font-family: "didot-roman", serif;
  color: #baa2a2;
}

.p-table01__style02 {
  position: relative;
  z-index: 2;
  width: calc(100% - 100px);
  padding: 14px 10px 12px;
  border: solid 1px #000;
  background-color: #fffcfc;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: #2d2d2d;
}

.p-table01__style02::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -100px;
  z-index: -1;
  width: 100px;
  height: 1px;
  background-color: #000;
}

.p-table01__style04 {
  padding: 16px 10px 13px;
  border: 1px solid #000;
  background-color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.67;
  text-align: center;
  color: #2d2d2d;
}

.p-table01__style05 {
  position: relative;
  z-index: 2;
}

.p-table01__style05::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  width: calc(100% - 2px);
  height: 2px;
  border-top: 2px dotted #000;
}

@media screen and (max-width: 1090px) {
  .p-table01__style05::after {
    width: calc(100% + 8px);
  }
}

.p-table01 figure {
  position: relative;
  z-index: 2;
}

.p-table02 {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  border: none;
}

.p-table02 th,
.p-table02 td {
  display: block;
  padding: 0;
  border: none;
  background-color: transparent;
}

.p-table02 td {
  width: 50%;
}

.p-table02 tr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.p-table02 thead tr {
  align-items: flex-end;
}

.p-table02 thead td {
  position: relative;
  padding: 0 10px 40px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.56;
  text-align: center;
  color: #2d2d2d;
}

.p-table02 thead td::after {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 50%;
  z-index: 1;
  width: 2px;
  height: 100%;
  border-left: 2px dotted #000;
}

.p-table02 tbody th {
  position: relative;
  width: 100%;
  text-align: left;
  padding-bottom: 40px;
}

.p-table02 tbody th::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 25%;
  z-index: 1;
  width: 2px;
  height: 110%;
  border-left: 2px dotted #000;
}

.p-table02 tbody th::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 75%;
  z-index: 1;
  width: 2px;
  height: 110%;
  border-left: 2px dotted #000;
}

.p-table02 tbody td {
  position: relative;
  padding: 0 10px 40px;
  text-align: center;
}

.p-table02 tbody td::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 50%;
  z-index: 1;
  width: 2px;
  height: 110%;
  border-left: 2px dotted #000;
}

.p-table02 tr:last-of-type td::after {
  height: 20px;
}

.p-table02__style01 {
  position: relative;
  z-index: 2;
}

.p-table02__style01::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 126px;
  height: 126px;
  margin: 0 auto;
  border-radius: 100px;
  background-color: #fff;
  opacity: 0.8;
  inset: -24px 0 0;
}

.p-table02__style01 p {
  font-size: 16px;
}

.p-table02__style01 p:first-of-type {
  font-family: "didot-roman", serif;
  color: #baa2a2;
}

.p-table02__style02 {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 14px 10px 12px;
  border: solid 1px #000;
  background-color: #fffcfc;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #2d2d2d;
}

.p-table02__style04 {
  position: relative;
  z-index: 2;
  padding: 16px 10px 13px;
  border: 1px solid #000;
  background-color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
  text-align: center;
  color: #2d2d2d;
}

.p-table02__style05 {
  position: relative;
  z-index: 2;
}

.p-table02__style06 figure {
  position: relative;
  z-index: 2;
  padding: 5px 0;
  background-color: #ffefef;
}

.p-table02 figure {
  position: relative;
  z-index: 2;
}

.p-memo01 {
  position: relative;
  top: -70px;
  width: fit-content;
  max-width: 100%;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .p-memo01 {
    top: -55px;
  }
}

.p-memo01__img {
  text-align: center;
}

.p-memo01__contents {
  padding: var(--sp-2-5) var(--sp-2) var(--sp-2-5) var(--sp-2);
  border-radius: 20px;
  background-color: #035ebb;
}

.p-memo01__lead {
  margin-bottom: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(14px, 10.7457627119px + 0.4237288136vw, 16px);
  font-weight: bold;
  line-height: 1.9;
  text-align: center;
  color: #fff;
}

.p-memo01__lead em {
  padding-bottom: 2px;
  border-bottom: 5px solid #fcd13e;
  font-size: clamp(21.875px, 16.7902542373px + 0.6620762712vw, 25px);
}

.p-memo01__text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(14px, 10.7457627119px + 0.4237288136vw, 16px);
  font-weight: bold;
  line-height: 1.88;
  text-align: center;
  color: #fff;
}

.p-price-subtitle01 {
  position: relative;
  padding: 16px 20px 18px 48px;
  background-color: #480d0d;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.94;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-price-subtitle01 {
    padding: 16px 20px 18px 45px;
  }

  .p-memo01__contents {
    padding: var(--sp-3) var(--sp-4) var(--sp-3) var(--sp-4);
  }
}

.p-price-subtitle01::before {
  content: "";
  position: absolute;
  top: calc(50% - 7.5px);
  left: 20px;
  width: 15px;
  height: 15px;
  border-radius: 100px;
  background-color: #baa2a2;
}

.p-price-subtitle01--color-light {
  background-color: #8a0709;
}

.p-price-subtitle01--color-light::before {
  background-color: #fff;
  opacity: 0.47;
}

.p-price-subtitle01--color-exlight {
  background-color: #ce6b6b;
}

.p-price-subtitle01--color-exlight::before {
  background-color: #baa2a2;
}

.p-price-outer01 {
  padding: var(--sp-4) var(--sp-1-5);
  border-radius: 10px;
  background-color: #fff;
}

.p-price-dl01__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  border-bottom: 1px solid #afbcc4;
}

.p-price-dl01__content:first-of-type {
  border-top: 1px solid #afbcc4;
}

.p-price-dl01 dt {
  position: relative;
  width: calc(100% - 242px);
  padding: 15px 10px 17px 20px;
  font-size: clamp(14px, 10.7457627119px + 0.4237288136vw, 16px);
  line-height: 2.19;
  text-align: left;
  color: #24333b;
}

@media screen and (max-width: 767px) {
  .p-price-dl01 dt {
    width: 100%;
    padding: 10px 10px 15px;
    line-height: 1.6;
  }
}

.p-price-dl01 dd {
  position: relative;
  width: 242px;
  padding: 17px 20px 17px 10px;
  font-family: "all_round_demi", sans-serif;
  font-size: clamp(15.75px, 12.0889830508px + 0.4766949153vw, 18px);
  line-height: 1.94;
  letter-spacing: 0.05em;
  text-align: right;
  color: #093c5b;
}

@media screen and (max-width: 767px) {
  .p-price-dl01 dd {
    width: 100%;
    padding: 0 10px 10px;
  }
}

.p-price-dl01 dd::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 1px;
  height: calc(100% - 20px);
  background-color: #afbcc4;
}

@media screen and (max-width: 767px) {
  .p-price-dl01 dd::after {
    display: none;
  }
}

.p-price-dl01 dd>em {
  color: #ff6a01;
}

.p-price-dl01__memo {
  padding: 18px 22px;
  font-size: 15px;
  line-height: 2.33;
  color: #828282;
}

.p-price-dl01--pt2 dt {
  width: calc(100% - 320px);
}

@media screen and (max-width: 767px) {
  .p-price-dl01--pt2 dt {
    width: 100%;
  }
}

.p-price-dl01--pt2 dd {
  width: 320px;
}

@media screen and (max-width: 767px) {
  .p-price-dl01--pt2 dd {
    width: 100%;
  }
}

.p-price-memo01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3%;
  margin-top: var(--sp-2);
}

@media screen and (max-width: 767px) {
  .p-price-memo01 {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
}

.p-price-memo01__img {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .p-price-memo01__img {
    width: 100%;
  }
}

.p-price-memo01__text {
  width: 57%;
}

@media screen and (max-width: 767px) {
  .p-price-memo01__text {
    width: 100%;
  }
}

.p-beforeAfter {
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
  padding: var(--sp-3) var(--sp-1);
  border-radius: 30px;
  background-color: #fff;
}

.p-beforeAfter__row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .p-beforeAfter__row {
    /* flex-direction: column; */
  }
}

.p-beforeAfter__item {
  width: 300px;
}

@media screen and (max-width: 767px) {
  .p-beforeAfter__item {
    width: 100%;
  }
}

.p-beforeAfter__img {
  margin-bottom: 30px;
  text-align: center;
}

.p-beforeAfter__contents {
  padding: 10px 1em 0;
  border-top: 1px solid #083c5b;
}

.p-beforeAfter__contents ul {
  font-weight: bold;
}

.p-beforeAfter__arrow {
  position: relative;
  top: 65px;
}

@media screen and (max-width: 767px) {
  .p-beforeAfter__row {
    gap: 15px;
  }

  .p-beforeAfter__arrow {
    width: 18px;
  }

  .p-beforeAfter {
    padding: var(--sp-2) var(--sp-2);
  }

  .p-beforeAfter__contents {
    padding: 0;
  }

  .p-beforeAfter__contents ul {
    padding-left: 14px;
  }

  .p-beforeAfter__contents ul li {
    line-height: 1.5;
    margin-bottom: 10px;
    letter-spacing: 0;
  }
}

.p-beforeAfter__footer {
  padding: 15px 1em 0;
  border-top: 1px solid #083c5b;
}

.p-beforeAfter__footer p {
  font-weight: bold;
  text-align: center;
}

/* 特殊なブロック */
.p-kodomo-block01 {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--sp-3);
  gap: 2.5%;
}

@media screen and (max-width: 767px) {
  .p-kodomo-block01 {
    margin-bottom: var(--sp-6);
    flex-direction: column-reverse;
    gap: var(--sp-3);
  }

  .p-beforeAfter__footer p {
    text-align: left;
  }
}

.p-kodomo-block01__img {
  position: relative;
  width: 32%;
}

@media screen and (max-width: 767px) {
  .p-kodomo-block01__img {
    width: 100%;
  }

  .p-kodomo-block01__img img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .p-kodomo-block01__img-alt img {
    object-position: top;
  }
}

.p-kodomo-block01__img01 {
  border-radius: 20px;
}

.p-kodomo-block01__contents {
  position: relative;
  width: 66%;
  padding: var(--sp-3) var(--sp-4) var(--sp-4) var(--sp-6);
  border-radius: 20px;
  color: #fff;
}

@media screen and (max-width: 1090px) {
  .p-kodomo-block01__contents {
    padding: var(--sp-2-5) var(--sp-2) var(--sp-2-5) var(--sp-2-5);
  }
}

@media screen and (max-width: 767px) {
  .p-kodomo-block01__contents {
    flex-direction: column;
    width: 100%;
    padding: var(--sp-3) var(--sp-2-5) var(--sp-6) var(--sp-2-5);
  }
}

.p-kodomo-block01__heading {
  margin-bottom: var(--sp-1);
  padding-bottom: 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(19.25px, 14.7754237288px + 0.5826271186vw, 22px);
  font-weight: bold;
  border-bottom: 1px solid #fff;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .p-kodomo-block01__heading {
    margin-bottom: var(--sp-1-5);
    font-size: 4.2vw;
    min-height: unset;
    padding-bottom: 22px;
  }
}

.p-kodomo-block01--pt1 .p-kodomo-block01__img02 {
  width: clamp(172px, 17.4193548387vw, 216px);
}

.p-kodomo-block01--pt1 .p-kodomo-block01__contents {
  background-color: #005ebb;
}

.p-kodomo-block01--pt1 .p-kodomo-block01__contents::before {
  content: "";
  position: absolute;
  top: calc(50% - 70px);
  left: calc(var(--sp-1-5) * -1);
  width: 70px;
  height: 140px;
  background: url("../img/semicircle-green.png") no-repeat 50% 50%;
  background-size: contain;
}

@media screen and (max-width: 1090px) {
  .p-kodomo-block01--pt1 .p-kodomo-block01__contents::before {
    top: calc(50% - 50px);
    width: clamp(40px, 5.6451612903vw, 70px);
    height: 100px;
  }
}

@media screen and (max-width: 767px) {
  .p-kodomo-block01--pt1 .p-kodomo-block01__contents::before {
    inset: auto 0 calc(var(--sp-9) * -1);
    width: 70px;
    margin: auto;
    rotate: -90deg;
  }
}

.p-kodomo-block01--pt2 {
  flex-direction: row-reverse;
}

.p-kodomo-block01 .p-kodomo-block01__text {
  margin-bottom: 10px;
}

.p-kodomo-block01 .p-kodomo-block01__text:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .p-kodomo-block01--pt2 {
    flex-direction: column-reverse;
  }
}

.p-kodomo-block01--pt2 .p-kodomo-block01__img02 {
  width: clamp(157px, 15.8064516129vw, 196px);
}

.p-kodomo-block01--pt2 .p-kodomo-block01__contents {
  padding: var(--sp-3) var(--sp-6) var(--sp-4) var(--sp-4);
  background-color: #009fe8;
}

@media screen and (max-width: 1090px) {
  .p-kodomo-block01--pt2 .p-kodomo-block01__contents {
    padding: var(--sp-2-5) var(--sp-3) var(--sp-2-5) var(--sp-2);
  }
}

@media screen and (max-width: 767px) {
  .p-kodomo-block01--pt2 .p-kodomo-block01__contents {
    padding: var(--sp-3) var(--sp-2-5) var(--sp-6) var(--sp-2-5);
  }
}

.p-kodomo-block01--pt2 .p-kodomo-block01__contents::before {
  content: "";
  position: absolute;
  top: calc(50% - 70px);
  right: calc(var(--sp-1-5) * -1);
  width: 70px;
  height: 140px;
  background: url("../img/front/feature-deco02.svg") no-repeat 50% 50%;
  background-size: contain;
}

@media screen and (max-width: 1090px) {
  .p-kodomo-block01--pt2 .p-kodomo-block01__contents::before {
    top: calc(50% - 50px);
    width: clamp(40px, 5.6451612903vw, 70px);
    height: 100px;
  }
}

@media screen and (max-width: 767px) {
  .p-kodomo-block01--pt2 .p-kodomo-block01__contents::before {
    inset: auto 0 calc(var(--sp-9) * -1);
    width: 70px;
    margin: auto;
    rotate: 90deg;
  }
}

.p-kodomo-block02-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-1-5);
  margin-top: var(--sp-3);
}

@media screen and (max-width: 767px) {
  .p-kodomo-block02-row {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
    margin-top: var(--sp-6);
    margin-bottom: 2rem !important;
  }
}

.p-kodomo-block02 {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--sp-3);
  gap: 4%;
}

@media screen and (max-width: 767px) {
  .p-kodomo-block02 {
    gap: var(--sp-3);
    margin-bottom: 0;
  }
}

.p-kodomo-block02__img {
  position: relative;
  width: 100%;
}

.p-kodomo-block02__img01 {
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .p-kodomo-block02__img01 {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
}

.p-kodomo-block02__contents {
  position: relative;
  width: 100%;
  padding: var(--sp-3) var(--sp-3) var(--sp-5) var(--sp-3);
  border-radius: 20px;
  background-color: #005ebb;
  color: #fff;
}

@media screen and (max-width: 1090px) {
  .p-kodomo-block02__contents {
    padding: var(--sp-2) var(--sp-1-5) var(--sp-4) var(--sp-1-5);
  }
}

@media screen and (max-width: 767px) {
  .p-kodomo-block02__contents {
    width: 100%;
    padding: var(--sp-3) var(--sp-2-5) var(--sp-6) var(--sp-2-5);
  }
}

.p-kodomo-block02__heading {
  min-height: 4em;
  margin-bottom: var(--sp-1);
  padding-bottom: 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(19.25px, 14.7754237288px + 0.5826271186vw, 20px);
  font-weight: bold;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .p-kodomo-block02__heading {
    margin-bottom: var(--sp-1-5);
    font-size: 4.2vw;
    min-height: unset;
    padding-bottom: 22px;
  }
}

.p-kodomo-block02--pt1 .p-kodomo-block02__contents::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 70px;
  height: 140px;
  margin: auto;
  background: url("../img/semicircle-green.png") no-repeat 50% 50%;
  background-size: contain;
  inset: auto 0 calc(var(--sp-3-5) * -1);
  rotate: -90deg;
}

@media screen and (max-width: 1090px) {
  .p-kodomo-block02--pt1 .p-kodomo-block02__contents::before {
    inset: auto 0 calc(var(--sp-3) * -1);
    width: clamp(40px, 5.6451612903vw, 70px);
    height: 100px;
  }
}

@media screen and (max-width: 767px) {
  .p-kodomo-block02--pt1 .p-kodomo-block02__contents::before {
    bottom: calc(var(--sp-9) * -1);
    width: 140px;
  }
}

.p-kodomo-block02--pt2 .p-kodomo-block02__contents {
  background-color: #009fe8;
}

.p-kodomo-block02--pt2 .p-kodomo-block02__contents::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 70px;
  height: 140px;
  margin: auto;
  background: url("../img/semicircle-yellow.png") no-repeat 50% 50%;
  background-size: contain;
  inset: auto 0 calc(var(--sp-3-5) * -1);
  rotate: 90deg;
}

@media screen and (max-width: 1090px) {
  .p-kodomo-block02--pt2 .p-kodomo-block02__contents::before {
    inset: auto 0 calc(var(--sp-3) * -1);
    width: clamp(40px, 5.6451612903vw, 70px);
    height: 100px;
  }
}

@media screen and (max-width: 767px) {
  .p-kodomo-block02--pt2 .p-kodomo-block02__contents::before {
    bottom: calc(var(--sp-9) * -1);
    width: 140px;
  }
}

.p-check01 {
  list-style-type: none;
  padding: var(--sp-2);
  border-radius: 20px;
  background-color: #005ebb;
}

.p-check01 li {
  background: url("../img/icon-check01.svg") no-repeat 0% 8px;
  background-size: 14px auto;
  line-height: 1.6;
  color: #fff;
  padding-left: 28px;
  margin-bottom: 15px;
}

.p-check01 li:last-of-type {
  margin-bottom: 0;
}

:where(.l-page) section {
  padding-block: var(--sp-6) var(--sp-9);
  color: #093c5b;
}

:where(.l-page) .p-prevent section {
  padding-block: var(--sp-6) var(--sp-5);
}

:where(.l-page) .p-prevent section.p-prevent-sec02 {
  padding-block: var(--sp-1) var(--sp-9);
}

@media screen and (max-width: 767px) {
  :where(.l-page) section {
    padding-block: 6rem 8rem;
  }

  :where(.l-page) .p-prevent section {
    padding-block: var(--sp-6) var(--sp-5);
  }

  :where(.l-page) .p-prevent section.p-prevent-sec01 {
    padding-block: var(--sp-6) var(--sp-3);
  }

  :where(.l-page) .p-prevent section.p-prevent-sec02 {
    padding-block: var(--sp-1) var(--sp-18);
  }

  .p-prevent-sec02 .p-heading02 {
    margin-bottom: 2rem;
  }

  .p-check01 {
    list-style-type: none;
    padding: var(--sp-4);
  }

  :where(.l-page) section.p-contact-sec01 {
    padding-block: 4rem 0;
  }

  :where(.l-page) section.p-contact-sec02 {
    padding-block: 6rem 4rem;
  }
}

:where(.l-page) section.u-wave01 {
  padding-block: var(--sp-4) var(--sp-10);
}

@media screen and (max-width: 767px) {
  :where(.l-page) section.u-wave01 {
    padding-block: 3rem 8rem;
  }
}

:where(.l-page) section.u-wave02 {
  padding-block: var(--sp-4) var(--sp-10);
}

@media screen and (max-width: 767px) {
  :where(.l-page) section.u-wave02 {
    padding-block: 3rem 8rem;
  }
}

/* --------------------------
むし歯治療
--------------------------- */
.p-cacity-block01 {
  display: flex;
  align-items: flex-start;
  gap: 5%;
}

@media screen and (max-width: 767px) {
  .p-cacity-block01 {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.p-cacity-block01__contents {
  width: 33%;
}

@media screen and (max-width: 767px) {
  .p-cacity-block01__contents {
    width: 100%;
  }
}

.p-cacity-block01__img {
  width: 62%;
}

@media screen and (max-width: 767px) {
  .p-cacity-block01__img {
    width: 100%;
  }
}

.p-price-block02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-bottom: 15px;
}

@media screen and (max-width: 1090px) {
  .p-price-block02 img:last-of-type {
    position: relative;
    right: 10px;
  }
}

.p-price-block02+.memo {
  font-size: 14px;
  text-align: center;
}

/* --------------------------
小児矯正歯科
--------------------------- */
.p-ortho-block01 {
  position: relative;
  width: fit-content;
  margin: auto;
  margin-bottom: 2rem;
}

.p-ortho-block01__img {
  position: absolute;
  top: 14px;
  left: -94px;
}

@media screen and (max-width: 767px) {
  .p-ortho-block01__img {
    top: 67px;
    left: 6px;
  }
}

@media screen and (max-width: 767px) {
  .p-ortho-block01__img img {
    width: 120px;
    height: auto;
    position: relative;
    top: -19px;
    left: -20px;
  }
}

.p-ortho-block01__contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 35px 34px 110px;
  border-radius: 100px;
  background-color: #fff8da;
  text-align: left;
}

.p-ortho-block01__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(17.5px, 13.4322033898px + 0.5296610169vw, 20px);
  font-weight: bold;
  text-align: left;
  color: #093c5b;
}

.p-ortho-block01__text {
  font-size: clamp(14px, 10.7457627119px + 0.4237288136vw, 16px);
  line-height: 1.75;
  text-align: left;
  color: #093c5b;
}

@media screen and (max-width: 767px) {
  .p-ortho-block02-wrap {
    overflow-x: scroll;
  }

  .p-ortho-block01__text {
    font-size: 3.5vw;
  }

  .p-ortho-block01__contents {
    border-radius: 50px;
    padding: 15px 22px 24px 110px;
  }
}

.p-ortho-block02 {
  display: grid;
  grid-template-columns: 11% 25.6% 25.6% 25.6%;
  gap: 4%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-ortho-block02 {
    width: 800px;
  }
}

.p-ortho-block02::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #035ebb;
}

.p-ortho-block02__head {
  position: relative;
  height: 64px;
}

.p-ortho-block02__head--first {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-ortho-block02__head-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 64px;
  border-radius: 50px;
  background-color: #005ebb;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(21.875px, 16.7902542373px + 0.6620762712vw, 25px);
  font-weight: bold;
  line-height: 1.28;
  letter-spacing: 0.12em;
  text-align: center;
  color: #fff;
}

.p-ortho-block02__head-text-first {
  width: 26px;
  height: 26px;
  border-radius: 50px;
  background-color: #005ebb;
}

.p-ortho-block02__img {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 30px;
}

.p-ortho-block02__title {
  padding-block: 24px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(17.5px, 13.4322033898px + 0.5296610169vw, 20px);
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
  color: #2a4201;
}

.p-ortho-block02__text {
  color: #093c5b;
}

.p-ortho-block03 {
  position: relative;
}

.p-ortho-block03__title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: -31px 0 0;
  width: fit-content;
  min-width: 580px;
  height: 60px;
  margin: 0 auto;
  padding: 12px 20px 12px 30px;
  border-radius: 10px;
  background-color: #009fe8;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(17.5px, 13.4322033898px + 0.5296610169vw, 20px);
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-align: left;
  color: #fff;
}

.p-ortho-block03__title::before {
  content: "";
  position: absolute;
  top: 13%;
  left: -10px;
  width: 22px;
  height: 44px;
  background: url(../img/semicircle-yellow.png) no-repeat 50% 50%;
  background-size: contain;
}

.p-ortho-block03__title::after {
  content: "";
  position: absolute;
  top: 13%;
  right: -10px;
  width: 22px;
  height: 44px;
  background: url(../img/semicircle-yellow.png) no-repeat 50% 50%;
  background-size: contain;
  rotate: 180deg;
}



.p-ortho-block03__title::before {
  content: "";
  position: absolute;
  top: 13%;
  left: -10px;
  width: 22px;
  height: 44px;
  background: url("../img/semicircle-yellow.png") no-repeat 50% 50%;
  background-size: contain;
}

.p-ortho-block03__title::after {
  content: "";
  position: absolute;
  top: 13%;
  right: -10px;
  width: 22px;
  height: 44px;
  background: url("../img/semicircle-yellow.png") no-repeat 50% 50%;
  background-size: contain;
  rotate: 180deg;
}

@media screen and (max-width: 767px) {
  .p-ortho-block03__title {
    inset: -30px 0 0;
    min-width: auto;
    height: 44px;
    padding: 12px 20px 12px 20px;
  }

  .p-ortho-block03__title::before {
    top: 1%;
    left: -9px;
    width: 16px;
  }

  .p-ortho-block03__title::after {
    top: 1%;
    right: -9px;
    width: 16px;
  }
}

.p-ortho-block03__img {
  text-align: center;
}

.p-ortho-block03__img a:hover {
  opacity: 1;
}

.p-ortho-block03__memo {
  margin-top: 25px;
  font-size: 14px;
  text-align: center;
  color: #093c5b;
}

.p-ortho-bg01 {
  position: relative;
  padding: var(--sp-5) var(--sp-1) var(--sp-5);
  border-radius: 20px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-ortho-bg01 {
    padding: 20px;
  }
}

.p-ortho-bg01__title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: var(--sp-3) 0 auto;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50px;
  background-color: #009fe8;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(20.125px, 15.4470338983px + 0.6091101695vw, 23px);
  font-weight: bold;
  letter-spacing: 0.12em;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-ortho-bg01__title {
    position: relative;
    top: 5px;
    width: calc(100% - 40px);
    height: 40px;
    margin-bottom: 20px;
    font-size: 4.1vw;
  }
}

.p-ortho-block04__title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  height: 60px;
  margin: 0 auto 25px;
  border-radius: 50px;
  background-color: #ff8d3e;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(20.125px, 15.4470338983px + 0.6091101695vw, 23px);
  font-weight: bold;
  letter-spacing: 0.12em;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-ortho-block04__title {
    position: relative;
    top: 5px;
    width: calc(100% - 40px);
    height: 40px;
    margin-bottom: 20px;
    font-size: 4.1vw;
  }
}

.p-ortho-block04__title--pt2 {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .p-ortho-block04__title--pt2 {
    margin-bottom: 20px;
  }
}

.p-ortho-block04__lead {
  position: relative;
  z-index: 2;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(19.25px, 14.7754237288px + 0.5826271186vw, 22px);
  font-weight: 900;
  line-height: 1.82;
  letter-spacing: 0.05em;
  text-align: center;
  color: #914e25;
}

@media screen and (max-width: 767px) {
  .p-ortho-block04__lead {
    font-size: 16px;
  }
}

.p-ortho-block04__img {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: -137px;
}

@media screen and (max-width: 767px) {
  .p-ortho-block04__img {
    margin-top: 5px;
  }
}

.p-ortho-block04__img--pt2 {
  margin-top: -112px;
}

@media screen and (max-width: 767px) {
  .p-ortho-block04__img--pt2 {
    margin-top: 5px;
  }
}

/* --------------------------
予防歯科・定期健診
--------------------------- */
.p-prevent-sec01-block01 {
  position: relative;
  margin-bottom: var(--sp-10);
  padding-inline: 50px 40px;
}

@media screen and (max-width: 767px) {
  .p-prevent-sec01-block01 {
    padding-inline: 0;
  }

  .p-prevent-sec01-block01 .p-block01__contents {
    margin-bottom: 1rem;
  }
}

.p-prevent-sec01-block01__img {
  position: absolute;
  bottom: -80px;
  left: 0;
  z-index: 2;
  width: 15%;
}

.p-prevent-sec01-block01 .p-block01__img {
  position: relative;
  z-index: 1;
}

.p-prevent-block01 {
  position: relative;
  padding: 100px 20px 50px;
  border-radius: 50px;
  background-color: rgba(223, 239, 255, 0.4);
}

@media screen and (max-width: 767px) {
  .p-prevent-block01 {
    padding: 20px 20px 50px;
  }

  .p-prevent-sec01-block01__img {
    position: absolute;
    top: 140px;
    left: -10px;
    z-index: 2;
    width: 25%;
  }
}

.p-prevent-block01__title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: fit-content;
  min-width: 580px;
  height: 60px;
  margin: 0 auto;
  padding: 12px 20px 12px 30px;
  border-radius: 10px;
  background-color: #005ebb;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(17.5px, 13.4322033898px + 0.5296610169vw, 20px);
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-align: center;
  color: #fff;
  inset: -31px 0 0;
}

@media screen and (max-width: 767px) {
  .p-prevent-block01__title {
    position: relative;
    inset: 0;
    min-width: auto;
    height: 44px;
    padding: 12px 20px 12px 30px;
  }
}

.p-prevent-block01__title::before {
  content: "";
  position: absolute;
  top: calc(50% - 22px);
  left: -10px;
  width: 22px;
  height: 44px;
  background: url("../img/semicircle-orange.png") no-repeat 50% 50%;
  background-size: contain;
}

.p-prevent-block01__title::after {
  content: "";
  position: absolute;
  top: calc(50% - 22px);
  right: -10px;
  width: 22px;
  height: 44px;
  background: url("../img/semicircle-orange.png") no-repeat 50% 50%;
  background-size: contain;
  rotate: 180deg;
}

.p-prevent-block01__title--pt2 {
  inset: -61px 0 0;
  height: 120px;
}

@media screen and (max-width: 767px) {
  .p-prevent-block01__title--pt2 {
    height: 120px;
  }
}

.p-prevent-block01__img {
  text-align: center;
}

.p-prevent-sec01 .p-kodomo-block02-row {
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

@media screen and (max-width: 1090px) {
  .p-prevent-sec01 .p-kodomo-block02-row {
    gap: var(--sp-2);
  }
}

@media screen and (max-width: 767px) {
  .p-prevent-sec01 .p-kodomo-block02-row {
    grid-template-columns: 1fr;
  }
}

.p-prevent-sec02 {
  padding-bottom: 0;
}

.p-prevent-block02 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
    margin: 0 auto;
}

@media screen and (max-width: 1090px) {
  .p-prevent-block02 {
    grid-template-columns: repeat(3, 180px);
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .p-prevent-block02 {
    grid-template-columns: 1fr 1fr;
    justify-content: center;
  }
}

.p-prevent-block02__head {
  position: relative;
}

.p-prevent-block02__img {
  margin-bottom: 30px;
  text-align: center;
}

.p-prevent-block02__no {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -5px;
  left: 35px;
  width: 35px;
  height: 35px;
  border-radius: 30px;
  background-color: #ff6a01;
  font-family: "all_round_demi", sans-serif;
  font-size: clamp(19.25px, 14.7754237288px + 0.5826271186vw, 22px);
  line-height: 1;
  text-align: center;
  color: #fff;
}

.p-prevent-block02__text {
  font-weight: bold;
  line-height: 1.75;
  text-align: center;
  color: #093c5b;
}

.p-prevent-sec02 .p-heading02__title {
  margin-bottom: 0;
  font-size: 25px;
}

.p-prevent-sec03 .p-frame01__list {
  width: 100%;
  max-width: 570px;
  margin: 0 auto;
}

.p-prevent-block03 {
  position: relative;
  padding: 60px 20px 45px;
  border: solid 3px #7cd6ff;
  border-radius: 30px;
  background-color: #fff;
}

.p-prevent-block03__title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: -31px 0 0;
  width: fit-content;
  min-width: 580px;
  height: 60px;
  margin: 0 auto;
  padding: 12px 20px 12px 30px;
  border-radius: 10px;
  background-color: #005ebb;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(17.5px, 13.4322033898px + 0.5296610169vw, 20px);
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-align: left;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-prevent-block03__title {
    inset: -25px 0 0;
    min-width: auto;
    height: 55px;
    padding: 12px 20px 12px 20px;
    font-size: 4.0vw;
  }

  .p-prevent-sec02 .p-heading02__title {
    font-size: 4.3vw;
    width: 63%;
  }
}

@media screen and (max-width: 767px) {
  .p-prevent-block02__no {
    left: 70px;
  }
}

.p-prevent-block03__title::before {
  content: "";
  position: absolute;
  top: 13%;
  left: -10px;
  width: 22px;
  height: 44px;
  background: url("../img/semicircle-orange.png") no-repeat 50% 50%;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .p-prevent-block03__title::before {
    top: 9%;
    width: 15px;
  }
}

.p-prevent-block03__title::after {
  content: "";
  position: absolute;
  top: 13%;
  right: -10px;
  width: 22px;
  height: 44px;
  background: url("../img/semicircle-orange.png") no-repeat 50% 50%;
  background-size: contain;
  rotate: 180deg;
}

@media screen and (max-width: 767px) {
  .p-prevent-block03__title::after {
    top: 9%;
    right: -8px;
    width: 15px;
  }
}

.p-prevent-block03__img {
  text-align: center;
}

.p-prevent-block03__img a:hover {
  opacity: 1;
}

.p-prevent-block03__memo {
  margin-top: 25px;
  font-size: 14px;
  text-align: center;
  color: #093c5b;
}

.p-prevent-sec03 .p-prevent-block03 {
  padding-top: 80px;
}

.p-prevent-block04 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: var(--sp-3) var(--sp-2);
}

.p-prevent-block04__item {
  /* width: 47%; */
  border-radius: 20px;
  overflow: hidden;
}

.p-prevent-block04__contents {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 116px;
  padding: 16px 5px 18px;
  background-color: #009fe8;
  text-align: center;
  color: #fff;
}

.p-prevent-block04__title {
  font-weight: bold;
  line-height: 1.6;
}

.p-prevent-block04__text {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.p-prevent-block04__text em {
  font-size: clamp(15.75px, 12.0889830508px + 0.4766949153vw, 18px);
}

/* --------------------------
初めての方へ
--------------------------- */
.p-first-sec01 .p-heading02__title::before {
  background: url("../img/semicircle-blue.png") no-repeat 50% 50%;
  background-size: contain;
}

.p-first-sec01 .p-heading02__title::after {
  background: url("../img/icon-page-title-right02.png") no-repeat 50% 50%;
  background-size: contain;
}

.p-first-sec01-block01 {
  position: relative;
  margin-bottom: var(--sp-10);
  padding-inline: 50px 40px;
}

@media screen and (max-width: 767px) {
  .p-first-sec01-block01 {
    padding-inline: 0;
  }

  .p-prevent-block04__item {
    width: 47%;
  }
}

.p-first-sec01-block01__img {
  position: absolute;
  bottom: -50px;
  left: 42%;
  z-index: 2;
  width: 15%;
}

@media screen and (max-width: 767px) {
  .p-first-sec01-block01__img {
    top: 60px;
    right: 0;
    left: auto;
    width: 30%;
  }
}

.p-first-sec01-block01 .p-block01__img {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-first-sec01-block01 .p-block01__img {
    text-align: center;
  }
}

.p-first-block01 h5+p {
  padding-left: 26px;
}

.p-first-block01--pt1 {
  justify-content: flex-start;
}

.p-first-block01--pt2 {
  justify-content: space-between;
}

.p-first-block01--pt3 {
  justify-content: flex-start;
  margin-bottom: -130px;
}

@media screen and (max-width: 1090px) {
  .p-first-block01--pt3 {
    margin-bottom: -70px;
  }
}

.p-first-block01__content {
  width: 100%;
  max-width: 800px;
}

.p-first-block01__img01 {
  position: relative;
  left: 20px;
}

@media screen and (max-width: 767px) {
  .p-first-block01__img01 {
    left: 0;
    margin: 0 auto 40px;
  }

  .p-first-block01 h5+p {
    padding-left: 0;
  }

  .p-sub-heading04::before {
    left: 0;
  }
}

.p-first-block01__img02 {
  position: relative;
  top: -50px;
}

@media screen and (max-width: 767px) {
  .p-first-block01__img02 {
    top: 0;
    margin: 0 auto 40px;
  }

  .p-first-block01__img02 img {
    width: 170px;
  }
}

.p-first-block01__img03 {
  position: relative;
  top: -150px;
  left: -92px;
  max-width: 36%;
}

@media screen and (max-width: 1200px) {
  .p-first-block01__img03 {
    top: -78px;
    left: -22px;
    max-width: 30%;
  }
}

@media screen and (max-width: 767px) {
  .p-first-block01__img03 {
    top: 0;
    left: 0;
    max-width: 100%;
    margin: 0 auto 40px;
  }
}

.p-first-block02 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}

@media screen and (max-width: 767px) {
  .p-first-block02 {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  .p-first-block02__item {
    width: calc(50% - 10px);
  }
}

.p-first-block02__item--pt2 {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-first-block02__item--pt2 {
    width: 100%;
  }

  .p-first-block02__item--pt2 img {
    width: 185px;
  }

  .p-first-sec02__heading {
    font-size: 5.0vw;
  }
}

.p-first-sec02__heading {
  position: relative;
  width: fit-content;
  margin: 0 auto var(--sp-2);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(21.875px, 16.7902542373px + 0.6620762712vw, 25px);
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-align: center;
  color: #093c5b;
}

.p-first-sec02__heading::before {
  content: "";
  position: absolute;
  top: calc(50% - 18px);
  left: -90px;
  width: 44px;
  height: 46px;
  background: url("../img/icon-page-title-left02.svg") no-repeat 50% 50%;
  background-size: contain;
}

.p-first-sec02__deco01 {
  margin-bottom: var(--sp-2);
  text-align: center;
}

.p-first-sec02__deco01 img {
  rotate: 90deg;
}

.p-first-sec02-img {
  text-align: center;
}

/* --------------------------
医院案内
--------------------------- */
.p-clinic-sec01 {
  background: url("../img/clinic/bg01.png") no-repeat 100% 0%;
  background-size: contain;
}

.p-clinic-slick-imgs {
  position: relative;
  margin-bottom: 20px;
}

.p-clinic-slick-imgs .slick-slide img {
  border-radius: 20px;
}

.p-clinic-slick-imgs .slick-slide figcaption {
  padding: 20px;
  font-weight: bold;
  text-align: center;
}

.p-clinic-slick-imgs .slick-arrow {
  position: absolute;
  top: calc(50% - 55px);
  z-index: 2;
  width: 40px;
  height: 40px;
  background: url("../img/icon-arrow-blue.svg") no-repeat 50% 50%;
  background-size: contain;
  cursor: pointer;
}

.p-clinic-slick-imgs .p-clinic-slick-button-prev {
  left: -70px;
  rotate: 0deg;
}

@media screen and (max-width: 1200px) {
  .p-clinic-slick-imgs .p-clinic-slick-button-prev {
    left: -18px;
  }
}

.p-clinic-slick-imgs .p-clinic-slick-button-next {
  right: -70px;
  rotate: 180deg;
}

@media screen and (max-width: 1200px) {
  .p-clinic-slick-imgs .p-clinic-slick-button-next {
    right: -18px;
  }
}

.p-clinic-slick-thumbs {
  position: relative;
  margin-right: -25px;
}

.p-clinic-slick-thumbs .slick-slide {
  opacity: 0.5;
  cursor: pointer;
}

.p-clinic-slick-thumbs .slick-slide img {
  border-radius: 6px;
}

.p-clinic-slick-thumbs .slick-current {
  opacity: 1;
}

.p-clinic-slick-thumbs .slick-arrow {
  position: absolute;
  top: calc(50% - 20px);
  z-index: 2;
  width: 40px;
  height: 40px;
  background: url("../img/icon-arrow-blue.svg") no-repeat 50% 50%;
  background-size: contain;
  cursor: pointer;
}

.p-clinic-slick-thumbs .p-clinic-slick-thumbs-prev {
  left: -70px;
  rotate: 0deg;
}

@media screen and (max-width: 1200px) {
  .p-clinic-slick-thumbs .p-clinic-slick-thumbs-prev {
    left: -18px;
  }
}

.p-clinic-slick-thumbs .p-clinic-slick-thumbs-next {
  right: -45px;
  rotate: 180deg;
}

@media screen and (max-width: 1200px) {
  .p-clinic-slick-thumbs .p-clinic-slick-thumbs-next {
    right: 4px;
  }

  .p-clinic-slick-thumbs {
    margin-right: 0;
  }
}

.p-clinic-sec02__inner {
  width: 100%;
  overflow: hidden;
}

.p-clinic-block01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4%;
  position: relative;
  z-index: 2;
  margin-bottom: var(--sp-5);
  padding: var(--sp-3) 0 var(--sp-5);
}

@media screen and (max-width: 767px) {
  .p-clinic-block01 {
    flex-direction: column;
    padding: 0 0 20px;
    margin-bottom: var(--sp-13);
  }

  .p-clinic-slick-imgs .slick-slide img {
    border-radius: 0;
  }

  .p-clinic-slick-imgs .p-clinic-slick-button-next {
    right: -5px;
  }

  .p-clinic-slick-imgs .p-clinic-slick-button-prev {
    left: -5px;
  }

  .p-clinic-slick-imgs .slick-arrow {
    position: absolute;
    top: 225px;
    z-index: 2;
    width: 35px;
    height: 35px;
    background: url(../img/icon-arrow-white.svg) no-repeat 45% 50% #009FE8;
    background-size: 25%;
    border: 2px solid #009FE8;
    border-radius: 50px;
  }

  .p-clinic-slick-imgs .slick-slide figcaption {
    padding: 15px 40px;
    font-size: 14px;
  }

  .p-clinic-slick-thumbs .slick-slide {
    /* width: 102px !important; */
    /* margin-right: 22px !important; */
  }

  .p-clinic-slick-thumbs .slick-arrow {
    display: none !important;
  }
}

.p-clinic-block01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  z-index: -1;
  width: 100%;
  max-width: 950px;
  height: 100%;
  border-radius: 30px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-clinic-block01::before {
    left: 0;
  }
}

.p-clinic-block01__left {
  width: 46%;
}

@media screen and (max-width: 767px) {
  .p-clinic-block01__left {
    width: 100%;
    /* padding-inline: 20px; */
  }
}

.p-clinic-block01__img {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .p-clinic-block01__img {
    margin-bottom: 20px;
  }
}

.p-clinic-block01__img img {
  border-radius: 20px;
}

.p-clinic-block01__illust {
  margin-bottom: var(--sp-2);
  padding-left: var(--sp-2);
}

.p-clinic-block01__right {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .p-clinic-block01__right {
    width: 100%;
    padding-inline: 20px;
  }
}

.p-clinic-block01__position {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(13.125px, 10.0741525424px + 0.3972457627vw, 15px);
  font-weight: 500;
  line-height: 2.13;
  letter-spacing: 0.15em;
}

.p-clinic-block01__name {
  margin-bottom: 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(21.875px, 16.7902542373px + 0.6620762712vw, 25px);
  font-weight: bold;
  line-height: 1.78;
  letter-spacing: 0.05em;
}

.p-clinic-block01__name>span {
  font-size: clamp(15.75px, 12.0889830508px + 0.4766949153vw, 18px);
}

.p-clinic-block01__en {
  margin-bottom: var(--sp-3);
}

.p-clinic-from-staff {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding: var(--sp-1-5) var(--sp-1-5) var(--sp-1-5) 0;
  border-radius: 50px;
  background-color: #eaf8ff;
}

@media screen and (max-width: 767px) {
  .p-clinic-from-staff {
    margin-top: 30px;
    border-radius: 20px;
  }

  .u-sp-show .p-clinic-block01__illust {
    margin-top: 2rem;
    margin-bottom: 0;
    padding-left: 0;
  }

  .p-clinic-career-alt {
    margin-bottom: 4rem;
  }
}


.p-clinic-from-staff__left {
  width: 77px;
}

.p-clinic-from-staff__left img {
  position: relative;
  top: calc((var(--sp-1-5) + 18px) * -1);
  left: -20px;
}

@media screen and (max-width: 1200px) {
  .p-clinic-from-staff__left img {
    left: 0;
  }
}

.p-clinic-from-staff__right {
  flex: 1;
}

@media screen and (max-width: 1200px) {
  .p-clinic-from-staff__right {
    padding-left: 10px;
  }
}

.p-clinic-from-staff__title {
  margin-bottom: 8px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(15.75px, 12.0889830508px + 0.4766949153vw, 18px);
  font-weight: 900;
  line-height: 1.94;
}

.p-clinic-fukidashi {
  position: relative;
  width: calc(100% + var(--sp-5));
  margin-left: calc(var(--sp-5) * -1);
  padding: var(--sp-2) var(--sp-2) var(--sp-2) var(--sp-3);
  border-radius: 0 50px 50px;
  background-color: #005ebb;
  color: #fff;
}



.p-clinic-fukidashi::before {
  content: "";
  position: absolute;
  top: 0;
  left: -25px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  border-top: 30px solid #005ebb;
  border-bottom: 0;
}

@media screen and (max-width: 767px) {
  .p-clinic-fukidashi::before {
    right: 34px;
    left: auto;
    rotate: -85deg;
    z-index: -1;
  }

  .p-clinic-block01__img img {
    border-radius: 20px 20px 0px 0px;
  }
}

.p-clinic-fukidashi--pt2 {
  margin-top: 15px;
  border-radius: 50px;
  background-color: #009fe8;
}

.p-clinic-fukidashi--pt2::before {
  display: none;
}

.p-clinic-fukidashi--pt3 {
  margin-top: 15px;
  border-radius: 50px;
}

.p-clinic-fukidashi--pt3::before {
  display: none;
}

.p-clinic-career__title {
  position: relative;
  margin-bottom: 15px;
  padding: 0 0 10px 27px;
  font-weight: bold;
  border-bottom: 1px solid #035ebb;
  line-height: 1.6;
}

.p-clinic-career__title::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background-color: #ffd72b;
}

.p-clinic-career__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.p-clinic-career__list li {
  font-size: clamp(12.25px, 9.4025423729px + 0.3707627119vw, 14px);
  line-height: 1.6;
  margin-bottom: 8px;
}

.p-clinic-info {
  width: fit-content;
  margin: 0 auto var(--sp-3);
}

.p-clinic-info__address {
  margin-bottom: 20px;
  text-align: center;
  color: #24333b;
}

.p-clinic-info__address img {
  position: relative;
  top: -9px;
  margin-right: 14px;
}

.p-clinic-info__train-wrap {
  margin: 0 auto var(--sp-3);
  padding: 20px 50px;
  border-top: 1px solid rgba(8, 60, 91, 0.3);
  border-bottom: 1px solid rgba(8, 60, 91, 0.3);
  color: #24333b;
}

@media screen and (max-width: 767px) {
  .p-clinic-fukidashi {
    width: 100%;
    margin-left: 0;
    border-radius: 30px;
  }

  .p-clinic-info__train-wrap {
    padding: 20px 0;
  }
}

.p-clinic-map {
  margin-bottom: var(--sp-4);
}

.p-clinic-map iframe {
  width: 100%;
  height: 500px;
  border-radius: 20px;
}

.p-clinic-movie__title {
  margin-bottom: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(15.75px, 12.0889830508px + 0.4766949153vw, 18px);
  font-weight: bold;
  text-align: center;
}

.p-clinic-movie iframe {
  display: block;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 10px;
}

/* --------------------------
求人案内
--------------------------- */
.p-recruit-sec01-block01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4%;
  position: relative;
  z-index: 2;
  margin-bottom: var(--sp-9);
}

.p-recruit-sec01-block01::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 80%;
  height: 100%;
  border-radius: 30px;
  background-color: #005ebb;
}

.p-recruit-sec01-block01__imgs {
  position: relative;
  top: calc(var(--sp-3) * -1);
  width: 48%;
}

@media screen and (max-width: 1200px) {
  .p-recruit-sec01-block01__imgs {
    width: 46%;
  }
}

.p-recruit-sec01-block01__img01 {
  margin-left: var(--sp-2);
  border-radius: 20px;
}

.p-recruit-sec01-block01__img02 {
  position: absolute;
  bottom: calc(var(--sp-4) * -1);
  left: 0;
  z-index: -1;
}

.p-recruit-sec01-block01__contents {
  width: 48%;
  padding: var(--sp-2) var(--sp-2) var(--sp-3) 0;
}

.p-recruit-sec01-block01__contents p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 19px;
  font-weight: bold;
  line-height: 2.4;
  letter-spacing: 0.05em;
  color: #fff;
}

.p-recruit-card01 {
  width: 100%;
  max-width: 888px;
  margin: 0 auto;
  padding: 0 var(--sp-3) var(--sp-3) var(--sp-3);
  border: solid 2px #8dc32e;
  border-radius: 30px;
}

.p-recruit-card01__head {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  top: -56px;
  margin: 0 var(--sp-3) -20px var(--sp-3);
  background-color: #fff;
}

.p-recruit-card01__no {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 112px;
  height: 112px;
  border-radius: 100px;
  background-color: #8dc32e;
  font-family: "all_round_demi", sans-serif;
  font-size: clamp(37.625px, 28.8792372881px + 1.1387711864vw, 43px);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
}

.p-recruit-card01__no>span {
  font-size: 14px;
}

.p-recruit-card01__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(19.25px, 14.7754237288px + 0.5826271186vw, 22px);
  font-weight: bold;
  line-height: 1.82;
  letter-spacing: 0.12em;
}

.p-recruit-card01:nth-child(even) {
  border: solid 2px #ff8d3e;
}

.p-recruit-card01:nth-child(even) .p-recruit-card01__no {
  background-color: #ff8d3e;
}

.p-recruit-memo {
  width: fit-content;
  margin: 0 auto;
}

.p-recruit-memo__img {
  text-align: center;
  margin-bottom: 2rem;
}

.p-recruit-memo__text {
  padding: 33px 60px 40px;
  border-radius: 100px;
  background-color: #005ebb;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(15.75px, 12.0889830508px + 0.4766949153vw, 18px);
  font-weight: bold;
  line-height: 1.94;
  letter-spacing: 0.12em;
  text-align: center;
  color: #fff;
}

.p-requirements {
  border-top: 1px solid #b8ccdf;
  border-bottom: 1px solid #b8ccdf;
}

.p-requirements-table {
  margin: 0;
}

.p-requirements-row {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  border-bottom: 1px solid #b8ccdf;
}

.p-requirements-row:last-child {
  border-bottom: 0;
}

.p-requirements-row dt,
.p-requirements-row dd {
  margin: 0;
}

.p-requirements-row dt {
  padding: var(--sp-1-5);
  background: rgba(3, 94, 187, 0.08);
  font-size: 15px;
  font-weight: bold;
  line-height: 2;
}

.p-requirements-row dd {
  padding: var(--sp-1-5) var(--sp-2);
  font-size: 15px;
}

.p-requirements-row dd b {
  font-weight: 500;
}

.p-requirements-row dd p:last-child {
  margin-bottom: 0;
}

.p-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 600px;
}

.p-tag-list span {
  display: inline-flex;
  align-items: center;
  padding: 6px 15px 7px;
  border-radius: 15px;
  background-color: #ebf2fa;
  line-height: 1;
  text-align: center;
}

.p-recruit-sec03 .p-ol01__no {
  background-color: #f5f5f5;
}

.p-recruit-sec03 .p-ol01__no>p {
  background-color: #009fe8;
}

.p-recruit-sec03 .p-ol01__no::before {
  border-left: 2px dotted #009fe8;
}

.p-recruit-form {
  max-width: 800px;
  margin: 0 auto 80px;
}

.p-recruit-thanks {
  text-align: center;
  z-index: 666;
  position: relative;
  margin-bottom: 5rem;
}


.p-recruit-thanks h2 {
  margin-bottom: 40px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.p-recruit-thanks__btn {
  margin-top: 60px;
}

.p-recruit-thanks__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 578px;
  height: 60px;
  margin: auto;
  border-radius: 50px;
  background-color: #009fe8;
  font-size: clamp(18px, 1.6129032258vw, 20px);
  color: #fff;
}

.p-recruit-sec04 {
  padding-block: var(--sp-4) var(--sp-2) !important;
}



@media screen and (max-width:767px) {
  .p-requirements-row {
    display: flex;
    flex-direction: column;
    border: none;
    margin-bottom: 2rem;
  }

  .p-requirements {
    border: none;
  }

  .p-recruit-sec01 {
    padding-bottom: 5rem !important;
  }

  .p-recruit-sec01 .p-heading02__title {
    margin: 0px auto 0px;
    font-size: 4.8vw;
    line-height: 1.8;
    width: 70%;
  }

  .p-recruit-sec01-block01 {
    flex-direction: column;
    margin-bottom: var(--sp-15);
  }

  .p-recruit-sec01-block01__contents {
    width: 100%;
    padding: var(--sp-2) var(--sp-3) var(--sp-3) var(--sp-3);
  }

  .p-recruit-sec01-block01::before {
    width: 100%;
    border-radius: 20px;
  }

  .p-recruit-card01__no>span {
    font-size: 16px;
  }

  .p-recruit-sec01-block01__imgs {
    width: 80%;
  }

  .p-recruit-sec01-block01__img02 {
    position: absolute;
    bottom: calc(var(--sp-4) * -1);
    left: 0;
    z-index: -1;
    width: 100px;
  }

  .p-recruit-sec01-block01__contents p {
    font-size: 16px;
    line-height: 2.2;
    letter-spacing: 0.05em;
  }

  .p-recruit-card01__head {
    flex-direction: column;
  }

  .p-recruit-card01__title {
    font-size: 4.5vw;
    text-align: center;
  }

  .p-recruit-card01 {
    margin-bottom: 5rem !important;
  }

  .p-recruit-card01.u-mb60 {
    margin-bottom: 2rem !important;
  }

  .p-recruit-memo__img img {
    width: 100%;
        margin-bottom: 2rem;
  }

  .p-recruit-memo__text {
    font-size: 16px;
    padding: 20px 25px 30px;
    border-radius: 30px;
  }

  .p-recruit-form {
    max-width: 100%;
  }

  .wpcf7 input[type="url"],
  .wpcf7 input[type="email"],
  .wpcf7 input[type="tel"] {
    width: 100%;
  }

  td.select-date p {
    /* letter-spacing: 0; */
  }

  [data-name=your-month],
  [data-name=your-day],
  [data-name=your-month2],
  [data-name=your-day2] {
    width: 60px !important;
  }

  [data-name=your-time],
  [data-name=your-time2] {
    width: 120px !important;
  }

  .wpcf7-list-item {
    display: inline-block;
    margin: 0 1em 0.5em 0;
  }

  .p-recruit-thanks h2 {
    margin-bottom: 40px;
    font-size: 30px;
  }

  .confirm .p-recruit-sec04,
  .thanks .p-recruit-sec04,
  .contact-thanks .p-recruit-sec04,
  .contact-confirm .p-contact-sec02 {
    padding-block: 0rem 3rem !important;
  }

}

.c-form-confirm tr {
  border-bottom: 1px solid #bebebe;
}

.c-form-confirm+.c-form-acceptance {
  margin-top: 50px;
}

.contact-thanks .p-recruit-sec04 {
  margin-bottom: 0;
}


/* --------------------------
contact
--------------------------- */
.p-contact-sec01 {
  padding-bottom: 0;
}

.p-contact-sec01__inner {
  position: relative;
}

.p-contact-sec01__inner::before {
  content: "";
  position: absolute;
  top: -72px;
  left: -114px;
  width: 224px;
  height: 197px;
  background: url("../img/illust-common-list-left.svg") no-repeat 50% 50%;
  background-size: contain;
}

.p-contact-sec01 .p-kodomo-block01 {
  margin-bottom: 0;
}

.p-contact-form {
  max-width: 800px;
  margin: 0 auto 80px;
}

.menu-item.medical-menu {}

.menu-item.medical-menu a {
  font-size: 1.05em !important;
  padding: 13px 15px 13px 35px !important;
}

.menu-item.medical-menu::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 30px;
  background-color: #009fe8;
  position: absolute;
  display: inline-block;
  top: 26px;
  left: 12px;
}

.calender-link {
  display: flex;
  margin-top: 50px;
  align-items: center;
  gap: 20px;
}

.p-kodomo-block01__text-alt {
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
}

span.marker {
  /* position: relative; */
  border-bottom: 3px solid #8cc32e;
}

span.marker::before {
  /* content: ""; */
  width: 100%;
  height: 3px;
  background: #8cc32e;
  position: absolute;
  bottom: -5px;
  border-radius: 10px;
}

.p-kodomo-block01--pt2 span.marker {
  border-bottom: 3px solid #FCD13E;
}

.p-kodomo-block01__text-alt+p {
  font-size: 15px;
  line-height: 1.7;
}

.p-ortho .p-kodomo-block01--pt1 .p-kodomo-block01__text {
  margin-bottom: 20px;
}

.p-ortho .p-kodomo-block01--pt1 .p-kodomo-block01__text:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .p-kodomo-block01__text-alt+p {
    font-size: 14px;
    line-height: 1.7;
  }

  .p-ortho-outer01 .u-lead02.u-text-center {
    text-align: left;
  }

  .p-block04__img-alt {
    margin-bottom: 3rem;
  }
}

.wp-block-image img {
  height: auto !important;
}

@media screen and (max-width: 767px) {
  .l-custom__content {
    margin-bottom: 5rem !important;
  }

  .l-single-custom-pagenation {
    margin: 40px 0 20px;
    padding: 50px 0 0;
    border-top: solid 1px #acacac;
  }

  .p-clinic-block01__info {
    margin: 1rem 1rem 2.5rem;
  }
}

.p-clinic-staff-memo {
  margin: 0 auto 5rem;
}

.p-clinic-staff-memo__text {
  padding: 16px 80px 18px;
  border-radius: 100px;
  background-color: #005ebb;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-align: center;
  color: #fff;
  width: fit-content;
  margin: 0 auto 1.5rem;
}

.p-clinic-staff-memo__text span {
  font-size: 16px;
}

.p-clinic-staff-memo__text-alt {
  text-align: center;
  color: #004C97;
  font-size: 15px;
  line-height: 1.9;
}

.p-clinic-sec02__inner .c-subpage-heading {
  margin-bottom: var(--sp-4);
}

@media screen and (max-width: 767px) {
  .p-clinic-staff-memo {
    margin: 0 auto 3rem;
  }

  .p-clinic-staff-memo__text {
    padding: 14px 40px 16px;
    font-size: 18px;
    line-height: 1.3;
    width: fit-content;
    margin: 0 auto 1.0rem;
  }

  .p-clinic-staff-memo__text span {
    font-size: 14px;
  }

  .p-clinic-staff-memo .p-recruit-memo__img {
    width: 100%;
    margin: 0 auto;
  }

  .p-clinic-staff-memo__text-alt {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    padding: 0 2rem;
  }

  .p-clinic-sec02__inner .c-subpage-heading {
    margin-bottom: var(--sp-6);
  }

  .p-cavity-sec02 .p-block02 {
    flex-direction: column-reverse;
  }



  .p-front-feature-block02__img01 {
    width: 100%;
  }

  .p-front-feature-block02__img01 img {
    width: 100%;
  }

}

.price-memo {
  margin-bottom: 20px;
  padding-left: 2rem;
}