@charset "UTF-8";
/* SASS の function 機能 */
/**
【2020/9/12更新】

※pxで記述するものは、pxなしでも動作する。


strip-unit(30px)
  単位の除去

vh(30px, 1200px)
  第2引数を100vhとして、第1引数が何vh かを返す処理

addpx(30)
  単位なしの数値が入ったら px を付与

vwsp(100px)
  100px を vw に変換して返す（スマホ版デザインで算出）

vwpc(100px)
  100px を vw に変換して返す（パソコン版デザインで算出）

*/
/**
 * 単位なしの値には px を付与する
 */
/**
 * スマートフォン用デザイン上でのピクセル数を指定すると、vw換算での値を返す
 * @require d.$design-width-sp
 */
/**
 * パソコン用デザイン上でのピクセル数を指定すると、vw換算での値を返す
 * @require d.$design-width-pc
 */
/*
三角関数
https://codepen.io/NyX/pen/dYvymM
*/
/*
$pi: 3.14159265359;
$_precision: 10;

@function pow($base, $exp) {
  $value: $base;

  @if $exp>1 {
    @for $i from 2 through $exp {
      $value: $value * $base;
    }
  }

  @if $exp < 1 {
    @for $i from 0 through -$exp {
      $value: $value / $base;
    }
  }

  @return $value;
}

@function fact($num) {
  $fact: 1;

  @if $num>0 {
    @for $i from 1 through $num {
      $fact: $fact * $i;
    }
  }

  @return $fact;
}

@function _to_unitless_rad($angle) {
  @if unit($angle)=="deg" {
    $angle: $angle / 180deg * $pi;
  }

  @if unit($angle)=="rad" {
    $angle: $angle / 1rad;
  }

  @return $angle;
}

@function sin($angle) {
  $a: _to_unitless_rad($angle);
  $sin: $a;

  @for $n from 1 through $_precision {
    $sin: $sin + (pow(-1, $n) / fact(2 * $n + 1)) * pow($a, (2 * $n + 1));
  }

  @return $sin;
}

@function cos($angle) {
  $a: _to_unitless_rad($angle);
  $cos: 1;

  @for $n from 1 through $_precision {
    $cos: $cos + (pow(-1, $n) / fact(2*$n)) * pow($a, 2*$n);
  }

  @return $cos;
}

@function tan($angle) {
  @return sin($angle) / cos($angle);
}
*/
/*
_sitefont.scss で使用する、自前フォントを使うための mixin集
*/
/*
@function str-replace($substr, $newsubstr, $str, $all:false) {
  $pos: str-index($str, $substr);

  @while $pos !=null {
    $strlen: str-length($substr);
    $start: str-slice($str, 0, $pos - 1);
    $end: str-slice($str, $pos + $strlen);
    $str: $start + $newsubstr + $end;

    @if $all==true {
      $pos: str-index($str, $substr);
    }

    @else {
      $pos: null;
    }
  }

  @return $str;
}
*/
/**
 * z-index値の調整用
 */
/*
【2020/9/18更新】

※pxで記述するものは、pxなしでも動作する。

解説記事
https://kaminarimagazine.com/web/2017/12/12/sass%E3%81%A7%E3%82%88%E3%81%8F%E4%BD%BF%E3%81%A3%E3%81%A6%E3%81%84%E3%82%8Bmixin%E3%82%92%E7%B4%B9%E4%BB%8B%E3%81%97%E3%81%BE%E3%81%99/



==== 文字系 ====

@include font-rem(16px, 32px, 0.1px, true)
  Illustratorで自動生成されるCSSの値を3つ順に入れると rem + em ベースでの文字指定ができる。
  font-size, line-height, letter-spacing を px単位で打ち込む（単位は省略可）
  第4引数は letter-spacing & text-align:center の場合に位置がずれるのを修正するかどうか。

@include fonti(16px, 32px, 0.1px, true)
  font-remとほぼ同様だが、Illustratorでは文字の上に余白がなく位置調整がしづらいため、
  Webでも上に余白をなくしてしまえ！というmixin。ついでに下の余白もなくす。
  （下にはみ出す英字系フォントではズレが出ると思われる）

@include line-truncate
  1行から溢れたら ... と省略する

@include lines-truncate(3)
  指定行数から溢れたら ... と省略する



==== 段落系 ====

@include justify();
  両端揃えの設定がされる。IEも対応。

@include full-width();
  ブロックの幅をウィンドウ幅全体に変更する。
  ただしPCではスクロールバーの幅の関係でややあふれるため、祖先要素に overflow:hidden; が必要。



==== 画像系 ====
@include fix-aspect(300px, 200px, true)
  ブロックの縦横比を指定する処理。
  横幅、縦幅、子要素も同様にするかの順に指定。

@include object-fit(cover, center center);
  JavaScriptライブラリ Object Fit Images を用いて
  IE でも object-fit および object-fit-position が使用できるようになる。
  ただし別途 Object Fit Images を実行する必要があるので注意。
  （既定では class="ofi" を付与していると自動的に対象となる）

@include pseudo-img(30px, 30px, ../../images/item.jpg);
  疑似要素に画像を入れる場合に使う。
  疑似要素系は記述が多くて面倒なため。



==== レイアウト系 ====

@include dl-table($dt-width, $breakpoint: $width-sp)
  dl,dt,dd で2列の表を作るのを簡単にする。
  $dt-width を指定すると、残り幅を dd の幅に割り当てる。
  $breakpoint になると、1列の表に戻す。

@include flex-layout($padding)
  flexでよく使うマイナスマージンについての対応をする。
  display:flex とする要素の親要素（またはそれ以上）に対して使用し、
  flexとする要素には .container クラスを付与すること。
    @param $padding : 各要素と要素の間隔を指定(px,vw等)


==== メディアクエリ系 ====

@media screen and (max-width:768px){
  【 CSSを記述 】
}
  $width-sp の値を元に @media(max-width:768px) を作成する。
  ただの省略用。

@include max-width(1400px){
  【 CSSを記述 】
}
  任意のmax-widthでメディアクエリを書く省略形。



==== 入力フォーム系 ====

  input要素はtype属性により表示が全く異なるので、それらをまとめて設定するためのmixin。

@include form-text{
  【 CSSを記述 】
}
  text, email, number, password, tel, search, url, date, datetime, datetime-local, month, week

@include form-datetime{
  【 CSSを記述 】
}
  date, datetime, datetime-local, month, week

@include form-button{
  【 CSSを記述 】
}
  button要素と button, image, submit, reset


*/
/**
 * Illustrator の出力するCSSを rem ベース + em ベースに変換する
 * @param int $font-size      px単位での文字サイズ
 * @param int $line-height    px単位での行の高さ ※0にすると無視
 * @param int $letter-spacing px単位での字間 ※0にすると無視
 * @param bool $is_center     中央揃えで使用する際の調整をするか
 * @require $font-size-root
 * @example1 @font-rem(14px, 28px, 0.4px, true);
 * @example2 @font-rem(14, 28, 0.4, true);
 */
