:root {
  --text-color: #636363;
  --brand-color: #DB7C7C;
  --brand-color-2: #DB7C7C;
  --brand-color-3: #fcefee;
  --site-color: #db7c7c;
  --form-bg-color: #fdefee;
  --form-bg-after-color: #fff;
  --form-border-color: #bfbfbf;
}
.JPFont,
.JPFont input,
.JPFont textarea,
.JPFont select,
.JPFont *::placeholder {
  font-family: "Yu Gothic", YuGothic, 游ゴシック体, "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif; /* font-feature-settings:initial; */
  -webkit-font-smoothing: antialiased;
}

.JPFont,
h1{
  font-weight: 500;
  color: var(--text-color);
}


h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  color: var(--brand-color-2);
}
.Barlow {
  font-family: Barlow, sans-serif;
}
.Roboto,
.roboto {
  font-family: "Roboto", sans-serif;
}
.Sacramento,
.sacramento {
  font-family: "Sacramento", sans-serif;
}

.colorPink {
  color: #d90000;
  font-weight: bold;
}
.pinkBgBox {
  padding: 10rem 20rem;
  background: var(--form-bg-color);
  width: 100%;
  color: var(--text-color);
}

html {
  font-size: 1px;
}
@media (max-width: 980px) {
  /* TABLET */
  html {
    font-size: calc(1 / 980 * 100vw);
  }
}
@media (max-width: 980px) {
  /* TABLET */
  html {
    font-size: calc(1 / 375 * 100vw);
  }
}
@media (max-width: 480px) {
  /* MOBILE */
  html {
    font-size: calc(1 / 375 * 100vw);
  }
}

@media (max-width: 980px) {
  /* MOBILE */
  .pc {
    display: none;
  }
  span.tb,
  br.tb {
    display: none;
  }
  .sp {
    display: block;
  }
  span.sp,
  img.sp,
  br.sp {
    display: inline;
  }
}

body {
  background: transparent;
  color: #333;
}
.modContentBox {
  max-width: 890rem;
  margin-left: auto;
  margin-right: auto;
}

.modText {
  font-size: 15rem;
  line-height: 1.5em;
}

.modNotes {
  display: flex;
  flex-direction: column;
}
.modNotes > p,
.modNote {
  display: block;
  padding-left: 1em;
  font-size: 15rem;
  line-height: 1.6em;
  text-align: left;
}
.modNotes > p::before,
.modNote::before {
  content: "\203b";
  position: absolute;
  left: 0;
}

/*
    ステップ
*/
.modFormStep {
  max-width: 890rem;
  margin: 0 auto 30rem;
  display: flex;
  font-weight: bold;
  overflow: hidden;
}
.modFormStep > * {
  width: calc(1 / 3 * 100%);
  background: #F4F4F4;
  color: #fff;
  line-height: 1.2;
  display: flex;
  padding-left: 10rem;
  height: 50rem;
  overflow: visible;
}
.modFormStep > *:not(:first-child) {
  padding-left: 40rem;
}
.modFormStep > *:not(:first-child)::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 30rem solid transparent;
  border-left-width: 24rem;
  border-left-color: #fff;
}
.modFormStep > *:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: -44rem;
  top: 50%;
  transform: translateY(-50%);
  border: 25rem solid transparent;
  border-left-width: 20rem;
  border-left-color: #F4F4F4;
  z-index: 2;
}
.modFormStep > *.active {
  background: var(--site-color);
}
.modFormStep > *.active:not(:last-child)::after {
  border-left-color: var(--site-color);
}
.modFormStep .step {
  font-size: 10rem;
  line-height: 1.4;
  padding-bottom: 3rem;
  border-bottom: 1px solid #fff;
  letter-spacing: 0.1em;
}
.modFormStep .num {
  font-size: 24rem;
  letter-spacing: 0.05em;
  margin-left: 4rem;
  font-feature-settings: "palt";
}
.modFormStep .item {
  font-size: 16rem;
}
@media (max-width: 980px) {
  /* MOBILE */
  .modFormStep {
    max-width: none;
    margin: 0 auto 20rem;
  }
  .modFormStep > * {
    padding-left: 5rem;
    height: 40rem;
  }
  .modFormStep > *:not(:first-child) {
    padding-left: 20rem;
  }
  .modFormStep > *:not(:first-child)::before {
    left: 0;
    border-width: 28rem 0 28rem 14rem;
  }
  .modFormStep > *:not(:last-child)::after {
    right: -11rem;
    border-width: 24rem 0 24rem 12rem;
  }
  .modFormStep .step {
    font-size: 10rem;
    line-height: 1.4;
    padding-bottom: 2rem;
    letter-spacing: 0;
  }
  .modFormStep .num {
    font-size: 18rem;
    margin-left: 4rem;
  }
  .modFormStep .item {
    display: block;
    font-size: 10rem;
    width: 100%;
  }
}

/*
    FORM
*/
input,
textarea,
button,
select {
  font-size: 16rem;
  line-height: 1.5;
  height: 50rem;
  padding: 0 30rem;
  border: none;
  color: #444;
  background: var(--form-bg-color);
  border-radius: 0;
}
select {
  cursor: pointer;
}
textarea {
  padding: 20rem;
  height: 100rem;
  background: #f7f7f7;
}
#counselingForm.confirm input,
#counselingForm.confirm textarea,
#counselingForm.confirm select {
  background: #fff;
  color: var(--text-color);
}
input::placeholder,
textarea::placeholder,
.hasPlaceholder {
  color: #888;
}
input.LPDatePickerTriger::placeholder {
  color: var(--text-color);
}
input:not([type="file"]) {
  box-shadow: none;
}
input:not([type="file"]):not([readonly]):focus,
textarea:not([readonly]):focus,
select:not([readonly]):focus {
  border-color: var(--site-color);
  box-shadow: 0 0 8rem rgba(219, 124, 1242, 0.2);
}
input[type="radio"] {
  width: 20rem;
  height: 20rem;
  margin-right: 10rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--form-border-color);
}
input[type="radio"]:checked::before {
  left: 4rem;
  top: 4rem;
  width: 10rem;
  height: 10rem;
  background-color: var(--site-color);
}
@media (max-width: 980px) {
  /* MOBILE */
  input,
  textarea,
  button,
  select {
    height: 40rem;
    padding: 0 15rem;
  }
  textarea {
    padding: 10rem;
    height: 90rem;
  }
  input::placeholder,
  textarea::placeholder {
    font-size: 15rem;
  }
}
input, textarea, select {
  border: 1px solid var(--site-color)!important;
}

