:root {
  --color-primary: #000;
  --color-white: #fff;
  --color-blue: #499BCB;
  --color-blue02: #F2F9FD;
  --main_accent: #4A9FD8;
  --main_dark: #003456;
  --main_light: #7AB6DE;
  --accent_green: #6BB78D;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*====================================================================================
1. START COMMON ONLY CHILD PAGE.
====================================================================================*/
/*---------- START BREADCRUMB ----------*/
.c-breadcrumb ol {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.c-breadcrumb ol li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 2.5rem;
  letter-spacing: 0.5px;
}

.c-breadcrumb ol li:after {
  position: absolute;
  content: "";
  top: 2px;
  bottom: 0;
  right: 1rem;
  width: 0;
  height: 0;
  margin: auto;
  border: solid var(--color-blue);
  border-width: 0 1px 1px 0;
  display: inline-block;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  padding: 2px;
}

.c-breadcrumb ol li:last-child {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  padding-right: 0;
}

.c-breadcrumb ol li:last-child:after {
  content: none;
}

.c-breadcrumb ol li:nth-child(2) {
  white-space: nowrap;
}

.c-breadcrumb ol li a {
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .c-breadcrumb {
    display: none;
  }
}
/*---------- START MV ----------*/
.mainvisual {
  background: url("../news/images/mv.jpg") center center no-repeat;
  background-size: cover;
  height: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 13rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .mainvisual {
    height: 20rem;
    padding-top: 6rem;
    margin: 0;
  }
}
.mainvisual:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 48, 81, 0.6);
  z-index: -1;
}
.mainvisual__title {
  text-align: center;
  color: var(--color-white);
  font-weight: 500;
  line-height: 1.3;
}
.mainvisual__title-en {
  font-size: 3rem;
  text-transform: capitalize;
  display: block;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 767px) {
  .mainvisual__title-en {
    font-size: 1.5rem;
  }
}
.mainvisual__title-jp {
  font-size: 5rem;
  display: block;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 767px) {
  .mainvisual__title-jp {
    font-size: 3.2rem;
  }
}

/*---------- START PAGER ----------*/
.pager {
  padding: 12rem 0;
}
@media only screen and (max-width: 767px) {
  .pager {
    padding: 4rem 0;
  }
}
.pager li {
  list-style-type: none;
}
.pager li a {
  width: 16rem;
  height: 5rem;
}
.pager li a span {
  right: 1rem;
}
.pager .prev {
  float: left;
}
.pager .prev a span {
  left: 1rem;
  right: auto;
  -webkit-transform: translateY(-50%) scale(-1, -1);
  transform: translateY(-50%) scale(-1, -1);
}
.pager .next {
  float: right;
}

/*---------- START ANCHORLINK ----------*/
.ancholink {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem 0;
  margin-bottom: 12rem;
}
@media only screen and (max-width: 767px) {
  .ancholink {
    gap: 1rem 0;
    margin-bottom: 5rem;
  }
}
.ancholink li {
  width: 45.5%;
  list-style-type: none;
}
@media only screen and (max-width: 767px) {
  .ancholink li {
    width: 100%;
  }
}
.ancholink a {
  width: 100%;
  height: auto;
  background-color: var(--accent_green);
  border-radius: 10px;
  border-color: var(--accent_green);
  padding: 1.3rem 6rem;
}
@media only screen and (max-width: 767px) {
  .ancholink a {
    padding: 1.3rem 3rem;
  }
}
.ancholink a span {
  transform: translateY(-50%) rotate(90deg);
}
@media only screen and (min-width: 768px) {
  .ancholink a:hover {
    color: var(--accent_green);
  }
  .ancholink a:hover span {
    background-color: var(--accent_green);
  }
}

/*---------- START TITLE ----------*/
.cm-title03 {
  font-size: 4rem;
  border-bottom: 2px solid var(--color-blue);
  background: url(../common_img/icon_ttl.svg) top left no-repeat;
  background-size: 4.5rem;
  padding-left: 6.6rem;
  margin-bottom: 8rem;
  padding-bottom: 0.8rem;
  font-weight: 500;
  padding-top: 0.6rem;
}
@media only screen and (max-width: 767px) {
  .cm-title03 {
    font-size: 2.5rem;
    background-size: 3.5rem;
    padding-left: 5rem;
    margin-bottom: 3rem;
    line-height: 1.3;
    padding-top: 1.5rem;
  }
}

/*---------- 1. START PAGE NEWS ----------*/
.news__main {
  padding: 5.5rem 0 0;
}
@media only screen and (max-width: 767px) {
  .news__main {
    padding-top: 0;
  }
}

.news-list__item {
  padding: 6rem 0;
}
.news-list__item:nth-child(2n) {
  background-color: var(--color-blue02);
}
.news-list__item .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 6rem;
}
@media only screen and (max-width: 767px) {
  .news-list__item {
    padding: 4rem 0;
  }
}
.news-list__infor {
  flex: 1;
  min-width: 0;
}
.news-list__infor p {
  margin-bottom: 3rem;
}
.news-list__infor p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .news-list__infor {
    flex: auto;
    width: 100%;
  }
}
.news-list__time {
  color: var(--color-blue);
}
.news-list__title {
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .news-list__title {
    font-size: 2rem;
  }
}
.news-list__img {
  width: 46%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 507/355;
  position: relative;
}
.news-list__img:after {
  content: "";
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 4.5rem;
  height: 4.5rem;
  background: url("../common_img/lightbox/zoom.svg") center center no-repeat;
  background-size: 100%;
}
@media only screen and (max-width: 767px) {
  .news-list__img {
    width: 100%;
  }
}
.news-list__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*---------- 2. START PAGE FAQ ----------*/
.page-faq .mainvisual {
  background: url("../faq/images/mv.jpg") center center no-repeat;
  background-size: cover;
}

