@charset "utf-8";

/* font playball */
@import url('https://fonts.googleapis.com/css2?family=Playball&display=swap');


/* constant value
---------------------------------------------- */
:root {
--text: #555;
--black: #222;
--skyBlue: #ABEAFF;
--skyBlue-light: #E7F9FF;
--ygreen: #C9FFB6;
--ygreen-light: #F1FFEC;
--black-light: #555;
--gray-dark: #767676;
--gray: #ccc;
--gray-light: #eee;
--blue-soft: 71 126 255;
--green-soft: 68 255 65;
--red-soft: 255 91 76;
--orange-soft: 255 203 1;
--purple-soft: 170 125 255;
--attention: #f30;

--spacing-sp  : 4.6875vw;

--header-height : 82px;
}

/* contentBody common
---------------------------------------------- */
html {
  scroll-behavior: smooth;
}

figure figcaption {
  line-height: 1.65;
  font-size: 1.6rem;
  color: var(--black-light);
}

@media screen and (max-width: 800px) {
  figure figcaption {
    line-height: 1.65;
    font-size: 1.4rem;
  }
}

body main .contentBody {
  font-size: 1.6rem;
  line-height: 2;
}

.contentBody h2 {
  margin: 120px 0 48px;
  padding-left: 1.75em;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient( to right, var(--skyBlue) 0%, rgba(255,255,255,0) 100%) 1;
  color: var(--text);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.contentBody h2::before {
  position: absolute;
  content: '';
  width: 1.65em;
  height: 1.65em;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/beauty/icon_h2.png) no-repeat center / contain;
}

#cboxContent #privacy h2::before {
  content: none;
}

@media screen and (max-width: 800px) {
  .contentBody h2 {
    font-size: clamp(2.2rem, 4.5vw, 2.8rem);
  }

  .contentBody h2::before {
    width: 1.45em;
    height: 1.45em;
  }
}

.contentBody h3 {
  margin: 56px 0 16px;
  padding: 0 0 0 1.25em;
  background-color: transparent;
  font-size: 2.4rem;
  font-weight: 400;
}

.contentBody h3::after {
  position: absolute;
  content: '';
  width: 1.2em;
  height: .85em;
  position: absolute;
  left: 0;
  top: .35em;
  border: 0;
  background-color: var(--skyBlue);
  mask: url(../images/beauty/icon_triangle.svg) no-repeat center / contain;
  -webkit-mask: url(../images/beauty/icon_triangle.svg) no-repeat center / contain;
  transform: unset;
}

@media screen and (max-width: 800px) {
  .contentBody h3 {
    font-size: clamp(2.0rem, 5vw, 2.2rem);
  }
}

h4 {
	margin: 40px 0 20px;
  font-size: 2.2rem;
}

.contentBody table,
.contentBody p,
.contentBody ol,
.contentBody ul,
.contentBody dl {
	margin: 0 0 1.125em;
	line-height: 2;
}

/* btn common 1 */
.beautyBtn_wrap {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin: 80px 0 56px;
}

#departments.cosmetology_outpatient #topicPath + .beautyBtn_wrap .toTopBeauty { /*美容トップページのみ非表示*/
  display: none;
}

a.beautyBtn {
  width: min(100%, 240px);
  min-height: 48px;
  padding: .45em 1.5em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75em;
  border: 1px solid var(--skyBlue-light);
  background: var(--skyBlue-light);
  color: var(--black);
  text-decoration: none;
  font-size: 2.0rem;
  font-weight: 500;
  position: relative;
  transition: background-color .3s ease;
}

.beautyBtn::after {
  content: '';
  width: 100%;
  height: 100%;
  border: 1px solid var(--skyBlue-light);
  position: absolute;
  left: 4px;
  top: 4px;
  z-index: -1;
}

.beautyBtn:hover {
  background: var(--white);
}

.beautyBtn_icon {
  width: 2.5em;
  flex-shrink: 0;
}

.beautyBtn_icon img {
  width: 100%;
  display: block;
  border: 0 !important;
}

@media screen and (max-width: 800px) {
  .beautyBtn_wrap {
    gap: 20px;
  }

  a.beautyBtn {
    gap: .125em;
    padding: .25em .5em;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
	}
}

@media screen and (max-width: 480px) {
  .beautyBtn_wrap {
    gap: 16px;
  }

  a.beautyBtn {
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
	}

  .beautyBtn_icon {
    width: 1.75em;
  }
}

/* btn common 2 問診票ページのボタン*/
.contentBody .formBtn_wrap {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin: 80px 0 56px;
  padding: 0;
  list-style: none;
}

