@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
@font-face {
  font-family: "ZenOldMincho-Black";
  src: url(../fonts/ZenOldMincho-Black.ttf);
}
@font-face {
  font-family: "ZenOldMincho-Bold";
  src: url(../fonts/ZenOldMincho-Bold.ttf);
}
@font-face {
  font-family: "ZenOldMincho-Medium";
  src: url(../fonts/ZenOldMincho-Medium.ttf);
}
@font-face {
  font-family: "ZenOldMincho-Regular";
  src: url(../fonts/ZenOldMincho-Regular.ttf);
}
@font-face {
  font-family: "ZenOldMincho-SemiBold";
  src: url(../fonts/ZenOldMincho-SemiBold.ttf);
}
@font-face {
  font-family: "CormorantGaramond-Bold";
  src: url(../fonts/CormorantGaramond-Bold.ttf);
}
@font-face {
  font-family: "CormorantGaramond-Light";
  src: url(../fonts/CormorantGaramond-Light.ttf);
}
@font-face {
  font-family: "CormorantGaramond-Medium";
  src: url(../fonts/CormorantGaramond-Medium.ttf);
}
@font-face {
  font-family: "CormorantGaramond-Regular";
  src: url(../fonts/CormorantGaramond-Regular.ttf);
}
@font-face {
  font-family: "CormorantGaramond-SemiBold";
  src: url(../fonts/CormorantGaramond-SemiBold.ttf);
}
/*	transition,hover
ホバー時のtransition秒数を統一、ホバーアクション
------------------------------------ */
/*	media-screen
画面サイズごとのcss設定に使用
------------------------------------ */
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
/*	layout
その他パーツ
------------------------------------ */
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
@font-face {
  font-family: "ZenOldMincho-Black";
  src: url(../fonts/ZenOldMincho-Black.ttf);
}
@font-face {
  font-family: "ZenOldMincho-Bold";
  src: url(../fonts/ZenOldMincho-Bold.ttf);
}
@font-face {
  font-family: "ZenOldMincho-Medium";
  src: url(../fonts/ZenOldMincho-Medium.ttf);
}
@font-face {
  font-family: "ZenOldMincho-Regular";
  src: url(../fonts/ZenOldMincho-Regular.ttf);
}
@font-face {
  font-family: "ZenOldMincho-SemiBold";
  src: url(../fonts/ZenOldMincho-SemiBold.ttf);
}
@font-face {
  font-family: "CormorantGaramond-Bold";
  src: url(../fonts/CormorantGaramond-Bold.ttf);
}
@font-face {
  font-family: "CormorantGaramond-Light";
  src: url(../fonts/CormorantGaramond-Light.ttf);
}
@font-face {
  font-family: "CormorantGaramond-Medium";
  src: url(../fonts/CormorantGaramond-Medium.ttf);
}
@font-face {
  font-family: "CormorantGaramond-Regular";
  src: url(../fonts/CormorantGaramond-Regular.ttf);
}
@font-face {
  font-family: "CormorantGaramond-SemiBold";
  src: url(../fonts/CormorantGaramond-SemiBold.ttf);
}
/*	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: #555555;
  font-family: "ZenOldMincho-Regular", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@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: 120px;
  padding: 0 20px;
  position: relative;
  z-index: 99;
}
#header .logo {
  display: inline-block;
  transition: all 0.3s ease;
}
#header .logo:hover {
  opacity: 0.7;
}
#header .logo a,
#header .logo img {
  display: block;
}
#header .current {
  color: #22b7cc !important;
}
#header .line {
  transition: all 0.5s ease;
}
#header .line:hover {
  transform: scale(0.95);
}
#header .contact-btn {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin-left: 23px;
  padding-bottom: 3px;
  color: #22b7cc;
  border-bottom: 1px solid #22b7cc;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  #header .contact-btn {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
#header .contact-btn:hover {
  transform: scale(0.95);
}

/*	gnav  PC
ヘッダーナビ（PC時）
------------------------------------ */
#gnav .list {
  margin-top: 20px;
}
#gnav .list-item:nth-of-type(n + 2) {
  margin-left: 35px;
}
#gnav .list-link {
  color: #555555;
  position: relative;
}
#gnav .list-link::before {
  background: #22b7cc;
  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);
}