.LPForm .select::after {
  width: 12rem;
  height: 12rem;
  border-width: 3rem;
  right: 20rem;
  top: calc(50% - 8rem);
}
.LPForm .LPDatePickerTriger,
.LPForm select {
  border: none;
  background: var(--form-bg-color);
  padding-left: 30rem;
}
.LPForm .LPDatePickerTriger.-optional, .LPForm select.-optional {
  background:#f7f7f7;
}
/*.LPForm .LPDatePickerTriger::placeholder, .LPForm .LPDatePickerTriger, .LPForm select { color:var(--form-border-color); font-weight:bold; }*/
.LPForm .age input {
  width: 150rem;
  margin-right: 10rem;
}
.LPForm .agree {
  text-align: center;
  padding: 30rem 0;
  color: var(--text-color);
  font-weight: bold;
  font-size: 17rem;
}
.LPForm .agree input[type="checkbox"] {
  border: 3rem solid;
  background: #fff;
}
.LPForm .agree input[type="checkbox"]::before {
  left: 40%;
  top: 75%;
}
.LPDatePicker {
  background: var(--brand-color-3);
  font-size: 16rem;
  line-height: 1.5em;
  text-align: left;
}
.LPForm .formBox {
  border: none;
}
/* .LPForm .formIndex { border-color:var(--site-color); } */
.LPForm .formIndex {
  border-color: #e1e1e1;
}
.LPForm .formIndex > *:first-child {
  letter-spacing: 0.025em;
}
.LPForm .formIndex > *:not(:first-child) {
  border: none;
  letter-spacing: 0.025em;
}
.LPForm .formIndex.required > *:first-child > *::before {
  background: var(--site-color);
}
@media (max-width: 980px) {
  /* MOBILE */
  .LPForm {
    font-size: 15rem;
  }
  .LPForm .formBox {
    border: none;
  }
  .LPForm .formIndex {
    border: none;
  }
  .LPForm .formIndex > *:first-child {
    width: 100%;
    min-height: inherit;
    padding: 15rem;
  }
  .LPForm .formIndex > *:not(:first-child) {
    width: 100%;
    border: none;
    padding: 15rem;
  }
  .LPForm .radioGroup {
    gap: 12rem 30rem;
    align-items: flex-start;
  }
  .LPForm .radioGroup.column {
    flex-direction: column;
  }
  .LPForm .age input {
    width: 100rem;
  }
  .LPDatePicker { 
    font-size: 15rem;
  }
}

.LPFormValidation .validateErrorMessage {
  background: rgba(219, 73, 158, 0.8);
}
.LPFormValidation .validateErrorMessage::before {
  border-bottom-color: rgba(219, 73, 158, 0.8);
}

input:-webkit-autofill {
  transition: background-color 10000s ease-in-out 0s;
  /* box-shadow: 0 0 0 1000px var(--form-bg-color) inset; */
}

/*
    MODULE
*/
/*  お急ぎの方バナー
--------------------------------------------------*/
.modHarryBanner {
  background: #fdf4e7;
  padding: 0rem 5rem;
  margin: 50rem auto;
  max-width: 890rem;
}
.modHarryBanner .title {
  font-size: 20rem;
  line-height: 1.625;
  font-weight: bold;
  color: #db7c7c;
}
.modHarryBanner .links {
  display: flex;
  margin-top: 20rem;
}
.modHarryBanner .links .button {
  width: 150rem;
  height: 45rem;
  border-radius: 27rem;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 14rem;
  line-height: 1.2;
  font-weight: bold;
}
.modHarryBanner .links .button .mainText {
  margin-bottom: -0.025em;
}
.modHarryBanner .links .button .subText {
  font-size: 12rem;
  margin-top: -0.025em;
}
.modHarryBanner .links .button.checkerLink {
  background: #6d83b1;
  box-shadow: 0 4rem 0 #cbd7ef;
  margin-right: 6rem;
}
.modHarryBanner .links .button.lineLink {
  background: #47d180;
  box-shadow: 0 4rem 0 #c2f2d0;
  margin-right: 10rem;
  padding-left: 15rem;
}
.modHarryBanner .links .button.lineLink::before {
  content: "";
  width: 20rem;
  height: 20rem;
  position: absolute;
  left: 10rem;
  top: calc(50% - 10rem);
  background-image: url(/wp-content/themes/agaskin-woman-jp2022_theme/asset/media/images/common/hd_icon-line.png);
}
.modHarryBanner .modButtonBox .buttons {
  column-gap: 40rem;
  margin-top: 20rem;
}
@media (max-width: 980px) {
  /* MOBILE */
  .modHarryBanner {
    padding: 0rem 5rem;
    margin: 30rem 20rem;
  }
  .modHarryBanner .title {
    font-size: 16rem;
  }
  .modHarryBanner .links {
    margin-top: 10rem;
  }
  .modHarryBanner .links .button {
    width: 140rem;
    height: 48rem;
    border-radius: 24rem;
    font-size: 0;
    line-height: 1.2;
    font-weight: bold;
  }
  .modHarryBanner .links .button .mainText {
    font-size: 13rem;
    margin-bottom: 0.25em;
    letter-spacing: 0.025em;
  }
  .modHarryBanner .links .button .subText {
    font-size: 11rem;
  }
  .modHarryBanner .links .button.checkerLink {
    margin-right: 6rem;
  }
  .modHarryBanner .links .button.lineLink {
    width: 78rem;
    margin-right: 6rem;
    padding-left: 35rem;
    justify-content: flex-end;
  }
  .modHarryBanner .links .button.lineLink .mainText {
    font-size: 10rem;
    margin-bottom: 10rem;
  }
  .modHarryBanner .links .button.lineLink::before {
    width: 30rem;
    height: 30rem;
    left: 8rem;
    top: calc(50% - 15rem);
    background: center/contain
      url("/wp-content/themes/agaskin-woman-jp2022_theme/asset/media/images/common/hd_icon-line@2x.png");
  }
}

/*
    HEADER
*/
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  box-shadow: 0 5rem 5rem 0 rgba(0, 0, 0, 0.05);
  background: #fff;
}
header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  margin: 0 auto;
}
header .wrapper .logo {
  font-size: 12px;
  padding: 1.25em 0.833333em;
}
header .wrapper .logo img {
  width: 12.5em;
}
header .logoText { 
  text-align: left;
  margin-top: 0.33333em;
  line-height: 1;
  color: #8e0007;
  font-weight: 700;
}
header .banners {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  margin-left: auto;
}
header .banners .phoneBanner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
header .banners .phoneBanner > * {
  padding-left: 28rem;
  line-height: 1;
}
header .banners .phoneBanner > *::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 15rem);
  width: 26rem;
  height: 26rem;
  background: center/contain no-repeat;
}
header .banners .phoneBanner .mainText {
  font-size: 12rem;
  line-height: 1;
  letter-spacing: 0.05em;
  display: flex;
}
header .banners .phoneBanner .mainText::before {
  background-image: url("/wp-content/themes/agaskin-woman-jp2022_theme/asset/media/images/common/hd-phone.png");
}
header .banners .phoneBanner .subText {
  margin-top: 10rem;
}
header .banners .phoneBanner .subText::before {
  background-image: url("/wp-content/themes/agaskin-woman-jp2022_theme/asset/media/images/common/hd-freedial.png");
}
header .banners .phoneBanner .subText .tel {
  font-size: 16rem;
  color: var(--site-color);
  letter-spacing: 0.05em;
}
header .banners .phoneBanner .subText .text {
  font-size: 10rem;
  letter-spacing: 0.05em;
}
header .telLink {
  display: flex;
  flex-direction: column;
  padding: 0.33333em 0.08333em;
  margin-right: 0.3333em;
  font-size: 12px;
}
header .telLink .hurryBox {
  display: flex;
  padding: 0.2em 0.3em 0.12em;
  width: 100%;
  border-top: 1.5px solid var(--site-color);
}
header .telLink .hurryBox p {
  font-size: 1em;
  line-height: 1.1;
  font-weight: bold;
  color: var(--site-color);
}
header .telLink .phoneWrap {
  display: flex;
  margin-top: 0.2em;
}
header .telLink .phoneWrap .freedial {
  margin-right: 0.3em;
  max-width: 2.29411em;
  width: 100%;
  height: auto;
}
header .telLink .phoneWrap .phoneNumber {
  font-size: 1.88em;
  letter-spacing: -0.02em;
  line-height: 1;
  font-weight: 700;
  color: var(--site-color);
}
header .telLink .hours {
  font-size: 0.8em;
  line-height: 1;
  font-weight: bold;
  background: var(--site-color);
  color: #fff;
  padding: 0.3em 0.3em 0.27em;
}
@media (max-width: 980px) {
  /* MOBILE */
  header {
    width: 100%;
    flex-direction: column;
    padding: 0;
  }
  header .wrapper {
    max-width: none;
    width: 100%;
    height: 60rem;
  }
  /* header .logo img {
    width: 128rem;
    height: auto;
  } */
  header .banners .phoneBanner > * {
    padding-left: 20rem;
  }
  header .banners .phoneBanner > *::before {
    left: 0;
    top: calc(50% - 10rem);
    width: 18rem;
    height: 18rem;
    background: center/contain no-repeat;
  }
  header .banners .phoneBanner .mainText {
    font-size: 12rem;
    letter-spacing: 0;
  }
  header .banners .phoneBanner .subText {
    margin-top: 6rem;
    letter-spacing: 0;
  }
  header .banners .phoneBanner .subText .tel {
    font-size: 12rem;
  }
  header .banners .phoneBanner .subText .text {
    font-size: 10rem;
    letter-spacing: 0;
  }
  header .telLink {
    font-size: calc(100vw / 375 * 10);
  }
  header .wrapper .logo {
    font-size: calc(100vw / 375 * 10);
  }
}

