@charset "UTF-8";

/*==========================================
PC共通
===========================================*/
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0 auto;
  font-family: "Shippori Mincho B1", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  color: #573100;
  line-height: 1.8;
  text-align: center;
  letter-spacing: .08em;
  font-size: 1.6rem;
  word-break: normal;
}

#wrapper {
  min-width: 1200px;
}

/*==========================================
PC表示で電話番号リンクを無効
===========================================*/
a[href^="tel:"] {
  pointer-events: none;
}

/*==========================================
サイトの標準横幅と内部余白
===========================================*/
.inbox {
  width: 1080px;
  margin: 0 auto;
}

.com-pd {
  padding: 115px 0;
}

.com-pt {
  padding-top: 115px;
}

.com-pb {
  padding-bottom: 115px;
}

.com-mb {
  margin-bottom: 115px;
}

/*==========================================
PC非表示
===========================================*/
.pc-none {
  display: none !important;
}

/*==========================================
パンくずリスト
===========================================*/
div .bread {
  font-size: 1rem;
  text-align: left;
  position: relative;
  z-index: 1;
}
div .bread .breadcrumbs {
  position: absolute;
  width: 1080px;
  margin: 0 auto;
  left: 0;
  top: 10px;
}
div .bread li {
  display: inline-block;
  color: #c59f6e;
}
div .bread li:after {
  content: " > ";
  padding: 0 2px;
  color: #c59f6e;
}
div .bread li:last-child:after {
  content: "";
}
div .bread li a {
  color: #c59f6e;
}

/*==========================================
float
===========================================*/
.fl-l {
  float: left;
}

.fl-r {
  float: right;
}

/*==========================================
Flexbox
===========================================*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*折り返し
-----------------------*/
.flx-wrp {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/*逆順
-----------------------*/
.flx-rr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/*水平方向の揃え
=================================================*/
/*初期値
-----------------------*/
.flx-strt {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between）
-----------------------*/
.flx-btw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around）
-----------------------*/
.flx-ard {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

/*水平揃え　末揃え
-----------------------*/
.flx-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/*水平揃え　中央揃え
-----------------------*/
.flx-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*垂直方向の揃え
=================================================*/
/*水平揃え　上揃え
-----------------------*/
.flx-alitem-strt {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/*水平揃え　高さ揃え
-----------------------*/
.flx-alitem-strch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/*水平揃え　縦・横の中央揃え
-----------------------*/
.flx-alitem-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*水平揃え　下揃え
-----------------------*/
.flx-alitem-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/*水平揃え　ベースライン揃え
-----------------------*/
.flx-alitem-base {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

/*複数行にした揃え方
=================================================*/
/*初期値
-----------------------*/
.flx-alcont-strt {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え
-----------------------*/
.flx-alcont-strch {
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

/*親要素の終点から配置。下揃え
-----------------------*/
.flx-alcont-end {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

/*中央揃え
-----------------------*/
.flx-alcont-c {
  -ms-flex-line-pack: center;
      align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-btw {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-ard {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

.flex-order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.flex-order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

/*==========================================
スマホ用ドロワー無効
===========================================*/
.drawer_menu {
  display: none;
}

#nav-toggle,
#global-nav {
  display: none;
}

.drawer_menu {
  display: none;
}

/*==========================================
header
===========================================*/
#header {
  padding: 15px 1.5625%;
  background: #fff;
  position: fixed;
  z-index: 1001;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 112px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#header .hd-left{
  width: 29.8387%;
}
#header .hd-left h1{
  width: 50.45%;
  line-height: 1;
}
#header .hd-left .hd-reserve{
  width: 45.045%;
  border: 1px solid #e2ceb6;
  padding: 2px;
  box-sizing: border-box;
  font-size: calc(clamp(1rem, .83vw, 1.6rem));
  margin-left: 4.5045%;
}
#header .hd-left .hd-reserve span{
  display: block;
  background: url(../img/common/hd-reserve_btn.png) center/cover no-repeat;
  padding: 3.85% 5px;
  position: relative;
}

#header .hd-left .hd-reserve span:before{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5%;
  margin: auto;
  content: '';
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#header .hd-right {
  width: clamp(560px,39.78494%,740px);
}
#header .hd-info {
  width: 420px;
  margin: 0 0 10px auto;
}
#header .hd-info .tel-wrp .phone-num {
  padding-left: 25px;
  background: url(../img/common/hd-tel_icon.png) left center no-repeat;
  font-size: 2.2rem;
  display: inline-block;
  line-height: 1;
}
#header .hd-info .tel-wrp .attention {
  line-height: .3;
  display: block;
}

/*==========================================
nav
===========================================*/
#nav li {
  font-size: calc(clamp(1.1rem, .68vw, 1.5rem));
  position: relative;
  font-weight: 600;
}
#nav li:after {
  width: 1px;
  height: 16px;
  position: absolute;
  content: '';
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto 0;
  background: #ffa7ca;
}
#nav li a {
  padding: 0 clamp(10px,.7vw,16px);
  display: block;
}
#nav li a span {
  padding-bottom: 3px;
  display: block;
  position: relative;
}
#nav li a span:before {
  content: '';
  width: 0;
  left: 50%;
  bottom: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 1px solid #c59f6e;
  position: absolute;
  display: block;
}
#nav li a span:after {
  content: '';
  width: 0;
  right: 50%;
  bottom: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 1px solid #c59f6e;
  position: absolute;
  display: block;
}
#nav li a span:hover {
  color: #c59f6e;
}
#nav li a span:hover:before {
  width: 50%;
  border-bottom: 1px solid #c59f6e;
}
#nav li a span:hover:after {
  width: 50%;
  border-bottom: 1px solid #c59f6e;
}
#nav li:last-child:after {
  background: none;
}
#nav li:last-child a {
  padding-right: 0;
}
#nav .current a span {
  border-bottom: 1px solid #c59f6e;
}
#nav .current a span:before, #nav .current a span:after {
  border-bottom: none;
}
#nav .current a span:hover:before, #nav .current a span:hover:after {
  border-bottom: none;
}

