@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Cormorant+SC:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

/*------------------------------
common
------------------------------*/
body {
  color: #401D01;
  font-family: "Noto Serif JP", serif;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

.inner {
  width: 330px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.inner.inner2 {
  width: 350px;
}

.inner.inner3 {
  width: 340px;
}

.main-container {
  width: 390px;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
}

.anchor {
  scroll-margin-top: 120px;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/*---------- テキスト ----------*/
p {
  font-size: 1.4rem;
  font-weight: 600;
}
p mark {
  color: #F63681;
  background: unset;
}

/*---------- ボタン ----------*/
.c_btn-more {
  display: inline-block;
  cursor: pointer;
  width: 100%;
  display: block;
  width: 220px;
  margin: 0 auto;
  border: 1px solid #F63681;
  background: #F63681;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.11em;
  color: #fff;
  font-family: "Cormorant SC", serif;
  text-align: center;
  box-shadow: 0 3px 16px rgba(246, 54, 129, 0.51);
  padding: 14px 0;
  position: relative;
}
.c_btn-more.is-open {
  opacity: 0;
}

.toggle-btn:has(.c_btn-more.is-open) {
  pointer-events: none;
}

.btn_icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
}

.btn_bars {
  width: 18px;
  aspect-ratio: 18/18;
  position: relative;
  transition: all 0.3s ease 0s;
}

.btn_bar1 {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn_bar2 {
  width: 2px;
  height: 18px;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*---------- アコーディオン ----------*/
.toggle-content {
  display: none;
}

.toggle-close-btn {
  margin-top: 80px;
}
.toggle-close-btn button {
  background: #fff;
  color: #F63681;
  box-shadow: 0 6px 3px rgba(246, 54, 129, 0.3);
}
.toggle-close-btn button .btn_bars {
  transform: rotate(135deg);
}
.toggle-close-btn button .btn_bar1,
.toggle-close-btn button .btn_bar2 {
  background: #F63681;
}

/*------------------------------
main
------------------------------*/
.mainWrap {
  position: relative;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
.mainWrap::before {
  content: "";
  position: fixed;
  background: url(../images/bg_pc.webp) no-repeat center center/cover;
  width: 100%;
  height: 100vh;
  height: 100svh;
  left: 0;
  top: 0;
  z-index: -1;
}
main {
  padding-top: 67px;
}
@media (min-width: 768px) {
  main {
    padding-top: 0;
  }
}

/*------------------------------
mv
------------------------------*/
.mv {
  position: relative;
}
.mv video {
  width: 100%;
}
.mv img {
  position: absolute;
  top: 81%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 64%;
}

/*------------------------------
header
------------------------------*/
header {
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  max-width: 100%;
  width: 390px;
  z-index: 300;
}
@media (min-width: 768px) {
  header {
    display: none;
  }
}

.header__inner {
  width: 100%;
  padding: 0 26px;
  padding: 0 min(26px, 6.6666666667vw);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  width: 66px;
}

.header-nav {
  display: flex;
  align-items: center;
}

.header-contact {
  display: flex;
  opacity: 0;
  transition: all 0.7s;
}
.header-contact li:first-child {
  margin-right: 12px;
  margin-right: min(12px, 3.0769230769vw);
}
.header-contact li:first-child a {
  background: #fff;
  color: #F63681;
}
.header-contact li:nth-child(2) a {
  background: #F63681;
  color: #fff;
}
.header-contact li a {
  display: inline-block;
  width: 92px;
  font-size: 1.1rem;
  letter-spacing: 0.09em;
  font-weight: 500;
  border: 1px solid #F63681;
  padding: 6px 0;
  text-align: center;
  box-shadow: 0 3px 9px rgba(246, 54, 129, 0.26);
}
.header-contact.active {
  opacity: 1;
}

.drawer-icon {
  z-index: 300;
  transition: transform 0.5s ease 0s;
  cursor: pointer;
  margin-left: 20px;
  margin-left: min(20px, 5.1282051282vw);
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-30deg);
  top: 8px;
  background: #fff;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  transform: rotate(30deg);
  top: 8px;
  background: #fff;
}
@media (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bars {
  width: 24px;
  height: 5px;
  display: block;
  position: relative;
  z-index: 400;
}

.drawer-icon__bar1,
.drawer-icon__bar2 {
  position: absolute;
  width: 24px;
  height: 1px;
  background: #B18839;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
  transition: transform 0.3s;
}

.drawer-icon__bar2 {
  top: 5px;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: min((100vw - 390px) / 2 * -1, 0px);
  background: #F63681;
  padding: 120px 55px;
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
  overflow-y: auto;
  overscroll-behavior: contain; /* scroll伝番防止 */
  width: 100vw;
  height: 100svh;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-inner {
  width: 390px;
  max-width: 100%;
}

.drawer-menu li:nth-child(n+2) {
  margin-top: 3.1em;
}
.drawer-menu li a {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.4em;
}

.drawer-sns {
  display: flex;
  margin-top: 40px;
}
.drawer-sns li {
  width: 35px;
}
.drawer-sns li:nth-child(n+2) {
  margin-left: 20px;
}

.drawer-content.drawer-content__pc {
  position: fixed;
  height: auto;
  width: auto;
  top: 200px;
  top: min(500px, 50svh);
  transform: translateY(-50%);
  left: calc(50% + 195px + 100vw - (390px + (100vw - 390px) / 2 + 20.7vw));
  padding: 0;
  right: unset;
  background: transparent;
  overflow: unset;
  opacity: 1;
  max-height: 100svh;
  overflow: scroll;
  scrollbar-width: none;
}
.drawer-content.drawer-content__pc::-webkit-scrollbar {
  display: none;
}
.drawer-content.drawer-content__pc li a {
  color: #F63681;
  font-size: min(1.8rem, 1.3020833333vw);
  font-weight: 900;
}
@media screen and (min-width: 1000px) {
  .drawer-content.drawer-content__pc {
    right: unset;
    left: calc(50% + 265px);
  }
}

/*------------------------------
message
------------------------------*/
.message {
  padding: 125px 0 150px;
}
.message h2 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.4em;
  color: #F63681;
  white-space: nowrap;
  position: relative;
  padding-top: 25px;
}
.message h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 1px;
  background: #F63681;
}
.message img {
  width: 224px;
  margin-top: 61px;
}

.message-content {
  margin-top: 68px;
}
.message-content p {
  line-height: 2;
  letter-spacing: 0.35em;
  padding-left: 3em;
}

/*------------------------------
interview
------------------------------*/
.interview {
  background: url(../images/Interview__background.jpg) no-repeat center center/cover;
}

.interview-content {
  padding: 117px 0 146px;
  position: relative;
}
.interview-content iframe {
  width: 100%;
  height: auto;
  max-width: 302px;
  margin: 0 auto;
  aspect-ratio: 302/184;
}

.interview-title {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-35%);
}
.interview-title span {
  display: inline-block;
  font-size: 3.2rem;
  line-height: normal;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-family: "Cormorant SC", serif;
  color: #B18839;
  position: relative;
  padding-bottom: 14px;
}
.interview-title span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 1px;
  background: #B18839;
}

/*------------------------------
service
------------------------------*/
.service {
  padding-top: 120px;
}

.service-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.08em;
  text-align: center;
  color: #B18839;
  font-family: "Cormorant SC", serif;
  position: relative;
  padding: 20px 0 164px;
}
.service-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 1px;
  background: #B18839;
}
.service-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/img_arrow.png) no-repeat center center/contain;
  width: 7px;
  aspect-ratio: 7/126;
}
.service-title small {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  line-height: 1.3;
  letter-spacing: unset;
  color: #401D01;
  margin-top: 9px;
}