.faq__main {
  padding: 11rem 0 5rem;
}
@media only screen and (max-width: 767px) {
  .faq__main {
    padding: 4rem 0;
  }
}
.faq__txt01 {
  text-align: center;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 767px) {
  .faq__txt01 {
    margin-bottom: 3rem;
  }
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-bottom: 12rem;
}
@media only screen and (max-width: 767px) {
  .faq-list {
    margin-bottom: 5rem;
    gap: 2rem;
  }
  .faq-list:last-child {
    margin-bottom: 1rem;
  }
}
.faq-list dl {
  background-color: var(--color-blue02);
}
.faq-list dt {
  border-radius: 5px 5px 0 0;
  background-color: var(--main_light);
  color: var(--color-white);
  font-size: 2rem;
  position: relative;
  min-height: 8rem;
  padding: 2rem 9rem;
  font-weight: 500;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .faq-list dt {
    font-size: 1.7rem;
    padding-left: 5rem;
    min-height: auto;
    padding: 2rem 5rem;
  }
}
.faq-list dt:before {
  content: "Q";
  position: absolute;
  top: -5px;
  left: 0;
  color: var(--color-white);
  font-size: 8rem;
  display: inline-block;
  line-height: 1;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .faq-list dt:before {
    font-size: 5rem;
    top: 0.5rem;
  }
}
.faq-list dt:after {
  content: "";
  position: absolute;
  top: 2.7rem;
  margin: auto;
  right: 3.2rem;
  width: 2.4rem;
  height: 2.4rem;
  background: url("../common_img/icon-plus.svg") center center no-repeat;
  background-size: 100%;
}
@media only screen and (max-width: 767px) {
  .faq-list dt:after {
    right: 1.5rem;
    top: 2rem;
  }
}
.faq-list dt.current:after {
  background: url("../common_img/icon-minus.svg") center center no-repeat;
  background-size: 100%;
}
.faq-list dd {
  padding: 2.5rem 9rem 4rem;
  display: none;
}
@media only screen and (max-width: 767px) {
  .faq-list dd {
    padding: 2rem;
  }
}
.faq-list dd p {
  margin-bottom: 3rem;
}
.faq-list dd p:last-child {
  margin-bottom: 0;
}

/*---------- 3. START PAGE CLINIC ----------*/
.page-clinic .mainvisual {
  background: url("../health/images/mv.jpg") center center no-repeat;
  background-size: cover;
}