/*==========================================
メインビジュアル
===========================================*/
#mv {
  height: 44.791vw;
  max-height: 860px;
  margin-top: 112px;
  position: relative;
  background: url(../img/top/mv/mv.jpg) center/cover no-repeat;
}
#mv h2 {
  position: absolute;
  left: 13.5416%;
  bottom: 24.4186%;
  width: 31.9791%;
}

/*==========================================
共通ブロック・要素
===========================================*/
.txt-blc {
  text-align: left;
}
.txt-blc p {
  margin-bottom: 25px;
  line-height: 1.8;
}
.txt-blc p:last-child {
  margin-bottom: 0;
}

#g-map h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}
#g-map h4 span {
  padding-left: 20px;
}
#g-map .map {
  height: 400px;
}
#g-map .map iframe {
  width: 100%;
  height: 100%;
}

.mail-btn {
  width: 130px;
  display: block;
  border: 1px solid #e2ceb6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.3rem;
}
.mail-btn span {
  display: block;
  padding: 3px 5px 3px 15px;
  border: 2px solid #fff;
  position: relative;
}
.mail-btn span:before {
  position: absolute;
  content: '';
  width: 16px;
  height: 12px;
  background: url(../img/common/hd-mail_icon.png) center/100% no-repeat;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.com-btn {
  padding: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  display: block;
  border: 1px solid #e2ceb6;
  font-size: 1.5rem;
}
.com-btn span {
  display: block;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#cda4da+0,fec6dc+50,fff696+100 */
  background: -webkit-gradient(linear, left top, right top, from(rgba(205, 164, 218, 0.3)), color-stop(50%, rgba(254, 198, 220, 0.3)), to(rgba(255, 246, 150, 0.3)));
  background: linear-gradient(to right, rgba(205, 164, 218, 0.3) 0%, rgba(254, 198, 220, 0.3) 50%, rgba(255, 246, 150, 0.3) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  border: 2px solid #fff;
  padding: 6px 3px;
}

.img-blc img {
  border: 5px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: #e2ceb6 0px 1px 3px 0px, #e2ceb6 0px 0px 0px 1px;
          box-shadow: #e2ceb6 0px 1px 3px 0px, #e2ceb6 0px 0px 0px 1px;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-dl > dl {
  padding: 3px 0;
  border-top: 1px solid #e2ceb6;
}
.com-dl > dl:last-child {
  border-bottom: 1px solid #e2ceb6;
}
.com-dl > dl > dt, .com-dl > dl > dd {
  display: table-cell;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
.com-dl > dl > dt {
  width: 300px;
  padding: 15px 10px;
  width: 180px;
  font-weight: 500;
  vertical-align: top;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffa7ca+0,eba5d3+50,dfb8ec+100 */
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 167, 202, 0.4)), color-stop(50%, rgba(235, 165, 211, 0.4)), to(rgba(223, 184, 236, 0.4)));
  background: linear-gradient(to right, rgba(255, 167, 202, 0.4) 0%, rgba(235, 165, 211, 0.4) 50%, rgba(223, 184, 236, 0.4) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.com-dl > dl > dd {
  font-weight: 500;
  width: 780px;
  padding: 15px 20px;
}
.com-dl > dl > dd a[href^="mailto:"] {
  text-decoration: underline;
}

/*==========================================
トップページ
===========================================*/
/*------------------------------
コンセプト
-------------------------------*/
#top-concept {
  padding: 20px 0 0 0;
  background: url(../img/top/concept-bg.png) top center/100% no-repeat;
}
#top-concept h3 {
  letter-spacing: .1em;
  margin-bottom: 55px;
}
#top-concept h3 .q-txt {
  font-size: 2.6rem;
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
}
#top-concept h3 .q-txt:before, #top-concept h3 .q-txt:after {
  width: 1px;
  height: 32px;
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: #573100;
}
#top-concept h3 .q-txt:before {
  left: -25px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#top-concept h3 .q-txt:after {
  right: -25px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#top-concept h3 .a-txt {
  padding: 0 10px;
  display: inline-block;
  font-size: 3rem;
}
#top-concept .concept-list {
  gap: 50px;
  margin-bottom: 55px;
}
#top-concept .concept-list li {
  width: 220px;
  position: relative;
}
#top-concept .concept-list .concept-num {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  right: 0;
  top: 145px;
  background: #ffb2d0;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
}
#top-concept .concept-list p {
  font-size: 1.9rem;
  padding: 35px 0 25px 0;
  background: url(../img/top/concept-bdr.png) top center no-repeat, url(../img/top/concept-bdr.png) bottom center no-repeat;
}
#top-concept .end-txt {
  line-height: 3;
  font-size: 1.6rem;
}

