@charset "UTF-8";
/*--------------------
ブレイクポイント
--------------------*/
/*--------------------
メディアクエリ
--------------------*/
/*--------------------
矢印アイコン
--------------------*/
/*--------------------------------------
ladies
----------------------------------------*/
.c_hero h1 img {
  width: 100%;
}

.m_section_pink_lt {
  background: rgb(245, 233, 231);
}

.c_point_lists {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .c_point_lists {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 15px;
  }
}
.c_point_list {
  display: grid;
}
.c_point_item {
  background-color: rgb(255, 255, 255);
  padding-bottom: 20px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .c_point_item {
    padding-bottom: 0;
  }
}
.c_point_item_num {
  background-color: var(--main_color);
  color: rgb(255, 255, 255);
  font-family: var(--font_jp_serif);
  font-size: 5rem;
  font-weight: var(--font_weight_bold);
  height: 100px;
  left: 0;
  letter-spacing: 0.025em;
  line-height: 1.05;
  padding-top: 12px;
  position: absolute;
  text-align: center;
  top: 0;
  white-space: nowrap;
  width: 100px;
}
@media screen and (max-width: 768px) {
  .c_point_item_num {
    font-size: 3rem;
    height: 75px;
    width: 75px;
  }
}
.c_point_item_num::before {
  content: "Point";
  font-size: 2.4rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .c_point_item_num::before {
    font-size: 1.5rem;
  }
}
.c_point_item_txt {
  padding: 0 0 10px 124px;
}
.c_point_item_txt h4 {
  font-size: 1.8rem;
  font-weight: var(--font_weight_bold);
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .c_point_item_txt {
    font-size: 1.4rem;
    padding-left: 100px;
  }
}
.c_point_item_img {
  margin-top: 10px;
  text-align: center;
}
.c_point_item_img img {
  width: 100%;
}

.c_course_menu_unit {
  border: none;
}
@media screen and (max-width: 768px) {
  .c_course_menu_unit {
    padding: 30px 0 0;
  }
}

.ladies_entry .m_ttl_deco {
  text-align: center;
  margin-bottom: 60px;
  font-family: var(--font_jp_serif);
  font-size: 3.8rem;
  font-weight: var(--font_weight_bold);
  letter-spacing: 0.025em;
  line-height: var(--line_height_headline);
}
@media screen and (max-width: 768px) {
  .ladies_entry .m_ttl_deco {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
.ladies_entry .m_ttl_deco__line {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 30px;
  background: linear-gradient(to right, transparent 0, transparent 10px, #FCB4A3 10px, #FCB4A3 calc(100% - 10px), transparent calc(100% - 10px));
}
@media screen and (max-width: 768px) {
  .ladies_entry .m_ttl_deco__line {
    margin-block: 16px;
  }
}
.ladies_entry .m_ttl_deco__line::before, .ladies_entry .m_ttl_deco__line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  background: url("/library/images/syuttyou-kaitori/ladies/ladies_ttl_deco.svg") center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .ladies_entry .m_ttl_deco__line::before, .ladies_entry .m_ttl_deco__line::after {
    width: 14px;
    height: 14px;
  }
}
.ladies_entry .m_ttl_deco__line::before {
  left: 0;
  transform: translate(-50%, -50%);
}
.ladies_entry .m_ttl_deco__line::after {
  right: 0;
  transform: translate(50%, -50%) scaleX(-1);
}
.ladies_entry .m_contact {
  display: grid;
  grid-template-columns: 220px 1fr;
  grid-template-rows: auto auto;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
  max-width: 860px;
  margin-inline: auto;
}
.ladies_entry .m_contact__profile {
  grid-column: 1;
  grid-row: 1/3;
  text-align: center;
  background: rgb(255, 255, 255);
}
.ladies_entry .m_contact__profile img {
  width: 100%;
}
.ladies_entry .m_contact__message {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  padding: 20px 25px;
}
.ladies_entry .m_contact__message::before, .ladies_entry .m_contact__message::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
}
.ladies_entry .m_contact__message::before {
  top: 0;
  left: 0;
  border-top: 2px solid #FCB4A3;
  border-left: 2px solid #FCB4A3;
}
.ladies_entry .m_contact__message::after {
  right: 0;
  bottom: 0;
  border-right: 2px solid #FCB4A3;
  border-bottom: 2px solid #FCB4A3;
}
.ladies_entry .m_contact__tel {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
}
.ladies_entry .m_contact__tel .l_cta_btn_phone {
  height: auto;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .ladies_entry .m_contact {
    grid-template-columns: 40% 1fr;
    grid-template-rows: auto auto;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 30px;
  }
  .ladies_entry .m_contact__profile {
    grid-column: 1;
    grid-row: 1;
  }
  .ladies_entry .m_contact__message {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    padding: 15px 18px;
  }
  .ladies_entry .m_contact__tel {
    grid-column: 1/-1;
    grid-row: 2;
  }
}/*# sourceMappingURL=ladies.css.map */