.clinic__main {
  padding: 11.5rem 0 0;
}
@media only screen and (max-width: 767px) {
  .clinic__main {
    padding-top: 4rem;
  }
}
.clinic__txt01 {
  text-align: center;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 767px) {
  .clinic__txt01 {
    text-align: left;
    margin-bottom: 3rem;
  }
}
.clinic__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  .clinic__flex {
    margin-bottom: 4rem;
    gap: 2rem;
  }
}
.clinic__flex--row {
  flex-direction: row-reverse;
}
.clinic__flex--row .clinic__flex-left img {
  border-radius: 15px 0 0 15px;
}
.clinic__flex--row .clinic__flex-right img {
  border-radius: 0 15px 15px 0;
}
.clinic__flex-left {
  flex: 1;
  min-width: 0;
}
.clinic__flex-left img {
  border-radius: 0 15px 15px 0;
}
@media only screen and (max-width: 767px) {
  .clinic__flex-left {
    flex: auto;
    display: flex;
    flex-direction: column-reverse;
  }
  .clinic__flex-left img {
    margin-top: 2rem;
  }
}
.clinic__flex-title {
  margin-bottom: 3rem;
  margin-top: 4rem;
  color: var(--color-blue);
}
@media only screen and (max-width: 767px) {
  .clinic__flex-title {
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
.clinic__flex-right {
  width: 41.5%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.clinic__flex-right img {
  border-radius: 15px 0 0 15px;
}
@media only screen and (max-width: 767px) {
  .clinic__flex-right {
    width: 100%;
    gap: 0;
    flex-direction: row;
    justify-content: space-between;
  }
  .clinic__flex-right img {
    width: 48%;
    border-radius: 15px !important;
  }
}
.clinic__imgs {
  display: flex;
  gap: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .clinic__imgs {
    gap: 1rem;
  }
}
.clinic__imgs li {
  list-style-type: none;
  width: calc((100% - 4.8rem) / 3);
}
@media only screen and (max-width: 767px) {
  .clinic__imgs li {
    width: calc((100% - 1rem) / 3);
  }
}
.clinic__imgs img {
  border-radius: 15px;
}

.clinic01 {
  padding-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  .clinic01 {
    padding-bottom: 5rem;
  }
}

.clinic02 {
  padding: 8rem 0;
  background: url("../health/images/bg01.jpg") center center no-repeat;
  background-size: cover;
}
.clinic02 .cm-title01 {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
  .clinic02 {
    padding: 4rem 0;
  }
  .clinic02 .cm-title01 {
    margin-bottom: 2rem;
  }
}

.clinic__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 10rem;
}
@media only screen and (max-width: 767px) {
  .clinic__list {
    gap: 2rem 0;
    justify-content: space-between;
  }
}
.clinic__list-item {
  width: calc((100% - 10rem) / 2);
  background-color: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .clinic__list-item {
    width: 48%;
  }
}
.clinic__list-infor {
  padding: 3rem 3rem 7rem;
}
@media only screen and (max-width: 767px) {
  .clinic__list-infor {
    padding: 2rem;
  }
}
.clinic__list-title {
  color: var(--color-blue);
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

/*---------- 4. START PAGE CONTACT ----------*/
.clr-blue {
  color: var(--color-blue);
}

.page-contact .mainvisual {
  background: url("../contact/images/mv.jpg") center center no-repeat;
  background-size: cover;
}

.form-contact {
  padding: 11rem 0;
}
@media only screen and (max-width: 767px) {
  .form-contact {
    padding: 4rem 0;
  }
}
.form-contact__txt01 {
  text-align: center;
  margin-bottom: 5.7rem;
}
@media only screen and (max-width: 767px) {
  .form-contact__txt01 {
    margin-bottom: 4rem;
  }
}
.form-contact__box {
  background-color: var(--color-blue);
  border-radius: 15px;
  padding: 2.3rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  color: var(--color-white);
  margin-bottom: 13.5rem;
}
@media only screen and (max-width: 767px) {
  .form-contact__box {
    margin-bottom: 5rem;
  }
}
.form-contact__box-left {
  width: 50%;
  border-right: 2px solid var(--color-white);
  font-size: 3rem;
  font-weight: 500;
  padding: 2rem 2rem 0;
}
.form-contact__box-left img {
  display: block;
  margin: 0 auto 1.5rem;
}
@media only screen and (max-width: 767px) {
  .form-contact__box-left {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid var(--color-white);
    padding: 2rem 0;
    font-size: 2rem;
  }
  .form-contact__box-left img {
    width: 3rem;
  }
}
.form-contact__box-right {
  width: 50%;
  padding: 0 2rem 0;
}
.form-contact__box-right a {
  font-size: 6.5rem;
  color: var(--color-white);
  font-weight: bold;
  display: inline-block;
  line-height: 1.3;
  letter-spacing: 2px;
}
.form-contact__box-right p {
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .form-contact__box-right {
    width: 100%;
    padding: 2rem 0;
  }
  .form-contact__box-right a {
    font-size: 4rem;
  }
}

.pp {
  background-color: var(--color-blue02);
  padding: 8rem 0 10rem;
}
@media only screen and (max-width: 767px) {
  .pp {
    padding: 5rem 0 7rem;
  }
}
.pp .cm-title01 {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 767px) {
  .pp .cm-title01 {
    margin-bottom: 3rem;
  }
}
.pp__title {
  margin-top: 3rem;
  font-weight: 500;
  font-size: 1.6rem;
}
.pp__white {
  background-color: var(--color-white);
  padding: 2rem 4rem;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .pp__white {
    margin-top: 3rem;
  }
}

/*---------- 5. START PAGE STAFF ----------*/
.cm-title04 {
  font-size: 2rem;
  border-bottom: 2px solid var(--color-blue);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .cm-title04 {
    font-size: 1.8rem;
  }
}

.page-staff .mainvisual {
  background: url("../staff/images/mv.jpg") center center no-repeat;
  background-size: cover;
}

.staff__main {
  padding: 11rem 0;
}
@media only screen and (max-width: 767px) {
  .staff__main {
    padding: 4rem 0;
  }
}
.staff__txt01 {
  text-align: center;
  margin-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  .staff__txt01 {
    text-align: left;
    margin-bottom: 4rem;
  }
}

.staff01__item {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 767px) {
  .staff01__item {
    margin-bottom: 5rem;
  }
}
.staff01__item-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 4.5rem;
}
.staff01__item:nth-child(2n) .staff01__item-flex {
  flex-direction: row-reverse;
}
.staff01__item:nth-child(1) {
  margin-bottom: 12rem;
}
.staff01__item:nth-child(1) .staff01__item-right img {
  border-radius: 5px 5px 0 0;
}
@media only screen and (max-width: 767px) {
  .staff01__item:nth-child(1) {
    margin-bottom: 5rem;
  }
}
.staff01__item:last-child {
  margin-bottom: 3rem;
}
.staff01__item-blue {
  font-size: 2.4rem;
  color: var(--color-blue);
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .staff01__item-blue {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.staff01__item-left {
  flex: 1;
  min-width: 0;
  padding-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .staff01__item-left {
    padding: 0;
    flex: auto;
  }
}
.staff01__item-left p:not(.staff01__item-blue) {
  margin-bottom: 3rem;
}
.staff01__item-left p:not(.staff01__item-blue):last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .staff01__item-left p:not(.staff01__item-blue) {
    margin-bottom: 2rem;
  }
}
.staff01__item-left .cm-title03 {
  border: none;
  margin-bottom: 2.5rem;
  font-size: 3rem;
  padding-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .staff01__item-left .cm-title03 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}
.staff01__item-left .cm-title04 {
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .staff01__item-left .cm-title04 {
    margin-top: 2rem;
  }
}
.staff01__item-left ul {
  margin-left: 2rem;
}
.staff01__item-left li {
  list-style-type: none;
  position: relative;
  padding-left: 1rem;
}
.staff01__item-left li:before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  left: -1rem;
  top: 0.9em;
}
@media only screen and (max-width: 767px) {
  .staff01__item-left li:before {
    top: 0.7em;
  }
}
.staff01__item-right {
  width: 46%;
  aspect-ratio: 507/580;
  height: 100%;
}
.staff01__item-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .staff01__item-right {
    width: 100%;
  }
}
.staff01__message {
  background-image: linear-gradient(to right, #4A9FD8, #C6F2DA);
  width: calc(50% + 39rem);
  margin: auto;
  margin-right: 0;
  border-radius: 20rem 0 0 20rem;
  color: var(--color-white);
  padding-bottom: 5rem;
  overflow: hidden;
}
.staff01__message .container {
  margin: 0;
  padding: 0 10rem;
}
.staff01__message-title {
  font-size: 12rem;
  opacity: 0.35;
  line-height: 1;
  font-weight: 500;
  top: -3rem;
  position: relative;
  white-space: nowrap;
}
.staff01__message p {
  line-height: 1.5;
  margin-top: -1.3rem;
}
@media only screen and (max-width: 767px) {
  .staff01__message {
    border-radius: 0;
    width: 100%;
  }
  .staff01__message .container {
    padding: 0 2rem;
  }
  .staff01__message-title {
    font-size: 8rem;
  }
  .staff01__message p {
    line-height: 1.5;
    margin-top: -1.3rem;
  }
}

/*---------- 6. START PAGE PREVENTION ----------*/
.cm-title05 {
  font-size: 2.4rem;
  color: var(--color-blue);
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .cm-title05 {
    font-size: 2rem;
  }
}

.page-prevention .mainvisual {
  background: url("../prevention/images/mv.jpg") center center no-repeat;
  background-size: cover;
}
.page-prevention .cm-title03 {
  border-bottom: none;
  margin-bottom: 1.5rem;
}

.prevention__main {
  padding: 11.5rem 0 7rem;
}
@media only screen and (max-width: 767px) {
  .prevention__main {
    padding: 4rem 0;
  }
}
.prevention__txt01 {
  text-align: center;
  margin-bottom: 9rem;
}
@media only screen and (max-width: 767px) {
  .prevention__txt01 {
    margin-bottom: 4rem;
    text-align: left;
  }
}
.prevention__inner01 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 5.2rem;
  margin-bottom: 5.5rem;
}
.prevention__inner01-left {
  flex: 1;
  min-width: 0;
  padding-top: 3rem;
}
.prevention__inner01-left dl {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
}
.prevention__inner01-left dl dt {
  font-weight: 500;
  width: 8rem;
}
.prevention__inner01-left p {
  margin-bottom: 3rem;
  letter-spacing: 0;
}
.prevention__inner01-left p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .prevention__inner01-left {
    flex: auto;
    padding: 0;
  }
}
.prevention__inner01-right {
  width: 46%;
  height: 100%;
}
.prevention__inner01-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
@media only screen and (max-width: 767px) {
  .prevention__inner01-right {
    width: 100%;
  }
}
.prevention__benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 1.7rem;
  margin-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .prevention__benefits {
    margin-top: 2rem;
    gap: 1rem;
  }
}
.prevention__benefits-item {
  border: 2px solid var(--accent_green);
  border-radius: 10rem;
  width: calc((100% - 3.4rem) / 3);
  list-style-type: none;
  display: flex;
  align-items: center;
  padding: 0.8rem;
  padding-right: 2rem;
}
@media only screen and (max-width: 767px) {
  .prevention__benefits-item {
    width: 100%;
    gap: 1rem;
  }
}
.prevention__benefits-icon {
  width: 8rem;
  height: 8rem;
  background-color: #AADFC2;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .prevention__benefits-icon {
    width: 6rem;
    height: 6rem;
    padding: 1rem;
  }
}
.prevention__benefits-txt {
  font-size: 1.8rem;
  font-weight: 500;
  flex: 1;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .prevention__benefits-txt {
    font-size: 1.4rem;
    text-align: left;
  }
}
.prevention__frequency {
  border-radius: 15px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  background-color: var(--color-white);
  border: 2px solid var(--color-blue);
  margin-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  .prevention__frequency {
    margin-bottom: 4rem;
  }
}
.prevention__frequency dt {
  background-color: var(--color-blue);
  text-align: center;
  color: var(--color-white);
  width: 30rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  font-size: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .prevention__frequency dt {
    width: 100%;
    font-size: 2rem;
    padding: 1rem;
  }
}
.prevention__frequency dd {
  flex: 1;
  min-width: 0;
  padding: 2.8rem;
}
@media only screen and (max-width: 767px) {
  .prevention__frequency dd {
    padding: 2rem;
  }
}
.prevention__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem 10rem;
}
.prevention__list-item {
  width: calc((100% - 20rem) / 3);
}
.prevention__list-item:nth-child(3n) .prevention__list-img:after {
  content: none;
}
@media only screen and (max-width: 767px) {
  .prevention__list-item {
    width: 100%;
    position: relative;
  }
  .prevention__list-item:last-child:after {
    content: none;
  }
  .prevention__list-item:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: url(../common_img/cm-arr.svg) center center no-repeat;
    width: 3.6rem;
    height: 6.2rem;
    background-size: 100%;
    transform: rotate(90deg);
    margin: auto;
  }
}
.prevention__list-img {
  aspect-ratio: 300/215;
  margin-bottom: 2rem;
}
.prevention__list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}
@media only screen and (max-width: 767px) {
  .prevention__list-img {
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .prevention__list-img {
    position: relative;
  }
  .prevention__list-img:after {
    content: "";
    position: absolute;
    top: 10rem;
    right: -6.8rem;
    background: url(../common_img/cm-arr.svg) center center no-repeat;
    width: 3.6rem;
    height: 6.2rem;
  }
}
.prevention__list p {
  font-size: 1.8rem;
  font-weight: bold;
  margin-left: 1rem;
}
@media only screen and (max-width: 767px) {
  .prevention__list p {
    font-size: 1.6rem;
  }
}
.prevention__fee {
  max-width: 90rem;
  margin: 13rem auto 0;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid var(--color-blue);
  background-color: #F4FAFC;
  margin-bottom: 24rem;
}
@media only screen and (max-width: 767px) {
  .prevention__fee {
    margin: 5rem 0;
  }
}
.prevention__fee-title {
  font-size: 2.4rem;
  background-color: var(--color-blue);
  text-align: center;
  padding: 2rem;
  color: var(--color-white);
}
@media only screen and (max-width: 767px) {
  .prevention__fee-title {
    font-size: 2rem;
    padding: 1rem;
  }
}
.prevention__fee-inner {
  padding: 3rem 7.5rem;
}
@media only screen and (max-width: 767px) {
  .prevention__fee-inner {
    padding: 2rem 3rem;
  }
}
.prevention__fee dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.prevention__fee dl dt {
  position: relative;
}
.prevention__fee dl dt:before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  left: -1rem;
  top: 0.9em;
}
.prevention__mondamin {
  display: flex;
  flex-wrap: wrap;
  gap: 7.5rem;
  flex-direction: column;
  margin-top: 7rem;
}
@media only screen and (max-width: 767px) {
  .prevention__mondamin {
    gap: 3rem;
    margin-top: 4rem;
  }
}
.prevention__mondamin-item {
  display: flex;
  flex-wrap: wrap;
  gap: 5.5rem;
}
@media only screen and (max-width: 767px) {
  .prevention__mondamin-item {
    gap: 2rem;
  }
}
.prevention__mondamin-img {
  width: 46.2%;
  height: 100%;
  aspect-ratio: 507/444;
}
@media only screen and (max-width: 767px) {
  .prevention__mondamin-img {
    width: 100%;
  }
}
.prevention__mondamin-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.prevention__mondamin-right {
  flex: 1;
  min-width: 0;
}
.prevention__mondamin-right .cm-title04 {
  margin-bottom: 3rem;
}
.prevention__mondamin-right ul {
  margin-bottom: 1rem;
}
.prevention__mondamin-right li {
  list-style-type: none;
  position: relative;
  margin-left: 2rem;
}
.prevention__mondamin-right li:before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  left: -1rem;
  top: 0.9em;
}
.prevention__mondamin-right small {
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .prevention__mondamin-right {
    flex: auto;
  }
}
.prevention__inner03 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 7rem;
  gap: 2rem;
}
.prevention__inner03 .footer_center {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .prevention__inner03 {
    margin-top: 4rem;
  }
  .prevention__inner03 .footer_center {
    margin: 0 auto;
  }
}

