@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
/* Shippori Mincho B1 */
/* Noto Sans Japanese */
/*	transition,hover
ホバー時のtransition秒数を統一、ホバーアクション
------------------------------------ */
/*	media-screen
画面サイズごとのcss設定に使用
------------------------------------ */
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
/*	layout
その他パーツ
------------------------------------ */
/*	font-size
スマホ時にフォントサイズを自動で変更
※13px以下は文字が読めないためPC/SP同じサイズ
------------------------------------ */
/* =========================================
  base  PC
  ページ全体に付与するcss
  header/footer/フォームなど共通箇所
========================================= */
body {
  /* fontはcom-txtに合わせる */
  width: 100%;
  min-width: 1100px;
  margin: 0 auto;
  color: #221635;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* safariの自動CSSを打ち消す */
* {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.disable-auto-tel a {
  color: inherit;
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
}

a[href^="fax:"] {
  -webkit-tap-highlight-color: transparent !important;
  pointer-events: none !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  text-decoration: none !important;
}

/*	parts  PC
共通パーツの設定
------------------------------------ */
a {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  a {
    transition: all 0.3s ease;
  }
  a:hover {
    opacity: 0.7;
  }
}

/* 横幅480px以内で改行したくないときにspanにクラスをつけて使う */
.br {
  display: inline-block;
}

.over {
  overflow: hidden;
}

.fle {
  display: flex;
}

.fle-between {
  justify-content: space-between;
}

.fle-around {
  justify-content: space-around;
}

.fle-center {
  justify-content: center;
}

/* =========================================
  header  PC
  ヘッダー部分（MV含む）のcss
========================================= */
/*	headline  PC
ロゴ、ヘッダーナビ、ヘッダーリンク等
------------------------------------ */
#header {
  width: 100%;
}
#header .headline {
  width: 100%;
  height: 90px;
  padding: 0 10px 0 22px;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 99;
}
#header .logo {
  display: inline-block;
  transition: all 0.3s ease;
}
#header .logo:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1200px) {
  #header .logo {
    width: 150px;
  }
}
#header .logo a,
#header .logo img {
  display: block;
}
#header .current {
  color: #442672 !important;
}
#header .contact-list {
  margin-left: 1.5vw;
}
#header .contact-list-line {
  width: 300px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.56;
  color: #fff;
  border-left: 2px solid #7b56b2;
  background-image: linear-gradient(90deg, #220b44, #2f066f 50%, #7e4dc7);
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
  position: relative;
}
#header .contact-list-line::after {
  position: absolute;
  content: "";
}
@media screen and (max-width: 1200px) {
  #header .contact-list-line {
    width: 280px;
  }
}
#header .contact-list-line::before {
  content: "";
  width: 30px;
  height: 30px;
  margin-right: 20px;
  background: url(/img/all/line-ico.png) no-repeat;
  background-size: 100%;
}
#header .contact-list-line::after {
  width: 8px;
  height: 8px;
  bottom: 2px;
  right: 2px;
  background: url(/img/all/arw.png) no-repeat;
  background-size: 100%;
  transition: all 0.3s ease;
}
#header .contact-list-line:hover::after {
  transform: translate(2px, 2px);
}

/*	gnav  PC
ヘッダーナビ（PC時）
------------------------------------ */
#gnav .list-item:nth-of-type(n + 2) {
  margin-left: 30px;
}
@media screen and (max-width: 1250px) {
  #gnav .list-item:nth-of-type(n + 2) {
    margin-left: 20px;
  }
}
#gnav .list-link {
  text-align: center;
  line-height: 1.4;
  color: #221635;
  position: relative;
}
@media screen and (max-width: 1250px) {
  #gnav .list-link {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1250px) and (max-width: 767px) {
  #gnav .list-link {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#gnav .list-link::before {
  background: #442672;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
#gnav .list-link:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}
#gnav .list-link-sm {
  letter-spacing: 0.1em;
  color: #7b56b2;
  font-size: 13px;
  font-size: 1.3rem;
}
#gnav .sns-list-item:nth-of-type(n + 2) {
  margin-left: 15px;
}