footer {
  padding: 0 0 40rem;
}
footer .copyright {
  font-size: 12rem;
  line-height: 1.5em;
  padding-top: 24rem;
  border-top: 1px solid #ccc;
}
@media (max-width: 980px) {
  /* MOBILE */
  footer .copyright {
    font-size: 11rem;
  }
}

/*  メインビジュアル
--------------------------------------------------*/
section.mainVisual {
  margin-top: 40rem;
}
section.mainVisual .header {
  margin-bottom: 50rem;
}
section.mainVisual .header .title {
  font-size: 40rem;
  line-height: 1.4em;
  font-weight: bold;
  letter-spacing: 0.05em;
  z-index: 1;
}
#counselingForm section.mainVisual .header .title {
  font-size: 22rem;
  padding-top: 20rem;
  letter-spacing: 0;
}
section.mainVisual .header .subEng {
  position: absolute;
  right: 0;
  bottom: 0;
  font-family: "Sacramento", cursive;
  font-size: 80rem;
  line-height: 1;
  color: #eecece;
  transform: translate(5rem, 40rem) rotate(-5deg);
}
@media (max-width: 980px) {
  /* MOBILE */
  section.mainVisual {
    margin-bottom: 0;
    padding: 0;
    margin-top: 0;
  }
  section.mainVisual.-top {
    height: 80rem;
    padding: 0 8rem;
    display: flex;
    margin-bottom: 0;
  }
  section.mainVisual .header {
    margin-bottom: 0;
  }
  section.mainVisual .header .title {
    font-size: 24rem;
  }
  #counselingForm section.mainVisual .header .title {
    font-size: 18rem;
    letter-spacing: 0;
    padding-left: 12rem;
    padding-right: 12rem;
    padding-bottom: 20rem;
    background-color: #fcefee;
  }
  section.mainVisual .header .subEng {
    display: none;
  }
  section.mainVisual img {
    width: 100%;
    height: auto;
  }
}

/*  再診・次回治療のご予約はこちら
--------------------------------------------------*/
section.reserveAgainBanner .border {
  display: flex;
  max-width: 700rem;
  background: url(/img/common/bg_dot.png);
  padding: 15rem;
  margin-bottom: 25rem;
}
section.reserveAgainBanner .title {
  font-size: 30rem;
  line-height: 1.5em;
  margin-bottom: 12rem;
  font-weight: bold;
  font-feature-settings: "palt";
}
section.reserveAgainBanner .induction {
  display: flex;
  padding: 8rem;
  background: rgba(255, 255, 255, 0.8);
}
section.reserveAgainBanner .induction > * {
  font-size: 12rem;
  line-height: 1.4em;
  margin-right: 1.5em;
}
@media (max-width: 980px) {
  /* MOBILE */
  section.reserveAgainBanner {
    padding: 0 25rem;
  }
  section.reserveAgainBanner .border {
    justify-content: flex-start;
    max-width: none;
    background: url(/img/common/bg_dot.png);
    padding: 10rem;
    margin-bottom: 12rem;
  }
  section.reserveAgainBanner .title {
    font-size: 20rem;
    margin-bottom: 10rem;
  }
  section.reserveAgainBanner .induction {
    justify-content: flex-start;
    padding: 4rem;
    margin-right: 24rem;
  }
  section.reserveAgainBanner .induction > * {
    font-size: 12rem;
    line-height: 1.4em;
    margin-right: 0;
  }
  section.reserveAgainBanner .icon-arrow {
    font-size: 14rem;
    font-weight: bold;
    position: absolute;
    right: 10rem;
    top: 50%;
    transform: translateY(-50%);
    color: #db499e;
  }
}

/*  こちらの予約フォームは『初めての方専用』です。
--------------------------------------------------*/
#a_formaria .squareList {
  display: inline-block;
  margin: 0 auto 30rem;
  font-weight: bold;
}
#a_formaria .squareList > .modNote {
  position: relative;
  padding-left: 1.2em;
}
#a_formaria .squareList > .modNote::before {
  content: "■";
  position: absolute;
  left: 0;
}
@media (max-width: 980px) {
  /* MOBILE */
  #a_formaria .squareList {
    display: block;
    margin-bottom: 20rem;
    padding: 0 20rem;
  }
}