a.formBtn {
  padding: .45em 2.75em .45em 1.5em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75em;
  border: 1px solid var(--skyBlue);
  background-color: #fff;
  color: var(--black);
  text-decoration: none;
  position: relative;
  transition: background-color .3s ease;
}

a.formBtn::after {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  right: .75em;
  top: 50%;
  transform: translateY(-50%);
  background-color: currentColor;
  -webkit-mask: url(../images/beauty/icon_linkbtn.svg) no-repeat center / contain;
  mask: url(../images/beauty/icon_linkbtn.svg) no-repeat center / contain;
}

a.formBtn:hover {
  background-color: var(--skyBlue-light);
}

a.formBtn .linkText {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
}

@media screen and (max-width: 800px) {
  .contentBody .formBtn_wrap {
    flex-direction: column;
    align-items: center;
  }

  a.formBtn {
    padding: .45em 2.5em .45em .75em;
    font-size: 1.6rem;
  }

  a.formBtn::after {
    width: 20px;
    height: 20px;
  }
}

/* Notice List （コメ印※）によるリスト　*/
.contentBody ul.noticeList {
  list-style: none;
  padding-left: 0;
}

.contentBody ul.noticeList li {
  position: relative;
  padding-left: 1.5em;
}

.contentBody ul.noticeList li::before {
  content: "※";
  position: absolute;
  left: 0;
}

/* Notice Wrap ビックリマークと赤枠 */
.noticeWrap {
  margin: 40px 0;
  padding: 20px 20px 10px;
  border: 1px solid var(--attention);
  border-radius: 8px;
}

.noticeWrap .noticeWrap_title {
  display: block;
  margin-bottom: .75em;
  padding-left: 2.0em;
  font-size: 2.0rem;
  font-weight: 500;
  color: var(--attention);
  position: relative;
}

.noticeWrap .noticeWrap_title::before {
  position: absolute;
  content: '';
  width: 1.5em;
  height: 1.5em;
  position: absolute;
  left: 0;
  top: .25em;
  background-color: currentColor;
  -webkit-mask: url(../images/beauty/icon_notice.svg) no-repeat center / contain;
  mask: url(../images/beauty/icon_notice.svg) no-repeat center / contain;
}

.contentBody ul.noticeList li:not(:last-child) {
  margin-bottom: .5em;
}

@media screen and (max-width: 480px) {
  .noticeWrap {
    padding: 20px 10px 10px;
  }
}

/* Table */
.contentBody table caption {
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 2.0rem;
  font-weight: 500;
}

.contentBody .price h3 + table caption,
.contentBody .price h2 + table caption {
  margin-top: 0;
}

.contentBody table thead th, .contentBody table th[scope^="col"] {
  background-color: var(--skyBlue-light);
}

.contentBody table th {
  background-color: #F2F9FC;
  vertical-align: middle;
}

.contentBody .price table td {
  text-align: right;
}

#departments.beauty-price .price_benefit {
  margin-top: 12px;
  padding: 12px 18px;
  border-left: 6px solid #7ebbd2;
  background: none;
}

#departments.beauty-price .price_benefit strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.8rem;
}

#departments.beauty-price .price_benefit p {
  margin: 0;
}


/* Andhor Index */
nav.pageIndex .pageIndex_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em 5.5em;
}
nav.pageIndex .pageIndex_list li a {
  display: block;
  padding-bottom: 1.15em;
  color: var(--text);
  font-size: 1.6rem;
  position: relative;
  transition: color .3s;
}

nav.pageIndex .pageIndex_list li a::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: .75em;
  height: .75em;
  position: absolute;
  left: 50%;
  bottom: 0;
  background-color: currentColor;
  -webkit-mask: url(../images/beauty/icon_triangle.svg) no-repeat center / contain;
  mask: url(../images/beauty/icon_triangle.svg) no-repeat center / contain;
  transform: translateX(-50%) rotate(90deg);
}

nav.pageIndex .pageIndex_list li a:hover {
  color: var(--gray-dark);
}

nav.pageIndex .pageIndex_selectWrap {
  max-width: 550px;
  margin: 1.5em auto 0;
}

nav.pageIndex .selectBox {
  position: relative;
  display: block;
}

nav.pageIndex .selectBox::after {
  content: "";
  position: absolute;
  right: 1.2em;
  top: 50%;
  width: .6em;
  height: .6em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
  color: var(--skyBlue);
}

nav.pageIndex .pageIndex_select {
  width: 100%;
  min-height: 48px;
  padding: .85em 3em .85em 1.2em;
  border: 1px solid var(--skyBlue);
  /* border: 1px solid color-mix(in srgb, var(--skyBlue) 100%, #fff); */
  border-radius: 999px;
  background-color: #fff;
  color: inherit;
  font-size: 1.6rem;
  line-height: 1.5;
  appearance: none;
  cursor: pointer;
}

