@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

p {
  margin-bottom: 1em;
}
p a {
  text-decoration: underline;
}

a {
  color: #000;
  text-decoration: none;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

body {
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
}

header {
  border-top: solid 10px #1c3157;
}
@media screen and (max-width: 900px) {
  header.pc {
    display: none;
  }
}
header.pc .inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}
header.pc .inner .logo a img {
  width: 200px;
}
header.pc .inner nav {
  flex: 1;
  display: flex;
  justify-content: space-between;
}
header.pc .inner nav ul {
  display: flex;
  align-items: center;
}
header.pc .inner nav ul li a {
  line-height: 1;
  padding: 0.5em 0.8em;
  display: block;
}
header.pc .inner nav ul li a img {
  width: 2em;
}
header.sp {
  width: 100vw;
  height: 60px;
  display: none;
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 101;
  padding: 10px;
}
@media screen and (max-width: 900px) {
  header.sp {
    display: block;
  }
}
header.sp .logo {
  height: 100%;
  line-height: 0;
  text-align: center;
}
header.sp .logo img {
  height: 100%;
}

.drawer_btn {
  font-size: 45px;
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
}
.drawer_btn span,
.drawer_btn span:after,
.drawer_btn span:before {
  content: "";
  display: block;
  width: 0.6em;
  height: 3px;
  background: #000;
  position: absolute;
  transition: 0.3s;
}
.drawer_btn span:before {
  bottom: 0.2em;
  transition: 0.3s 0.3s, transform 0.3s;
}
.drawer_btn span:after {
  top: 0.2em;
  transition: 0.3s 0.3s, transform 0.3s;
}
.drawer_btn span.active {
  background: rgba(255, 255, 255, 0);
}
.drawer_btn span.active:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: 0.3s, transform 0.3s 0.3s;
}
.drawer_btn span.active:after {
  top: 0;
  transform: rotate(45deg);
  transition: 0.3s, transform 0.3s 0.3s;
}

.drawer_content {
  width: 100vw;
  height: 100vh;
  background: #fff;
  padding: 100px 20px;
  overflow: scroll;
  position: fixed;
  top: 0;
  right: -100%;
  opacity: 0;
  z-index: 100;
  transition: 0.3s;
}
.drawer_content.active {
  opacity: 1;
  top: 0;
  right: 0;
}
.drawer_content ul {
  text-align: center;
}
.drawer_content ul li a {
  font-size: 20px;
  display: block;
  padding: 0.5em;
}
.drawer_content ul li a img {
  width: 2em;
}

footer {
  padding-top: clamp(40px, 6vw, 100px);
}
footer .inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}
@media screen and (max-width: 900px) {
  footer .inner {
    display: none;
  }
}
footer .inner .logo a img {
  width: 200px;
}
footer .inner nav {
  flex: 1;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  footer .inner nav {
    flex-direction: column;
    align-items: center;
  }
}
footer .inner nav ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 700px) {
  footer .inner nav ul {
    flex-direction: column;
    align-items: center;
  }
}
footer .inner nav ul li a {
  line-height: 1;
  padding: 0.5em 0.8em;
  display: block;
}
footer .inner nav ul li a img {
  width: 2em;
}
footer .copyright {
  text-align: center;
  background: #1c3157;
  color: #fff;
  padding: 1em;
  font-size: 8px;
}
@media screen and (max-width: 900px) {
  footer .copyright {
    padding-bottom: 60px;
  }
}

.page .hr.sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .page .hr.pc {
    display: none;
  }
  .page .hr.sp {
    display: block;
  }
}
.page .page_mainvisual {
  margin-bottom: 60px;
}
.page .page_mainvisual img.sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .page .page_mainvisual img.pc {
    display: none;
  }
  .page .page_mainvisual img.sp {
    display: block;
  }
}
.page .heading {
  text-align: center;
  line-height: 1;
  padding: 40px 0;
}
.page .heading h2 {
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 0.3em;
  margin-bottom: 0.2em;
}
.page .heading h2 span {
  display: block;
  font-size: 12px;
  letter-spacing: 0;
}
.page .heading .txt {
  font-size: 12px;
  font-weight: 500;
}
.page .btn {
  text-align: center;
  padding: 40px 0;
}
.page .btn a {
  display: inline-block;
  background: #8e5e53;
  padding: 0.5em 2em;
  border-radius: 10em;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}