.service-container {
  margin-top: 87px;
}

.service-item {
  padding-bottom: 106px;
}

.service-item_02 {
  padding: 75px 0 86px;
  background: rgba(247, 246, 241, 0.75);
}
.service-item_02 .service-item-img {
  width: 347px;
  margin-left: auto;
}

.service-item_03 {
  padding: 128px 0 124px;
}
.service-item_03 .service-item-img {
  width: 219px;
}

.service-item-title {
  font-size: 3rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  line-height: normal;
  letter-spacing: 0.04em;
  color: #B18839;
  margin-bottom: 35px;
}
.service-item-title img {
  width: 42px;
}
.service-item-title small {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: #401D01;
  margin: 17px 0 8px;
}

.service-item-img {
  width: 339px;
  max-width: 100%;
}

.service-item-content {
  margin-top: 53px;
}
.service-item-content p {
  margin-top: 33px;
  line-height: 1.8;
  letter-spacing: 0.012em;
  letter-spacing: 0.1em;
}
.service-item-content p.pat2 {
  line-height: 2;
  line-break: anywhere;
}

.service-item-content2__inner {
  padding: 0 14px;
}

.service-item-heading {
  font-size: min(1.9rem, 5.3125vw);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.2em;
  color: #F63681;
  position: relative;
  padding-bottom: 34px;
  white-space: nowrap;
}
.service-item-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 1px;
  background: #F63681;
}