nav.pageIndex .pageIndex_selectWrap {
    display: none;
}

@media screen and (max-width: 800px) {
  nav.pageIndex .pageIndex_list {
    display: none;
  }

  nav.pageIndex .pageIndex_selectWrap {
      display: block;
  }
}

/* Tab */
.tab_area .tab_list {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--gray-light);
}

.tab_area .tab_button {
  flex: 1;
  padding: 16px;
  border: 2px solid var(--skyBlue-light);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: var(--white);
  color: var(--text);
  font: inherit;
  font-size: 2.0rem;
  font-weight: 500;
  transition: background-color .3s;
  cursor: pointer;
}

.tab_area .tab_button#tab_2 {
  border-color: var(--ygreen-light);
}

.tab_area .tab_button.is_active {
  background-color: var(--skyBlue-light);
  color: var(--black);
}

.tab_area .tab_button#tab_2.is_active {
  background-color: var(--ygreen-light);
}

.tab_area .tab_button:hover {
  background: var(--skyBlue-light);
}

.tab_area .tab_button#tab_2:hover {
  background-color: var(--ygreen-light);
}

.tab_area .tab_panel {
  padding: 24px 0;
}

@media screen and (max-width: 800px) {
  .tab_area .tab_list {
    gap: 4px;
  }

  .tab_area .tab_button {
    padding: 12px 10px;
    font-size: clamp(1.6rem, 3vw, 1.8rem);
  }

  .tab_area .tab_panel {
    padding: 16px 0;
  }
}

/* col2Wrap */
.col2Wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.col2Wrap.wide_left {
  grid-template-columns: 2fr 1fr;
}

.alignFlexStart {
  align-items: flex-start !important;
}

.col2Wrap.wide_right {
  grid-template-columns: 1fr 2fr;
}

.col2Wrap.reverse { /* 左右反転 */
  direction: rtl;
}

.col2Wrap.reverse > * { /* 中身の文字方向は戻す */
  direction: ltr;
}

@media screen and (max-width: 800px) {
  .col2Wrap.wide_right,
  .col2Wrap.wide_left,
  .col2Wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .col2Wrap figure {
    order: -1;
  }

  .col2Wrap.reverse {
    direction: ltr;
  }
}

/* col3Wrap */
.col3Wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}

