@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho&display=swap");
* {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  vertical-align: baseline;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

body {
  line-height: 1;
  font-family: "Zen Old Mincho", serif;
  color: #333333;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

.p-inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-inner {
    padding: 20px;
  }
}
@media (max-width: 1439px) {
  .p-inner {
    padding: 20px;
  }
}

.clear::after {
  content: "";
  clear: both;
  display: block;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #3E3E3E;
}

html {
  scroll-behavior: smooth;
}

.section-title__body {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.section-title {
  font-size: 64px;
  line-height: 1.5;
  z-index: 1;
  position: -webkit-sticky;
  position: sticky;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 48px;
  }
}
@media (max-width: 1439px) {
  .section-title {
    font-size: 40px;
  }
}
.section-title .section-subtitle {
  font-weight: 900;
}

.section-subtitle {
  font-size: 16px;
  text-align: center;
}

.c-btn {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  padding: 1em;
  cursor: pointer;
  color: #ffffff;
  background: #520D64;
  border: 1px solid #520D64;
  overflow: hidden;
  fill: #ffffff;
}
.c-btn::after {
  position: absolute;
  display: block;
  content: "";
  margin-bottom: -100%;
  margin-left: -120%;
  padding-top: 240%;
  padding-left: 240%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 1s;
  opacity: 0;
}
.c-btn:hover {
  color: #ffffff;
  border-color: #A05CB1;
  background-color: #A05CB1;
  transition: 0.5s;
}
.c-btn:active::after {
  margin-top: 0;
  margin-left: 0;
  padding-top: 0;
  padding-left: 0;
  transition: 0s;
  opacity: 1;
}
.c-btn:focus {
  color: #ffffff;
  border: 1px solid #A05CB1;
}
.c-btn svg {
  width: 24px;
  margin-right: 20px;
}

.c-btn__white {
  background: #fff;
  border: 1px solid #520D64;
  color: #520D64;
  fill: #520D64;
}
.c-btn__white:hover {
  fill: #fff;
}

.sp-br {
  display: none;
}
@media (max-width: 767px) {
  .sp-br {
    display: block;
  }
}

header {
  position: fixed;
  z-index: 9999;
  background-color: #fff;
  top: 0;
}

#hd-main {
  display: flex;
  padding: 20px 120px;
  width: 100vw;
  height: 120px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  #hd-main {
    margin: 0;
    padding: 20px;
  }
}

.subtitle {
  font-size: 12px;
  line-height: 1.25;
  margin-bottom: 15px;
}

#global-nav {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  #global-nav {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  #global-nav {
    display: none;
  }
}

.site-logo {
  width: 250px;
  margin-right: 40px;
}

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

.nav-list {
  margin-right: 40px;
}