/*------------------------------
merit
------------------------------*/
.merit {
  background: url(../images/Service01__merit__background.jpg) no-repeat center center/cover;
  padding: 91px 0 120px;
}

.merit-heading {
  font-size: min(2.2rem, 6.25vw);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.2em;
  color: #F63681;
  white-space: nowrap;
  margin-bottom: 48px;
}
.merit-heading small {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: #401D01;
  position: relative;
  padding-right: 44px;
  margin-bottom: 25px;
}
.merit-heading small::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #401D01;
  width: 34px;
  height: 1px;
}

.merit-heading_sm {
  font-size: 1.9rem;
}

.merit-img {
  width: 360px;
  max-width: 100%;
}

.merit-content {
  margin-top: 88px;
}
.merit-content em {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-align: center;
  color: #B18839;
}

.merit-items {
  padding: 42px 10px;
  background: #fff;
  border-right: 1px solid #B18839;
  border-left: 1px solid #B18839;
  margin-top: 28px;
  position: relative;
  border-radius: 28px;
}
.merit-items::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 320/24;
  background: url(../images/img_bar02.png) no-repeat center center/contain;
}
.merit-items::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: rotate(180deg);
  aspect-ratio: 320/24;
  background: url(../images/img_bar02.png) no-repeat center center/contain;
}
.merit-items li:nth-child(n+2) {
  margin-top: 30px;
}
.merit-items li h4 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: #F63681;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 1px dotted #F63681;
  padding: 0 14px 7px 14px;
}
.merit-items li h4 img {
  width: 75px;
  margin-right: 12px;
  vertical-align: text-bottom;
}
.merit-items li p {
  margin-top: 11px;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
.merit-items li p.pat2 {
  padding: 0 0.2em;
}

/*------------------------------
recommend
------------------------------*/
.recommend {
  padding: 84px 0 124px;
  background: url(../images/Service02__recommend__background.png) no-repeat center center/cover;
}

.recommend-title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.09em;
  text-align: center;
}
.recommend-title span {
  display: block;
  margin-top: 11px;
  font-size: 1.1rem;
  font-family: "Cormorant SC", serif;
  color: #B18839;
}

.recommend-content {
  margin-top: 48px;
}

.recommend-item {
  padding: 32px 12px;
  border: 1px solid #B18839;
  border-radius: 8px;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.05);
  background: #fff;
}
.recommend-item:nth-child(n+2) {
  margin-top: 32px;
}
.recommend-item h3 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.17em;
  text-align: center;
  color: #F63681;
  padding-bottom: 16px;
  position: relative;
}
.recommend-item h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #F63681;
  width: 37px;
  height: 1px;
}
.recommend-item img {
  display: block;
  height: 100px;
  width: unset;
  margin: 15px auto 0;
}

.recommend-list {
  margin-top: 6px;
  padding: 15px 5px;
  background: #FFF9F8;
}
.recommend-list li {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.57;
  letter-spacing: 0.14em;
  position: relative;
  padding-left: 17px;
}
.recommend-list li::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  background: url(../images/icon_mark01.png) no-repeat center center/contain;
  width: 13px;
  aspect-ratio: 13/13;
}
.recommend-list li:nth-child(n+2) {
  margin-top: 10px;
}

.recommend-btn {
  margin-top: 55px;
}

.service-item-notes {
  font-size: 1.2rem;
  line-height: 1.94em;
  letter-spacing: 0.11em;
  font-weight: 600;
}

/*------------------------------
flow
------------------------------*/
.flow {
  background: url(../images/sevice1__flow__background.png) no-repeat center center/cover;
  padding: 96px 0 106px;
}