.col3Wrap figure figcaption {
  margin-top: .5em;
  line-height: 1.75;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .col3Wrap {
    gap: 16px;
  }

  .col3Wrap figure figcaption {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 600px) {
  .col3Wrap figure figcaption {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .col3Wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .col3Wrap > figure:first-child {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

/* 改行制限 */
.contentBody .noWrap {
  white-space: nowrap;
}

/* 美容外来ページは以下だけの措置。 */
@media screen and (max-width: 800px) {
  .contentBody .aligncenter {
    margin: 1em auto;
  }
}

/* 各ページの導入テキスト　Lead文 */
.contentBody .topLead {
  margin: 80px auto;
}

.contentBody .topLead p {
  font-size: 1.8rem;
  font-family: 'Noto Serif JP', YuMincho, 'Yu Mincho Medium', 'Yu Mincho', serif;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .contentBody .topLead p {
    font-size: 1.6rem;
    text-align: left;
  }

  .contentBody .topLead p br {
    display: none;
  }
}

/* 各ページの導入テキスト　Lead文 */
.contentBody .lead {
  width: 88%;
  margin: 160px auto;
  font-size: 1.8rem;
  position: relative;
}

.contentBody .lead::after,
.contentBody .lead::before {
  position: absolute;
  content: '';
  width: 320px;
  height: 24px;
  left: 50%;
  background: url(../images/beauty/img_separator1.png) no-repeat center / contain;
  opacity: .65;
}

.contentBody .lead::before {
  top: -80px;
  transform: translateX(-50%);
}

.contentBody .lead::after {
  bottom: -80px;
  transform: translateX(-50%) rotate(180deg);
}

@media screen and (max-width: 800px) {
  .contentBody .lead {
    width: 92%;
    margin: 120px auto;
    font-size: 1.6rem;
  }

  .contentBody .lead::after,
  .contentBody .lead::before {
    width: 100%;
    max-width: 56vw;
    height: 20px;
  }

  .contentBody .lead::before {
    top: -64px;
  }

  .contentBody .lead::after {
    bottom: -64px;
  }
}

@media screen and (max-width: 480px) {
  .contentBody .lead {
    width: 100%;
  }

}

/* 薄いグレーの囲み */
.contentBody .kakomiGray {
  padding: 16px 16px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

@media screen and (max-width: 800px) {
  .contentBody .kakomiGray {
    padding: 10px 10px 0;
  }
}

/* Ol li -施術の流れ（矢印付きスタイル）- */
.contentBody .ol_flow {
  list-style: none;
}

.contentBody .ol_flow li {
  position: relative;
  margin-bottom: 24px;
  padding-left: 3.75em;
}

.contentBody .ol_flow li::before {
  content: "";
  position: absolute;
  left: 1.5em;
  top: 2.4em;
  width: 2px;
  height: calc(100% - 12px);
  background: var(--text);
}

.contentBody .ol_flow li::after {
  content: "";
  position: absolute;
  left: calc(1.5em - 6px);
  top: calc(100% + 10px);
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(45deg);
}

.contentBody .ol_flow li .title {
  display: block;
  margin-left: -3.75em;
  font-size: 1.8rem;
  font-weight: 600;
}

.contentBody .ol_flow li .title small {
  display: inline-block;
  margin-left: .5em;
  padding: .15em .45em;
  border-radius: 4px;
  background: var(--gray-light);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  vertical-align: .1em;
}

.contentBody .ol_flow li .text {
  display: block;
  margin-top: 1.0em;
}

.contentBody .ol_flow li:last-child::before,
.contentBody .ol_flow li:last-child::after {
  content: none;
}

/* 美容外来ページ共通ヘッダー 予約フォームと問診票ページは非表示 */
#departments.consultation-form2 .pageIndex,
#departments.consultation-form1 .pageIndex,
#departments.cosmetic-questionnaires .pageIndex,
#departments.cosmetology-reservation-form .pageIndex,
#departments.consultation-form2 #topicPath + .beautyBtn_wrap,
#departments.consultation-form1 #topicPath + .beautyBtn_wrap,
#departments.cosmetic-questionnaires #topicPath + .beautyBtn_wrap,
#departments.cosmetology-reservation-form #topicPath + .beautyBtn_wrap {
  display: none;
}

/* 美容外来ページ共通フッター */
#beauty_footNav {
  margin-top: 160px;
  margin-bottom: 100px;
  padding-top: 80px;
  position: relative;
}

#beauty_footNav::before {
  position: absolute;
  content: '';
  width: 320px;
  height: 24px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/beauty/img_separator2.png) no-repeat center / contain;
  opacity: .65;
}


#beauty_footNav h2 {
  margin-bottom: 40px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--gray-dark);
  font-size: 1.8rem;
  font-weight: 500;
  font-family: 'Noto Serif JP', YuMincho, 'Yu Mincho Medium', 'Yu Mincho', serif;
  text-align: center;
}

#beauty_footNav .beautyBtn_wrap a.beautyBtn {
  padding: .2em .5em;
  font-size: 1.8rem;
  font-weight: 400;
}

#beauty_footNav .beautyBtn_wrap {
  margin-top: 0;
  margin-bottom: 40px;
}

#departments.cosmetology_outpatient #beauty_footNav .beautyBtn_wrap { /*美容トップページのみ非表示*/
  display: none;
}

#beauty_footNav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 80px;
  justify-content: center;
}

#beauty_footNav ul li {
}

#beauty_footNav ul li a {
  display: block;
  padding: 8px 0;
  color: var(--black);
  text-decoration: none;
  transition: all .3s;
}

#beauty_footNav ul li a span {
  padding-right: 1.25em;
  position: relative;
}

#beauty_footNav ul li a span::after {
  position: absolute;
  content: '';
  width: .75em;
  height: .75em;
  right: 0;
  top: calc(50% + 1px);;
  transform: translateY(-50%);
  background-color: currentColor;
  -webkit-mask: url(../images/beauty/icon_footLink.svg) no-repeat center / contain;
  mask: url(../images/beauty/icon_footLink.svg) no-repeat center / contain;
}

#beauty_footNav ul li a:hover {
  color: var(--gray-dark);
  text-decoration: underline;
}

#beauty_footNav ul li a:hover span::after {
  color: var(--gray-dark);
}

@media screen and (max-width: 800px) {
  #beauty_footNav {
    margin-top: 100px;
  }

  #beauty_footNav ul {
    gap: 10px 56px;
  }
}

@media screen and (max-width: 480px) {
  #beauty_footNav ul {
    flex-direction: column;
    gap: 8px 0;
    margin-left: 1em;
  }

  #beauty_footNav .beautyBtn_wrap a.beautyBtn {
    flex-direction: row;
    justify-content: center;
  }
}

/* Beauty TOP -/departments/diagnosis/cosmetology_outpatient/
---------------------------------------------- */
#topSchedule .topSchedule_week {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: start;
  gap: 40px;
}

#topSchedule table th,
#topSchedule table td {
  text-align: center;
  vertical-align: middle;
}