/*------------------------------
ヒーリングサロン マキュアーナの特徴
-------------------------------*/
#top-feature {
  max-width: 1740px;
  margin: 0 auto;
  width: 90.625%;
  min-width: 1200px;
  padding: 105px 0 100px 0;
  background: url(../img/top/feature-ttl_bg.png) center top no-repeat, url(../img/top/feature-btm_bg.png) bottom center/100% no-repeat;
}
#top-feature .ttl01 {
  margin-bottom: 65px;
}
#top-feature .feature-list {
  width: 945px;
  margin: 0 auto;
}
#top-feature .feature-list li {
  width: 280px;
  margin: 0 50px 75px 0;
}
#top-feature .feature-list li:nth-child(3n+1):nth-last-child(-n+3), #top-feature .feature-list li:nth-child(3n+1):nth-last-child(-n+3) ~ li {
  margin-bottom: 0;
}
#top-feature .feature-list li:nth-child(3n), #top-feature .feature-list li:last-child {
  margin-right: 0;
}
#top-feature .feature-list li dl {
  position: relative;
}
#top-feature .feature-list li dt {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  background: url(../img/top/feature-item_bg.png) center no-repeat;
  font-size: 2.5rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.4;
  margin-bottom: -30px;
  z-index: 1;
  position: relative;
}
#top-feature .feature-list li dt span {
  position: absolute;
  left: 0;
  right: 0;
  top: -45px;
  margin: 0 auto;
}
#top-feature .feature-list li dd {
  background: #fff;
  font-size: 1.7rem;
  line-height: 1.5;
  padding: 5px;
}
#top-feature .feature-list li dd span {
  display: block;
  border: 1px solid #e2ceb6;
  padding: 35px 0;
}

/*------------------------------
ヒーリングエステについて / ヒーリング体験講座・カウンセリング / お客様の声
-------------------------------*/
.top-lower-link {
  position: relative;
  z-index: 1;
  padding: 105px 0;
}
.top-lower-link .link-box {
  width: 500px;
  background: url(../img/top/salon-info_box_bdr.png) top 20px center no-repeat, url(../img/top/salon-info_box_bdr.png) bottom 20px center no-repeat, #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 65px 0;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.03);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.03);
}
.top-lower-link .link-box h3 {
  margin-bottom: 20px;
}
.top-lower-link .link-box h3 .jp {
  display: inline-block;
  font-size: 2.5rem;
  padding: 5px 15px;
  margin-bottom: 5px;
}
.top-lower-link .link-box h3 .en {
  display: block;
  font-size: 1.5rem;
  color: #cda4da;
}
.top-lower-link .link-box p {
  line-height: 2.3;
  font-size: 1.5rem;
}
.top-lower-link .link-box .com-btn {
  width: 245px;
  margin: 30px auto 0 auto;
}
.top-lower-link .link-img {
  position: absolute;
  z-index: -1;
  top: 7%;
  margin: auto 0;
  width: 69.27083%;
}
.top-lower-link .link-img:before {
  width: 100%;
  height: 1px;
  background: #e2ceb6;
  bottom: -5px;
  left: 0;
  right: 0;
  position: absolute;
  content: '';
}
.top-lower-link:nth-child(1) {
  padding-top: 160px;
}
.top-lower-link:nth-child(1) .link-img {
  top: 12%;
}
.top-lower-link:last-child {
  padding-bottom: 215px;
}
.top-lower-link:nth-child(odd) .link-box {
  margin-left: auto;
}
.top-lower-link:nth-child(odd) .link-img {
  left: 0;
}
.top-lower-link:nth-child(even) .link-img {
  right: 0;
}