.flow-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-align: center;
  position: relative;
  padding-top: 21px;
}
.flow-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #B18839;
  width: 40px;
  height: 1px;
}
.flow-title span {
  display: block;
  font-size: 4rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  color: #B18839;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.flow-items {
  margin-top: 90px;
  position: relative;
}
.flow-items::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/img_Line.png) repeat-y center center/contain;
  width: 1px;
  height: 100%;
}
.flow-items li {
  position: relative;
  padding: 35px 26px;
  background: #fff;
  z-index: 10;
}
.flow-items li:nth-child(n+2) {
  margin-top: 56px;
}
.flow-items li img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -70%);
  width: 110px;
}
.flow-items li h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.57;
  letter-spacing: 0.16em;
  color: #F63681;
  text-align: center;
  padding-bottom: 12px;
  position: relative;
  white-space: nowrap;
}
.flow-items li h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #F63681;
  width: 32px;
  height: 1px;
}
.flow-items li h3 span {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: #401D01;
  line-height: 1.57;
  margin-bottom: 10px;
}
.flow-items li p {
  margin-top: 21px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.07em;
  padding: 0 0.5em;
}
.flow-items li span {
  display: block;
  margin-top: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #F63681;
}

.flow-item-box {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.57;
  letter-spacing: 0.25em;
  font-family: "Noto Sans JP", sans-serif;
  padding: 1.1em 0.8em;
  border: 1px solid #FFE6E2;
  margin-top: 16px;
}
.flow-item-box mark {
  color: #F63681;
  background: unset;
}

/*------------------------------
voice
------------------------------*/
.voice {
  padding: 120px 0 143px;
}

.voice__inner {
  width: 370px;
}

.voice-title {
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.17em;
  position: relative;
  padding-left: 1em;
}
.voice-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/Voice_ttl.png) no-repeat center center/contain;
  width: 165px;
  aspect-ratio: 165/143;
  z-index: -1;
}
.voice-title span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 4.8rem;
  line-height: normal;
  letter-spacing: 0.08em;
  color: #B18839;
  font-family: "Cormorant SC", serif;
  position: relative;
  padding-right: 75px;
  margin-bottom: 12px;
}
.voice-title span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #B18839;
  width: 58px;
  height: 1px;
}

.voice-content {
  margin-top: 64px;
}

.price-list li:nth-child(2) {
  margin-top: 58px;
}

/*------------------------------
price
------------------------------*/
.price {
  background: url(../images/Price_background.png) no-repeat center center/cover;
  padding: 126px 0 80px;
  position: relative;
}

.price-title {
  position: absolute;
  top: -29px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.17em;
  text-align: center;
}
.price-title span {
  display: block;
  font-size: 4.8rem;
  line-height: normal;
  letter-spacing: 0.11em;
  font-family: "Cormorant SC", serif;
  color: #B18839;
  margin-bottom: 12px;
}

/*------------------------------
about
------------------------------*/
.about {
  position: relative;
  padding: 159px 0 80px;
  background: url(../images/About__background.png) no-repeat center center/cover;
}

.about-title {
  position: absolute;
  top: -29px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.17em;
  text-align: center;
}
.about-title span {
  display: block;
  font-size: 4.8rem;
  line-height: normal;
  letter-spacing: 0.11em;
  font-family: "Cormorant SC", serif;
  color: #B18839;
  margin-bottom: 12px;
}

.about-content {
  padding: 22px 35px 40px;
  background: #fff;
}
.about-content h3 {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.15em;
  color: #F63681;
  border-bottom: 1px solid #F63681;
}
.about-content h3 span {
  display: inline-block;
  line-height: 1.3;
  font-family: "Cormorant Garamond", serif;
  font-size: 4.9rem;
}

.about-list {
  margin-top: 38px;
}
.about-list li:nth-child(n+2) {
  margin-top: 25px;
}
.about-list li p {
  margin-top: 17px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.2em;
  text-align: center;
}
.about-list li p span {
  font-size: 1.2rem;
}

.about-item_num {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 1px dotted #F63681;
  padding: 0 65px 5px;
}
.about-item_num img {
  width: 65px;
}

.about-item-box[class] {
  background: #FEF7F6;
  padding: 20px 10px;
  margin-top: 20px;
}
.about-item-box[class] p {
  font-size: 1.2rem;
  letter-spacing: 0.21em;
  font-weight: bold;
  margin: 0;
  margin-bottom: 0.8em;
}
.about-item-box[class] p.pat2 {
  margin-top: 2.5em;
}
.about-item-box[class] small {
  font-size: 1rem;
  letter-spacing: 0.21em;
  font-weight: 600;
  display: block;
}
.about-item-box[class] mark {
  background: none;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  display: block;
  color: #F63681;
  line-height: 2.4;
  margin-bottom: -0.3em;
}
.about-item-box[class] em {
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  display: block;
}