.prevention01 {
  padding-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  .prevention01 {
    padding-bottom: 5rem;
  }
}

.prevention02 {
  background: url("../common_img/cm-bg.jpg") top center no-repeat;
  background-size: cover;
  padding: 8rem 0 11rem;
}
@media only screen and (max-width: 767px) {
  .prevention02 {
    padding: 5rem 0;
  }
}
.prevention02 .cm-title05 {
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .prevention02 .cm-title05 {
    margin-bottom: 2rem;
  }
}
.prevention02 .prevention__txt01 {
  margin-bottom: 7rem;
}
@media only screen and (max-width: 767px) {
  .prevention02 .prevention__txt01 {
    margin-bottom: 3rem;
  }
}
.prevention02 .prevention__inner01 {
  margin-bottom: 13rem;
}
@media only screen and (max-width: 767px) {
  .prevention02 .prevention__inner01 {
    margin-bottom: 3rem;
  }
}
.prevention02 .prevention__benefits {
  margin-bottom: 2rem;
}

.prevention03 {
  background: url("../common_img/cm-bg.jpg") top center no-repeat;
  background-size: cover;
  padding: 8rem 0;
}
.prevention03__title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .prevention03 {
    padding: 4rem 0;
  }
  .prevention03__title {
    font-size: 2.5rem;
  }
}