/*  無料予約カウンセリングフォーム：入力
--------------------------------------------------*/
section.counselingForm .counselingText {
  font-size: 15px;
  line-height: 1.5;
}
section.counselingForm .counselingTextBorder {
  background: linear-gradient(to bottom, transparent 0%, transparent 60%, #ffff00 60%, #ffff00 100%);
}
section.counselingForm .formBox .modNote {
  font-size: 16rem;
}
section.counselingForm .formBox .pdfReader {
  margin-left: 12rem;
}
section.counselingForm .formBox .pdfReader img {
  width: 20rem;
}
@media (max-width: 980px) {
  /* MOBILE */
  section.counselingForm .formBox {
    border: none;
  }
  section.counselingForm .formBox .modNote {
    font-size: 12rem;
  }
}

section.counselingForm .privacyPolicy {
  margin: 30rem 25rem 0;
}
section.counselingForm .privacyPolicy .index {
  margin-bottom: 5rem;
}
section.counselingForm .privacyPolicy .border {
  border: 2px solid;
  padding: 20rem;
  height: 415rem;
  overflow-y: auto;
}
section.counselingForm .privacyPolicy .title {
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
  margin-bottom: 20rem;
}
section.counselingForm .privacyPolicy .notice {
  margin-bottom: 40rem;
}
section.counselingForm .privacyPolicy dt {
  font-weight: 600;
  margin-bottom: 5rem;
}
section.counselingForm .privacyPolicy dd {
  margin-bottom: 40rem;
}
section.counselingForm .privacyPolicy .modNotes {
  margin-top: 20rem;
}
section.counselingForm .privacyPolicy .modNotes .pinkBgBox {
  display: flex;
  width: 100%;
}
section.counselingForm .privacyPolicy .modNotes .modNotes {
  align-items: flex-start;
  margin-top: 0;
  width: auto;
}
section.counselingForm .privacyPolicy .table01 {display:table; border: 2px solid var(--form-border-color);}
section.counselingForm .privacyPolicy .table01 tr:not(:last-child) {border-bottom: 1px solid var(--form-border-color);}
section.counselingForm .privacyPolicy .table01 th {padding: 4px; text-align: center; vertical-align: middle; background-color: #F4F4F4;}
section.counselingForm .privacyPolicy .table01 th:not(:last-child) {border-right: 1px solid var(--form-border-color);}
section.counselingForm .privacyPolicy .table01 th:nth-child(1) {width: 20%;}
section.counselingForm .privacyPolicy .table01 th:nth-child(2) {width: 20%;}
section.counselingForm .privacyPolicy .table01 th:nth-child(3) {width: 20%;}
section.counselingForm .privacyPolicy .table01 td {padding: 4px; vertical-align: middle;}
section.counselingForm .privacyPolicy .table01 td:nth-child(1) {text-align: center;}
section.counselingForm .privacyPolicy .table01 td:nth-child(2) {text-align: center;}
section.counselingForm .privacyPolicy .table01 td:nth-child(3) {text-align: center;}
section.counselingForm .privacyPolicy .table01 td:not(:last-child) {border-right: 1px solid var(--form-border-color);}
section.counselingForm .privacyPolicy .table02 {display:table; border: 2px solid var(--form-border-color);}
section.counselingForm .privacyPolicy .table02 tr:not(:last-child) {border-bottom: 1px solid var(--form-border-color);}
section.counselingForm .privacyPolicy .table02 th {padding: 4px; text-align: center; vertical-align: middle; background-color: #F4F4F4;}
section.counselingForm .privacyPolicy .table02 th:not(:last-child) {border-right: 1px solid var(--form-border-color);}
section.counselingForm .privacyPolicy .table02 th:nth-child(1) {width: 30%;}
section.counselingForm .privacyPolicy .table02 td {padding: 4px; vertical-align: middle;}
section.counselingForm .privacyPolicy .table02 td:nth-child(1) {text-align: center;}
section.counselingForm .privacyPolicy .table02 td:not(:last-child) {border-right: 1px solid var(--form-border-color);}
@media (max-width: 980px) {
  /* MOBILE */
  section.counselingForm .privacyPolicy {
    margin: 15rem 15rem 0;
  }
  section.counselingForm .privacyPolicy .border {
    border-width: 1px;
    padding: 10rem 15rem;
    height: 212rem;
    font-size: 12rem;
  }
  section.counselingForm .privacyPolicy .table02 th:nth-child(1) {width: 40%;}
}

.modButtonBox {
  display: flex;
  flex-direction: column;
  padding: 20rem;
  margin-top: 30rem;
  
}
.modButtonBox .attention {
  font-size: 18rem;
  margin-bottom: 20rem;
}
.modButtonBox .buttons {
  display: flex;
  width: 100%;
}
.modButtonBox .button {
  font-size: 18rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  width: 500rem;
  height: 50rem;
  display: flex;
  color: #fff;
  background: var(--site-color);
  border-radius: 25rem;
  cursor: pointer;
  box-shadow: 0 4rem 0 #f2d3d3;
}
.modButtonBox .buttons .button.next {
  background: #fff;
  height: 64rem;
  padding: 5px 0 10px 0;
  color: #333;
  border: 1rem solid #f84173;
  border-radius: 4rem;
  display: flex;
  width: 35%;
}
.modButtonBox .button .icon {
  width: 24rem;
  height: auto;
  vertical-align: -4rem;
  margin-left: 0.5em;
}
@media (max-width: 980px) {
  /* MOBILE */
  .modButtonBox {
    padding: 25rem 0;
    margin-top: 0;
  }
  .modButtonBox .attention {
    font-size: 16rem;
    margin-bottom: 20rem;
  }
  .modButtonBox .buttons {
    flex-direction: column-reverse;
    gap: 20rem;
  }
  .modButtonBox .button {
    font-size: 18rem;
    width: 300rem;
    height: 50rem;
  }
  .modButtonBox .buttons .button.next {
    height: 62rem;
    width: 80%;
  }
  .modButtonBox .buttons .button.next p {
    font-size: 16px;
  }
}

/*  無料予約カウンセリングフォーム：確認
--------------------------------------------------*/
section.counselingConfirm {
}
section.counselingConfirm .pageTitle {
  background: #02254b;
  color: #fff;
  font-weight: bold;
  padding: 15rem 14rem;
  font-size: 20rem;
  line-height: 1.6em;
  text-align: left;
  margin-bottom: 30rem;
}
section.counselingConfirm .modButtonBox {
  text-align: center;
  margin-top: 40rem;
  margin-bottom: 40rem;
}
section.counselingConfirm .modButtonBox .attention {
  font-size: 18rem;
  margin-bottom: 30rem;
}
section.counselingConfirm .modButtonBox .buttons {
  width: 668px;
  margin: 0 auto;
  justify-content: space-between;
}
section.counselingConfirm .modButtonBox .button {
  font-size: 18rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  width: 320rem;
  height: 50rem;
  display: flex;
  color: #fff;
  background: var(--site-color);
  border-radius: 25rem;
  cursor: pointer;
  box-shadow: 0 4rem 0 #f2d3d3;
}
section.counselingConfirm .modButtonBox a.button {
  background: #6d83b1;
  box-shadow: 0 4rem 0 #cbd7ef;
}
@media (max-width: 980px) {
  /* MOBILE */
  section.counselingConfirm {
  }
  section.counselingConfirm .pageTitle {
    padding: 5rem 14rem;
    font-size: 16rem;
    margin-bottom: 12rem;
  }
  section.counselingConfirm .modButtonBox {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
  }
  section.counselingConfirm .modButtonBox .attention {
    font-size: 16rem;
    margin-bottom: 25rem;
  }
  section.counselingConfirm .modButtonBox .buttons {
    width: 100%;
    padding: 0;
    justify-content: center;
  }
  section.counselingConfirm .modButtonBox .button {
    width: 300rem;
  }
}

/*  無料予約カウンセリングフォーム：完了
--------------------------------------------------*/
section.counselingThanks {
}
section.counselingThanks .textBox {
  margin: 0 auto;
}
section.counselingThanks .modText {
  font-size: 17rem;
  line-height: 1.9em;
}
section.counselingThanks .modText a {
  color: var(--site-color);
  font-weight: bold;
  text-decoration: underline;
}
section.counselingThanks .modText.thanksMsg {
  font-size: 28rem;
  font-weight: bold;
}
section.counselingThanks .modText.freeDial {
  margin-top: 40rem;
}
section.counselingThanks .modText.notice {
  margin-top: 20rem;
}
section.counselingThanks .modText.notice + .modText.notice {
  margin-top: 10rem;
}
section.counselingThanks .thanksTitle {
  padding: 20rem 0;
  margin: 50rem 0 40rem;
  font-size: 22rem;
  line-height: 1.6em;
  letter-spacing: -0.08em;
  background: #F4F4F4;
  font-weight: bold;
}
section.counselingThanks .couselingFlow {
  margin-top: 50rem;
}
section.counselingThanks .couselingFlow .list {
  max-width: 410rem;
  width: 100%;
  margin: 0 auto;
}
section.counselingThanks .couselingFlow .list > * ~ * {
  margin-top: 40rem;
}
section.counselingThanks .couselingFlow .list > * ~ *::before {
  content: "";
  position: absolute;
  left: calc(50% - 15rem);
  top: -27rem;
  width: 0;
  height: 0;
  border: 15rem solid transparent;
  border-top-color: var(--site-color);
}
section.counselingThanks .couselingFlow .list .border {
  overflow: hidden;
  border-radius: 8rem;
}
section.counselingThanks .couselingFlow .list .step {
  font-size: 20rem;
  line-height: 1;
  padding: 12rem 5rem;
  background: var(--site-color);
  color: #fff;
  font-weight: bold;
}
section.counselingThanks .couselingFlow .list .caption {
  font-size: 16rem;
  line-height: 1.625;
  letter-spacing: 0.025em;
  padding: 14rem 5rem;
  background: var(--form-bg-color);
  font-weight: bold;
}
section.counselingThanks .modButtonBox .button {
  width: 500rem;
}
@media (max-width: 980px) {
  /* MOBILE */
  section.counselingThanks {
    padding: 0 25rem;
  }
  section.counselingThanks .modText.thanksMsg {
    font-size: 20rem;
  }
  section.counselingThanks .modText.freeDial {
    text-align: left;
    margin-top: 20rem;
    font-size: 15rem;
  }
  section.counselingThanks .modText.notice {
    text-align: left;
    padding-left: 1em;
    text-indent: -1em;
  }
  section.counselingThanks .modButtonBox .button {
    width: 300rem;
  }
  section.counselingThanks .couselingFlow {
    margin-top: 20rem;
  }
}

/*  無料予約カウンセリングフォーム：エラー
--------------------------------------------------*/
section.counselingError .errorTitle {
  font-size: 24rem;
  font-weight: bold;
  line-height: 1.6;
  padding-top: 40rem;
  color: var(--text-color);
}
section.counselingError .modText {
  line-height: 1.6em;
  margin-top: 40rem;
}
section.counselingError .modText a {
  color: var(--site-color);
  font-weight: bold;
  text-decoration: underline;
}
@media (max-width: 980px) {
  /* MOBILE */
  section.counselingError .errorTitle {
    font-size: 20rem;
    padding-top: 20rem;
    padding-bottom: 20rem;
    background-color: #fcefee;
  }
  section.counselingError .modText {
    margin-top: 20rem;
  }
}

/*アコーディオン*/
#today-yoyaku_Area {
  /*background: var(--form-bg-color);*/
}

@media only screen and (max-width: 767px) {
  #today-yoyaku_Area {
    margin-bottom: 30px;
  }
}
#today-yoyaku_Area .js-c-acc {
  display: flex;
  cursor: pointer;
  position: relative;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  #today-yoyaku_Area .js-c-acc {
    display: block;
  }
}
#today-yoyaku_Area .js-c-acc .sec-img {
  width: 30%;
  padding: 20px 0;
}