#top-healing {
  background: url(../img/top/beauty-salon-bg.png) right top no-repeat;
}

#top-couseling {
  background: url(../img/top/healing-counseling-bg.png) left top no-repeat;
}

#top-voice {
  background: url(../img/top/voice-bg.png) right top no-repeat;
}

/*------------------------------
アプリをインストール！
-------------------------------*/
#top-app {
  padding: 95px 0;
  background: url(../img/top/app-bg.jpg) center/cover no-repeat;
}
#top-app .app-wrp {
  background: url(../img/top/app-box_bg.jpg) center/cover no-repeat;
  -webkit-box-shadow: 0 0 10px rgba(65, 38, 0, 0.1);
          box-shadow: 0 0 10px rgba(65, 38, 0, 0.1);
  border: 4px solid #fff;
  padding: 40px 60px 35px 50px;
}
#top-app h3 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 30px;
  background: url(../img/top/app-ttl_bg.png) center no-repeat;
}
#top-app .app-feature-list {
  width: 580px;
}
#top-app .app-feature-list li {
  width: 180px;
  height: 180px;
  margin: 0 20px 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: url(../img/top/app-feature_bg.png) center/100% no-repeat;
}
#top-app .app-feature-list li:nth-child(3n+1):nth-last-child(-n+3), #top-app .app-feature-list li:nth-child(3n+1):nth-last-child(-n+3) ~ li {
  margin-bottom: 0;
}
#top-app .app-feature-list li:nth-child(3n), #top-app .app-feature-list li:last-child {
  margin-right: 0;
}
#top-app .app-feature-list li .feature-icon {
  width: 100%;
  display: block;
}
#top-app .app-feature-list li .feature-txt {
  width: 100%;
  display: block;
  line-height: 1.6;
  font-size: 1.8rem;
  margin-top: 15px;
}
#top-app .download-wrp {
  width: 325px;
  padding: 30px 0;
  border-bottom: 3px double #e2ceb6;
  border-top: 3px double #e2ceb6;
}
#top-app .download-wrp dt {
  font-size: 2rem;
  margin-bottom: 15px;
}
#top-app .download-wrp dt span {
  display: inline-block;
  position: relative;
}
#top-app .download-wrp dt span:before, #top-app .download-wrp dt span:after {
  width: 1px;
  height: 25px;
  position: absolute;
  content: '';
  background: #573100;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#top-app .download-wrp dt span:before {
  left: -25px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#top-app .download-wrp dt span:after {
  right: -25px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#top-app .download-wrp dd a {
  display: block;
  margin-right: 17px;
}
#top-app .download-wrp dd a:last-child {
  margin-right: 0;
}

/*------------------------------
お知らせ
-------------------------------*/
#top-news {
  padding: 65px 0 30px 0;
}
#top-news .news-wrp-ttl {
  width: 215px;
}
#top-news .news-wrp-list {
  width: 780px;
}
#top-news .news-wrp-list article {
  text-align: left;
  border-bottom: 1px dashed #e2ceb6;
}
#top-news .news-wrp-list article a {
  display: block;
  padding: 10px 0;
}
#top-news .news-wrp-list article time {
  font-size: 1.5rem;
  display: block;
}
#top-news .news-wrp-list article h4 {
  margin-bottom: 5px;
  font-size: 1.6rem;
}
#top-news .news-wrp-list article a:hover h4 {
  text-decoration: underline;
}
#top-news .news-wrp-list article .category-label li {
  padding: 0 15px;
  color: #ffa7ca;
  font-size: 1.2rem;
  position: relative;
}
#top-news .news-wrp-list article .category-label li:before, #top-news .news-wrp-list article .category-label li:after {
  width: 1px;
  height: 13px;
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: #ffa7ca;
}
#top-news .news-wrp-list article .category-label li:before {
  left: 0;
}
#top-news .news-wrp-list article .category-label li:after {
  right: 0;
}
#top-news .news-wrp-list article .category-label li:not(:last-child):after {
  background: none;
}