.page.top .mainvisual .mv_slide {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.page.top .mainvisual .mv_slide.pc {
  aspect-ratio: 1440/800;
}
@media screen and (max-width: 800px) {
  .page.top .mainvisual .mv_slide.pc {
    display: none;
  }
}
.page.top .mainvisual .mv_slide.sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .page.top .mainvisual .mv_slide.sp {
    aspect-ratio: 390/550;
    display: block;
  }
}
.page.top .mainvisual .mv_slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.page.top .mainvisual .mv_slide img.active {
  opacity: 1;
}
.page.top .about {
  background-image: url("../img/page/top/about/bg.png");
  background-size: cover;
}
.page.top .about .inner {
  display: flex;
  max-width: 1100px;
  padding: clamp(40px, 6vw, 100px) 20px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 900px) {
  .page.top .about .inner {
    flex-direction: column;
  }
}
.page.top .about .inner img {
  width: 300px;
}
@media screen and (max-width: 900px) {
  .page.top .about .inner img {
    width: 80%;
  }
}
.page.top .about .inner .txt {
  color: #fff;
}
.page.top .about .inner .txt h2 {
  margin-bottom: 0.5em;
}
.page.top .about .inner .txt h2 br {
  display: none;
}
@media screen and (max-width: 800px) {
  .page.top .about .inner .txt h2 br {
    display: block;
  }
}
.page.top .about .inner .txt p {
  line-height: 2;
}
.page.top .favon {
  padding: clamp(40px, 6vw, 100px) 0;
}
.page.top .favon .inner {
  position: relative;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
}
@media screen and (min-width: 1000px) {
  .page.top .favon .inner {
    display: flex;
    align-items: center;
    padding: 0;
    aspect-ratio: 720/200;
  }
}
.page.top .favon .inner img {
  width: 49%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.page.top .favon .inner img.sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .page.top .favon .inner img {
    width: 100%;
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
  }
  .page.top .favon .inner img.pc {
    display: none;
  }
  .page.top .favon .inner img.sp {
    display: block;
  }
}
.page.top .favon .inner .txt {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
}
@media screen and (max-width: 1000px) {
  .page.top .favon .inner .txt {
    padding-left: 0;
    margin-bottom: 40px;
  }
}
.page.top .favon .inner .txt .box {
  width: 49%;
}
@media screen and (max-width: 1000px) {
  .page.top .favon .inner .txt .box {
    width: 100%;
  }
}
.page.top .favon .inner .txt .box h3 {
  font-size: 20px;
}
.page.top .favon .inner .txt .box p {
  font-size: 14px;
}
.page.top .favon .inner .txt .box p a {
  font-weight: 700;
}
.page.top .favon .inner .txt .box ul {
  display: flex;
  gap: 1em;
  padding: 20px 0;
}
.page.top .favon .inner .txt .box ul li {
  font-size: 13px;
  flex: 1;
  text-align: center;
  border: solid 1px #000;
}
.page.top .favon .inner .txt .box .price {
  display: flex;
  gap: 40px;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
  padding: 10px 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .page.top .favon .inner .txt .box .price {
    flex-direction: column;
    gap: 10px;
  }
}
.page.top .favon .inner .txt .box .price h3 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.page.top .favon .inner .txt .box .price table {
  flex: 1;
  font-size: 14px;
}
.page.top .favon .inner .txt .box .price table tr th,
.page.top .favon .inner .txt .box .price table tr td {
  font-weight: 400;
}
.page.top .favon .inner .txt .box .price table tr th {
  text-align: left;
}
.page.top .favon .inner .txt .box .price table tr td {
  text-align: right;
}
.page.top .menu {
  padding: clamp(40px, 6vw, 100px) 20px;
}
.page.top .menu .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 800px) {
  .page.top .menu .inner {
    flex-direction: column;
  }
}
.page.top .menu .inner .item {
  flex: 1;
}
.page.top .menu .inner .item h3 {
  text-align: center;
  margin-bottom: 0.3em;
}
.page.top .menu .inner .item table {
  width: 100%;
  border-collapse: collapse;
}
.page.top .menu .inner .item table tr:first-child th,
.page.top .menu .inner .item table tr:first-child td {
  border-top: solid 1px #000;
}
.page.top .menu .inner .item table tr th,
.page.top .menu .inner .item table tr td {
  font-size: 14px;
  font-weight: 400;
  border-bottom: solid 1px #000;
  padding: 1.5em 0;
}
.page.top .menu .inner .item table tr th {
  text-align: left;
}
.page.top .menu .inner .item table tr td {
  text-align: right;
}
.page.top #information {
  padding: clamp(40px, 6vw, 100px) 20px;
}
.page.top #information .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 800px) {
  .page.top #information .inner {
    flex-direction: column;
  }
}
.page.top #information .inner img {
  width: 50%;
}
@media screen and (max-width: 800px) {
  .page.top #information .inner img {
    width: 100%;
  }
}
.page.top #information .inner ul {
  flex: 1;
}
.page.top #information .inner ul li {
  padding: 10px 0;
}
.page.top #information .inner ul li h3 {
  font-size: 14px;
}