/**
 * Illustrator の出力するCSSを rem ベース + em ベースに変換し、
 * さらに line-height により生じる上下の余白を調整する（Illustrator に合わせる）
 *
 * @param int $font-size      px単位での文字サイズ
 * @param int $line-height    px単位での行の高さ ※0にすると無視
 * @param int $letter-spacing px単位での字間 ※0にすると無視
 * @param bool $is_center     中央揃えで使用する際の調整をするか
 * @require $font-size-root
 * @example1 @font-rem(14px, 28px, 0.4px, true);
 * @example2 @font-rem(14, 28, 0.4, true);
 * @see https://coliss.com/articles/build-websites/operation/css/simple-css-remove-top-space.html
 */
/**
 * 溢れたテキストは … にする。
 * 1行限定だが、ブラウザ依存なし。
 */
/**
 * 溢れたテキストを … にする。
 * 任意行指定可能だが、-webkit が使える環境限定。
 * @param int $lines  最大行数
 */
/**
 * 幅をウィンドウ幅すべての幅にする
 * ただしPC版ではスクロールバーも含めたサイズとなるため、親要素を overflow:hidden; にしておくこと。
 */
/**
 * 縦横比を強制する
 * @param int $width        ブロックの幅
 * @param int $height       ブロックの高さ
 * @param bool $isFixChild  子要素にも縦横比を強制するか（既定値は false）
 */
/**
 * 疑似要素に画像をはめ込む
 */
/**
 * スマホ表示時のメディアクエリ
 *  メリット: 記述が楽になった
 *  デメリット: タブ下にあるセレクタの表示が直感的にわかりにくくなった
 */
/**
 * max-width のメディアクエリを作成する
 *  @param : $max-width  最大幅  数値に単位がない場合は px を付与。既定値はスマホの幅
 */
/**
 * dl要素を2列の表として表示する際のmixin
 * @param $dt-width: dt要素の幅
 * @param $breakpoint: 1列にする際の幅　既定値はスマホの幅
 */
/**
 * flexでよく使うマイナスマージンについての対応をする。
 * display:flex とする要素の親要素（またはそれ以上）に対して使用し、
 * flexとする要素には .container クラスを付与すること。
 * @param $padding : 各要素と要素の間隔を指定
 */
/**
 * input要素のうちテキストボックス型にCSSをまとめて適用
 */
/**
 * input要素の日付関連のみCSSをまとめて適用
 */
/**
 * input要素およびbutton要素のみCSSをまとめて適用
 */
/*
JavaScriptが無効な場合に適用するCSSを記述する
ex)
  .caution{
    @include no-js(){
      color: red;
    }
  }
*/
/**
 * background-image で png と webp を振り分ける処理。
 * 引数は拡張子を記載しない。
 *  記述例) @include bgi("../images/hoge")
 * ../images/hoge.png と ../images/hoge.webp で振り分けるように動作する。
 */
/**
 * スライド処理する親要素に設定すると、JavaScript無効時でもレイアウト崩れがない状態とすることができる
 */
/**
 * ページロード時の最初の瞬間に表示されないようにする
 */
/**
 * ブロック背景に色を付与する。
 * 要親要素以上での overflow: hidden
 */
/**
 * 三角形生成
 * @ref https://qiita.com/manabuyasuda/items/be17291426890d9fb15b
 */
.privacy-policy-page {
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 1028px;
}
@media screen and (max-width: 768px) {
  .privacy-policy-page {
    padding-left: 0;
    padding-right: 0;
    width: 80vw;
  }
}

.bl-top {
  position: relative;
  z-index: 10;
}
.bl-top::after {
  content: "";
  display: block;
  width: 300vw;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100vw;
  background: #142D41;
}
.bl-top__title {
  position: relative;
}
.bl-top__title::after {
  content: "";
  display: block;
  width: 300vw;
  height: 100%;
  background: #E0E4E6;
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100vw;
}
@media print, screen and (min-width: 768.1px) {
  .bl-top {
    margin-bottom: 64px;
    max-height: 300px;
  }
  .bl-top__title {
    padding: 98px 0 68px;
  }
  .bl-top__title .c-title-gradient {
    margin-top: 6px;
  }
}
@media screen and (max-width: 768px) {
  .bl-top__title {
    padding: 44px 0 32px;
  }
  .bl-top__title .c-title-gradient {
    margin-top: 14px;
  }
  .bl-top__title::after {
    top: -98px;
    height: calc(100% + 98px);
  }
}