.about-info {
  margin-top: 90px;
  padding: 50px 10px;
  background: #fff;
}
.about-info h3 {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  font-weight: bold;
  color: #B18839;
  text-align: center;
  margin-bottom: 1.7em;
}

.about-notes {
  border: 1px solid #B18839;
  margin-top: 45px;
  padding: 10px;
  background: #fff;
}
.about-notes p {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1em auto;
  line-height: 1.3;
  color: #B18839;
}
.about-notes mark {
  background: none;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  display: block;
  color: #F63681;
  line-height: 2.4;
  text-align: center;
}
.about-notes .about-notes-list {
  font-size: 1.2rem;
  background: #FBFAF7;
  padding: 10px 10px;
}
.about-notes .about-notes-list li {
  line-height: 2;
  letter-spacing: 0.07em;
  font-weight: 600;
  color: #401D01;
}

.about-infoLink {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #401D01;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 1em;
  text-indent: -1em;
  margin: 1.1em 4px 0em auto;
  line-height: 1.3;
}
.about-infoLink a {
  color: inherit;
}

/*------------------------------
course
------------------------------*/
.course {
  padding: 84px 0 115px;
}

.course-title {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-align: center;
  position: relative;
  padding-top: 21px;
}
.course-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/img_mark02.png) no-repeat center center/contain;
  width: 61px;
  aspect-ratio: 61/13;
}
.course-title span {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: normal;
  font-family: "Cormorant SC", serif;
}

.course-content {
  margin-top: -40px;
}

.course-item {
  padding: 90px 0 125px;
}
.course-item p {
  margin-top: 29px;
  line-height: 2.2;
  letter-spacing: 0.13em;
}

.course-item_02 {
  background: url(../images/course_bg.png) no-repeat center center/cover;
}

.course-item_03 .course-item-title img {
  width: 303px;
}

.course-item-title {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.17em;
  color: #F63681;
}
.course-item-title h3 {
  margin: 0.8em 0 1.5em;
}
.course-item-title span {
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.03em;
}
.course-item-title img {
  width: 104px;
}

.course-price {
  margin-top: 35px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.11em;
  padding-bottom: 22px;
  position: relative;
}
.course-price::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: #B18839;
}
.course-price span {
  display: block;
}
.course-price strong {
  font-size: 1.6rem;
}
.course-price small {
  font-size: 1.2rem;
  transform: translateX(-10px);
  display: inline-block;
}

.course-btn {
  margin-top: 78px;
}

.course-itemImg2 {
  width: 64%;
}

/*------------------------------
course-flow
------------------------------*/
.course-flow {
  background: url(../images/bg2.jpg) center center/cover;
  padding: 80px 0;
}
.course-flow h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-align: center;
  position: relative;
  padding-top: 24px;
}
.course-flow h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #401D01;
  width: 40px;
  height: 1px;
}
.course-flow.course-flow3 {
  padding-bottom: 120px;
}

.course-flow-list {
  margin-top: 82px;
  position: relative;
}
.course-flow-list::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/img_Line2.png) no-repeat center center/contain;
  width: 1px;
  height: 100%;
}
.course-flow-list li {
  padding: 25px 35px;
  padding: 25px 25px;
  background: #fff;
  position: relative;
}
.course-flow-list li:nth-child(n+2) {
  margin-top: 32px;
}
.course-flow-list li img {
  width: 82px;
  position: absolute;
  top: 0%;
  left: 5%;
  transform: translate(0%, -70%);
}
.course-flow-list li h3 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.57;
  letter-spacing: 0.16em;
  color: #B18839;
  position: relative;
  padding-bottom: 12px;
}
.course-flow-list li h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #B18839;
  width: 32px;
  height: 1px;
}
.course-flow-list li p {
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.57;
  letter-spacing: 0.2em;
}
.course-flow-list li em {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  border: 1px solid #FFE6E2;
  margin-top: 1.5em;
  display: inline-block;
  padding: 0.6em 0.9em;
  width: 100%;
}
.course-flow-list li em div {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.course-flow-list li mark {
  background: none;
  color: #F63681;
}
.course-flow-list li small {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}
.course-flow-list li .lh15 {
  line-height: 1.5;
}

/*------------------------------
event
------------------------------*/
.event {
  background: url(../images/event_background.jpg) no-repeat center center/cover;
}

.event-content {
  position: relative;
  padding: 189px 0 167px;
}
.event-content img {
  display: block;
  width: 174px;
  margin: 0 auto;
}

.event-title {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}
.event-title span {
  display: block;
  font-family: "Cormorant SC", serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.08em;
  color: #B18839;
}
.event-title span:nth-child(2) {
  margin-top: 30px;
  position: relative;
}
.event-title span:nth-child(2)::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 40px;
  background: #B18839;
  transform: rotate(-30deg);
  width: 44px;
  height: 1px;
}