/*==========================================
footer
===========================================*/
#footer {
  background: url(../img/common/ft-bg.png) center/cover no-repeat;
}
#footer .ft-wrp {
  padding: 100px 0 35px 0;
}
#footer .ft-wrp-l {
  width: 280px;
}
#footer .ft-wrp-l .ft-logo {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}
#footer .ft-wrp-l address {
  text-align: left;
  font-size: 1.3rem;
  font-weight: 500;
}
#footer .ft-wrp-r {
  width: 635px;
}
#footer .ft-wrp-r .ft-info {
  width: 415px;
  margin: 0 0 15px auto;
}
#footer .ft-wrp-r .tel-wrp .phone-num {
  padding-left: 25px;
  background: url(../img/common/hd-tel_icon.png) left center no-repeat;
  font-size: 2.2rem;
  display: inline-block;
  line-height: 1;
}
#footer .ft-wrp-r .tel-wrp .attention {
  line-height: .3;
  display: block;
}
#footer .ft-wrp-r .mail-btn {
  width: 130px;
}
#footer .ft-wrp-r .ofc-site li {
  margin: 0 20px 30px 0;
}
#footer .ft-wrp-r .ofc-site li:last-child {
  margin-right: 0;
}
#footer .ft-wrp-r .ft-nav li {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 19px 12px 0;
}
#footer .ft-wrp-r .ft-nav li:nth-child(5), #footer .ft-wrp-r .ft-nav li:last-child {
  margin-right: 0;
}
#footer .ft-wrp-r .ft-nav li a:hover {
  text-decoration: underline;
}

#copyright {
  font-size: 1.1rem;
  word-break: normal;
  background: #fed9e7;
  padding: 5px 0;
}
#copyright a {
  text-decoration: underline;
}

/*==========================================
サブビジュアル
===========================================*/
.lower-sv {
  position: relative;
  height: 26.041vw;
  max-height: 500px;
  min-height: 290px;
  margin-top: 112px;
}
.lower-sv h2 {
  width: 540px;
  height: 180px;
  background: url(../img/sv/sv-ttl_bdr.png) top 15px center no-repeat, url(../img/sv/sv-ttl_bdr.png) bottom 15px center no-repeat, url(../img/sv/sv-ttl_bg.png) center/cover no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3rem;
  font-weight: 500;
  border: 4px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 16.666%;
  bottom: 0;
  top: 0;
  margin: auto 0;
  -webkit-box-shadow: 0 0 rgba(65, 38, 0, 0.1);
          box-shadow: 0 0 rgba(65, 38, 0, 0.1);
}

#healing-sv {
  background: url(../img/sv/healing-sv.jpg) center/cover no-repeat;
}

#counseling-sv {
  background: url(../img/sv/counseling-sv.jpg) center/cover no-repeat;
}

#info-sv {
  background: url(../img/sv/info-sv.jpg) center/cover no-repeat;
}

#voice-sv {
  background: url(../img/sv/voice-sv.jpg) center/cover no-repeat;
}

#news-sv {
  background: url(../img/sv/news-sv.jpg) center/cover no-repeat;
}

#contact-sv {
  background: url(../img/sv/contact-sv.jpg) center/cover no-repeat;
}

#complete-sv {
  background: url(../img/sv/complete-sv.jpg) center/cover no-repeat;
}

#privacy-sv {
  background: url(../img/sv/privacy-sv.jpg) center/cover no-repeat;
}

#site-sv {
  background: url(../img/sv/site-sv.jpg) center/cover no-repeat;
}

#e404-sv {
  background: url(../img/sv/e404-sv.jpg) center/cover no-repeat;
}

/*==========================================
共通タイトル
===========================================*/
.ttl01 {
  margin-bottom: 35px;
}
.ttl01 .jp {
  display: block;
  font-size: 3.5rem;
  letter-spacing: .1em;
}
.ttl01 .en {
  font-size: 1.5rem;
  color: #ffa7ca;
  position: relative;
}
.ttl01 .en:before, .ttl01 .en:after {
  position: absolute;
  content: '';
  width: 30px;
  height: 7px;
  background: url(../img/common/ttl01-en_deco.png) center/100% no-repeat;
  margin: auto 0;
  top: 0;
  bottom: 0;
}
.ttl01 .en:before {
  left: -55px;
}
.ttl01 .en:after {
  right: -55px;
}