/**
 * 施術メニュー詳細ページおよびオンライン診療ページに挿入される目次ブロック
 */
.bl-topindex__title .category-items > .c-enja:nth-of-type(n+2) {
  display: none;
}
body.treatment-category-face .bl-topindex__title .category-items > .c-enja.type-face {
  display: inline-block;
}
body.treatment-category-face .bl-topindex__title .category-items > .c-enja:not(.type-face) {
  display: none;
}

body.treatment-category-body .bl-topindex__title .category-items > .c-enja.type-body {
  display: inline-block;
}
body.treatment-category-body .bl-topindex__title .category-items > .c-enja:not(.type-body) {
  display: none;
}

body.treatment-category-skin .bl-topindex__title .category-items > .c-enja.type-skin {
  display: inline-block;
}
body.treatment-category-skin .bl-topindex__title .category-items > .c-enja:not(.type-skin) {
  display: none;
}

body.treatment-category-srs .bl-topindex__title .category-items > .c-enja.type-srs {
  display: inline-block;
}
body.treatment-category-srs .bl-topindex__title .category-items > .c-enja:not(.type-srs) {
  display: none;
}

body.treatment-category-anti-aging .bl-topindex__title .category-items > .c-enja.type-anti-aging {
  display: inline-block;
}
body.treatment-category-anti-aging .bl-topindex__title .category-items > .c-enja:not(.type-anti-aging) {
  display: none;
}

.bl-topindex__title.c-enja {
  display: flex;
  align-items: center;
}
.bl-topindex__title.c-enja .ja {
  align-self: flex-end;
}
.bl-topindex__title .append {
  color: var(--color-genre);
  font-weight: 500;
  font-size: 1.0625rem;
  --font-size: 17;
  line-height: 1;
  letter-spacing: 0.05em;
}
.bl-topindex__index {
  position: -webkit-sticky;
  position: sticky;
  z-index: 3;
  left: 0;
}
.bl-topindex__heading {
  padding: 14px 18px;
  min-height: 60px;
  color: #CAA800;
  display: flex;
  align-items: center;
  position: relative;
}
.bl-topindex__heading .text {
  font-weight: 600;
  font-size: 1.5rem;
  --font-size: 24;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  word-break: keep-all;
}
.bl-topindex__heading .button {
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 100%;
  font-size: 20px;
  display: grid;
  place-items: center;
}
.bl-topindex__heading .button::before {
  transform: rotate(-90deg);
  transition: transform 0.5s;
}
.bl-topindex__content {
  max-height: 1000px;
  transform: scaleY(1);
  transition: transform 0.5s, max-height 0.5s;
  transform-origin: top center;
}
.bl-topindex__index-title {
  color: #CAA800;
  font-weight: 700;
  font-size: 1.25rem;
  --font-size: 20;
  line-height: 1;
  letter-spacing: 0.05em;
}
.bl-topindex__button {
  padding: 10px 13px;
  color: #fff;
  height: 35px;
  background: #142D41;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bl-topindex__button .text {
  font-weight: 500;
  font-size: 0.9375rem;
  --font-size: 15;
  line-height: 1;
  letter-spacing: 0.05em;
}
.bl-topindex__button .arrow {
  display: inline-block;
  transform: rotate(90deg);
  transform-origin: center center;
  font-size: 12px;
}
@media (hover: hover) {
  .bl-topindex__button {
    transition: background-color 0.25s;
  }
  .bl-topindex__button:hover {
    background-color: #009AB9;
  }
}
@media print, screen and (min-width: 768.1px) {
  .bl-topindex {
    margin-top: 112px;
  }
  .bl-topindex__title {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
  }
  .bl-topindex__title .append {
    margin-left: 20px;
    padding-left: 18px;
    border-left: 1px solid #5A6C7A;
    height: 30px;
    display: inline-flex;
    align-items: center;
  }
  .bl-topindex__index {
    top: 0;
  }
  .bl-topindex__heading {
    margin-top: 20px;
    background: linear-gradient(-85.57deg, rgb(0, 154, 185) 0%, rgb(4, 133, 162) 13.05%, rgb(11, 95, 120) 40.01%, rgb(16, 68, 90) 64.44%, rgb(19, 51, 72) 85.25%, rgb(20, 45, 65) 100%);
  }
  .bl-topindex__wrap {
    margin: auto;
    padding: 33px 10px 37px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
  }
  .bl-topindex__items-wrap {
    margin: auto;
  }
  .bl-topindex__items {
    margin: 14px -5px -10px;
    display: flex;
    flex-wrap: wrap;
  }
  .bl-topindex__items::before, .bl-topindex__items::after, .bl-topindex__item {
    min-width: 202px;
  }
  .bl-topindex__items::before, .bl-topindex__items::after {
    content: "";
    order: 99;
  }
  .bl-topindex__item {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
  }
  .bl-topindex__label {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .bl-topindex__title .appends {
    margin-top: 15px;
    margin-bottom: -10px;
    padding-top: 20px;
    display: block;
    position: relative;
    white-space: normal;
  }
  .bl-topindex__title .appends::before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: #5A6C7A;
    position: absolute;
    top: 0;
    left: 0;
  }
  .bl-topindex__title .append {
    margin-bottom: 10px;
    padding-right: 0.3em;
    display: inline-block;
  }
  .bl-topindex__title .append:nth-of-type(n+2) {
    padding-left: 0.3em;
    border-left: 1px solid #5A6C7A;
  }
  .bl-topindex__index {
    top: -100vh;
    transition: top 0.5s, transform 0.8s, opacity 0.8s !important;
    opacity: 0;
  }
  html.scroll-up .bl-topindex__index {
    top: 70px;
    opacity: 1;
  }
  .bl-topindex__heading {
    padding: 12px 18px;
    margin-top: 48px;
    padding-right: 50px;
    min-height: 50px;
    background: linear-gradient(-79.11deg, rgb(0, 154, 185) 0%, rgb(4, 133, 162) 13.05%, rgb(11, 95, 120) 40.01%, rgb(16, 68, 90) 64.44%, rgb(19, 51, 72) 85.25%, rgb(20, 45, 65) 100%);
  }
  .bl-topindex__heading .text {
    font-size: 20px;
    font-feature-settings: "palt";
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
  .bl-topindex__heading .button {
    display: none;
  }
  .bl-topindex__wrap {
    margin: auto;
    width: 80vw;
  }
  .bl-topindex__items-wrap {
    margin-top: 14px;
    position: relative;
  }
  .bl-topindex__items {
    padding: 14px;
    background: #fff;
    display: grid;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 0;
    transform: scaleY(0);
    transform-origin: top left;
    transition: transform 0.5s, opacity 0.5s;
    opacity: 0;
  }
  .bl-topindex__item {
    position: relative;
    z-index: 2;
  }
  .bl-topindex__button {
    padding: 0;
    background: none;
    color: #142D41;
    height: 30px;
  }
  .bl-topindex__button .arrow {
    display: none;
  }
  .bl-topindex__label {
    padding: 0 14px;
    background: #142D41;
    color: #fff;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .bl-topindex__label .text {
    font-weight: 500;
    font-size: 0.9375rem;
    --font-size: 15;
    line-height: 2.3333333333;
    letter-spacing: 0.05em;
  }
  .bl-topindex__label .state {
    width: 12px;
    height: 13px;
    position: relative;
  }
  .bl-topindex__label .state::before, .bl-topindex__label .state::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
  }
  .bl-topindex__label .state::after {
    transform: rotate(270deg);
    transition: transform 0.5s;
  }
}