/*---------- 7. START PAGE STREAT ----------*/
.page-treat .mainvisual {
  background: url("../treat/images/mv.jpg") center center no-repeat;
  background-size: cover;
}

.treat__main {
  padding: 11rem 0 6rem;
}
@media only screen and (max-width: 767px) {
  .treat__main {
    padding: 4rem 0;
  }
}
.treat__main .cm-title03 {
  border-bottom: none;
  margin-bottom: 1.5rem;
}
.treat__txt01 {
  text-align: center;
  margin-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  .treat__txt01 {
    text-align: left;
    margin-bottom: 4rem;
  }
}
.treat__inner01 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 5rem;
  margin-bottom: 4rem;
}
.treat__inner01-left {
  flex: 1;
  padding-top: 3rem;
}
.treat__inner01-left p {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .treat__inner01-left {
    flex: auto;
    padding-top: 0;
  }
  .treat__inner01-left p {
    margin-bottom: 2rem;
  }
}
.treat__inner01-right {
  width: 46%;
}
.treat__inner01-right img {
  border-radius: 15px 0 0 15px;
}
@media only screen and (max-width: 767px) {
  .treat__inner01-right {
    width: 100%;
  }
  .treat__inner01-right img {
    border-radius: 15px;
  }
}
.treat__inner02 {
  display: flex;
  flex-wrap: wrap;
  gap: 2.3rem;
}
.treat__inner02-item {
  width: calc((100% - 4.6rem) / 3);
  background-color: #F4FAFC;
  border-radius: 15px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .treat__inner02-item {
    width: 100%;
  }
}
.treat__inner02-infor {
  padding: 1.5rem 2.5rem 3.5rem;
}
.treat__inner02-infor .cm-title05 {
  text-align: center;
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .treat__inner02-infor {
    padding: 2rem;
  }
}
.treat__btn {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.treat__btn-item {
  background-color: var(--accent_green);
  color: var(--color-white);
  border-radius: 10px;
  text-align: center;
  list-style-type: none;
  width: calc((100% - 6rem) / 4);
  padding: 1.5rem 1rem;
}
@media only screen and (max-width: 767px) {
  .treat__btn {
    margin-bottom: 2rem;
    gap: 1rem 2rem;
  }
  .treat__btn-item {
    width: calc((100% - 2rem) / 2);
  }
}
.treat__svg {
  margin-top: 6.5rem;
  text-align: center;
  margin-bottom: 12rem;
}
@media only screen and (max-width: 767px) {
  .treat__svg {
    margin: 3rem 0 5rem;
  }
}
.treat__inner03 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 10rem;
}
.treat__inner03-item {
  width: calc((100% - 10rem) / 2);
  border-radius: 15px;
  overflow: hidden;
  background-color: var(--color-white);
}
.treat__inner03-infor {
  text-align: center;
  padding: 2.2rem;
  font-size: 1.8rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .treat__inner03-item {
    width: 100%;
  }
  .treat__inner03-infor {
    padding: 1.5rem;
    font-size: 1.5rem;
  }
}

.treat01 {
  margin-bottom: 8.5rem;
}
@media only screen and (max-width: 767px) {
  .treat01 {
    margin-bottom: 5rem;
  }
}

.treat02 {
  background: url("../common_img/cm-bg.jpg") top center no-repeat;
  background-size: cover;
  padding: 8rem 0 10rem;
}
.treat02 .cm-title05 {
  text-align: center;
  margin-bottom: 3rem;
}
.treat02 .treat__txt01 {
  margin-bottom: 5.5rem;
}
@media only screen and (max-width: 767px) {
  .treat02 {
    padding: 4rem 0;
  }
  .treat02 .cm-title05 {
    margin-bottom: 2rem;
  }
  .treat02 .treat__txt01 {
    margin-bottom: 3rem;
  }
}

.treat02-02 {
  padding: 10rem 0;
}
.treat02-02 .treat__inner01 {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .treat02-02 {
    padding: 4rem 0;
  }
}

.treat03 {
  background: url("../common_img/cm-bg.jpg") top center no-repeat;
  background-size: cover;
  padding: 8rem 0 14rem;
}
.treat03 .cm-title05 {
  text-align: center;
  margin-bottom: 5.5rem;
}
.treat03 .treat__txt01 {
  margin-bottom: 6rem;
}
@media only screen and (max-width: 767px) {
  .treat03 {
    padding: 4rem 0 0;
  }
  .treat03 .cm-title05 {
    margin-bottom: 3rem;
  }
  .treat03 .treat__txt01 {
    margin-bottom: 3rem;
  }
}

.treat03-02 {
  padding: 10rem 0;
}
.treat03-02 .treat__inner01 {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .treat03-02 {
    padding: 4rem 0;
  }
}