.page.top #information .inner ul li h3 img {
  width: 2em;
}

.page.top #information .inner ul li p {
  font-size: 14px;
}


.page.menu .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 800px) {
  .page.menu .inner {
    flex-direction: column;
    gap: 0;
  }
}
.page.menu .inner .item {
  flex: 1;
}
.page.menu .inner .item .box {
  margin-bottom: 60px;
}
.page.menu .inner .item .box h2 {
  font-size: 20px;
}
.page.menu .inner .item .box h2 span {
  font-size: 13px;
  font-weight: 400;
}
.page.menu .inner .item .box table {
  width: 100%;
  border-collapse: collapse;
}
.page.menu .inner .item .box table tr:first-child th,
.page.menu .inner .item .box table tr:first-child td {
  border-top: 1px solid #ccc;
}
.page.menu .inner .item .box table tr th,
.page.menu .inner .item .box table tr td {
  padding: 5px;
  border-bottom: 1px solid #ccc;
  padding: 1em 0.5em;
  vertical-align: top;
  font-size: clamp(13px, 1.3vw, 14px);
  font-weight: 400;
  line-height: 1.8;
}
.page.menu .inner .item .box table tr th.txt_center,
.page.menu .inner .item .box table tr td.txt_center {
  text-align: center;
}
.page.menu .inner .item .box table tr th {
  text-align: left;
  width: 100%;
}
.page.menu .inner .item .box table tr td {
  width: -moz-fit-content;
  width: fit-content;
  text-align: right;
  white-space: nowrap;
}
.page.menu .inner .item .box table thead tr:first-child th,
.page.menu .inner .item .box table thead tr:first-child td {
  border-top: none;
}
.page.menu .inner .item .box table thead tr td {
  padding: 0.5em;
  font-size: 12px;
}
.page.menu .inner .item .box p {
  font-size: 13px;
}
.page.staff .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}
.page.staff .inner ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}
@media screen and (max-width: 800px) {
  .page.staff .inner ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 600px) {
  .page.staff .inner ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page.staff .inner ul li .head {
  display: flex;
  justify-content: space-between;
}
.page.staff .inner ul li .head h3 {
  font-size: 15px;
  line-height: 1.4;
}
.page.staff .inner ul li .head h3 span {
  font-size: 11px;
  display: block;
}
.page.staff .inner ul li .head .instagram img {
  width: 40px;
}
.page.staff .inner ul li p {
  font-size: 14px;
}
.page.recruit .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 20px;
}
.page.recruit .inner h3 {
  font-size: 20px;
  margin-bottom: 0.5em;
}
.page.recruit .inner table {
  width: 100%;
  border-collapse: collapse;
}
.page.recruit .inner table tr:first-child th,
.page.recruit .inner table tr:first-child td {
  border-top: solid 1px #c4c4c4 !important;
}
.page.recruit .inner table tr th,
.page.recruit .inner table tr td {
  font-size: 14px;
  text-align: left;
  border-bottom: solid 1px #c4c4c4 !important;
  padding: 1em 2em;
  font-weight: 400;
  background-color: #fff !important;
}
.page.recruit .inner table tr th {
  border-right: solid 1px #c4c4c4 !important;
  padding-left: 0;
}
.page.recruit .step {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px;
}
.page.recruit .step h2 {
  text-align: center;
  font-size: 30px;
  letter-spacing: 0.2em;
}
.page.recruit .step .tel {
  background: #1c3157;
  text-align: center;
  color: #fff;
  line-height: 1.4;
  padding: 20px;
  margin-bottom: 10px;
}
.page.recruit .step .tel h3 {
  font-weight: 500;
  font-size: 30px;
}
.page.recruit .step .tel h3 span {
  font-size: 15px;
}
@media screen and (max-width: 800px) {
  .page.recruit .step .tel h3 span {
    display: block;
    margin-bottom: 0.3em;
  }
}
.page.recruit .step .tel .time {
  font-size: 14px;
}
.page.recruit .step ol {
  display: flex;
  gap: 30px;
  margin-bottom: 10px;
}
.page.recruit .step ol li {
  flex: 1;
  font-size: 14px;
  background: #1c3157;
  text-align: center;
  color: #fff;
  position: relative;
  line-height: 1;
  padding: 1em 0.5em;
}
.page.recruit .step ol li::before {
  content: "▶";
  display: block;
  font-size: 1em;
  color: #1c3157;
  position: absolute;
  right: -20px;
  top: 1em;
  margin: auto;
}
.page.recruit .step ol li:last-child::before {
  display: none;
}
.page.recruit .step p {
  font-size: 14px;
  line-height: 1.4;
}