.ttl02 {
  text-align: left;
  font-size: 2.5rem;
  font-weight: 500;
  padding: 5px 15px;
  margin-bottom: 10px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffa7ca+0,eba5d3+50,dfb8ec+100 */
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 167, 202, 0.4)), color-stop(50%, rgba(235, 165, 211, 0.4)), to(rgba(223, 184, 236, 0.4)));
  background: linear-gradient(to right, rgba(255, 167, 202, 0.4) 0%, rgba(235, 165, 211, 0.4) 50%, rgba(223, 184, 236, 0.4) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

/*==========================================
ヒーリングエステ / ヒーリング体験講座/カウンセリング 共通
===========================================*/
/*------------------------------
こんなお悩みありませんか？
-------------------------------*/
.problem-sec {
  background: url(../img/healing/worry-bg.png) top center no-repeat;
}
.problem-sec .ttl01 .jp em {
  color: #cda4da;
}

/*------------------------------
ヒーリングエステについて
-------------------------------*/
.about-sec {
  background: url(../img/healing/about-bg.png) center/cover no-repeat;
}
.about-sec .about-content {
  width: 540px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.about-sec .about-content p {
  letter-spacing: .04em;
  line-height: 2.6;
  font-weight: 500;
}
.about-sec .about-img {
  width: 495px;
  text-align: right;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.about-sec .about-img img {
  margin-bottom: 25px;
}
.about-sec .about-img img:last-child {
  margin-bottom: 0;
}

.charm-sec .charm-img img {
  margin: 0 20px 40px 0;
}
.charm-sec .charm-img img:nth-child(even), .charm-sec .charm-img img:last-child {
  margin-right: 0;
}
.charm-sec p {
  margin-bottom: 40px;
  line-height: 2.6;
  font-weight: 500;
}

.price-sec {
  position: relative;
}
.price-sec:before {
  width: 100%;
  height: 1px;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 10px;
  background: #e2ceb6;
}
.price-sec .price-tbl {
  margin-bottom: 65px;
}
.price-sec .price-tbl:last-child {
  margin-bottom: 0;
}
.price-sec .price-tbl dl {
  padding: 20px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px dashed #e2ceb6;
}
.price-sec .post-blank {
  width: 230px;
  margin: 0 auto;
  font-size: 2rem;
  padding: 20px 0;
}

/*==========================================
ヒーリングエステ
===========================================*/
#healing-charm {
  background: url(../img/healing/charm-ttl_bg.png) top center no-repeat, url(../img/healing/charm-bg.png) bottom center no-repeat;
}

/*==========================================
ヒーリング体験講座/カウンセリング
===========================================*/
#counseling-charm {
  background: url(../img/counseling/charm-bg.png) bottom center no-repeat;
}

/*==========================================
お客様の声
===========================================*/
#voice {
  background: url(../img/voice/voice-bg.png) top center no-repeat;
}
#voice .voice-list-item {
  width: 520px;
  background: #fff;
  border: 1px solid #e2ceb6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 40px 40px 0;
  padding: 30px 35px;
}
#voice .voice-list-item:nth-child(2n+1):nth-last-child(-n+2), #voice .voice-list-item:nth-child(2n+1):nth-last-child(-n+2) ~ li {
  margin-bottom: 0;
}
#voice .voice-list-item:nth-child(even), #voice .voice-list-item:last-child {
  margin-right: 0;
}
#voice .voice-list-item h4 {
  text-align: left;
  font-size: 1.8rem;
  margin-bottom: 5px;
}
#voice .voice-list-item .item-menu {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: left;
  padding: 5px 15px;
  margin-bottom: 10px;
}
#voice .voice-list-item .item-content {
  text-align: left;
}
#voice .voice-list-item .item-content dt {
  font-size: 1.6rem;
  color: #ffa7ca;
  text-align: left;
  position: relative;
  margin-bottom: 15px;
}
#voice .voice-list-item .item-content dt:before {
  width: 335px;
  height: 1px;
  position: absolute;
  content: '';
  background: #e2ceb6;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

/*==========================================
店舗情報
===========================================*/
/*------------------------------
代表メッセージ
-------------------------------*/
#owner-message .message-content {
  width: 540px;
  font-weight: 500;
}

/*------------------------------
経歴
-------------------------------*/
#career {
  background: url(../img/info/career-bg.jpg) center/cover no-repeat;
}
#career p {
  line-height: 2.6;
  font-weight: 500;
  margin-bottom: 40px;
}
#career .career-profile {
  margin-bottom: 50px;
}
#career .career-profile:last-child {
  margin-bottom: 0;
}
#career .career-profile dd {
  padding: 20px;
  text-align: left;
  font-size: 1.8rem;
}