@media screen and (max-width: 800px) {
  #topSchedule .topSchedule_week {
    display: block;
  }

  #topSchedule table th,
  #topSchedule table td {
    padding: 5px;
  }
}

#topMenu ul.menu_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
}

#topMenu ul.menu_list a {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto 1fr;
  height: 100%;
  border: 2px solid var(--skyBlue-light);
  text-decoration: none;
  color: var(--text);
}

#topMenu ul.menu_list .image {
  display: block;
  margin: 0;
  grid-column: 1;
  grid-row: 1;
}

#topMenu ul.menu_list .image img {
  width: 100%;
  display: block;
  border: 0;
}

#topMenu ul.menu_list .menu_name {
  display: block;
  padding: 0 12px;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.75;
}

#topMenu ul.menu_list .menu_about {
  margin: 0;
  padding: 16px;
  grid-column: 1 / 3;
  grid-row: 2;
  align-self: auto;
}

#topMenu ul.menu_list .menu_about .detail_title {
  font-weight: 500;
  margin-bottom: 0;
}

#topMenu ul.menu_list .menu_about .detail {
  list-style: disc;
}

#topMenu ul.menu_list .menu_deco {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
}

#topMenu ul.menu_list .menu_deco img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  border: 0;
}

@media screen and (max-width: 800px) {
  #topMenu ul.menu_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  #topMenu ul.menu_list a {
    grid-template-columns: clamp(50px, 8vw, 64px) 1fr;
  }

  #topMenu ul.menu_list .menu_name {
    font-size: 1.6rem;
  }

  #topMenu ul.menu_list .menu_deco {
    grid-column: span 1;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  #topMenu ul.menu_list {
    grid-template-columns: 1fr;
  }

  #topMenu ul.menu_list a {
    grid-template-columns: 54px 1fr;
  }

  #topMenu ul.menu_list .menu_about {
    padding: 8px 12px 10px;
  }

  #topMenu ul.menu_list .menu_deco {
    display: none;
  }
}

#topMenu ul.concern_list {
  column-count: 3;
  column-gap: 20px;
  list-style: none;
  padding: 0;
}

#topMenu ul.concern_list > li {
  break-inside: avoid;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid var(--ygreen);
}

#topMenu ul.concern_list li .concern_name {
  display: block;
  margin-bottom: .5em;
  padding-left: 1.75em;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.75;
  position: relative;
}

#topMenu ul.concern_list li .concern_name::before {
  position: absolute;
  content: '';
  width: 1.35em;
  height: 1.5em;
  position: absolute;
  left: 0;
  top: .2em;
  background: url(../images/beauty/icon_check.svg) no-repeat center / contain;
}

#topMenu ul.concern_list ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

#topMenu ul.concern_list ul li {
  margin-bottom: .25em;
  padding-left: 1.2em;
  position: relative;
}

#topMenu ul.concern_list ul li::before {
  position: absolute;
  content: '';
  width: .75em;
  height: .75em;
  position: absolute;
  left: 0;
  top: .75em;
  background: url(../images/beauty/icon_triangle.svg) no-repeat center / contain;
}

@media screen and (max-width: 800px) {
  #topMenu ul.concern_list {
    column-count: 2;
    column-gap: 16px;
  }

  #topMenu ul.concern_list > li {
    margin-bottom: 16px;
  }

  #topMenu ul.concern_list li .concern_name {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 480px) {
  #topMenu ul.concern_list {
    column-count: 1;
  }
}


#topSteps h3 {
  margin: 64px auto 32px;
  padding: 0;
  text-align: center;
}

#topSteps h3::after {
  content: none;
}

#topSteps .stepList {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 32px;
  padding: 0;
  list-style: none;
}

#topSteps .stepList li {
  border: 1px solid var(--skyBlue);
  border-radius: 8px;
  position: relative;
}

#topSteps .stepList li::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2.75em;
  width: 4em;
  height: 1.125em;
  background: url(../images/beauty/icon_arrowstep.svg) no-repeat center / contain;
  z-index: 1;
}

#topSteps .stepList li:last-child::before {
  content: none;
}

#topSteps .stepList .stepNo {
  display: block;
  padding: 4px 0;
  font-family: "Playball", "Segoe Script", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 3.2rem;
  color: var(--gray-dark);
  text-align: center;
}

#topSteps .stepList .stepTitle {
  display: block;
  padding: 12px 0;
  background-color: var(--skyBlue-light);
  font-size: 2.0rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.75;
}

#topSteps .stepList .stepTitle span {
  padding: 0 10px;
}

#topSteps .stepImage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  margin: 16px auto;
}

#topSteps .stepImage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 0 !important;
}

#topSteps .stepList .stepText {
  display: block;
  padding: 0 14px 16px;
}