/*	mv  PC
メインビジュアル（トップ用）
------------------------------------ */
#top-mv .mv {
  width: 100%;
}
#top-mv .mv-link {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
  height: 43.75vw;
  position: relative;
}
#top-mv .mv-box {
  position: absolute;
  width: 360px;
  height: 140px;
  text-align: center;
  padding-top: 26px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  outline: 1px solid #22b7cc;
  outline-offset: -4px;
}
@media screen and (max-width: 1200px) {
  #top-mv .mv-box {
    width: 345px;
  }
}
#top-mv .mv-txt {
  font-family: "CormorantGaramond-Light", sans-serif;
  font-size: 38px;
  font-size: 3.8rem;
  display: inline-block;
  line-height: 1.26;
  letter-spacing: 0.08em;
  background-image: linear-gradient(to right, #22b7cc, #133b81);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  #top-mv .mv-txt {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
#top-mv .mv-ttl {
  font-size: 26px;
  font-size: 2.6rem;
  letter-spacing: 0.08em;
  color: #22b7cc;
}
@media screen and (max-width: 767px) {
  #top-mv .mv-ttl {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#top-mv .mv-left {
  background: url(/img/all/mv-left.jpg) no-repeat center/cover;
}
#top-mv .mv-center {
  background: url(/img/all/mv-center.jpg) no-repeat center/cover;
}
#top-mv .mv-right {
  background: url(/img/all/mv-right.jpg) no-repeat center/cover;
}
#top-mv .mv-right-txt {
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  #top-mv .mv-right-txt {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-mv .mv-right-ttl {
  margin-top: 10px;
}

/*	page-top  PC
page-top リンク
------------------------------------ */
.fixed {
  position: fixed;
  right: 23px;
  bottom: 45px;
  z-index: 99;
}
.fixed-page {
  transition: 0.3s ease;
}
.fixed-page:hover {
  transform: translate(0px, -5px);
}

/* =========================================
  footer  PC
  フッター
========================================= */
#footer .current {
  border-bottom: 1px solid #22b7cc !important;
}
#footer .bg {
  background: url(/img/all/foo-bg.jpg) no-repeat left bottom/cover;
}
#footer .logo {
  display: block;
  width: 167px;
  margin: 0 auto;
}
#footer .link-list {
  gap: 35px;
  margin-top: 27px;
}
#footer .address {
  text-align: center;
  letter-spacing: 0;
  margin-top: 25px;
}
#footer .table {
  width: 345px;
  margin: 25px auto 0;
}
#footer .table th {
  width: 80px;
  padding: 3px 0;
  letter-spacing: 0;
  position: relative;
}
#footer .table th::before {
  position: absolute;
  content: "";
}
#footer .table th::before {
  width: 1px;
  height: 15px;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  background-color: #555555;
}
#footer .table td {
  letter-spacing: 0;
  padding: 3px 0 3px 10px;
}
#footer .nav {
  margin-top: 30px;
  padding-top: 35px;
  border-top: 1px solid #d9d9d9;
}
#footer .list {
  justify-content: center;
}
#footer .list-item:nth-of-type(n + 2) {
  margin-left: 33px;
}
#footer .list-link {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0;
  color: #555555;
  display: inline-block;
  position: relative;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  #footer .list-link {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .list-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: #22b7cc;
  transition: 0.3s ease;
}
#footer .list-link:hover::after {
  width: 100%;
}
#footer .copy {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0;
  text-align: center;
  margin-top: 30px;
}
#footer .copy-link {
  color: #555555;
}

/* =========================================
  sub  PC
  sv 共通部分
========================================= */
#sv .sv {
  width: 100%;
  height: 340px;
  position: relative;
}
#sv .sv-box {
  position: absolute;
  width: 720px;
  text-align: center;
  padding: 20px 20px 25px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  outline: 1px solid #22b7cc;
  outline-offset: -4px;
}
#sv .sv-txt {
  font-family: "CormorantGaramond-Light", sans-serif;
  font-size: 38px;
  font-size: 3.8rem;
  display: inline;
  line-height: 1.41;
  letter-spacing: 0.08em;
  background-image: linear-gradient(to right, #22b7cc, #133b81);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  #sv .sv-txt {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
#sv .sv-ttl {
  font-size: 26px;
  font-size: 2.6rem;
  letter-spacing: 0.08em;
  color: #22b7cc;
}
@media screen and (max-width: 767px) {
  #sv .sv-ttl {
    font-size: 21px;
    font-size: 2.1rem;
  }
}