/*------------------------------
店舗概要
-------------------------------*/
#information .com-dl {
  margin-bottom: 40px;
}
#information .com-dl dt {
  text-align: center;
  vertical-align: middle;
}
#information .com-dl dd .attention {
  display: block;
}
#information .info-img {
  margin-bottom: 40px;
}

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.category-select {
  overflow: hidden;
  width: 300px;
  margin: 0 0 45px auto;
  text-align: center;
  position: relative;
  border-radius: 2px;
  border: 2px solid #2e2e2e;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.category-select:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: .8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #2e2e2e;
  pointer-events: none;
}
.category-select select {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 1em;
  cursor: pointer;
  text-indent: .01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px 38px 10px 8px;
  color: #2e2e2e;
  font-family: "Shippori Mincho B1", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.category-select select::-ms-expand {
  display: none;
}

/*==========================================
お知らせ
===========================================*/
.post-wrap .column-lists > li {
  margin-bottom: 25px;
  border-bottom: 1px solid #ccc;
}
.post-wrap .column-lists > li a {
  display: block;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.post-wrap .column-lists > li a:hover .more-btn {
  background: #fff;
  color: #ffa7ca;
}
.post-wrap .column-lists > li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.post-wrap .column-lists .post-ttl {
  text-align: left;
  margin-bottom: 15px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-wrap .column-lists .post-ttl time {
  color: #ffa7ca;
  text-align: left;
  padding: 4px 0;
  width: 65px;
}
.post-wrap .column-lists .post-ttl time,
.post-wrap .column-lists .post-ttl .category-label {
  font-weight: normal;
  font-size: 1rem;
}
.post-wrap .column-lists .post-ttl .category-label {
  width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-wrap .column-lists .post-ttl .category-label li {
  border: 1px solid #ffa7ca;
  color: #fff;
  background: #ffa7ca;
  padding: 2px 10px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.post-wrap .column-lists .post-ttl .category-label li:last-child {
  margin-right: 0;
}
.post-wrap .column-lists .post-ttl .column-ttl {
  width: 100%;
  margin-top: 10px;
  font-size: 2.3rem;
  font-weight: 500;
}
.post-wrap .column-lists .post-body {
  text-align: left;
  margin-bottom: 20px;
}
.post-wrap .column-lists .more-btn {
  width: 125px;
  font-size: 14px;
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: #ffa7ca;
  border: 1px solid #ffa7ca;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.post-wrap .post-content {
  padding: 0 20px 5px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
.post-wrap .post-content img {
  max-width: 100%;
}

/*----------------------------------
詳細ページのカテゴリー表示(タイトル下部)
----------------------------------*/
.single-meta {
  margin-bottom: 20px;
}
.single-meta time {
  font-size: 1.1rem;
  text-align: left;
  width: 85px;
  padding: 3px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.single-meta .category-label {
  width: 950px;
  font-size: 1rem;
  margin-left: 10px;
}
.single-meta .category-label li {
  margin-right: 10px;
  margin-bottom: 10px;
}
.single-meta .category-label li:last-child {
  margin-right: 0;
}
.single-meta .category-label li a {
  border: 1px solid #ffa7ca;
  color: #ffa7ca;
  padding: 3px 10px;
  border-radius: 25px;
  display: block;
}
.single-meta .category-label li a:hover {
  opacity: 1;
  color: #fff;
  background: #ffa7ca;
}

/*----------------------------------
詳細ページのカテゴリー表示(テキストエリア下部)
----------------------------------*/
.single-category {
  max-width: 250px;
  min-width: 150px;
  margin-top: 10px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 10px;
}
.single-category dt {
  width: 80px;
}
.single-category dt:after {
  content: ':';
  padding: 0 5px;
}
.single-category dd {
  max-width: 170px;
  line-height: 2;
  min-width: 60px;
}
.single-category ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-category ul li {
  margin-right: 5px;
}
.single-category ul li:last-child {
  margin-right: 0;
}
.single-category ul li a {
  display: block;
  padding-left: 8px;
  position: relative;
}
.single-category ul li a:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  left: 0;
  content: '#';
}
.single-category ul li a:hover {
  background: #ccc;
}

/*==========================================
お問い合わせ
===========================================*/
#contact {
  /* チェックボックス・ラジオボタン
  -------------------------------------------------- */
  /*==================================================
   日付選択フォーム
  ================================================== */
}
#contact .contact-form {
  margin-bottom: 20px;
}
#contact .contact-form dl dt {
  width: 320px !important;
  position: relative;
  vertical-align: top;
}
#contact .contact-form dl dt em {
  position: absolute;
  top: 15px;
  right: 10px;
  color: #f00;
  background: #fff;
  font-weight: 500;
  padding: 3px;
  font-size: 1rem;
}
#contact .contact-form dl dd {
  width: 760px;
}
#contact .contact-form dl dd li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#contact .contact-form dl dd li:last-child {
  margin-right: 0;
}
#contact .contact-form .txtarea {
  width: 100%;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  background: #fff;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Shippori Mincho B1", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
}
#contact .contact-form select {
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.6rem;
  font-family: "Shippori Mincho B1", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  color: #573100;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
}
#contact .contact-form #pc01,
#contact .contact-form #pc02 {
  width: 150px;
}
#contact .contact-form #address {
  margin-top: 15px;
}
#contact .contact-form textarea {
  height: 260px;
  line-height: 1.8;
}
#contact .contact-form .error-text {
  color: #ff0000;
  margin-bottom: 5px;
}
#contact .contact-form .upload-item-wrap #file01 {
  margin-bottom: 10px;
}
#contact .contact-form .upload-item-wrap .thumb {
  width: 200px;
  margin-right: 25px;
}
#contact .contact-form .upload-item-wrap .thumb img {
  max-width: 100%;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap {
  width: 130px;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button {
  width: 100%;
  border-radius: 5px;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  padding: 5px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .ancion-btn:hover,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button:hover {
  filter: alpha(opacity=60);
  opacity: .6;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button {
  margin-bottom: 5px;
  background: #ffa7ca;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap p {
  background: #cda4da;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .select-file,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap input {
  display: none !important;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap input#file-upload-button {
  background: #cda4da;
}
#contact .g-recaptcha div {
  margin: 0 auto;
  margin-bottom: 25px;
}
#contact input[type='button'][disabled],
#contact input[type='submit'][disabled] {
  opacity: .7;
  pointer-events: none;
}
#contact input[type='button'],
#contact input[type='submit'],
#contact .contact-submits-wrap button {
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 1.6rem;
  color: #fff;
  background: #fff;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Shippori Mincho B1", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #ffa7ca;
  color: #ffa7ca;
  border-radius: 0;
}
#contact input[type='button']:hover,
#contact input[type='submit']:hover,
#contact .contact-submits-wrap button:hover {
  background: #ffa7ca;
  cursor: pointer;
  color: #fff;
  filter: alpha(opacity=100);
  opacity: 1;
}
#contact .check-btn {
  width: 260px;
  margin: 0 auto;
  margin-top: 20px;
}
#contact .back-btn {
  width: 270px;
  margin: 0 auto;
  margin-right: 40px;
}
#contact .contact-submits-wrap {
  margin-top: 20px;
}
#contact .send-btn {
  width: 240px;
  margin: 0 auto;
}
#contact .privacy-agree {
  text-decoration: underline;
  color: -webkit-link;
}
#contact input[type=radio],
#contact input[type=checkbox] {
  display: inline-block;
  margin-right: 6px;
}
#contact input[type=radio] + label,
#contact input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  line-height: 30px;
  cursor: pointer;
}
#contact input[type=radio],
#contact input[type=checkbox] {
  display: none;
  margin: 0;
}
#contact input[type=radio] + label,
#contact input[type=checkbox] + label {
  margin-bottom: 5px;
  padding: 0 0 0 24px;
}
#contact input[type=radio] + label::before,
#contact input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background: #FFF;
}
#contact input[type=radio] + label::before {
  border: 2px solid #ccc;
  border-radius: 30px;
}
#contact input[type=checkbox] + label::before {
  border: 2px solid #ccc;
}
#contact input[type=radio]:checked + label::after,
#contact input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
}
#contact input[type=radio]:checked + label::after {
  left: 5px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #e74c3c;
  border-radius: 8px;
}
#contact input[type=checkbox]:checked + label::after {
  left: 3px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #e74c3c;
  border-bottom: 3px solid #e74c3c;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#contact .date-list {
  padding-left: inherit;
}
#contact .date-list li {
  list-style: none;
  margin-bottom: 15px;
}
#contact .date-list li p {
  margin-bottom: 5px;
}

.complete-box p a {
  text-decoration: underline;
}

/*==========================================
プライバシーポリシー
===========================================*/
#privacy .privacy-box {
  margin-bottom: 50px;
  text-align: left;
}
#privacy .privacy-box:last-child {
  margin-bottom: 0;
}
#privacy .privacy-box p {
  margin-bottom: 25px;
}
#privacy .privacy-box p:last-child {
  margin-bottom: 0;
}
#privacy .privacy-box ul {
  margin-top: 25px;
}

/*==========================================
プライバシーポリシー(LPフレーム時)
===========================================*/
/*==========================================
404.php
===========================================*/
#err-cont .txt-blc a {
  text-decoration: underline;
}