#topSteps .stepList.stepTel li {
  border-color: var(--ygreen);
}

#topSteps .stepList.stepTel .stepTitle {
  background-color: var(--ygreen-light);
}

#topSteps .scrollHint {
  display: none;
}

@media screen and (max-width: 800px) {
  #topSteps .stepScrollWrap {
   position: relative;
 }

  #topSteps .stepScroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }

  #topSteps .stepScrollWrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 6rem;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(255,255,255,0),
      rgba(255,255,255,1)
    );
    pointer-events: none;
    z-index: 2;
  }

  #topSteps .stepList {
    grid-template-columns: unset;
    grid-auto-flow: column;
    grid-auto-columns: 185px;
    gap: 16px;
    width: max-content;
    min-width: 100%;
    margin-right: 40px;
  }

  #topSteps .scrollHint {
    display: block;
    margin-bottom: .5em;
    font-size: 1.6rem;
    color: var(--text);
  }
}

#topDoctor .beauty_signature {
  text-align: right;
}

#topDoctor .beauty_signature p {
  display: inline-block;
}

#topAccess address {
  display: block;
  margin-bottom: 1.125em;
  font-style: normal;
}


/* カードタイプ */
.contentBody ul.cardWrap {
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  list-style: none;
}

.contentBody ul.cardWrap > li {
  grid-column: span 2;
  height: 100%;
}

/* カードが2枚の場合 */
.contentBody ul.cardWrap.card2 {
  grid-template-columns: 1fr 1fr;
}

.contentBody ul.cardWrap.card2 > li {
  grid-column: span 1;
}

/* 5枚の場合 */
/* .contentBody ul.cardWrap:has(> li:nth-child(5):last-child) {
  grid-template-rows: repeat(2, 1fr);
}

.contentBody ul.cardWrap > li:first-child:nth-last-child(5) {
  grid-column: 2 / span 2;
}

.contentBody ul.cardWrap > li:first-child:nth-last-child(5) + li {
  grid-column: 4 / span 2;
}

.contentBody ul.cardWrap > li:first-child:nth-last-child(5) + li + li {
  grid-column: 1 / span 2;
} */


.contentBody ul.cardWrap li a {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px 16px 32px 16px ;
  border: 1px solid rgb(var(--blue-soft));
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  box-sizing: border-box;
  text-shadow:
   2px  0   0 #fff,
  -2px  0   0 #fff,
   0    2px 0 #fff,
   0   -2px 0 #fff,
   2px  2px 0 #fff,
  -2px  2px 0 #fff,
   2px -2px 0 #fff,
  -2px -2px 0 #fff,
   0    0   10px #fff,
   0    0   20px rgba(255,255,255,.95);
  position: relative;
  transition: background-color .3s;
}

.contentBody ul.cardWrap li a::after {
  position: absolute;
  content: '';
  width: 100px;
  height: 140px;
  bottom: 5px;
  right: .75em;
  background: url(../images/beauty/img_lady3.jpg) no-repeat center / contain;
  z-index: -1;
  opacity: .75;
}

.contentBody ul.cardWrap li a .purpose {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  text-align: center;
}

.contentBody ul.cardWrap li a .machine{
  display: inline-flex;
  align-items: center;
  gap: .5em;
  margin-bottom: 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gray-dark);
}

.contentBody ul.cardWrap li a .machine::before{
  content:"";
  width:.45em;
  height:.45em;
  background:currentColor;
  transform:rotate(45deg);
}

.contentBody ul.cardWrap li a .name {
  display: block;
  margin-bottom: 16px;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}

.contentBody ul.cardWrap li a .text {
  display: block;
  margin-bottom: 48px;
}

.contentBody ul.cardWrap li a .toDetail {
  display: inline-block;
  margin-top: auto;
  margin-right: auto;
  padding: 8px 1.75em 8px 1.25em;
  border-bottom: 1px dotted rgb(var(--blue-soft));
  position: relative;
  letter-spacing: .2em;
  transition: all .3s;
}

.contentBody ul.cardWrap li a .toDetail::after {
  position: absolute;
  content: '';
  width: 12px;
  height: 12px;
  top: calc(50% + 1px);
  right: .75em;
  transform: translateY(-50%);
  background-color: currentColor;
  -webkit-mask: url(../images/beauty/icon_triangle.svg) no-repeat center / contain;
  mask: url(../images/beauty/icon_triangle.svg) no-repeat center / contain;
}

.contentBody ul.cardWrap li a:hover {
  background-color: rgb(var(--blue-soft) / .025);
}

.contentBody ul.cardWrap li a:hover .toDetail {
  border-style: solid;
  color: var(--black);
}