.sp_cta {
  width: 100%;
  height: 50px;
  position: fixed;
  z-index: 5;
  bottom: 0;
  left: 0;
  display: flex;
}
@media screen and (min-width: 800px) {
  .sp_cta {
    display: none;
  }
}
.sp_cta .item {
  height: 100%;
  flex: 1;
}
.sp_cta .item.navy a {
  background: #1c3157;
}
.sp_cta .item.green a {
  background: #22c755;
}
.sp_cta .item.white a {
  background: #fff;
}
.sp_cta .item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.sp_cta .item a img {
  max-height: 25px;
}

.esthetic .heading {
  padding: 40px 0;
}
.esthetic .heading h2 {
  text-align: center;
  font-size: 30px;
  line-height: 1.4;
}
.esthetic .heading h2 span {
  display: block;
  color: #83bbeb;
  font-size: 20px;
  letter-spacing: 0.3em;
  font-weight: 400;
}
.esthetic .mainvisual {
  line-height: 0;
}
.esthetic .mainvisual img.sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .esthetic .mainvisual img.pc {
    display: none;
  }
  .esthetic .mainvisual img.sp {
    display: block;
  }
}
.esthetic .cta {
  background-image: url("../img/page/esthetic/bg.png");
  background-size: cover;
  background-position: center;
  padding: clamp(30px, 6vw, 80px) 20px;
}
.esthetic .cta .inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .esthetic .cta .inner {
    flex-direction: column;
  }
}
.esthetic .cta .inner h2 {
  color: #fff;
  line-height: 1.4;
  font-size: 20px;
  font-weight: 400;
  margin-right: 40px;
  border-right: solid 1px #fff;
  padding: 20px 40px 20px 0;
}
@media screen and (max-width: 800px) {
  .esthetic .cta .inner h2 {
    border-right: none;
    margin-right: 0;
    padding: 20px;
    text-align: center;
  }
}
.esthetic .cta .inner h2 span {
  display: block;
}
.esthetic .cta .inner .txt {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .esthetic .cta .inner .txt {
    flex-direction: column;
    text-align: center;
  }
}
.esthetic .cta .inner .txt .tel {
  color: #fff;
  font-size: 25px;
  line-height: 1.4;
}
.esthetic .cta .inner .txt .tel span {
  font-size: 14px;
  display: block;
}
.esthetic .cta .inner .txt .hotpepper {
  color: #fff;
  text-align: center;
}
.esthetic .cta .inner .txt .hotpepper span {
  font-size: 18px;
  display: block;
}
.esthetic .cta .inner .txt .hotpepper a {
  display: inline-block;
  background: #9b005a;
  color: #fff;
  padding: 0.5em 4em;
  font-size: 14px;
  border-radius: 10em;
}
.esthetic .concept {
  background: #fff6db;
  padding: 40px 20px;
}
.esthetic .concept .inner {
  max-width: 900px;
  margin: 0 auto;
}
.esthetic .concept .inner h2 {
  text-align: center;
  font-size: 30px;
  letter-spacing: 0.3em;
  margin-bottom: 0.4em;
}
.esthetic .concept .inner h3 {
  text-align: center;
  font-size: 20px;
}
.esthetic .concept .inner p {
  font-size: 14px;
  margin-bottom: 20px;
}
.esthetic .introduction {
  padding: 100px 20px;
  background: #fffdf5;
}
.esthetic .introduction .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.esthetic .introduction .inner .item {
  display: flex;
  align-items: center;
  padding: 20px 0;
}
@media screen and (max-width: 800px) {
  .esthetic .introduction .inner .item {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (min-width: 800px) {
  .esthetic .introduction .inner .item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .esthetic .introduction .inner .item:nth-child(even) .txt h4,
  .esthetic .introduction .inner .item:nth-child(even) .txt h3,
  .esthetic .introduction .inner .item:nth-child(even) .txt p {
    padding-left: 0;
    padding-right: 30px;
  }
}
.esthetic .introduction .inner .item .photo {
  width: 400px;
}
@media screen and (max-width: 800px) {
  .esthetic .introduction .inner .item .photo {
    width: 100%;
  }
}
.esthetic .introduction .inner .item .txt {
  flex: 1;
}
.esthetic .introduction .inner .item .txt h4 {
  color: #7fb9eb;
  font-size: 16px;
}
@media screen and (min-width: 800px) {
  .esthetic .introduction .inner .item .txt h4 {
    padding-left: 30px;
  }
}
.esthetic .introduction .inner .item .txt h3 {
  font-size: clamp(18px, 2vw, 25px);
  border-bottom: solid 2px #000;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
}
@media screen and (min-width: 800px) {
  .esthetic .introduction .inner .item .txt h3 {
    padding-left: 30px;
  }
}
.esthetic .introduction .inner .item .txt p {
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 800px) {
  .esthetic .introduction .inner .item .txt p {
    padding-left: 30px;
  }
}
.esthetic .menu {
  padding: 100px 20px;
}
.esthetic .menu .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.esthetic .menu .inner .item {
  padding: 30px 0;
}
.esthetic .menu .inner .item h3 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 0.5em;
}
.esthetic .menu .inner .item p {
  text-align: center;
  font-size: 13px;
}
.esthetic .menu .inner .item table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.esthetic .menu .inner .item table tr{
  background-color: #fff !important;
}
@media screen and (max-width: 800px) {
  .esthetic .menu .inner .item table tr {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 100px;
    border-bottom: solid 1px #000 !important;
    padding: 10px 0;
    align-items: center;
  }
  .esthetic .menu .inner .item table tr:first-child {
    border-top: solid 1px #000 !important;
  }
}
.esthetic .menu .inner .item table tr:first-child th,
.esthetic .menu .inner .item table tr:first-child td {
  border-top: solid 1px #000 !important;
}
@media screen and (max-width: 800px) {
  .esthetic .menu .inner .item table tr:first-child th,
  .esthetic .menu .inner .item table tr:first-child td {
    border-top: none !important;
  }
}
.esthetic .menu .inner .item table tr th,
.esthetic .menu .inner .item table tr td {
  font-size: 14px;
  border-bottom: solid 1px #000 !important;
  font-weight: 500;
  padding: 1.5em 0;
}
@media screen and (max-width: 800px) {
  .esthetic .menu .inner .item table tr th,
  .esthetic .menu .inner .item table tr td {
    padding: 0.2em 0;
    border-bottom: none !important;
  }
}
.esthetic .menu .inner .item table tr th {
  text-align: left;
}
@media screen and (max-width: 800px) {
  .esthetic .menu .inner .item table tr th {
    grid-area: 1/1/3/2;
  }
}
.esthetic .menu .inner .item table tr td {
  text-align: right;
  width: 100px;
  grid-area: 1/2/2/3;
}
.esthetic .menu .inner .item table tr td:last-child {
  color: red;
}
@media screen and (max-width: 800px) {
  .esthetic .menu .inner .item table tr td:last-child {
    grid-area: 2/2/3/3;
  }
}
.esthetic .information {
  padding: 100px 20px;
}
.esthetic .information .inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 800px) {
  .esthetic .information .inner {
    flex-direction: column;
  }
}
.esthetic .information .inner img {
  width: 50%;
}
@media screen and (max-width: 800px) {
  .esthetic .information .inner img {
    width: 100%;
  }
}
.esthetic .information .inner ul {
  flex: 1;
}
.esthetic .information .inner ul li {
  padding: 10px 0;
}
.esthetic .information .inner ul li h3 {
  font-size: 14px;
}
.esthetic .information .inner ul li p {
  font-size: 14px;
}
.esthetic .faq {
  background: #fff6db;
  padding: clamp(40px, 6vw, 80px) 15px;
}
.esthetic .faq .heading h2 span {
  color: #000;
}
.esthetic .faq .accordion {
  max-width: 1000px;
  margin: 0 auto;
}
.esthetic .faq .accordion ul {
  list-style: none;
}
.esthetic .faq .accordion ul li {
  padding: 20px 5px;
  border-bottom: solid 1px #000;
}
.esthetic .faq .accordion ul li:first-child {
  border-top: solid 1px #000;
}
.esthetic .faq .accordion ul li .Q {
  padding-right: 1.5em;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  position: relative;
  cursor: pointer;
}
.esthetic .faq .accordion ul li .Q:after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-right: solid 2px #000;
  border-bottom: solid 2px #000;
  position: absolute;
  top: 35%;
  right: 0;
  transform: rotate(45deg);
  transition: 0.3s;
}
.esthetic .faq .accordion ul li .Q.open:after {
  top: 40%;
  transform: rotate(-135deg);
}
.esthetic .faq .accordion ul li .A {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  transition: 0.3s;
}
.esthetic .faq .accordion ul li .A.open .txt {
  opacity: 1;
  transform: translateY(0);
}
.esthetic .faq .accordion ul li .A .txt {
  padding-top: 15px;
  opacity: 0;
  transition: 0.5s 0.2s;
  transform: translateY(5px);
}
.esthetic .faq .accordion ul li .A .txt p {
  margin-bottom: 1em;
}
.esthetic .faq .accordion ul li .A .txt p:last-child {
  margin-bottom: 0;
}
.esthetic .footer .inner {
  background-image: url("../img/page/esthetic/bg.png");
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.esthetic .footer .inner img {
  width: 300px;
}
.esthetic .footer .copyright {
  text-align: center;
  background: #1c3157;
  color: #fff;
  padding: 1em;
  font-size: 8px;
}
@media screen and (max-width: 800px) {
  .esthetic .footer .copyright {
    padding-bottom: 60px;
  }
}

.footer_ctabtn {
  width: 140px;
  margin: auto;
  position: fixed;
  right: 20px;
  bottom: 20px;
}
@media screen and (max-width: 800px) {
  .footer_ctabtn {
    width: 80px;
    right: 10px;
    bottom: 10px;
    display: none;
  }
}
.footer_ctabtn a img {
  width: 140px;
}/*# sourceMappingURL=style.css.map */