.drawer-icon {
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active {
  transform: translateX(-20px);
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: rotate(45deg);
  top: 8px;
}

.drawer-icon__bars {
  display: block;
  position: relative;
}

.drawer-icon__bar1, .drawer-icon__bar2, .drawer-icon__bar3 {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #000;
  top: 0;
  left: -30px;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 8px;
  width: 20px;
}

.drawer-icon__bar3 {
  top: 0px;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 120px;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-content__items {
  text-align: center;
}

.drawer-content__item a {
  display: block;
  padding: 18px 20px;
  text-align: center;
}
.drawer-content__item img {
  width: 40%;
}

.drawer-content__btn {
  margin: 1em;
}
.drawer-content__btn a {
  margin: auto;
}

.drawer-content__instatex {
  margin-top: 20px;
  font-size: 14px;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 298;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

#content {
  padding-top: 120px;
  overflow-x: hidden;
}

.main_imgBox {
  height: 800px;
  overflow: hidden;
  position: relative;
}

.main_img {
  z-index: 10;
  opacity: 0;
  width: 100%;
  max-width: 100%;
  height: 800px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 27s 0s infinite;
  animation: anime 27s 0s infinite;
}
.main_img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.main_img.slide-01 {
  background-image: url(/img/slide01.webp);
  background-position: top left;
}
@media (max-width: 767px) {
  .main_img.slide-01 {
    background-image: url(/img/slide01-sp.webp);
    background-position: center;
  }
}

.main_img:nth-of-type(2) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}

.main_img:nth-of-type(3) {
  -webkit-animation-delay: 18s;
  animation-delay: 18s;
}

@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes anime {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.CatchCopy {
  position: absolute;
  content: "";
  font-size: 60px;
  color: #fff;
  letter-spacing: 0.08em;
}
.CatchCopy.right-tex {
  top: 50%;
  right: 10%;
}
.CatchCopy.center-tex {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.CatchCopy.left-tex {
  top: 50%;
  left: 10%;
}
@media (max-width: 767px) {
  .CatchCopy.right-tex, .CatchCopy.center-tex, .CatchCopy.left-tex {
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    font-size: 38px;
    padding: 0 20px;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .CatchCopy.right-tex, .CatchCopy.center-tex, .CatchCopy.left-tex {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: 40px;
    padding: 0 20px;
    text-align: center;
  }
}

#concept {
  padding-top: 100px;
}

.concept {
  background-color: #FCF6F8;
}

.concept-bg {
  position: relative;
}
.concept-bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 70%;
  width: 100%;
  height: 100%;
  background: transparent url(/img/concept-bg.webp) no-repeat;
  background-size: 10%;
}
@media (max-width: 767px) {
  .concept-bg::before {
    left: 30%;
    background-size: 30%;
  }
}

.concept-body {
  margin: 80px auto 0;
  text-align: center;
}

.con-sp {
  display: none;
}
@media (max-width: 767px) {
  .con-sp {
    display: block;
    margin: 0 auto 30px;
    width: 70%;
  }
}

.con-pc {
  width: 70%;
}
@media (max-width: 767px) {
  .con-pc {
    display: none;
  }
}

.contents-title {
  margin-top: 30px;
  font-size: 36px;
}
@media (max-width: 767px) {
  .contents-title {
    font-size: 28px;
  }
}

.sentence3 {
  color: #DF61FB;
  font-size: 64px;
}
@media (max-width: 767px) {
  .sentence3 {
    font-size: 48px;
  }
}

.concept-tex {
  max-width: 760px;
  font-size: 20px;
  margin: 80px auto;
  text-align: left;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .concept-tex {
    font-size: 18px;
    margin: 60px auto;
  }
}

.concept-image {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.concept-image img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

#menu {
  padding: 100px 0;
}
@media (max-width: 767px) {
  #menu {
    padding: 80px 0;
  }
}

.menu-bg {
  position: relative;
}
.menu-bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 20%;
  width: 100%;
  height: 15%;
  background: transparent url(/img/menu-bg01.webp) no-repeat;
  background-size: 10%;
}
@media (max-width: 767px) {
  .menu-bg::before {
    left: 30%;
    background-size: 30%;
  }
}
.menu-bg::after {
  position: absolute;
  content: "";
  bottom: -75%;
  left: 80%;
  width: 100%;
  height: 100%;
  background: transparent url(/img/menu-bg02.webp) no-repeat;
  background-size: 10%;
}
@media (max-width: 767px) {
  .menu-bg::after {
    bottom: -95%;
    left: 40%;
    background-size: 30%;
  }
}

.contents-tex {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 767px) {
  .contents-tex {
    font-size: 15px;
  }
}

.menu-tex {
  margin: 50px 0;
}

.menu-body {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .menu-body {
    flex-direction: column;
  }
}

.menu-items {
  width: 60%;
}
@media (max-width: 767px) {
  .menu-items {
    margin-top: 20px;
    width: 100%;
  }
}

.menu-image {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .menu-image {
    width: 100%;
  }
}

.menu-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #B7B7B7;
}

.menu-img {
  margin-right: 60px;
}
@media (max-width: 767px) {
  .menu-img {
    margin-right: 0;
  }
}

.menu-subtitle {
  font-size: 20px;
  font-weight: 900;
  display: block;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .menu-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }
}

.menu-title {
  font-size: 40px;
  color: #A05CB1;
}
@media (max-width: 767px) {
  .menu-title {
    font-size: 24px;
  }
}
@media (max-width: 1439px) {
  .menu-title {
    font-size: 28px;
  }
}

.menu-item-caption {
  padding: 20px 0;
  font-size: 20px;
  line-height: 1.5;
}

.rank-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .rank-price {
    flex-direction: column;
  }
}

.rank {
  font-size: 24px;
  color: #520D64;
}

.time-price {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 1em;
}
@media (max-width: 767px) {
  .time-price {
    margin-left: auto;
  }
}

.menu-time {
  border: 1px solid #000;
  padding: 3px 10px;
  font-size: 22px;
  border-radius: 30px;
  margin-right: 44px;
  line-height: 1.22;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
}
@media (max-width: 767px) {
  .menu-time {
    font-size: 16px;
    margin-right: 30px;
  }
}
@media (max-width: 1439px) {
  .menu-time {
    font-size: 16px;
  }
}