/* =========================================
    sub  PC
    sv
========================================= */
#sv .sv-aroma {
  background: url(/img/sv/sv-aroma.jpg) no-repeat center/cover;
}
#sv .sv-posture {
  background: url(/img/sv/sv-posture.jpg) no-repeat center/cover;
}
#sv .sv-training {
  background: url(/img/sv/sv-training.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: #555555;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
@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: #555555;
}
.breadcrumb li::after {
  content: "|";
  display: inline-block;
  padding: 0 5px;
  color: #555555;
}

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

  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;
  }
  #header .logo {
    width: 70px;
  }
  /*	mv  SP
  ------------------------------------ */
  #top-mv .mv {
    display: block;
  }
  #top-mv .mv-link {
    display: block;
    width: 100%;
    height: 175px;
    max-width: 100%;
  }
  #top-mv .mv-box {
    width: 275px;
    height: 100px;
    padding-top: 20px;
  }
  #top-mv .mv-right-ttl {
    margin-top: 5px;
  }
  /*	fixed  SP
  ページトップへのリンク
  ------------------------------------ */
  .fixed {
    display: flex;
    bottom: 30px;
    right: 10px;
  }
  /*	gnav  SP
  ハンバーガーメニュー、メニュー内のcss
  ------------------------------------ */
  .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: #22b7cc;
    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: #22b7cc;
  }
  .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 {
    padding: 15px 15px 30px;
  }
  .nav-list-item {
    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.active .nav-list-item {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-list-link {
    position: relative;
    display: block;
    padding: 15px 0;
    font-size: 16px;
    color: #555555;
    text-decoration: none;
    overflow: hidden;
    border-bottom: 1px solid;
    -o-border-image: linear-gradient(to right, #22b7cc, #133b81) 1;
       border-image: linear-gradient(to right, #22b7cc, #133b81) 1;
  }
  #drawer-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/img/top/features-bg-top.png) no-repeat center top/200%, url(/img/top/features-bg-btm.png) no-repeat center bottom/200%, url(/img/top/features-bg.jpg) no-repeat center top/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);
  }
  /*	gnav-add  SP
  ------------------------------------ */
  #drawer-nav .current::after {
    display: none;
  }
  #drawer-nav .com-line {
    margin-bottom: 35px;
  }
  /* --- info系 --- */
  .drawer-info {
    display: flex;
    margin: 5% auto 0;
    flex-direction: column;
    align-items: center;
  }
  .drawer-info .pcnav-info-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
  /*	ggmap  SP
  ------------------------------------ */
  .ggmap {
    padding-top: 250px;
  }
  /* =========================================
  footer  SP
  ========================================= */
  #footer .bg {
    background: url(/img/all/foo-bg.jpg) repeat-y right top;
  }
  #footer .inner {
    padding: 50px 15px 75px;
  }
  #footer .current {
    color: #22b7cc;
    border-bottom: none !important;
  }
  #footer .logo {
    width: 127px;
  }
  #footer .table {
    width: 100%;
    max-width: 350px;
    border-collapse: separate;
    border-spacing: 0 10px;
    margin: 15px auto 0;
  }
  #footer .table th {
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #555555;
  }
  #footer .table th::before {
    display: none;
  }
  #footer .table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
  #footer .nav {
    width: 100%;
  }
  #footer .list {
    flex-wrap: wrap;
    justify-content: left;
    border: 1px solid #22b7cc;
  }
  #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 #22b7cc;
  }
  #footer .list-item:nth-of-type(n + 2) {
    margin-left: 0;
    margin-top: 0;
    border-bottom: 1px solid #22b7cc;
  }
  #footer .list-item:nth-of-type(2n) {
    border-right: 1px solid #22b7cc;
  }
  #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 {
    display: none;
  }
  /* =========================================
    sub  SP
    下層（サブビジュアル）のcss
  ========================================= */
  /*	sub headline  SP
  ------------------------------------ */
  /* =========================================
    sub  SP
    sv 共通部分
  ========================================= */
  #sv .sv {
    height: 250px;
  }
  #sv .sv-box {
    width: 320px;
    padding: 15px 15px 20px;
  }
  #sv .sv-error {
    background: url(/img/sv/sv-error.jpg) no-repeat calc(100% + 160px) center/cover;
  }
  #sv .sv-complete {
    background: url(/img/sv/sv-complete.jpg) no-repeat left center/cover;
  }
  #sv .sv-training {
    background: url(/img/sv/sv-training.jpg) no-repeat calc(50% - 150px) center/cover;
  }
  /*	------- */
}
/*	------- */
/* =========================================
  breakpoint
========================================= */