.contentBody ul.cardWrap li:nth-child(2) a .toDetail,
.contentBody ul.cardWrap li:nth-child(2) a {
  border-color: rgb(var(--green-soft));
}

.contentBody ul.cardWrap li:nth-child(2) a:hover {
  background-color: rgb(var(--green-soft) / .015);
}

.contentBody ul.cardWrap li:nth-child(3) a .toDetail,
.contentBody ul.cardWrap li:nth-child(3) a {
  border-color: rgb(var(--red-soft));
}

.contentBody ul.cardWrap li:nth-child(3) a:hover {
  background-color: rgb(var(--red-soft) / .01);
}

.contentBody ul.cardWrap li:nth-child(4) a .toDetail,
.contentBody ul.cardWrap li:nth-child(4) a {
  border-color: rgb(var(--orange-soft));
}

.contentBody ul.cardWrap li:nth-child(4) a:hover {
  background-color: rgb(var(--orange-soft) / .015);
}

.contentBody ul.cardWrap li:nth-child(5) a .toDetail,
.contentBody ul.cardWrap li:nth-child(5) a {
  border-color: rgb(var(--purple-soft));
}

.contentBody ul.cardWrap li:nth-child(5) a:hover {
  background-color: rgb(var(--purple-soft) / .015);
}

.contentBody ul.cardWrap.cardLaser li a[href="#tightening"]::after,
.contentBody ul.cardWrap.cardRf li a[href="#rf_sublime"]::after,
.contentBody ul.cardWrap li a[href="#massage_peeling"]::after {
  background-image: url(../images/beauty/img_lady4.jpg);
}

.contentBody ul.cardWrap.cardLaser li a[href="#facial"]::after,
.contentBody ul.cardWrap li a[href="#reverse_peeling"]::after {
  background-image: url(../images/beauty/img_lady2.jpg);
}

.contentBody ul.cardWrap.cardLaser li a[href="#rubyfractional"]::after {
  background-image: url(../images/beauty/img_lady5.jpg);
}

/* .contentBody ul.cardWrap.cardLaser li a[href="#spot"]::after {
  background-image: url(../images/beauty/img_lady7.jpg);
} */

.contentBody ul.cardWrap.cardLaser li a[href="#shower"]::after {
  background-image: url(../images/beauty/img_lady6.jpg);
}

@media screen and (max-width: 800px) {
  .contentBody ul.cardWrap {
    grid-template-columns: 1fr !important;
  }

  .contentBody ul.cardWrap > li {
    grid-column: auto !important;
  }

  .contentBody ul.cardWrap li a .name br {
    display: none;
  }

  .contentBody ul.cardWrap li a .text {
    margin-bottom: 24px;
  }

  .contentBody ul.cardWrap li a::after {
    width: 80px;
    height: 120px;
  }
}

@media screen and (max-width: 480px) {
  .contentBody ul.cardWrap.card2 {
    grid-template-columns: 1fr;
  }
}

/*  共通　器械画像 */
.contentBody figure.phogoMachine img {
  margin: 2em auto 1em;
}

.contentBody figure.phogoMachine figcaption {
  text-align: center;
}

/* レーザーフェイストリートメント */
#departments.laserfacialtreatment .pickupBox h4 {
  display: flex;
  align-items: center;
  gap: .5em;
  padding-left: 0;
  font-weight: 500;
}

#departments.laserfacialtreatment .pickupBox h4::after {
  content: none;
}

#departments.laserfacialtreatment .pickupBox h4 {
  padding-left: .75em;
  font-size: 1.8rem;
  font-weight: 600;
  border-left: 6px solid var(--skyBlue);
}

#departments.laserfacialtreatment .pickupBox .pointList li:not(:last-child) {
  margin-bottom: .5em;
}

#departments.laserfacialtreatment .pickupBox .pointList li strong {
  font-size: 1.8rem;
}

#departments.laserfacialtreatment .ruby_benefit {
  margin-top: 60px;
}

#departments.laserfacialtreatment .ruby_benefit > h3 + p {
  margin-bottom: 30px;
}

#departments.laserfacialtreatment .ruby_benefit_contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

#departments.laserfacialtreatment .ruby_benefit_contents > div {
  position: relative;
  padding: 20px;
  border: 1px solid var(--skyBlue);
  background: #fff;
  overflow: visible;
}

#departments.laserfacialtreatment .ruby_benefit_contents > div:first-child::after {
  content: "＋";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -42px;
  width: 34px;
  transform: translateY(-50%);
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: var(--skyBlue);
}

#departments.laserfacialtreatment .ruby_benefit_contents h4 {
  margin: 0 0 15px;
  font-size: 1.8rem;
}

#departments.laserfacialtreatment .ruby_benefit_contents > div > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
}