/*	mv  PC
メインビジュアル（トップ用）
------------------------------------ */
#top-mv .mv {
  position: relative;
  width: 100%;
  height: 44.2vw;
  min-height: 550px;
  background: url(/img/all/mv.jpg) no-repeat center/cover;
}
#top-mv .mv-ttl {
  position: absolute;
  width: 29.3vw;
  min-width: 400px;
  left: calc(50% - 28.64vw);
  top: 14vw;
}
#top-mv .mv-ttl img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1250px) {
  #top-mv .mv-ttl {
    min-width: 400px;
    left: calc(50% - 380px);
    top: 180px;
  }
}

/*	page-top  PC
page-top リンク
------------------------------------ */
.fixed {
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 99;
}
.fixed-contact {
  display: flex;
  align-items: center;
  width: 80px;
  height: 270px;
  padding-top: 70px;
  writing-mode: vertical-rl;
  color: #fff;
  background-color: #442672;
  border-radius: 40px 40px 8px 40px;
  position: relative;
  font-size: 23px;
  font-size: 2.3rem;
}
.fixed-contact::after {
  position: absolute;
  content: "";
}
@media screen and (max-width: 767px) {
  .fixed-contact {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.fixed-contact::after {
  width: 25px;
  height: 31px;
  transform: translateX(-50%);
  left: 50%;
  top: 30px;
  background: url(/img/all/fixed-ico.png) no-repeat;
  background-size: 100%;
  transition: all 0.5s ease;
}
.fixed-contact:hover::after {
  transform: translateX(-50%) scale(0.95);
}
.fixed-page {
  margin-top: 30px;
  transition: 0.3s ease;
}
.fixed-page:hover {
  transform: translate(0px, -5px);
}

/* =========================================
  footer  PC
  フッター
========================================= */
#footer .current {
  border-bottom: 1px solid #fff !important;
}
#footer .bg {
  border-top: 2px solid #442672;
}
#footer .sns {
  gap: 40px;
  margin-top: 30px;
}
#footer .link-list {
  gap: 10px;
  margin-top: 30px;
}
#footer .link-list-btn-inner {
  text-align: center;
}
#footer .link-list-btn01 {
  width: 290px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #442672;
  border: 1px solid #442672;
  position: relative;
}
#footer .link-list-btn01::after {
  position: absolute;
  content: "";
}
#footer .link-list-btn01::after {
  width: 8px;
  height: 8px;
  bottom: 2px;
  right: 2px;
  background: url(/img/all/news-arw.png) no-repeat;
  background-size: 100%;
  transition: all 0.3s ease;
}
#footer .link-list-btn01:hover::after {
  transform: translate(2px, 2px);
}
#footer .link-list-btn02 {
  width: 190px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #822cbe;
  color: #822cbe;
  position: relative;
}
#footer .link-list-btn02::after {
  position: absolute;
  content: "";
}
#footer .link-list-btn02::after {
  width: 8px;
  height: 8px;
  bottom: 2px;
  right: 2px;
  background: url(/img/all/arw-color02.png) no-repeat;
  background-size: 100%;
  transition: all 0.3s ease;
}
#footer .link-list-btn02:hover::after {
  transform: translate(2px, 2px);
}
#footer .link-list-txt {
  letter-spacing: 0.08em;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  #footer .link-list-txt {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .link-list-ttl {
  letter-spacing: 0.08em;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #footer .link-list-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#footer .address {
  letter-spacing: 0.1em;
  margin-top: 25px;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  #footer .address {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .list:nth-of-type(n + 2) {
  margin-left: 60px;
}
#footer .list-item:nth-of-type(n + 2) {
  margin-top: 15px;
}
#footer .list-link {
  padding-left: 15px;
  color: #442672;
  position: relative;
  font-size: 15px;
  font-size: 1.5rem;
}
#footer .list-link::after {
  position: absolute;
  content: "";
}
#footer .list-link::after {
  transition: transform 0.3s ease;
}
#footer .list-link:hover::after {
  transform: translate(5px, -50%);
}
@media screen and (max-width: 767px) {
  #footer .list-link {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .list-link::after {
  content: ">";
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  color: #442672;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  #footer .list-link::after {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .copy {
  letter-spacing: 0.1em;
  text-align: center;
  padding: 6px 15px;
  background-color: #442672;
  font-size: 11px;
  font-size: 1.1rem;
  color: #fff;
}
#footer .copy-link {
  color: #fff;
}