.menu-price {
  font-size: 24px;
}
@media (max-width: 767px) {
  .menu-price {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .menu-price {
    font-size: 20px;
  }
}
.menu-price .price-big {
  font-size: 50px;
  font-weight: 800;
}
@media (max-width: 767px) {
  .menu-price .price-big {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .menu-price .price-big {
    font-size: 30px;
  }
}

.no1crown {
  width: 50px;
}
@media (max-width: 767px) {
  .no1crown {
    width: 10%;
  }
}

.no1crown-title {
  display: flex;
  align-items: center;
}

.CTA {
  background: transparent url(/img/29277064_m.webp) no-repeat center center/cover;
  padding: 100px;
}
@media (max-width: 767px) {
  .CTA {
    padding: 20px;
    position: -webkit-sticky;
    position: sticky;
    z-index: 1;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .CTA {
    padding: 40px;
  }
}

.cta-wrapper {
  padding: 50px 0;
  background-color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .cta-wrapper {
    padding: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .cta-wrapper {
    padding: 40px;
  }
}

.reservation-tex {
  max-width: 680px;
  font-size: 16px;
  margin: 30px auto;
}
@media (max-width: 767px) {
  .reservation-tex {
    width: 100%;
    text-align: inherit;
  }
}

.CTA-button {
  max-width: 510px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .CTA-button {
    flex-direction: column;
    align-items: center;
    height: 130px;
  }
}

.Cancel-policy {
  text-align: center;
  display: block;
  padding: 20px 0;
  font-size: 14px;
  text-decoration: underline;
}

.footerCancel-policy {
  color: #FFF;
}

#ServiceFlow {
  padding: 100px 0;
  background-color: #FCF6F8;
}

.s-f__body {
  margin: 0;
  margin-right: 50px;
}
@media (max-width: 767px) {
  .s-f__body {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .ServiceFlow-tex {
    margin-top: 50px;
  }
}
@media (max-width: 1439px) {
  .ServiceFlow-tex {
    margin-top: 50px;
  }
}

.s-f__wrapper {
  display: flex;
  align-items: center;
  max-width: 1000px;
  justify-content: center;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .s-f__wrapper {
    display: block;
    width: 100%;
  }
}
@media (max-width: 1439px) {
  .s-f__wrapper {
    flex-direction: column;
  }
}

.serviceflow-items {
  display: flex;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .serviceflow-items {
    display: block;
  }
}

.serviceflow-item {
  width: calc(33.33333% - 16px);
}
.serviceflow-item:not(:nth-child(3n+1)) {
  margin-left: 24px;
}
.serviceflow-item:nth-child(n+4) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .serviceflow-item {
    width: 100%;
  }
  .serviceflow-item:not(:nth-child(3n+1)) {
    margin-left: 0px;
    margin-top: 30px;
  }
  .serviceflow-item:nth-child(n+4) {
    margin-right: 0;
  }
  .serviceflow-item img {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .serviceflow-item {
    width: calc(80% - 16px);
  }
  .serviceflow-item:not(:nth-child(3n+1)) {
    margin-left: 24px;
  }
  .serviceflow-item:nth-child(n+4) {
    margin-right: 0;
  }
  .serviceflow-item img {
    width: 90%;
  }
}

.serviceflow-title {
  font-size: 28px;
  font-weight: 900;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .serviceflow-title {
    font-size: 24px;
  }
}
@media (max-width: 1439px) {
  .serviceflow-title {
    font-size: 24px;
  }
}

.serviceflow-tex {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  line-height: 2;
  font-weight: 400;
}
@media (max-width: 767px) {
  .serviceflow-tex {
    font-size: 16px;
  }
}
@media (max-width: 1439px) {
  .serviceflow-tex {
    font-size: 16px;
  }
}

#staff {
  padding: 100px 0;
}

.staff-body {
  display: flex;
  align-items: center;
  max-width: 1100px;
  justify-content: center;
  margin: 60px auto;
}
@media (max-width: 767px) {
  .staff-body {
    display: block;
    width: 100%;
  }
}
.staff-body img {
  width: 50%;
  margin-right: 60px;
}
@media (max-width: 767px) {
  .staff-body img {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 30px;
  }
}

.staff-tex {
  font-size: 18px;
  line-height: 1.5;
}

.s-t__but {
  color: #A05CB1;
}

.s-t__drop {
  -webkit-text-emphasis: circle #A05CB1;
          text-emphasis: circle #A05CB1;
}

.s-t__possible {
  color: #DE65F7;
  font-size: 36px;
}

.staff-bg {
  position: relative;
}
.staff-bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 70%;
  width: 100%;
  height: 100%;
  background: transparent url(/img/staff-bg.webp) no-repeat;
  opacity: 0.3;
  background-size: 10%;
}
@media (max-width: 767px) {
  .staff-bg::before {
    left: 35%;
    background-size: 30%;
    top: -40px;
  }
}

.staff-name {
  font-family: "Caveat", cursive;
  font-size: 64px;
  color: #A05CB1;
  float: right;
}

.rules {
  padding: 100px 0;
  background-color: #FCF6F8;
}

.rules-bg {
  position: relative;
}
.rules-bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 20%;
  width: 100%;
  height: 100%;
  background: transparent url(/img/rule-bg.webp) no-repeat;
  background-size: 10%;
}
@media (max-width: 767px) {
  .rules-bg::before {
    left: 35%;
    background-size: 30%;
  }
}

.rules-body {
  margin: 60px auto 0px;
  max-width: 900px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-self: stretch;
}

.rules-title {
  border-top: 1px solid #A05CB1;
  border-bottom: 1px solid #A05CB1;
  max-width: 290px;
  margin: 0 auto;
  padding: 5px;
  font-size: 20px;
}

.rules-lists {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.rules-lists .rules-number {
  color: #fff;
  background-color: #A05CB1;
  border-radius: 100px;
  font-size: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rules-4menu {
  color: #A05CB1;
  font-weight: 700;
}

.rules-tex {
  font-size: 20px;
  flex: 1;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .rules-tex {
    line-height: 1.5;
  }
}

#access {
  padding: 100px 0;
}
@media (max-width: 767px) {
  #access {
    padding: 80px 0;
  }
}

.information {
  padding: 40px;
  background-color: #FCF6F8;
  margin: 80px 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .information {
    display: block;
    padding: 30px;
    margin: 60px 0;
  }
}

.information-item {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .information-item {
    align-items: flex-start;
    border-bottom: 1px solid #e0e0e0;
    padding: 0.5em;
  }
}
.information-item.info-item-add {
  align-items: flex-start;
}

.item {
  width: 115px;
  padding-right: 30px;
  font-size: 24px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .item {
    width: 70px;
    font-size: 18px;
  }
}

iframe {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.item-tex {
  font-size: 20px;
  line-height: 2;
}
@media (max-width: 767px) {
  .item-tex {
    font-size: 16px;
  }
}

.access-bg {
  position: relative;
}
.access-bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 70%;
  width: 100%;
  height: 100%;
  background: transparent url(/img/access-bg.webp) no-repeat;
  opacity: 0.3;
  background-size: 10%;
}

footer {
  background-color: #3C0035;
  color: #fff;
  padding: 60px 120px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  footer {
    padding: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  footer {
    padding: 40px;
  }
}

.footer-wrapper {
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 767px) {
  .footer-wrapper {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .footer-wrapper {
    font-size: 14px;
  }
}

.sitename, .site-guide {
  font-family: "Zen Old Mincho", serif;
}

@media (max-width: 767px) {
  .footer-left, .footer-center, .footer-right {
    margin-bottom: 30px;
  }
}

.footer-left h1 {
  font-size: 36px;
}
.footer-left p {
  padding-bottom: 10px;
  line-height: 1.875;
}

.footer-center {
  padding-left: 70px;
}
@media (max-width: 767px) {
  .footer-center {
    padding-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .footer-center {
    padding: 0 40px;
  }
}

.footer-sidetitle {
  font-size: 16px;
  font-weight: 900;
  padding-bottom: 30px;
  display: block;
}

.footer-menu {
  color: #fff;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .footer-menu {
    text-align: center;
  }
}

.footer-menu__list {
  padding-bottom: 30px;
}
.footer-menu__list:last-child {
  padding-bottom: 0;
}
.footer-menu__list a {
  color: #fff;
}

.footer-sns__area {
  max-width: 300px;
  border-top: 1px solid #fff;
  padding-top: 10px;
  display: flex;
  fill: #fff;
}
@media (max-width: 767px) {
  .footer-sns__area {
    margin: 0 auto;
  }
}
.footer-sns__area img, .footer-sns__area a {
  width: 29px;
  margin-right: 20px;
}
.footer-sns__area svg {
  width: 29px;
  margin-right: 20px;
}
.footer-sns__area svg:last-child {
  margin-right: 0px;
}

@media (max-width: 767px) {
  .footer-right__btn {
    text-align: -webkit-center;
  }
}

.footer-bottom {
  background-color: #3C0035;
  color: #fff;
  font-size: 12px;
  margin: 0 auto;
  padding: 20px 0;
}

.copy-light {
  text-align: center;
}

main {
  max-width: 800px;
  margin: 50px auto;
}
main .page-title {
  font-size: 26px;
  color: #520D64;
  font-weight: 500;
  margin-bottom: 50px;
  line-height: 1.5;
}
main .container {
  margin-bottom: 50px;
  padding-bottom: 50px;
  position: relative;
}
main .title {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  background-color: #520D64;
  padding: 9px;
  margin-bottom: 20px;
}
main .policy-subtitle {
  color: #520D64;
  margin-bottom: 20px;
  line-height: 1.5;
}
main .flower-img {
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
}
main .text {
  line-height: 1.5;
}