/*------------------------------
profile
------------------------------*/
.profile {
  padding-top: 162px;
}

.profile-title {
  font-size: 3.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  font-family: "Cormorant SC", serif;
  color: #B18839;
  position: relative;
  padding-top: 1em;
}
.profile-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/img_mark03.png) no-repeat center center/contain;
  width: 61px;
  aspect-ratio: 61/13;
}

.profile-heading {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.15em;
  position: relative;
  padding-bottom: 150px;
  white-space: nowrap;
  margin-top: 65px;
}
.profile-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/img_arrow.png) no-repeat center center/contain;
  width: 7px;
  aspect-ratio: 7/115;
}
.profile-heading span {
  font-size: 2.3rem;
  color: #F63681;
}

.profile-content {
  padding: 36px 8px 45px;
  background: #FEF8F7;
  position: relative;
  margin-top: 54px;
}
.profile-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 310/4;
  background: url(../images/img_bar01.png) no-repeat center center/contain;
}
.profile-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 310/4;
  background: url(../images/img_bar01.png) no-repeat center center/contain;
}
.profile-content p {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
  letter-spacing: 0.14em;
  font-weight: 400;
}

/*------------------------------
salon
------------------------------*/
.salon {
  padding: 122px 0 86px;
}

.salon-info {
  padding: 34px 10px;
  background: #FCFAF4;
  border: 1px solid #B18839;
  position: relative;
}
.salon-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  background: url(../images/img_mark03.png) no-repeat center center/contain;
  width: 112px;
  aspect-ratio: 112/20;
}
.salon-info h2 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-align: center;
}
.salon-info p {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0.08em;
  margin-top: 2.2em;
  padding-left: 2em;
  text-indent: -1em;
  transform: translateX(-0.8em);
}

.salon-list {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}
.salon-list span {
  font-size: 1rem;
}
.salon-list dt, .salon-list dd {
  background: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
}
.salon-list dt:nth-of-type(n + 2), .salon-list dd:nth-of-type(n + 2) {
  margin-top: 8px;
}
.salon-list dt a, .salon-list dd a {
  color: #401D01;
}
.salon-list dt {
  width: 62px;
  border-right: 1px solid #401D01;
  padding-left: 8px;
}
.salon-list dd {
  width: calc(100% - 62px);
  padding-left: 0.8em;
  letter-spacing: 0.1em;
}

/*------------------------------
footer
------------------------------*/
footer {
  background: #F63681;
  position: relative;
  padding: 33px 0 26px;
}
footer::after {
  content: "";
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../images/footer_rose.svg) no-repeat center center/contain;
  width: 100%;
  aspect-ratio: 390/144;
}

.footer-logo {
  display: block;
  width: 113px;
  margin: 0 auto;
}

.footer-sns {
  display: flex;
  justify-content: center;
  margin-top: 17px;
}
.footer-sns li {
  width: 32px;
}
.footer-sns li a {
  width: 100%;
  height: 100%;
}
.footer-sns li:nth-child(n+2) {
  margin-left: 18px;
}

.copyright {
  margin-top: 17px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
}

.c_dec1 {
  position: relative;
}
.c_dec1::after {
  content: "";
  position: absolute;
  background: url(../images/dec1.png) no-repeat center center/100%;
  aspect-ratio: 168/36;
  width: 30%;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%);
}
.c_dec1.c_dec1__2::after {
  background: url(../images/dec1_2.png) no-repeat center center/100%;
}

.c_btn-moreBody {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn_icon {
  position: relative;
  transform: unset;
  right: unset;
  margin-left: 10px;
}