/* =========================================
  sub  PC
  sv 共通部分
========================================= */
#sv .sv {
  width: 100%;
  height: 580px;
  position: relative;
}
#sv .sv-ttl {
  position: absolute;
  min-width: 427px;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 3px 40px;
  transform: translateY(-50%);
  top: 59%;
  left: calc(50% - 550px);
  text-shadow: 3px 3px 5px #fff, 3px -3px 5px #fff, -3px -3px 5px #fff, -3px 3px 5px #fff, 3px 3px 5px #fff;
  color: #442672;
  background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7019607843) 10% 90%, transparent);
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 35px;
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  #sv .sv-ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

/* =========================================
    sub  PC
    sv
========================================= */
#sv .sv-profile {
  background: url(/img/sv/sv-profile.jpg) no-repeat center/cover;
}
#sv .sv-channeling {
  background: url(/img/sv/sv-channeling.jpg) no-repeat center/cover;
}
#sv .sv-session {
  background: url(/img/sv/sv-session.jpg) no-repeat center/cover;
}
#sv .sv-voice {
  background: url(/img/sv/sv-voice.jpg) no-repeat center/cover;
}
#sv .sv-news {
  background: url(/img/sv/sv-news.jpg) no-repeat center/cover;
}
#sv .sv-site {
  background: url(/img/sv/sv-site.jpg) no-repeat center/cover;
}
#sv .sv-privacy {
  background: url(/img/sv/sv-privacy.jpg) no-repeat center/cover;
}
#sv .sv-error {
  background: url(/img/sv/sv-error.jpg) no-repeat center/cover;
}
#sv .sv-contact {
  background: url(/img/sv/sv-contact.jpg) no-repeat center/cover;
}
#sv .sv-complete {
  background: url(/img/sv/sv-complete.jpg) no-repeat center/cover;
}