.treat04 {
  background: url("../common_img/cm-bg.jpg") top center no-repeat;
  background-size: cover;
  padding: 8rem 0 13rem;
}
.treat04 .cm-title05 {
  text-align: center;
  margin-bottom: 5.5rem;
}
.treat04 .treat__btn-item {
  width: calc((100% - 8rem) / 5);
}
.treat04 .treat__inner01 {
  margin-bottom: 0;
}
.treat04 .treat__inner01 .treat__inner01-left {
  padding-top: 0;
}
@media only screen and (max-width: 767px) {
  .treat04 {
    padding: 4rem 0;
  }
  .treat04 .cm-title05 {
    margin-bottom: 3rem;
  }
  .treat04 .treat__btn-item {
    width: calc((100% - 2rem) / 2);
  }
}

.treat05 {
  padding: 8rem 0;
}
.treat05 .cm-title01 {
  margin-bottom: 5rem;
}
.treat05 .treat__txt01 {
  margin-bottom: 7rem;
}
.treat05 .cm-title05 {
  margin-bottom: 2.5rem;
}
.treat05 .prevention__mondamin {
  gap: 6rem;
}
.treat05 .prevention__mondamin-item {
  gap: 4.3rem;
}
.treat05 .prevention__mondamin-img {
  aspect-ratio: 507/355;
}
.treat05 .prevention__mondamin-right {
  padding-top: 4rem;
}
.treat05 .prevention__mondamin-right p {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .treat05 {
    padding: 4rem 0 0;
  }
  .treat05 .cm-title01 {
    margin-bottom: 2rem;
  }
  .treat05 .treat__txt01 {
    margin-bottom: 3rem;
  }
  .treat05 .cm-title05 {
    margin-bottom: 1rem;
  }
  .treat05 .prevention__mondamin {
    gap: 3rem;
  }
  .treat05 .prevention__mondamin-item {
    gap: 0;
  }
  .treat05 .prevention__mondamin-right {
    padding-top: 2rem;
  }
  .treat05 .prevention__mondamin-right .cm-title04 {
    padding-bottom: 1rem;
  }
  .treat05 .prevention__mondamin-right p {
    margin-bottom: 2rem;
  }
}

/*---------- 8. START PAGE INTRO ----------*/
.page-intro .mainvisual {
  background: url("../intro/images/mv.jpg") center center no-repeat;
  background-size: cover;
}

.intro__main {
  padding: 11.5rem 0;
}
@media only screen and (max-width: 767px) {
  .intro__main {
    padding: 4rem 0;
  }
}
.intro__main .cm-title01 .jp {
  margin-top: 1.3rem;
}
.intro__inner01 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 6rem;
}
@media only screen and (max-width: 767px) {
  .intro__inner01 {
    gap: 4rem;
  }
}
.intro__inner01-item {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 5.2rem;
  align-items: center;
}
.intro__inner01-item:nth-child(2n) {
  flex-direction: row-reverse;
}
.intro__inner01-item:nth-child(2n) .intro__inner01-right img {
  border-radius: 0 15px 15px 0;
}
@media only screen and (max-width: 767px) {
  .intro__inner01-item {
    flex-direction: column-reverse !important;
  }
}
.intro__inner01-left {
  flex: 1;
  min-width: 0;
}
.intro__inner01-left p {
  margin-bottom: 3rem;
}
.intro__inner01-left p:last-child {
  margin-bottom: 0;
}
.intro__inner01-left .sign {
  text-align: right;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .intro__inner01-left {
    flex: auto;
  }
  .intro__inner01-left p {
    margin-bottom: 2rem;
  }
  .intro__inner01-left .sign {
    margin-top: 2rem;
    width: 20rem;
    margin: auto;
    margin-right: 0;
  }
}
.intro__inner01-right {
  width: 46%;
  height: 100%;
  aspect-ratio: 506/414;
}
.intro__inner01-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px 0 0 15px;
}
@media only screen and (max-width: 767px) {
  .intro__inner01-right {
    width: 100%;
  }
}
.intro__inner01-ul li {
  list-style-type: none;
  text-indent: -2.2rem;
  margin-left: 2.2rem;
}
@media only screen and (max-width: 767px) {
  .intro__inner01-ul li {
    text-indent: -1.7rem;
    margin-left: 1.7rem;
  }
}
.intro__txt01 {
  text-align: center;
  margin-top: 6.5rem;
  margin-bottom: 7.5rem;
}
@media only screen and (max-width: 767px) {
  .intro__txt01 {
    margin: 2rem 0;
    text-align: left;
  }
}
.intro__chart {
  border-bottom: 2px solid var(--color-blue);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  .intro__chart {
    border-bottom: none;
    border-left: 2px solid var(--color-blue);
    margin-bottom: 5rem;
  }
}
.intro__chart-item {
  width: calc((100% - 6rem) / 4);
  padding-bottom: 5rem;
  position: relative;
  font-weight: bold;
  padding-left: 7rem;
}
.intro__chart-item:before {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  left: -1rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--color-blue);
  border-radius: 100%;
}
.intro__chart-item:after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  left: 3rem;
  width: 2px;
  height: 100%;
  background-color: var(--color-blue);
  transform: rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .intro__chart-item {
    width: 100%;
    padding-bottom: 2rem;
  }
  .intro__chart-item:last-child {
    padding-bottom: 0;
  }
  .intro__chart-item:before {
    top: 0;
    bottom: auto;
  }
  .intro__chart-item:after {
    transform: none;
    width: 5rem;
    top: 0.8rem;
    bottom: auto;
    height: 2px;
    left: 0;
  }
}
.intro__slider-item {
  width: calc((100% - 16rem) / 5);
  aspect-ratio: 360/265;
}
@media only screen and (max-width: 767px) {
  .intro__slider-item {
    aspect-ratio: 260/165;
  }
}
.intro__slider img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro__tbl {
  margin: 9rem 0 7rem;
}
@media only screen and (max-width: 767px) {
  .intro__tbl {
    margin: 4rem 0;
  }
}
.intro__tbl table {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.intro__tbl th, .intro__tbl td {
  padding: 1.6rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .intro__tbl th, .intro__tbl td {
    padding: 0.5rem;
  }
}
.intro__tbl thead th {
  background-color: #CBE9F3;
  font-weight: bold;
}
.intro__tbl td {
  background-color: #F4FAFC;
  border-top: 2px solid var(--color-white);
}
.intro__tbl td:first-child {
  font-weight: bold;
}
.intro__access {
  margin-bottom: 5.5rem;
}
.intro__access .cm-title05 {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .intro__access .cm-title05 {
    margin-bottom: 2rem;
  }
}
.intro__access-map {
  margin-top: 5rem;
  width: 100%;
  height: 42rem;
}
@media only screen and (max-width: 767px) {
  .intro__access-map {
    height: 20rem;
    margin-top: 3rem;
  }
}
.intro__access-map iframe {
  width: 100%;
  height: 100%;
}
.intro__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4.5rem 2.4rem;
  margin-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  .intro__list {
    gap: 2rem 1rem;
    margin-bottom: 5rem;
  }
}
.intro__list:last-child {
  margin-bottom: 0;
}
.intro__list-item {
  width: calc((100% - 4.8rem) / 3);
  list-style-type: none;
}
@media only screen and (max-width: 767px) {
  .intro__list-item {
    width: calc((100% - 2.4rem) / 2);
  }
}
.intro__list-img {
  aspect-ratio: 350/250;
}
.intro__list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.intro__list p {
  text-align: center;
  color: #0A93C9;
  font-weight: bold;
  margin-top: 1rem;
}