@media only screen and (max-width: 767px) {
  #today-yoyaku_Area .js-c-acc .sec-img {
    width: 90%;
    text-align: center;
    margin: auto;
  }
}
@media only screen and (max-width: 480px) {
  #today-yoyaku_Area .js-c-acc .sec-img {
    width: 100%;
  }
}
#today-yoyaku_Area .js-c-acc .sec-ttl {
  text-align: center;
  padding: 20px;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  #today-yoyaku_Area .js-c-acc .sec-ttl {
    padding: 10px;
  }
}
#today-yoyaku_Area .js-c-acc .sec-ttl h2 {
  /*font-size: 20px;*/
  display: inline-block;

  font-size: 20rem;
    line-height: 1.625;
    font-weight: bold;
}

@media only screen and (max-width: 767px) {
  #today-yoyaku_Area .js-c-acc .sec-ttl h2 {
    font-size: 18px;
  }
}
#today-yoyaku_Area .js-c-acc .sec-ttl p {
  font-size: 16px;
  font-weight: normal;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  #today-yoyaku_Area .js-c-acc .sec-ttl p {
    font-size: 14px;
  }
}
#today-yoyaku_Area .js-c-acc:after,
#today-yoyaku_Area .js-c-acc:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  width: 16px;
  height: 2px;
  background-color: #db7c7c;
  transition: 0.5s;
}

@media only screen and (max-width: 767px) {
  #today-yoyaku_Area .js-c-acc:after,
  #today-yoyaku_Area .js-c-acc:before {
    right: 8px;
  }
}
@media only screen and (max-width: 480px) {
  #today-yoyaku_Area .js-c-acc:after,
  #today-yoyaku_Area .js-c-acc:before {
    top: 50%;
  }
}
#today-yoyaku_Area .js-c-acc:after {
  transform: rotate(-90deg);
}

#today-yoyaku_Area .js-c-acc.c-acc_open:after {
  transform: rotate(0deg);
}

#today-yoyaku_Area .c-acc {
  padding-bottom: 25px;
}

#today-yoyaku_Area .c-acc .c-acc_inner {
  display: flex;
  margin: 30px 0;
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  #today-yoyaku_Area .c-acc {
    padding-bottom: 16px;
  }
  #today-yoyaku_Area .c-acc .c-acc_inner {
    margin: 10px 0;
    align-items: center;
    align-content: center;
  }
}
#today-yoyaku_Area .c-acc .c-acc_inner a {
  width: 18%;
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  #today-yoyaku_Area .c-acc .c-acc_inner a {
    width: 100%;
  }
}
#today-yoyaku_Area .c-acc .c-acc_inner a .img {
  width: 14%;
  padding-right: 10px;
}

@media only screen and (max-width: 767px) {
  #today-yoyaku_Area .c-acc .c-acc_inner a .img {
    padding-right: 8px;
    width: 8%;
  }
}
#today-yoyaku_Area .c-acc .c-acc_inner a .txt-area {
  width: 70%;
}

@media only screen and (max-width: 767px) {
  #today-yoyaku_Area .c-acc .c-acc_inner a .txt-area {
    width: 88%;
  }
}
#today-yoyaku_Area .c-btn {
  display: none;
}

#wrapper {
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #wrapper {
    padding-top: 93px;
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  header {
    position: relative;
    z-index: 10001;
  }
}

aside {
  width: 216px;
}
@media only screen and (max-width: 767px) {
  aside {
    width: 100%;
    margin-top: 60px;
  }
}
aside .ttl h3 {
  font-size: 17px;
  font-weight: 600;
}

.l-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .l-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.check-list ul {
  display: flex;
  justify-content: center;
}
.check-list ul li span {
  padding-left: 30px;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.7;
}
.check-list ul li span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 21px;
  height: 21px;
  background: center/contain no-repeat
    url("/wp-content/themes/agaskin-woman-jp2022_theme/asset/media/images/icon/checkbox.png");
}
.check-list ul li + li {
  margin-left: 25px;
}

.wide_width {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
  padding: 0 50px;
}
@media only screen and (max-width: 1024px) {
  .wide_width {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .wide_width {
    padding: 0 15px;
  }
}

.main_width {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1300px;
  padding: 0 50px;
}
@media only screen and (max-width: 1024px) {
  .main_width {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .main_width {
    padding: 0 20px;
  }
}
.main_width .sub_width {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
.main_width .w880 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 880px;
}
.main_width .w1000 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
.main_width .w1020 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1020px;
}
.main_width .w1080 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1080px;
}
.main_width .w1086 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1086px;
}
.main_width .w1152 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1152px;
}