@media print, screen and (min-width: 768.1px) {
  #navi-switch:checked ~ .bl-topindex__heading .button::before {
    transform: rotate(90deg);
  }
  #navi-switch:checked ~ .bl-topindex__content {
    transform: scaleY(0);
    max-height: 0;
  }
}
#menu-switch:checked ~ .bl-topindex__label .state::after {
  transform: rotate(0);
}
#menu-switch:checked ~ .bl-topindex__items {
  transform: scaleY(1);
  opacity: 1;
}

/*
* 1. Immediately jump any animation to the end point
* 2. Remove transitions & fixed background attachment
* See: https://github.com/mozdevs/cssremedy/issues/11
*/
@media (prefers-reduced-motion: reduce) {
  *,
::before,
::after {
    -webkit-animation-delay: -1ms !important;
            animation-delay: -1ms !important;
    -webkit-animation-duration: 1ms !important;
            animation-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-delay: 0s !important;
    transition-duration: 0s !important;
  }
}
body .sc-top-title .main {
  font-size: 77px;
  display: block;
  color: #C785BB;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
body .sc-top-title .sub {
  display: block;
  font-weight: 500;
  font-size: 24px;
  color: #142D41;
  letter-spacing: 0.0467532468em;
  line-height: 1.3;
}
body .sc-top-title2 .main {
  font-size: 43px;
  display: inline-block;
  font-weight: normal;
  color: #C785BB;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-right: 8px;
}
body .sc-top-title2 .sub {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  color: #86847d;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
body .sc-bg-title {
  background: linear-gradient(90deg, #C785BB, #ECD6E8);
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 7px 10px;
}
body .sc-bg-title small {
  font-size: 0.85em;
}
body .sc-text {
  font-size: 15px;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.6em;
  letter-spacing: 0.0253333333em;
  font-weight: normal;
}
body .sc-top-text-area {
  background: rgba(134, 132, 125, 0.08);
}
body .sc-top-text-area .inner {
  width: 1008px;
  max-width: 80%;
  margin: 0 auto;
  padding: clamp(35px,11.1111111111vh,100px) 0 35px;
}
body .sc-top-text-area2 {
  margin-top: clamp( 35px,11.6666666667vh,105px);
}
body .sc-top-text-area2 .inner {
  max-width: 80%;
  width: 1008px;
  margin: 0 auto;
  display: flex;
}
body .sc-top-text-area2 .inner .sc-top-title2 {
  position: relative;
  padding-bottom: 35px;
  padding-right: 35px;
}
body .sc-top-text-area2 .inner .sc-top-title2:before {
  content: "";
  display: block;
  background: #fff;
  height: 60px;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: -1;
}
body .sc-form-box .inc {
  color: #C785BB;
}
body .sc-form-box .form-wrap {
  margin-top: 25px;
}
body .sc-form-box .form-wrap .tr {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 15px 0 30px;
  border-top: 1px dashed #c3c1be;
}
body .sc-form-box .form-wrap .tr > * {
  margin-top: 15px;
}
body .sc-form-box .form-wrap .tr dt {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
body .sc-form-box .form-wrap .tr dd {
  margin-top: 10px;
}
body .sc-form-box .form-wrap .tr dd > * + * {
  margin-top: 15px;
}
body .sc-form-box .form-wrap .tr .s50 {
  width: 48.1150793651%;
}
body .sc-form-box .form-wrap .tr .s100 {
  width: 100%;
}
body .sc-form-box .form-wrap .tr:last-of-type {
  border-bottom: 1px dashed #c3c1be;
}
body .sc-form-box .form-wrap .tr textarea {
  resize: vertical;
  width: 100%;
  height: 235px;
  border: 1px solid #c3c1be;
  line-height: 1.5;
  padding: 10px;
}
body .sc-form-box .form-wrap .tr .wpcf7-radio {
  display: block;
}
body .sc-form-box .form-wrap .tr .wpcf7-radio .wpcf7-list-item {
  margin: 10px 18px 0 0;
}
body .sc-form-box .form-wrap .tr .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  font-size: 14px;
  letter-spacing: 0.025em;
  display: inline-block;
  position: relative;
  padding-left: 30px;
  line-height: 25px;
}
body .sc-form-box .form-wrap .tr .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:before, body .sc-form-box .form-wrap .tr .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:after {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  left: 0;
  top: 50%;
}
body .sc-form-box .form-wrap .tr .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:before {
  border: 1px solid #c3c1be;
  transform: translate(0, -50%);
}
body .sc-form-box .form-wrap .tr .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:after {
  transform: translate(0, -50%) scale(0.6);
  background: #c3c1be;
  opacity: 0;
}
body .sc-form-box .form-wrap .tr .wpcf7-radio .wpcf7-list-item label input {
  display: none;
}
body .sc-form-box .form-wrap .tr .wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
body .sc-form-box .form-wrap .tr .wpcf7-checkbox .wpcf7-list-item {
  margin: 10px 18px 0 0;
}
body .sc-form-box .form-wrap .tr .wpcf7-checkbox .wpcf7-list-item label {
  padding-right: 0;
}
body .sc-form-box .form-wrap .tr .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  padding-left: 30px;
  line-height: 25px;
  position: relative;
  font-size: 14px;
  letter-spacing: 0.025em;
}
body .sc-form-box .form-wrap .tr .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label:before {
  content: "✓";
  display: block;
  width: 25px;
  height: 25px;
  border: 1px solid #c3c1be;
  text-align: center;
  line-height: 23px;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  color: rgba(20, 45, 65, 0);
}
body .sc-form-box .form-wrap .tr .wpcf7-checkbox .wpcf7-list-item label input {
  display: none;
}
body .sc-form-box .form-wrap .tr .wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label:before {
  color: #142d41;
}
body .sc-form-box .form-wrap .tr ::-moz-placeholder {
  color: #c3c1be;
  font-size: 14px;
}
body .sc-form-box .form-wrap .tr ::placeholder {
  color: #c3c1be;
  font-size: 14px;
}
body .sc-form-box .form-wrap .tr input[type=text], body .sc-form-box .form-wrap .tr input[type=tel], body .sc-form-box .form-wrap .tr input[type=email], body .sc-form-box .form-wrap .tr input[type=number], body .sc-form-box .form-wrap .tr input[type=date] {
  width: 100%;
  border-radius: 0;
  border: 1px solid #c3c1be;
  line-height: 33px;
  height: 35px;
  padding: 0 10px;
  font-size: 14px;
}
body .sc-form-box .form-wrap .tr input[type=date]::-webkit-calendar-picker-indicator {
  padding-top: 11px;
}
body .sc-form-box .form-wrap .tr select {
  border: 1px solid #c3c1be;
  line-height: 33px;
  padding: 0 10px;
  height: 35px;
  width: 100%;
}
body .sc-form-box .form-wrap .tr .sc-text a {
  text-decoration: underline;
}
body .sc-form-box .form-wrap .tr .kibo-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .sc-form-box .form-wrap .tr .kibo-box .kibo-text {
  flex-shrink: 0;
  width: 65px;
  font-size: 14px;
}
body .sc-form-box .form-wrap .tr .kibo-box .kibo-f {
  width: calc(48.8659793814% - 33px);
}
body .sc-form-box .form-wrap .sho-nin {
  font-size: 14px;
  line-height: 1.5;
}
body .sc-form-box .form-wrap .sho-nin a {
  color: #C785BB;
  text-decoration: underline;
  display: inline-block;
}
body .sc-form-box .form-wrap .sho-nin .wpcf7-list-item {
  display: flex;
  margin-left: 0;
  justify-content: center;
}
body .sc-form-box .form-wrap .sho-nin .wpcf7-list-item label {
  padding: 0;
  display: block;
}
body .sc-form-box .form-wrap .sho-nin .wpcf7-list-item label .wpcf7-list-item-label {
  display: block;
  position: relative;
  padding-left: 30px;
}
body .sc-form-box .form-wrap .sho-nin .wpcf7-list-item label .wpcf7-list-item-label:before {
  content: "✓";
  display: block;
  width: 25px;
  height: 25px;
  border: 1px solid #c3c1be;
  text-align: center;
  line-height: 23px;
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 16px;
  color: rgba(20, 45, 65, 0);
  transform: translate(0, -50%);
}
body .sc-form-box .form-wrap .sho-nin .wpcf7-list-item label input {
  display: none;
}
body .sc-form-box .form-wrap .sho-nin .wpcf7-list-item label input:checked + .wpcf7-list-item-label:before {
  color: #142d41;
}
body .sc-form-box .form-wrap .button-box {
  margin-top: 4.4444444444vh;
}
body .sc-form-box .form-wrap .button-box .send-button {
  display: block;
  width: 218px;
  margin: 0 auto;
  padding: 0 20px;
  color: #fff;
  background: #C785BB;
  line-height: 64px;
  position: relative;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
body .sc-form-box .form-wrap .button-box .send-button .icon-arrow {
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 20px;
  z-index: 0;
  color: #fff;
}
body .sc-form-box .form-wrap .button-box .send-button .icon-arrow:after {
  content: "";
  display: block;
  border-radius: 50%;
  background: #e9cee4;
  width: 28px;
  height: 28px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.2s;
}
body .sc-form-box .form-wrap .button-box .send-button:hover {
  cursor: pointer;
  color: #e9cee4;
}
body .sc-form-box .form-wrap .button-box .send-button:hover .icon-arrow:after {
  opacity: 1;
}
body .sc-more {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  color: #86847d;
  font-size: 16px;
  letter-spacing: 0.1em;
}
body .sc-more:before {
  content: "";
  display: block;
  transition: background 0.2s, width 0.2s;
  width: 50px;
  height: 1px;
  background: #c3c1be;
  margin-right: 6px;
}
body .sc-more:hover {
  color: #C785BB;
}
body .sc-more:hover:before {
  width: 30px;
  background: #e3c2dd;
}
body .s-d {
  display: inline-block;
}
body .sc-other-links {
  position: relative;
  z-index: 1;
  margin-top: clamp(90px,12.7777777778vh,115px);
  background: #fff;
  padding: 55px 0 65px;
}
body .sc-other-links .inner {
  width: 1008px;
  max-width: 80%;
  margin: 0 auto;
}
body .sc-other-links .inner .other-title {
  color: #CAA800;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.15em;
}
body .sc-other-links .inner ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 5px;
}
body .sc-other-links .inner ul:after {
  content: "";
  display: block;
  width: 328px;
  max-width: 100%;
}
body .sc-other-links .inner ul li {
  width: 328px;
  max-width: 100%;
  margin-top: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px solid #c3c1be;
}
body .sc-other-links .inner ul li a {
  display: block;
  padding: 20px 40px 20px 5px;
  position: relative;
  transition: opacity 0.2s;
}
body .sc-other-links .inner ul li a .arrow {
  display: block;
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translate(0, -50%);
  border-radius: 50%;
  text-align: center;
  width: 28px;
  line-height: 28px;
  height: 28px;
  transition: background 0.2s, color 0.2s;
  background: rgba(202, 168, 0, 0);
}
body .sc-other-links .inner ul li a:hover {
  opacity: 0.6;
}
body .sc-other-links .inner ul li a:hover .arrow {
  background: #CAA800;
  color: #fff;
}
body .sc-nav-box .inner {
  width: 770px;
  max-width: 80%;
  margin: 0 auto;
}
body .sc-nav-box .inner .nav-title {
  font-weight: 600;
  color: #86847D;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
body .sc-nav-box .inner .nav-title:before {
  content: "■";
  color: #C785BB;
}
body .sc-nav-box .inner .nav-title2 {
  font-weight: normal;
  font-size: 19px;
  letter-spacing: 0.1em;
  color: #86847D;
}
body .sc-nav-box .inner .c-aco-wrap {
  margin-top: 10px;
}
@media (min-width: 769px) {
  body .sc-nav-box .inner .c-aco-wrap .c-aco-hidden {
    height: auto !important;
  }
  body .sc-nav-box .inner .c-aco-wrap .c-aco-hidden .hidden-inner ul {
    display: flex;
    margin-top: -10px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  body .sc-nav-box .inner .c-aco-wrap .c-aco-hidden .hidden-inner ul:before, body .sc-nav-box .inner .c-aco-wrap .c-aco-hidden .hidden-inner ul:after {
    content: "";
    display: block;
    width: 185px;
    order: 1;
  }
  body .sc-nav-box .inner .c-aco-wrap .c-aco-hidden .hidden-inner ul li {
    margin-top: 10px;
  }
  body .sc-nav-box .inner .c-aco-wrap .c-aco-hidden .hidden-inner ul li a {
    width: 185px;
  }
  body .sc-nav-box .inner .c-aco-wrap .c-aco-hidden .hidden-inner ul li a:hover {
    background: #CAA800;
    color: #fff;
  }
}
body .sc-nav-box .inner .c-aco-wrap .c-aco-hidden .hidden-inner ul li a {
  display: block;
  position: relative;
  transition: background 0.2s, color 0.2s;
  color: #CAA800;
  background: #f3ecd4;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  padding: 5px 35px 5px 10px;
}
body .sc-nav-box .inner .c-aco-wrap .c-aco-hidden .hidden-inner ul li a .arrow {
  position: absolute;
  display: block;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}
body .sc-nav-box .inner .c-aco-wrap .c-aco-hidden .hidden-inner ul li a .arrow .icon-arrow {
  display: block;
  transform: rotate(90deg);
}
@media (min-width: 769px) {
  body .pc-none {
    display: none !important;
  }
}
body .sc-table-box {
  margin-top: 35px;
}
body .sc-table-box .pc-table {
  margin-top: 24px;
}
body .sc-table-box .pc-table table {
  width: 100%;
}
body .sc-table-box .pc-table table th, body .sc-table-box .pc-table table td {
  text-align: center;
  vertical-align: middle;
  padding: 12px 7px;
}
body .sc-table-box .pc-table table thead tr th {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.025em;
  color: var(--color-genre);
}
body .sc-table-box .pc-table table thead tr th:nth-of-type(1) {
  border-bottom: 3px solid #fff;
}
body .sc-table-box .pc-table table thead tr th:not(:first-of-type) {
  border-left: 1px solid #fbe9de;
  position: relative;
  border-bottom: 1px dashed #c3c1be;
}
body .sc-table-box .pc-table table thead tr th:not(:first-of-type):before, body .sc-table-box .pc-table table thead tr th:not(:first-of-type):after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% - 1px);
  height: 3px;
  background: #fff;
  width: 10px;
}
body .sc-table-box .pc-table table thead tr th:not(:first-of-type):before {
  left: 0;
}
body .sc-table-box .pc-table table thead tr th:not(:first-of-type):after {
  right: 0;
}
body .sc-table-box .pc-table table tbody tr td {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
body .sc-table-box .pc-table table tbody tr td:first-of-type {
  border-bottom: 3px solid #fff;
  color: #e9915a;
  font-weight: 500;
  background: #fcf0e8;
}
body .sc-table-box .pc-table table tbody tr td:not(:first-of-type) {
  border-bottom: 1px dashed #c3c1be;
  position: relative;
}
body .sc-table-box .pc-table table tbody tr td:not(:first-of-type):before, body .sc-table-box .pc-table table tbody tr td:not(:first-of-type):after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% - 1px);
  height: 3px;
  background: #fff;
  width: 10px;
}
body .sc-table-box .pc-table table tbody tr td:not(:first-of-type):before {
  left: 0;
}
body .sc-table-box .pc-table table tbody tr td:not(:first-of-type):after {
  right: 0;
}
body .sc-table-box .pc-table table tbody tr td:nth-of-type(n + 2) {
  border-left: 1px solid #fbe9de;
}
body .sc-table-box .pc-table table tbody tr:nth-of-type(even) td:first-of-type {
  background: #f9e3d6;
}
body .sc-line {
  border-top: 1px dashed #c3c1be;
  margin: 25px 0;
}
body .sc-image {
  margin-top: 11px;
}
body .s-note {
  font-size: 11px;
}
body .sc-color-etc {
  color: #e9915a;
}
body .sc-ryokin-box {
  margin-top: 20px;
}
body .sc-ryokin-box .ryokin-box .ryokin-item .naiyo {
  padding-left: 15px;
  margin-top: 6px;
}
body .sc-ryokin-box .ryokin-box .ryokin-item .naiyo .price-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 142px;
  text-align: center;
  line-height: 27px;
  color: #fff;
  padding: 0 10px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.025em;
  display: inline-block;
  margin-right: 8px;
  background: #86847d;
}
body .sc-ryokin-box .ryokin-box .ryokin-item .naiyo .price-nth {
  color: #e9915a;
  font-size: 17px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: 0.05em;
}
body .sc-ryokin-box .ryokin-box .ryokin-item + .ryokin-item {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed #c3c1be;
}
body .sc-ryokin-box > .kazuki-section__message {
  margin-bottom: 15px;
}
body .sc-simple-box {
  margin-top: 27px;
}
body .sc-simple-box .mini-title {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.025em;
  color: #e9915a;
  display: inline-block;
  margin-top: 13px;
}
body .sc-simple-box2 {
  margin: 20px 0 0;
  padding: 20px 0;
  border-top: 1px dashed #c3c1be;
  border-bottom: 1px dashed #c3c1be;
}
body .sc-simple-box2 h4 {
  margin-bottom: 6px;
}
body .sc-simple-box2 dl dt {
  font-weight: 500;
  font-size: 14px;
  color: #e9915a;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
body .sc-simple-box2 dl dd {
  margin-top: 3px;
}
body .sc-simple-box2 dl dd .kazuki-section__message {
  margin-top: 0;
}
body .sc-simple-box2 dl + dl {
  margin-top: 22px;
}
body .sc-design-box {
  margin-top: 20px;
}
body .sc-design-box .point {
  display: inline-block;
  font-weight: normal;
  font-size: 17px;
  color: #e9915a;
  margin-right: 15px;
}
body .sc-design-box .dl .dt {
  font-weight: 600;
  font-size: 15px;
  color: #86847d;
}
body .sc-design-box .dl .dt:before {
  content: "■";
  color: #e9915a;
}
body .sc-design-box .dl .dd .double-box {
  display: flex;
}
body .sc-design-box .dl .dd .double-box .image {
  max-width: 100%;
  margin-right: 18px;
  flex-shrink: 0;
  margin-top: 10px;
}
body .sc-design-box .dl .dd .kazuki-section__message {
  margin-top: 10px;
}
body .sc-design-box .dl .dd .kazuki-section__message img {
  margin-top: 16px;
}
body .sc-design-box .dl .dd .kazuki-section__message img:not(:last-of-type) {
  margin-right: 23px;
}
body .sc-design-box .dl .dd .mini-title {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.025em;
  color: #e9915a;
  display: inline-block;
  margin-top: 13px;
}
body .sc-design-box .dl .dd .kazuki-checklist__items {
  margin-top: 16px;
}
body .sc-design-box .dl + dl {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px dashed #c3c1be;
}
@media (max-width: 768px) {
  body .sp-none {
    display: none !important;
  }
  body .sc-top-title .main {
    font-size: 52px;
  }
  body .sc-top-title .sub {
    font-size: 22px;
  }
  body .sc-top-title2 .main {
    font-size: 41px;
    margin: 0;
  }
  body .sc-top-title2 .sub {
    display: block;
    margin-top: 5px;
  }
  body .sc-top-text-area {
    position: relative;
  }
  body .sc-top-text-area:before {
    content: "";
    background: rgba(134, 132, 125, 0.08);
    display: block;
    position: absolute;
    bottom: 100%;
    height: 98px;
    width: 100%;
    left: 0;
    z-index: -1;
  }
  body .sc-top-text-area .inner {
    padding: 35px 0 40px;
  }
  body .sc-top-text-area2 {
    margin-top: 35px;
  }
  body .sc-top-text-area2 .inner .sc-top-title2 {
    padding-bottom: 10px;
    padding-right: 28px;
  }
  body .sc-form-box .form-wrap .tr .s50 {
    width: 100%;
  }
  body .sc-form-box .form-wrap .tr dl + dl {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #c3c1be;
  }
  body .sc-form-box .form-wrap .tr .kibo-box {
    display: block;
    position: relative;
    padding-left: 75px;
  }
  body .sc-form-box .form-wrap .tr .kibo-box .kibo-text {
    position: absolute;
    top: 10px;
    left: 0;
  }
  body .sc-form-box .form-wrap .tr .kibo-box .kibo-f {
    width: 100%;
  }
  body .sc-form-box .form-wrap .tr .kibo-box .kibo-f + .kibo-f {
    margin-top: 6px;
  }
  body .sc-other-links {
    padding: 55px 0 65px;
  }
  body .sc-other-links .inner ul {
    display: block;
    margin-top: 15px;
  }
  body .sc-other-links .inner ul:after {
    display: none;
  }
  body .sc-other-links .inner ul li {
    width: 100%;
  }
  body .sc-nav-box .inner .c-aco-wrap {
    position: relative;
    z-index: 10;
  }
  body .sc-nav-box .inner .c-aco-wrap .c-aco-button {
    background: #86847D;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 1.6;
    padding: 5px 33px 5px 10px;
    position: relative;
  }
  body .sc-nav-box .inner .c-aco-wrap .c-aco-button:before, body .sc-nav-box .inner .c-aco-wrap .c-aco-button:after {
    content: "";
    display: block;
    background: #fff;
    position: absolute;
    top: 50%;
  }
  body .sc-nav-box .inner .c-aco-wrap .c-aco-button:before {
    width: 1px;
    height: 11px;
    right: 20px;
    top: calc(50% + 1px);
    transform: translate(0, -50%);
    transition: height 0.2s;
  }
  body .sc-nav-box .inner .c-aco-wrap .c-aco-button:after {
    height: 1px;
    width: 11px;
    right: 15px;
  }
  body .sc-nav-box .inner .c-aco-wrap .c-aco-hidden {
    overflow: hidden;
    transition: height 0.2s;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    height: 0;
  }
  body .sc-nav-box .inner .c-aco-wrap .c-aco-hidden .hidden-inner {
    padding: 10px;
    background: #fff;
  }
  body .sc-nav-box .inner .c-aco-wrap .c-aco-hidden .hidden-inner ul li + li {
    margin-top: 10px;
  }
  body .sc-nav-box .inner .c-aco-wrap.open .c-aco-button:before {
    height: 0;
  }
  body .sc-table-box .sp-table .item .title {
    font-weight: 600;
    font-size: 14px;
    color: #e9915a;
    letter-spacing: 0.025em;
    line-height: 1.5;
  }
  body .sc-table-box .sp-table .item table {
    width: 100%;
    margin-top: 3px;
  }
  body .sc-table-box .sp-table .item table tbody tr td {
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    padding: 13px 7px;
  }
  body .sc-table-box .sp-table .item table tbody tr td:first-of-type {
    font-weight: 500;
    background: #fcf0e8;
    border-bottom: 3px solid #fff;
  }
  body .sc-table-box .sp-table .item table tbody tr td:not(:first-of-type) {
    border-bottom: 1px dashed #c3c1be;
    position: relative;
    width: 160px;
  }
  body .sc-table-box .sp-table .item table tbody tr td:not(:first-of-type):before, body .sc-table-box .sp-table .item table tbody tr td:not(:first-of-type):after {
    content: "";
    display: block;
    position: absolute;
    top: calc(100% - 1px);
    height: 3px;
    background: #fff;
    width: 10px;
  }
  body .sc-table-box .sp-table .item table tbody tr td:not(:first-of-type):before {
    left: 0;
  }
  body .sc-table-box .sp-table .item table tbody tr td:not(:first-of-type):after {
    right: 0;
  }
  body .sc-table-box .sp-table .item table tbody tr:nth-of-type(1) td:first-of-type {
    border-top: 3px solid #fff;
  }
  body .sc-table-box .sp-table .item table tbody tr:nth-of-type(1) td:not(:first-of-type) {
    border-top: 1px dashed #c3c1be;
  }
  body .sc-table-box .sp-table .item table tbody tr:nth-of-type(1) td:not(:first-of-type):before, body .sc-table-box .sp-table .item table tbody tr:nth-of-type(1) td:not(:first-of-type):after {
    top: -2px;
    height: calc(100% + 4px);
  }
  body .sc-table-box .sp-table .item table tbody tr:nth-of-type(even) td:first-of-type {
    background: #f9e3d6;
  }
  body .sc-table-box .sp-table .item + .item {
    margin-top: 24px;
  }
  body .sc-design-box .point {
    margin-right: 0;
    width: 100%;
    margin-bottom: -4px;
    margin-top: 3px;
  }
  body .sc-design-box .dl .dd .double-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  body .sc-design-box .dl .dd .double-box .image {
    max-width: 100%;
    margin-right: 0;
    order: 1;
  }
  body .sc-design-box .dl .dd .double-box .text-box {
    width: 100%;
  }
  body .sc-design-box .dl .dd .kazuki-section__message img {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  body .sc-design-box .dl + dl {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px dashed #c3c1be;
  }
}

body .privacy-policy-page .privacy-contents {
  margin-top: 55px;
}
body .privacy-policy-page .privacy-contents .inner {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
body .privacy-policy-page .privacy-contents .inner .item {
  margin-top: 53px;
}
body .privacy-policy-page .privacy-contents .inner .item .title {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  background: #fff;
  padding: 6px 12px;
  border-left: 6px solid #009AB9;
  margin-bottom: 13px;
}
body .privacy-policy-page .privacy-contents .inner .back-button {
  margin-top: 60px;
}
/*# sourceMappingURL=page-privacy-policy.css.map */