.cm-title06 {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 5.5rem;
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .cm-title06 {
    margin-bottom: 3rem;
  }
}
.cm-title06:before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 100%;
  background-color: var(--accent_green);
}

.marqueeSplide .splide__slide {
  width: auto;
  flex-shrink: 0;
}

.intro01 {
  padding-bottom: 13.5rem;
}
@media only screen and (max-width: 767px) {
  .intro01 {
    padding-bottom: 5rem;
  }
}

.intro02 {
  padding: 8rem 0 11rem;
  background: url("../common_img/cm-bg.jpg") top center no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .intro02 {
    padding: 4rem 0;
  }
}

.intro03 {
  padding: 8rem 0 3rem;
}
.intro03 .intro__inner01 {
  display: block;
  margin-top: 7rem;
}
.intro03 .intro__inner01 .cm-title05 {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .intro03 {
    padding: 3rem 0;
  }
  .intro03 .intro__inner01 {
    margin-top: 3rem;
  }
  .intro03 .intro__inner01 .cm-title05 {
    margin-bottom: 2rem;
  }
}

/*---------- 9. START PAGE AESTHETIC ----------*/
.page-aesthetic .mainvisual {
  background: url("../aesthetic/images/mv.jpg") center center no-repeat;
  background-size: cover;
}