/*	breadcrumb  PC
パンくずリスト
------------------------------------ */
.breadcrumb {
  display: flex;
  align-items: center;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    height: 25px;
    padding: 0 2%;
  }
}
.breadcrumb .bread-inner {
  width: 100%;
  max-width: 1080px;
  padding-right: 20px;
  margin: auto;
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb ul li {
  display: inline;
}
.breadcrumb ul li:nth-of-type(3) {
  display: inline;
  max-width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb ul li:last-child::after {
  content: none;
}
.breadcrumb li,
.breadcrumb a {
  color: #442672;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb li,
  .breadcrumb a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb li,
  .breadcrumb a {
    font-size: 12px;
  }
}
.breadcrumb li {
  color: #221635;
}
.breadcrumb li::after {
  content: ">";
  display: inline-block;
  padding: 0 15px;
  color: #221635;
}

/* =========================================

  layout  SP
  共通パーツのスマホ時css
========================================= */
@media screen and (max-width: 767px) {
  /* =========================================
    base  SP
  ========================================= */
  body {
    min-width: 350px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  body.active {
    /* スクロール禁止 */
    overflow: hidden;
  }
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: inherit !important;
  }
  a[href^="tel:"] {
    pointer-events: all;
  }
  /*	parts  SP
  ------------------------------------ */
  .com-inner,
  .bread-inner {
    width: 100% !important;
  }
  .breadcrumb {
    display: none;
  }
  /* =========================================
  header  SP
  ========================================= */
  /*	headline  SP
  ------------------------------------ */
  #header .headline {
    height: 70px;
    padding: 0 10px 0 15px;
  }
  #header .logo {
    width: 150px;
  }
  /*	mv  SP
  ------------------------------------ */
  #top-mv .mv {
    height: 350px;
    min-height: 350px;
  }
  #top-mv .mv-ttl {
    width: 280px;
    min-width: unset;
    left: calc(50% - 50vw);
    top: 130px;
  }
  /*	gnav  SP
  ハンバーガーメニュー、メニュー内のcss
  ------------------------------------ */
  /*	gnav-add  SP
  ------------------------------------ */
  /* --- info系 --- */
  /*	ggmap  SP
  ------------------------------------ */
  /* =========================================
  footer  SP
  ========================================= */
  /* =========================================
    sub  SP
    下層（サブビジュアル）のcss
  ========================================= */
  /*	sub headline  SP
  ------------------------------------ */
  /* =========================================
    sub  SP
    sv 共通部分
  ========================================= */
  /*	------- */
}
@media screen and (max-width: 767px) and (min-width: 400px) {
  #top-mv .mv-ttl {
    left: calc(50% - 200px);
  }
}
@media screen and (max-width: 767px) {
  .hamburger-drawer {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .hamburger-drawer-icon {
    width: 100%;
    height: 100%;
  }
  .hamburger-drawer-line {
    fill: none;
    stroke: #442672;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hamburger-drawer-line:nth-child(1) {
    stroke-dasharray: 60 207;
  }
  .hamburger-drawer-line:nth-child(2) {
    stroke-dasharray: 60 60;
  }
  .hamburger-drawer-line:nth-child(3) {
    stroke-dasharray: 60 207;
  }
  .hamburger-drawer.active .hamburger-drawer-line {
    stroke: #442672;
  }
  .hamburger-drawer.active .hamburger-drawer-line:nth-child(1) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
  }
  .hamburger-drawer.active .hamburger-drawer-line:nth-child(2) {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
  }
  .hamburger-drawer.active .hamburger-drawer-line:nth-child(3) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
  }
  .nav-list {
    margin: 0 15px;
    padding: 10px 20px;
    background-color: #fff;
    outline: 1px solid #442672;
    outline-offset: -4px;
  }
  .nav-list-item {
    border-bottom: 1px solid #442672;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .nav-list.active .nav-list-item:nth-child(1) {
    transition-delay: 0.3s;
  }
  .nav-list.active .nav-list-item:nth-child(2) {
    transition-delay: 0.4s;
  }
  .nav-list.active .nav-list-item:nth-child(3) {
    transition-delay: 0.5s;
  }
  .nav-list.active .nav-list-item:nth-child(4) {
    transition-delay: 0.6s;
  }
  .nav-list.active .nav-list-item:nth-child(5) {
    transition-delay: 0.7s;
  }
  .nav-list.active .nav-list-item:nth-child(6) {
    transition-delay: 0.8s;
  }
  .nav-list.active .nav-list-item:nth-child(7) {
    transition-delay: 0.9s;
  }
  .nav-list.active .nav-list-item:nth-child(8) {
    transition-delay: 1s;
  }
  .nav-list.active .nav-list-item:nth-child(9) {
    transition-delay: 1.1s;
  }
  .nav-list.active .nav-list-item:nth-child(10) {
    transition-delay: 1.2s;
  }
  .nav-list-item:last-of-type {
    border-bottom: none;
  }
  .nav-list.active .nav-list-item {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-list-link {
    position: relative;
    display: block;
    padding: 15px 0;
    font-size: 16px;
    color: #221635;
    text-decoration: none;
    overflow: hidden;
  }
  .nav-list-sm {
    font-size: 13px;
    color: #7b56b2;
  }
  #drawer-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 100px 0 50px;
    overflow-y: scroll;
    background: url(/img/top/info-bg.jpg) no-repeat center/cover;
    clip-path: circle(0% at calc(100% - 44px) 44px);
    transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 900;
  }
  #drawer-menu.active {
    clip-path: circle(150% at calc(100% - 44px) 44px);
  }
  #drawer-nav .current::after {
    display: none;
  }
  #drawer-nav .sns-list {
    gap: 20px;
  }
  .drawer-info {
    display: flex;
    margin: 5% auto 0;
    flex-direction: column;
    align-items: center;
    /* 初期状態: 非表示 + 下方向オフセット */
    /* ドロワーが開いたとき（#drawer-menu.active）に表示させる */
  }
  .drawer-info .pcnav-info-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .drawer-info > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  #drawer-menu.active .drawer-info {
    /* nav リストのアニメーションの後に順次出現させる遅延を付与 */
  }
  #drawer-menu.active .drawer-info > * {
    opacity: 1;
    transform: translateY(0);
  }
  #drawer-menu.active .drawer-info > *:nth-child(1) {
    transition-delay: 0.9s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(2) {
    transition-delay: 1s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(3) {
    transition-delay: 1.1s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(4) {
    transition-delay: 1.2s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(5) {
    transition-delay: 1.3s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(6) {
    transition-delay: 1.4s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(7) {
    transition-delay: 1.5s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(8) {
    transition-delay: 1.6s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(9) {
    transition-delay: 1.7s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(10) {
    transition-delay: 1.8s;
  }
  .ggmap {
    padding-top: 250px;
  }
  #footer .current {
    color: #442672;
    border-bottom: none !important;
  }
  #footer .container {
    display: block;
  }
  #footer .logo {
    display: block;
    width: 200px;
    margin: 0 auto;
  }
  #footer .sns {
    justify-content: center;
  }
  #footer .link-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  #footer .address {
    display: flex;
    justify-content: center;
  }
  #footer .nav {
    width: 100%;
    margin-top: 35px;
  }
  #footer .list {
    flex-wrap: wrap;
    justify-content: left;
    border: 1px solid #442672;
  }
  #footer .list:nth-of-type(n + 2) {
    margin-left: 0;
  }
  #footer .list-sp {
    display: flex !important;
  }
  #footer .list-item {
    width: 50%;
    margin-left: 0;
  }
  #footer .list-item:first-of-type {
    width: 100%;
    border-bottom: 1px solid #442672;
  }
  #footer .list-item:nth-of-type(n + 2) {
    margin-left: 0;
    margin-top: 0;
    border-bottom: 1px solid #442672;
  }
  #footer .list-item:nth-of-type(2n) {
    border-right: 1px solid #442672;
  }
  #footer .list-item:nth-last-of-type(2) {
    border-bottom: none;
  }
  #footer .list-item:last-of-type {
    border-bottom: none;
  }
  #footer .list-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    line-height: 1.2;
    height: 60px;
    text-align: center;
    padding: 10px 5px;
  }
  #footer .list-link::after {
    content: "";
    width: 8px;
    height: 8px;
    transform: unset;
    top: unset;
    left: unset;
    bottom: 2px;
    right: 2px;
    background: url(/img/all/arw-color02.png) no-repeat;
    background-size: 100%;
  }
  #footer .list-link:hover::after {
    transform: unset;
  }
  #sv .sv {
    height: 370px;
  }
  #sv .sv-ttl {
    white-space: nowrap;
    min-width: unset;
    transform: translate(-50%, -50%);
    left: 50%;
  }
  #sv .sv-session {
    background: url(/img/sv/sv-session.jpg) no-repeat calc(50% - 40px) center/cover;
  }
}
/*	------- */
/* =========================================
  breakpoint
========================================= */