#departments.laserfacialtreatment .ruby_benefit_contents figure {
  margin: 0;
}

#departments.laserfacialtreatment .ruby_benefit_contents figure img {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: cover;
}

#departments.laserfacialtreatment .ruby_benefit_contents figure + p {
  margin: 0;
}

#departments.laserfacialtreatment .ruby_benefit_contents + p {
  margin-top: 12px;
  font-size: 1.4rem;
}

@media screen and (max-width: 800px) {
  #departments.laserfacialtreatment .ruby_benefit_contents {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  #departments.laserfacialtreatment .ruby_benefit_contents > div {
    padding: 15px;
  }

  #departments.laserfacialtreatment .ruby_benefit_contents > div:first-child::after {
    top: auto;
    right: auto;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
  }

  #departments.laserfacialtreatment .ruby_benefit_contents > div > div {
    grid-template-columns: 90px 1fr;
    gap: 15px;
  }

  #departments.laserfacialtreatment .ruby_benefit_contents figure img {
    width: 90px;
    height: 90px;
  }
}



/* ドクターズコスメ */
#departments.doctorscosmetics .product_block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 80px;
  padding-top: 100px;
  font-family: 'Noto Serif JP', YuMincho, 'Yu Mincho Medium', 'Yu Mincho', serif;
  position: relative;
}

#departments.doctorscosmetics .product_block::before {
  position: absolute;
  content: '';
  width: 240px;
  height: 24px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/beauty/img_separator.png) no-repeat center / contain;
}

#departments.doctorscosmetics .product_block.reverse {
  flex-direction: row-reverse;
}

#departments.doctorscosmetics .product_image,
#departments.doctorscosmetics .product_text {
  width: 50%;
}

#departments.doctorscosmetics .product_image img {
  width: 100%;
  height: auto;
  display: block;
}

#departments.doctorscosmetics .product_text h3 {
  margin: 0 0 28px;
  padding: 0;
  font-size: 2.2rem;
  font-weight: 600;
}

#departments.doctorscosmetics .product_text h3::after {
  content: none;
}

#departments.doctorscosmetics .product_text h3 .en {
  padding-left: .75em;
  font-size: 2.0rem;
  font-weight: 500;
}

#departments.doctorscosmetics .product_text h3 .maker {
  display:block;
  margin-top: .4em;
  font-size: 1.6rem;
  color: #666;
  font-weight: 400;
  letter-spacing: .05em;
}

#departments.doctorscosmetics .product_text h3 .circleWrap {
  display: block;
  width: fit-content;
  margin: 8px 0 0;
  padding: 2px 8px;
  border: 1px solid currentColor;
  border-radius: 20px;
  font-size: 1.4rem;
  font-weight: 400;
}

#departments.doctorscosmetics .product_text p {
  margin: 0 0 20px;
}

@media screen and (max-width: 800px) {
  #departments.doctorscosmetics .product_block,
  #departments.doctorscosmetics .product_block.reverse {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
  }

  #departments.doctorscosmetics .product_image,
  #departments.doctorscosmetics .product_text {
    width: 100%;
  }

  #departments.doctorscosmetics .product_text {
    display: contents;
  }

  #departments.doctorscosmetics .product_text h3 {
    order: 1;
    font-size: 2.0rem;
    margin-bottom: 0;
    text-align: center;
  }

  #departments.doctorscosmetics .product_text h3 span {
    font-size: 1.6rem;
  }

  #departments.doctorscosmetics .product_image {
    order: 2;
  }

  #departments.doctorscosmetics .product_text p {
    order: 3;
  }

}


/* Page Top
---------------------------------------------- */
#scrollTop a {
  border: 1px solid var(--skyBlue-light);
  background-color: var(--skyBlue-light);
  color: #444;
  transition: color .3s, border-color .3s;
}

#scrollTop a::before {
  content: none;
}

#scrollTop a::after {
  content: '\f077';
  font-size: 1.6rem;
}

#scrollTop a:hover {
  border-color: var(--skyBlue);
  color: var(--black);
}

@media screen and (max-width: 720px) {
  #scrollTop a {
    width: 40px;
    height: 40px;
  }

  #scrollTop a::after {
    font-size: 2.0rem;
    transform: translateY(calc(-50% - 2px));
  }
}


/* Animation
---------------------------------------------- */
/* fot Fade in */
.fadein {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .8s ease, transform .8s ease;
}

.fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* fot Stagger */
.js_stagger_item {
  opacity: 0;
  transform: translateX(-50px) scale(.96);
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.22, 1, .36, 1);
}

.js_stagger_item.is_show {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* .js_stagger_item {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity .8s ease,
    transform .8s ease;
}

.js_stagger_item.is_show {
  opacity: 1;
  transform: translateY(0);
} */