.aesthetic__main {
  padding: 11rem 0 0;
}
.aesthetic__main .intro__list {
  gap: 3rem 2rem;
}
.aesthetic__main .intro__list-item {
  width: calc((100% - 6rem) / 4);
}
@media only screen and (max-width: 767px) {
  .aesthetic__main {
    padding: 4rem 0;
  }
  .aesthetic__main .intro__list-item {
    width: calc((100% - 2rem) / 2);
  }
}
.aesthetic__txt01 {
  text-align: center;
  margin-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  .aesthetic__txt01 {
    text-align: left;
    margin-bottom: 4rem;
  }
}
.aesthetic__inner01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .aesthetic__inner01 {
    margin-bottom: 2rem;
  }
}
.aesthetic__inner01 img {
  height: 100%;
  border-radius: 0 15px 15px 0;
}
.aesthetic__inner01 img:nth-child(2) {
  padding-top: 8rem;
  border-radius: 15px 0 0 15px;
}
@media only screen and (max-width: 767px) {
  .aesthetic__inner01 img {
    width: 100%;
  }
  .aesthetic__inner01 img:nth-child(2) {
    width: 80%;
    margin: auto;
    margin-right: 0;
    padding-top: 2rem;
  }
}
.aesthetic__inner02 {
  background-image: linear-gradient(to right, #4A9FD8, #C6F2DA);
  width: calc(50% + 34.5rem);
  margin: auto;
  margin-right: 0;
  border-radius: 20rem 0 0 20rem;
  color: var(--color-white);
  padding-bottom: 5rem;
  overflow: hidden;
  margin-top: -11.5rem;
  position: relative;
  padding: 5.5rem 3rem 9rem;
  margin-bottom: 7.5rem;
}
.aesthetic__inner02 .container {
  margin: 0;
  padding: 0 10rem;
  max-width: 96rem;
}
.aesthetic__inner02 .cm-title03 {
  color: var(--color-white);
  border-bottom: none;
  background: url(../common_img/icon_ttl-white.svg) top left no-repeat;
  background-size: 4.5rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .aesthetic__inner02 {
    border-radius: 0;
    margin-top: 0;
    padding: 0;
    width: 100%;
    margin-bottom: 4rem;
  }
  .aesthetic__inner02 .container {
    padding: 2rem;
  }
}
.aesthetic__inner03-item {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
  align-items: center;
  margin-bottom: 7.5rem;
}
@media only screen and (max-width: 767px) {
  .aesthetic__inner03-item {
    margin-bottom: 4rem;
  }
}
.aesthetic__inner03-item:last-child {
  margin-bottom: 0;
}
.aesthetic__inner03-item .cm-title05 {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .aesthetic__inner03-item .cm-title05 {
    margin-bottom: 1.5rem;
  }
}
.aesthetic__inner03-item p {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .aesthetic__inner03-item p {
    margin-bottom: 2rem;
  }
}
.aesthetic__inner03-item p:last-child {
  margin-bottom: 0;
}
.aesthetic__inner03-item.cols2 {
  flex-direction: row-reverse;
}
.aesthetic__inner03-item.cols2 .aesthetic__inner03-img {
  display: flex;
  gap: 2rem 4.2rem;
  width: 72%;
}
@media only screen and (max-width: 767px) {
  .aesthetic__inner03-item.cols2 .aesthetic__inner03-img {
    width: 100%;
    flex-wrap: wrap;
  }
}
.aesthetic__inner03-item.cols2 .aesthetic__inner03-img img:nth-child(1) {
  border-radius: 15px 0 0 15px !important;
}
.aesthetic__inner03-img {
  width: 42%;
}
@media only screen and (max-width: 767px) {
  .aesthetic__inner03-img {
    width: 100%;
  }
}
.aesthetic__inner03-img img {
  border-radius: 0 15px 15px 0;
}
.aesthetic__inner03-txt {
  flex: 1;
  min-width: 0;
}
@media only screen and (max-width: 767px) {
  .aesthetic__inner03-txt {
    flex: auto;
  }
}

.aesthetic01 {
  padding-bottom: 7.5rem;
}
@media only screen and (max-width: 767px) {
  .aesthetic01 {
    padding-bottom: 5rem;
  }
}

.aesthetic02 {
  padding: 8rem 0 9.5rem;
  background: url("../common_img/cm-bg.jpg") top center no-repeat;
  background-size: cover;
}
.aesthetic02 .cm-title05 {
  text-align: center;
  margin-bottom: 3rem;
}
.aesthetic02 .aesthetic__txt01 {
  margin-bottom: 5.5rem;
}
@media only screen and (max-width: 767px) {
  .aesthetic02 {
    padding: 4rem 0;
  }
  .aesthetic02 .cm-title05 {
    margin-bottom: 2rem;
  }
  .aesthetic02 .aesthetic__txt01 {
    margin-bottom: 2rem;
  }
}

.aesthetic02-02 {
  padding: 8rem 0;
}
.aesthetic02-02 .prevention__fee {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .aesthetic02-02 {
    padding: 0 0 4rem;
  }
}

.aesthetic03 {
  padding: 8rem 0 12rem;
  background-color: var(--color-blue02);
}
.aesthetic03 .cm-title05 {
  text-align: center;
  margin-bottom: 3rem;
}
.aesthetic03 .aesthetic__txt01 {
  margin-bottom: 8.5rem;
}
.aesthetic03 .prevention__mondamin {
  gap: 6.5rem;
}
.aesthetic03 .prevention__mondamin-item {
  gap: 2rem 4rem;
  align-items: center;
}
.aesthetic03 .prevention__mondamin-item p {
  margin-bottom: 3.5rem;
}
.aesthetic03 .prevention__mondamin-img {
  aspect-ratio: 507/355;
}
@media only screen and (max-width: 767px) {
  .aesthetic03 {
    padding: 4rem 0 2rem;
  }
  .aesthetic03 .cm-title05 {
    margin-bottom: 2rem;
  }
  .aesthetic03 .aesthetic__txt01 {
    margin-bottom: 2rem;
  }
  .aesthetic03 .prevention__mondamin {
    gap: 1rem;
    margin-top: 3rem;
  }
  .aesthetic03 .prevention__mondamin .cm-title04 {
    margin-bottom: 2rem;
  }
  .aesthetic03 .prevention__mondamin-item {
    gap: 2rem 4rem;
  }
  .aesthetic03 .prevention__mondamin-item p {
    margin-bottom: 2rem;
  }
}

.aesthetic03-02 {
  padding: 12rem 0 11.5rem;
}
.aesthetic03-02 .aesthetic__inner02 {
  margin-bottom: 9rem;
}
.aesthetic03-02 .aesthetic__inner03 {
  margin-bottom: 8rem;
}
.aesthetic03-02 .cm-title04 {
  margin-bottom: 6rem;
}
@media only screen and (max-width: 767px) {
  .aesthetic03-02 {
    padding: 4rem 0;
  }
  .aesthetic03-02 .aesthetic__inner02 {
    margin-bottom: 4rem;
  }
  .aesthetic03-02 .aesthetic__inner03 {
    margin-bottom: 4rem;
  }
  .aesthetic03-02 .cm-title04 {
    margin-bottom: 3rem;
  }
}

.aesthetic04 {
  padding: 8rem 0 9.5rem;
  background: url("../common_img/cm-bg.jpg") top center no-repeat;
  background-size: cover;
}
.aesthetic04 .cm-title05 {
  text-align: center;
  margin-bottom: 3rem;
}
.aesthetic04 .aesthetic__txt01 {
  margin-bottom: 7.5rem;
}
.aesthetic04 .prevention__fee {
  margin: 7rem auto 0;
}
@media only screen and (max-width: 767px) {
  .aesthetic04 {
    padding: 4rem 0;
  }
  .aesthetic04 .cm-title05 {
    margin-bottom: 2rem;
  }
  .aesthetic04 .aesthetic__txt01 {
    margin-bottom: 3rem;
  }
  .aesthetic04 .prevention__fee {
    margin: 3rem auto 0;
  }
}

.aesthetic04-02 {
  padding: 11rem 0 12rem;
}
.aesthetic04-02 .aesthetic__inner03 {
  margin-bottom: 8rem;
}
.aesthetic04-02 .cm-title04 {
  margin-bottom: 6rem;
}
@media only screen and (max-width: 767px) {
  .aesthetic04-02 {
    padding: 2rem 0 4rem;
  }
  .aesthetic04-02 .aesthetic__inner03 {
    margin-bottom: 2rem;
  }
  .aesthetic04-02 .cm-title04 {
    margin-bottom: 3rem;
  }
}

.aesthetic05 {
  padding: 8rem 0 13rem;
  background: url("../common_img/cm-bg.jpg") top center no-repeat;
  background-size: cover;
}
.aesthetic05 .cm-title05 {
  text-align: center;
  margin-bottom: 3rem;
}
.aesthetic05 .aesthetic__txt01 {
  margin-bottom: 7.5rem;
}
.aesthetic05 .prevention__mondamin {
  display: block;
}
.aesthetic05 .prevention__mondamin-item {
  flex-direction: row-reverse;
  align-items: center;
}
.aesthetic05 .prevention__mondamin-item p {
  margin-bottom: 3rem;
}
.aesthetic05 .prevention__mondamin-item p:last-child {
  margin-bottom: 0;
}
.aesthetic05 .prevention__mondamin-img {
  aspect-ratio: 506/355;
}
.aesthetic05 .prevention__fee {
  margin: 8rem auto 0;
}
@media only screen and (max-width: 767px) {
  .aesthetic05 {
    padding: 4rem 0;
  }
  .aesthetic05 .cm-title05 {
    margin-bottom: 2rem;
  }
  .aesthetic05 .aesthetic__txt01 {
    margin-bottom: 3rem;
  }
  .aesthetic05 .prevention__mondamin {
    margin-top: 2rem;
  }
  .aesthetic05 .prevention__mondamin-item p {
    margin-bottom: 2rem;
  }
  .aesthetic05 .prevention__fee {
    margin: 4rem auto 0;
  }
}