.narrow_width {
  width: 940px;
  max-width: 100%;
  padding: 0 50px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .narrow_width {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .narrow_width {
    padding: 0 20px;
  }
}

.cont_width {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 940px;
}
.cont_width .cont_in {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 780px;
}


/*新フォームデザイン適用部分*/

/* 注意書き */
.hilight { font-size:1.2em; color: #d90000; }

/*
**  THANKS
*/

section.thanksMessage { font-size:17rem; letter-spacing:0.03em; font-weight:bold; }
section.thanksMessage #counselingForm {	background-color:#fff; }
@media only screen and (max-width: 768px) {
    section.thanksMessage { font-size:15rem; letter-spacing:0.02em; }
    section.thanksMessage #counselingForm {	padding-top:0; }
}

/* タイトル＆テキストボックス */
section.thanksMessage .titleBox { font-size:1.5em; letter-spacing:0.1em; margin-bottom:30rem; margin-top: 20rem; }
section.thanksMessage .titleBox .underline { display:inline; background:linear-gradient(to bottom, transparent 0%, transparent 60%, #ffff00 60%, #ffff00 100%); }
section.thanksMessage .titleBox .flash { animation: brinkAnimation 0.5s step-end infinite; }
section.thanksMessage .textBox { line-height:1.8em; max-width:600rem; margin:0 auto; /*text-align:left;*/ }
section.thanksMessage .textBox a { text-decoration:underline; }
@media only screen and (max-width: 768px) {
    section.thanksMessage .titleBox { font-size:1.2em; letter-spacing:0.1em; margin-bottom:20rem; margin-top: 10rem; }
    section.thanksMessage .textBox { max-width:none; }
}

/* カウンセリングの流れ(△時) */
section.thanksMessage .councelingFlow { margin-top:20rem; /*margin-bottom:50rem;*/ }
section.thanksMessage .councelingFlow .border { max-width:600rem; margin:0 auto; }
section.thanksMessage .councelingFlow .title { background:#F4F4F4; padding:7rem; line-height:1.5em; display:flex; font-weight:bold; }
section.thanksMessage .councelingFlow .list { display:flex; gap:6rem; width:100%; padding-top:25rem; counter-reset:number; }
section.thanksMessage .councelingFlow .list > * { width:calc((100% - 12rem) / 3); background:#fcf4f4; height:180rem; padding:10rem 0; display:flex; flex-direction:column; justify-content:space-between; color:#d45b5b; }
section.thanksMessage .councelingFlow .list > * img { height:auto; }
section.thanksMessage .councelingFlow .list .callCenterImage { font-size:52rem; color:#d45b5b; }
section.thanksMessage .councelingFlow .list > *:nth-child(2) img { width:68rem; }
section.thanksMessage .councelingFlow .list > *:nth-child(3) img { width:80rem; }
section.thanksMessage .councelingFlow .list p { font-size:0.9em; line-height:1.1; min-height:2.2em; display:flex; }
section.thanksMessage .councelingFlow .list .number::before { content:counter(number); counter-increment:number; font-size:30rem; line-height:1; }
@media only screen and (max-width: 768px) {
    section.thanksMessage .councelingFlow .list > * { height:160rem; }
    section.thanksMessage .councelingFlow .list .callCenterImage { font-size:46rem; }
    section.thanksMessage .councelingFlow .list > *:nth-child(2) img { width:60rem; }
    section.thanksMessage .councelingFlow .list > *:nth-child(3) img { width:72rem; }
}

@keyframes brinkAnimation {
    0% { opacity: 1; }
    75% { opacity: 0; }
    100% { opacity: 1; }
}

/*
    汎用
*/
.LPInvisible { display:none !important; }
.LPWidthFull { width:100%; }
.LPAdjustFull { position:absolute; left:0; top:0; width:100%; height:100%; }
.LPAdjustFixedFull { position:fixed; left:0; top:0; width:100%; height:100%; }
.LPCenterPosition { position:absolute; left:50%; top:50%; transform:translate(-50%, -50%); }
.LPCenterMargin { margin-left:auto; margin-right:auto; }
.LPLeftPosition { position:absolute; left:0; top:50%; transform:translateY(-50%); }
.LPTextCenter { text-align:center; }
.LPTextCenter > * { display:inline-block; text-align:left; }
.LPFlexBox { display:flex; }
.LPFlexBox.column { flex-direction:column; }
.LPFlexBox.left { justify-content:flex-start; }
.LPFlexBox.top { align-items:flex-start; }

.mt10 {
  margin-top: 10rem!important;
}

/* 画像をフィットさせる */
img.LPImageFit { position:absolute; left:0; top:0; width:100%; height:100%; object-fit:cover; }


/*
    PC/SP 切り替え
*/
.sp, span.sp, img.sp, br.sp { display:none; }
@media (max-width:480px) {      /* MOBILE */
    .pc { display:none; }
    .sp { display:block; }
    span.sp, img.sp, br.sp { display:inline; }
}

/*
    フォント / テキスト関連
*/
.fwNormal { font-weight:400; }
.fwMedium { font-weight:500; }
.fwSemiBold { font-weight:600; }
.fwBold { font-weight:700; }
.fwBlack { font-weight:900; }
.taCenter { text-align:center; }
.taLeft { text-align:left; }
.taRight { text-align:right; }

.amazonbnr {
  margin: 0 auto;
  max-width: 600rem;
}

.amazonbnr img {
  width: 100%;
}

.bihaku_bn {
  @media (min-width: 981px) {
    margin-bottom: 40rem;
  }
}

.mp0 {
  margin-top: -15px;
  padding: 0;
 }

.areaSelecter {
  display: flex;
  justify-content: flex-start;
  gap: 8rem;
  margin-bottom: 20px;
}
.areaSelecter > li {
  width: calc((100% - 16rem) / 3);
  height: 50rem;
  border: 1rem solid var(--site-color);
  display: flex;
  transition: background 0.2s;
  background: #fff;
}
.areaSelecter > li.selected {
  background: var(--brand-color-2);
  color: #fff;
  border: none;
  pointer-events: none;
}
.areaSelecter > li:not(.selected):hover {
  background: #f4f4f4;
  cursor: pointer;
}

.custom-select-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid var(--site-color);
  background-color: var(--form-bg-color);
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 3;

  @media only screen and (max-width: 767px) {
    top: 92%;
  }
}

.custom-select-options li {
  padding-left: 30rem;
  cursor: pointer;
}

.custom-select-options li:hover {
  background-color: #fff;
}

 /* PC、SPの表示・非表示 */
.spVer {
	display: none;
}

@media only screen and (max-width:980px) {
	.pcVer {
		display: none;
	}

	.spVer {
		display: block;
	}
}


/*  202509 アンケートフォーム：入力
--------------------------------------------------*/
/* luckpeaks-form.cssの無効化 */
.enqueteForm .LPForm .formIndex { 
    display: block;
    border-bottom: none;
}
.enqueteForm .LPForm .formIndex:last-child { 
    border-bottom:none; 
}
.enqueteForm .LPForm .formIndex > *:first-child { 
    width: auto; 
    min-height: auto;
    padding: 0; 
    display: block; 
    justify-content:flex-start; 
    font-weight: bold; 
    background:#F4F4F4; 
}
.enqueteForm .LPForm .formIndex > *:first-child > * { 
    display:block; 
    padding-left: 0; 
}
.enqueteForm .LPForm .formIndex > *:first-child > *::before { 
    content: none; 
}
.enqueteForm .LPForm .formIndex.required > *:first-child > *::before { 
    content: none; 
}
.enqueteForm .LPForm .formIndex > *:not(:first-child) { 
    width: auto; 
    padding: 0; 
    border-left: none; 
    display: block;
    letter-spacing: normal; 
}
.enqueteForm .LPForm .formIndex > *:not(:first-child) > * ~ * { 
    margin-top: 0; 
}

.enqueteForm .leadText {
  color: var(--brand-color);
	font-size: 60rem;
	line-height: 1;
	font-weight: bold;
	padding-top: 30rem;
	padding-bottom: 40rem;
}
@media (max-width:980px) {      /* MOBILE */
    .enqueteForm .leadText {
        font-size: 33rem;
        padding-top: 30rem;
        padding-bottom: 30rem;
    }
}

.formBox.enquete {
	border: none;
}

.stepBox {
	background-color: #f4f4f4;
    padding-bottom: 30rem;
}
.stepBox + .stepBox {
    margin-top: 60rem;
}
.stepBox:last-of-type {
    padding-bottom: 60rem;
}
.stepBoxInner {
	max-width: 800rem;
	margin-inline: auto;
    position: relative;
}
.stepBoxInner::after {
    content: "";
    display: block;
    background: url(img/form/step1-graph.png) no-repeat;
    background-size: contain;
    width: 142rem;
    height: 142rem;
    position: absolute;
    top: -30rem;
    right: -24rem;
}
.stepBox.-step02 .stepBoxInner::after {
    background-image: url(img/form/step2-graph.png);
}
.stepBox.-step03 .stepBoxInner::after {
    background-image: url(img/form/step3-graph.png);
}
.stepBox.-step04 .stepBoxInner::after {
    background-image: url(img/form/step4-graph.png);
}
.stepBox.-step05 .stepBoxInner::after {
    background-image: url(img/form/step5-graph.png);
}

.stepHeading {
    color: var(--brand-color);
    font-size: 75rem;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    padding-top: 20rem;
    padding-bottom: 35rem;
}

.stepQuestion {
    position: relative;
}
.stepQuestion::before {
    content: "";
    position: absolute;
    background: url(img/form/fusa.png) no-repeat;
    background-size: contain;
    width: 208rem;
    height: 175rem;
    top: -75rem;
    left: 8rem;
}
.stepQuestion .questionText {
    font-size: 30rem;
    font-weight: bold;
    position: relative;
    display: inline-block;
    margin-left: 150rem;
    padding: 30rem;
    border-radius: 15rem;
    background-color: #ffffff;
    width: 615rem;
    text-align: center;
    outline: 1px solid var(--site-color);
}

/* .stepQuestion .questionText::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border-style: solid;
    border-width: 10rem 10rem 10rem 0;
    border-color: transparent #ffffff transparent transparent;
    translate: -100% -50%;
} */
.stepQuestion .questionText::before,
.stepQuestion .questionText::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: 0;
    width: 0;
    border-style: solid;
    border-width: 10rem 10rem 10rem 0;
}
.stepQuestion .questionText::before {
    transform: translate(-11rem, -50%);
    border-color: transparent var(--site-color) transparent transparent;
}
.stepQuestion .questionText::after {
    transform: translate(-10rem, -50%);
    border-color: transparent #ffffff transparent transparent;
}

.stepAnswer {
    margin-top: 62rem;
    width: 560rem;
    margin-inline: auto;
}

.stepAnswer .formIndex dt,
.stepAnswer .formIndex dd {
    font-size: 25rem;
    font-weight: bold;
}
.stepAnswer .formIndex dt {
    margin-bottom: 15rem;
}

.stepAnswer .formIndex input,
.stepAnswer .formIndex select {
    font-size: 25rem;
    font-weight: normal;
    height: 64rem;
    padding-left: 30rem;
    background-color: #fff;
}
.stepAnswer .formIndex input {
    border-color: #b2b2b2;
}
.stepAnswer .formIndex input[type="radio"] {
    height: 26rem;
    width: 26rem;
    padding-left: 0;
}
.stepAnswer .formIndex input[type=radio]:checked::before {
    width: 15rem;
    height: 15rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.stepAnswer .formIndex .select::after {
    width: 25rem;
    height: 25rem;
    right: 25rem;
    top: calc(50% - 18rem);
    border-color: var(--site-color);
}

/* step01 クリニック */
.stepBox.-step01 .stepAnswer {
    width: 800rem;
}
.stepBox.-step01 .stepAnswer .formIndex dd {
    width: 100%;
}
.stepBox.-step01 .stepAnswer .formIndex .areaSelecter {
    font-size: 25rem;
    font-weight: bold;
    gap: 16rem;
    margin-bottom: 28px;
}
.stepBox.-step01 .stepAnswer .formIndex .areaSelecter > li {
    width: calc((100% - 32rem) / 3);
    height: 95rem;
}
.stepBox.-step01 .stepAnswer .formIndex select {
    background-color: #fff;
}
.stepBox.-step01 .stepAnswer .formIndex select.-active:not(.validateErrorItem) {
    background-color: #fff;
}

/* step02 性別・年齢 */
.stepBox.-step02 .stepAnswer .formIndex {
    display: flex;
    justify-content: flex-start;
    gap: 50rem;
    row-gap: 20rem;
}
.stepBox.-step02 .stepAnswer .formIndex dt {
    margin-bottom: 0;
    display: flex;
}
.stepBox.-step02 .stepAnswer .formIndex + .formIndex {
    margin-top: 60rem;
}
.stepBox.-step02 .stepAnswer .formIndex input#ageInput {
    width: 220rem;
}
.stepBox.-step02 #additionalInfo {
    margin-right: -20rem;
}

/* step04 予約希望日 */
.stepBox.-step04 .stepAnswer .formIndex input,
.stepBox.-step04 .stepAnswer .formIndex select {
    background-color: var(--brand-color-3);
    border-color: var(--text-color);
}
.stepBox.-step04 .stepAnswer .formIndex input.-active,
.stepBox.-step04 .stepAnswer .formIndex select.-active {
    background-color: #ffffff;
}
.stepBox.-step04 .stepAnswer .formIndex input::placeholder {
    font-weight: normal;
}
.stepBox.-step04 .stepAnswer .formIndex select.-active:not(.validateErrorItem) {
    background-color: #fff;
}
.stepBox.-step04 .stepAnswer .formIndex label + label {
    margin-top: 20rem;
}
.stepBox.-step04 .stepAnswer .formIndex + .formIndex {
    margin-top: 30rem;
}
.cancelBox {
    font-size: 16rem;
}

/* step05 ご連絡先 */
.stepBox.-step05 .stepAnswer .formIndex + .formIndex {
    margin-top: 30rem;
}

@media (max-width:980px) {      /* MOBILE */
    .stepBox {
        padding-bottom: 15rem;
    }
    .stepBox + .stepBox {
        margin-top: 30rem;
    }
    .stepBox:last-of-type {
        padding-bottom: 30rem;
    }
    .stepBoxInner::after {
        width: 76rem;
        height: 76rem;
        top: -15rem;
        right: 15rem;
    }
    .stepHeading {
        font-size: 35rem;
        padding-top: 18rem;
        padding-bottom: 23rem;
    }
    .stepQuestion::before {
        width: 159rem;
        height: 119rem;
        top: -63rem;
        left: -8rem;
    }
    .stepQuestion .questionText {
        font-size: 16rem;
        margin-left: 80rem;
        padding: 15rem;
        width: calc(100% - 90rem);
    }
    .stepAnswer {
        margin-top: 34rem;
        width: 300rem;
        padding: 0 15rem;
    }
    .stepAnswer .formIndex dt,
    .stepAnswer .formIndex dd {
        font-size: 14rem;
    }
    .stepAnswer .formIndex dt {
        margin-bottom: 8rem;
    }
    .stepAnswer .formIndex input,
    .stepAnswer .formIndex select {
        font-size: 16rem;
        height: 42rem;
        padding-left: 15rem;
    }
    .stepAnswer .formIndex input[type="text"] {
        padding-right: 15rem;
    }
    .stepAnswer .formIndex select {
        padding-right: 40rem;
    }
    .stepAnswer .formIndex input[type="radio"] {
        height: 14rem;
        width: 14rem;
    }
    .stepAnswer .formIndex input[type=radio]:checked::before {
        width: 8rem;
        height: 8rem;
    }
    .stepAnswer .formIndex .select::after {
        width: 13rem;
        height: 13rem;
        right: 15rem;
        top: calc(50% - 9rem);
    }

    /* step01 クリニック */
    .stepBox.-step01 .stepAnswer {
        width: 100%;
    }
    .stepBox.-step01 .stepAnswer .formIndex .areaSelecter {
        font-size: 14rem;
        gap: 6rem;
        margin-bottom: 15rem;
    }
    .stepBox.-step01 .stepAnswer .formIndex .areaSelecter > li {
        width: calc((100% - 12rem) / 3);
        height: 50rem;
    }

    /* step02 性別・年齢 */
    .stepBox.-step02 .stepAnswer {
        width: 270rem;
    }
    .stepBox.-step02 .stepAnswer .formIndex {
        gap: 20rem;
    }
    .stepBox.-step02 .stepAnswer .formIndex + .formIndex {
        margin-top: 30rem;
    }
    .stepBox.-step02 .stepAnswer .formIndex input#ageInput {
        width: 118rem;
    }
    .stepBox.-step02 #additionalInfo {
        margin-right: -40rem;
        margin-left: -40rem;
    }

    /* step04 予約希望日 */
    .stepBox.-step04 .stepAnswer .formIndex label + label {
        margin-top: 6rem;
    }
    .stepBox.-step04 .stepAnswer .formIndex + .formIndex {
        margin-top: 20rem;
    }
    .cancelBox {
        font-size: 15rem;
    }

    /* step05 ご連絡先 */
    .stepBox.-step05 .stepAnswer .formIndex + .formIndex {
        margin-top: 20rem;
    }
    .stepBox.-step05 .stepAnswer {
        width: 340rem;
    }

}

/* ボタン */
.btnContainer {
    text-align: center;
}
.nextBtn {
    background-color: var(--brand-color);
    font-size: 30rem;
    font-weight: bold;
    color: #fff;
    display: inline-flex;
    height: 93rem;
    width: 524rem;
    border-radius: 9999px;
    position: relative;
    margin-top: 50rem;
    cursor: pointer;
}
.nextBtn::after {
    content: "";
    display: block;
    background: url(img/form/arrow.svg) no-repeat;
    background-size: contain;
    width: 47rem;
    height: 15rem;
    position: absolute;
    top: 50%;
    right: 20rem;
    transform: translateY(-50%);
}
.nextBtn.-disabled {
    background-color: #b2b2b2;
    pointer-events: none;
}
.submitBtn {
    background-color: var(--brand-color);
    font-size: 30rem;
    font-weight: bold;
    color: #fff;
    height: 93rem;
    width: 524rem;
    border-radius: 9999px;
    position: relative;
    margin-top: 50rem;
    cursor: pointer;
}
.submitBtn::after {
    content: "";
    display: block;
    background: url(img/form/arrow.svg) no-repeat;
    background-size: contain;
    width: 47rem;
    height: 15rem;
    position: absolute;
    top: 50%;
    right: 20rem;
    transform: translateY(-50%);
}

@media (max-width:980px) {      /* MOBILE */
    .nextBtn {
        width: 280rem;
        height: 50rem;
        font-size: 16rem;
        margin-top: 30rem;
    }
    .nextBtn::after {
        width: 25rem;
        height: 10rem;
        right: 10rem;
    }
    .submitBtn {
        width: 280rem;
        height: 50rem;
        font-size: 16rem;
        margin-top: 20rem;
    }
    .submitBtn::after {
        width: 25rem;
        height: 10rem;
        right: 10rem;
    }
}

/* プライバシーポリシー */
.formBox.enquete .privacyPolicy {
    margin: 0;
    margin-top: 75rem;
}
.formBox.enquete .privacyPolicy .border {
    height: 335rem;
    background-color: #fff;
    border-width: 1px;
    border-color: #db7c7c;
}
.formBox.enquete .privacyPolicy .index {
    font-size: 20rem;
    font-weight: bold;
    margin-bottom: 10rem;
}
.formBox.enquete .privacyPolicy .notice {
    font-size: 14rem;
}
.formBox.enquete .privacyPolicy dd {
    font-size: 14rem;
}
.formBox.enquete .privacyPolicy .privacyText {
    font-size: 16rem;
    margin-top: 10rem;
}
.formBox.enquete .privacyPolicy .modNotes > p {
    font-size: 14rem;
    text-align: center;
}
.formBox.enquete .privacyPolicy .modNotes > p::before {
    content: none;
}
.formBox.enquete .privacyPolicy .agree {
    font-size: 23rem;
    display: flex;
    margin-top: 25rem;
}

@media (max-width:980px) {      /* MOBILE */
    .formBox.enquete .privacyPolicy {
        margin-top: 20rem;
        padding: 0 15rem;
    }
    .formBox.enquete .privacyPolicy .border {
        height: 382rem;
    }
    .formBox.enquete .privacyPolicy .index {
        font-size: 12rem;
        margin-bottom: 0;
    }
    .formBox.enquete .privacyPolicy .notice,
    .formBox.enquete .privacyPolicy dd {
        font-size: 12rem;
    }
    .formBox.enquete .privacyPolicy .privacyText {
        font-size: 12rem;
        margin-top: 5rem;
    }
    .formBox.enquete .privacyPolicy .agree {
        font-size: 14rem;
        margin-top: 20rem;
    }
    
}


/*  202509 ヘッダー電話番号
--------------------------------------------------*/
header .banners {
    background-color: #fff;
}
.telWrapper {
    width: 268rem;
}
.times {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.times p {
    height: 23rem;
    display: flex;
    align-items: center;
    width: 100%;
    font-weight: bold;
}
.times p:nth-of-type(1) {
    font-size: 17rem;
    border-top: 1px solid #003e6f;
    color: #003e6f;
}
.times p:nth-of-type(2) {
    font-size: 14rem;
    background-color: #003e6f;
}
.dialNumberArea {
    display: flex;
    align-items: center;
    gap: 14rem;
    margin-top: 5rem;
}
.dialNumberArea p {
    font-size: 43rem;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: #003e6f;
}

@media (max-width:980px) {      /* MOBILE */
    header .banners {
        width: auto;
    }
    .telWrapper {
        width: 146rem;
    }
    .times p {
        height: 13rem;
    }
    .times p:nth-of-type(1) {
        font-size: 10rem;
    }
    .times p:nth-of-type(2) {
        font-size: 9rem;
    }
    .dialNumberArea {
        display: flex;
        align-items: center;
        gap: 10rem;
        margin-top: 5rem;
    }
    .dialNumberArea p {
        font-size: 22rem;
    }
}




/*! CSS Used from: https://dev.agaskin-woman.site/form/theme/content.css?v=200 ; media=print, screen */
@media print, screen{
  .privacyText > .privacyTextTop{
    display:block;padding-left:1em;font-size:15rem;line-height:1.6em;text-align:left;
    margin-top: 20rem;
  }
  .privacyText > .privacyTextTop::before{content:"\203b";position:absolute;left:0;}
  @media (max-width:980px){
  .cautionary_s{font-size:11rem;font-weight:500;color:var(--text-color);}
  .cautionary_s>p{display:block;padding-left:1em;text-align:left;}
  .cautionary_s>p::before{content:"※";position:absolute;left:0px;}
  }
}