@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
@font-face {
  font-family: "ZenKakuGothicNew-Black";
  src: url(../fonts/ZenKakuGothicNew-Black.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Bold";
  src: url(../fonts/ZenKakuGothicNew-Bold.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Medium";
  src: url(../fonts/ZenKakuGothicNew-Medium.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Regular";
  src: url(../fonts/ZenKakuGothicNew-Regular.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Light";
  src: url(../fonts/ZenKakuGothicNew-Light.ttf);
}
@font-face {
  font-family: "Ubuntu-Bold";
  src: url(../fonts/Ubuntu-Bold.ttf);
}
@font-face {
  font-family: "Ubuntu-Light";
  src: url(../fonts/Ubuntu-Light.ttf);
}
@font-face {
  font-family: "Ubuntu-Medium";
  src: url(../fonts/Ubuntu-Medium.ttf);
}
@font-face {
  font-family: "Ubuntu-Regular";
  src: url(../fonts/Ubuntu-Regular.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: "ZenKakuGothicNew-Black";
  src: url(../fonts/ZenKakuGothicNew-Black.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Bold";
  src: url(../fonts/ZenKakuGothicNew-Bold.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Medium";
  src: url(../fonts/ZenKakuGothicNew-Medium.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Regular";
  src: url(../fonts/ZenKakuGothicNew-Regular.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Light";
  src: url(../fonts/ZenKakuGothicNew-Light.ttf);
}
@font-face {
  font-family: "Ubuntu-Bold";
  src: url(../fonts/Ubuntu-Bold.ttf);
}
@font-face {
  font-family: "Ubuntu-Light";
  src: url(../fonts/Ubuntu-Light.ttf);
}
@font-face {
  font-family: "Ubuntu-Medium";
  src: url(../fonts/Ubuntu-Medium.ttf);
}
@font-face {
  font-family: "Ubuntu-Regular";
  src: url(../fonts/Ubuntu-Regular.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: #0e0e17;
  font-size: 17px;
  font-size: 1.7rem;
  font-family: "ZenKakuGothicNew-Medium", sans-serif;
  letter-spacing: 0.05em;
  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%;
  position: relative;
}
#header .headline {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}
#header .logo {
  display: inline-block;
  margin: 30px 0 0 20px;
  transition: all 0.3s ease;
}
#header .logo:hover {
  opacity: 0.7;
}
#header .logo a,
#header .logo img {
  display: block;
}
#header .current {
  color: #59cb65 !important;
}
#header .contact {
  margin-top: 5px;
  padding: 20px 40px 20px 50px;
  background-color: #fff;
  border-radius: 0 0 0 20px;
  position: relative;
}
#header .contact::before {
  position: absolute;
  content: "";
}
#header .contact::before {
  width: 20px;
  height: 40px;
  top: 0;
  left: -20px;
  background: url(/img/all/header-deco.png) no-repeat;
  background-size: 100%;
}
#header .contact-list-item:nth-of-type(2) {
  margin-left: 20px;
}
#header .contact-list-item:nth-of-type(3) {
  margin-left: 30px;
}
#header .contact-list-txt {
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  width: 150px;
  line-height: 40px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #f9f43e;
  background-color: #3da9d0;
  border-radius: 5px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #header .contact-list-txt {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#header .contact-list-txt::before {
  position: absolute;
  content: "";
}
#header .contact-list-txt::before {
  width: 9px;
  height: 11px;
  transform: translateY(-50%);
  top: 50%;
  right: -8px;
  background: url(/img/all/header-arw.png) no-repeat;
  background-size: 100%;
}
#header .instagram {
  transition: all 0.5s ease;
}
#header .instagram:hover {
  transform: scale(0.95);
}

/*	gnav  PC
ヘッダーナビ（PC時）
------------------------------------ */
#gnav .list {
  margin-top: 20px;
}
#gnav .list-item:nth-of-type(n + 2) {
  margin-left: 45px;
}
#gnav .list-item:nth-of-type(n + 2) .list-link::before {
  background: #59cb65;
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  top: 50%;
  left: -26px;
  background-color: #ace5b2;
  border-radius: 50%;
}
#gnav .list-link {
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  color: #0e0e17;
  position: relative;
}
#gnav .list-link::after {
  background: #59cb65;
  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::after {
  transform-origin: center top;
  transform: scale(1, 1);
}

/*	mv  PC
メインビジュアル（トップ用）
------------------------------------ */
#top-mv .mv {
  position: relative;
  padding-bottom: 50px;
  background: url(/img/all/mv-bg.jpg) no-repeat left top/67.1vw;
  border-top: 5px solid #3da9d0;
}
#top-mv .mv-img {
  width: 100%;
  gap: 1.5vw;
}
#top-mv .mv-img-left {
  width: 38vw;
  margin-top: 135px;
  border-radius: 20px;
}
#top-mv .mv-img-right {
  width: 58.33vw;
  margin-top: 15px;
  border-radius: 20px;
}
#top-mv .mv-ttl {
  position: absolute;
  width: 44.9vw;
  left: 1.5vw;
  bottom: 2.6vw;
}

/*	page-top  PC
page-top リンク
------------------------------------ */
.fixed {
  position: fixed;
  right: 0;
  bottom: 60px;
  z-index: 99;
}
.fixed-line {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 10px 0 0 10px;
  transition: all 0.5s ease;
}
.fixed-line:hover {
  transform: scale(0.95);
  transform-origin: right center;
}
.fixed-page {
  width: 40px;
  height: 40px;
  margin-top: 40px;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  background-color: #3da9d0;
  border-radius: 10px 0 0 0;
}
.fixed-page:hover {
  transform: translate(0px, -5px);
}

/* =========================================
  footer  PC
  フッター
========================================= */
#footer .current::before {
  background: url(/img/all/foo-arw-color.png) no-repeat center/100% !important;
}
#footer .bg {
  background-color: #3da9d0;
}
#footer .link-list {
  gap: 40px;
  margin-top: 20px;
}
#footer .com-tel-num {
  color: #fff;
  background: url(/img/all/tel-ico-white.png) no-repeat left 7px;
}
#footer .list:nth-of-type(n + 2) {
  margin-left: 40px;
}
#footer .list-item:nth-of-type(n + 2) {
  margin-top: 7px;
}
#footer .list-link {
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  padding-left: 25px;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  #footer .list-link {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .list-link::before {
  position: absolute;
  content: "";
}
#footer .list-link::before {
  width: 7px;
  height: 11px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  background: url(/img/all/foo-arw.png) no-repeat;
  background-size: 100%;
  transition: all 0.3s ease;
}
#footer .list-link:hover::before {
  transform: translate(3px, -50%);
}
#footer .btm {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px;
}
#footer .btm-list {
  gap: 20px;
}
#footer .copy {
  font-size: 12px;
  font-size: 1.2rem;
  color: #3da9d0;
}
#footer .copy-link {
  color: #3da9d0;
}
#footer .instagram {
  width: 30px;
  transition: all 0.5s ease;
}
#footer .instagram:hover {
  transform: scale(0.95);
}
#footer .line {
  transition: all 0.5s ease;
}
#footer .line:hover {
  transform: scale(0.95);
}

/* =========================================
  sub  PC
  sv 共通部分
========================================= */
#sv .sv {
  width: 100%;
  height: 500px;
  background: url(/img/sv/sv-deco.png) no-repeat left top;
  border-top: 5px solid #3da9d0;
  position: relative;
}
#sv .sv-img {
  width: 73vw;
  height: 480px;
  margin: 15px 1vw 0 auto;
  border-radius: 10px;
}
#sv .sv-ttl {
  position: absolute;
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-size: 40px;
  font-size: 4rem;
  letter-spacing: 0.05em;
  padding: 13px 58.5px;
  bottom: 150px;
  left: 5.2vw;
  color: #fff;
  background: url(/img/all/pt02.png) left top;
  border-radius: 10px;
  box-shadow: 6px 6px 0 rgba(61, 169, 208, 0.2);
}
@media screen and (max-width: 767px) {
  #sv .sv-ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

/* =========================================
    sub  PC
    sv
========================================= */
#sv .sv-individual {
  background: url(/img/sv/sv-individual.jpg) no-repeat center/cover;
}
#sv .sv-corporation {
  background: url(/img/sv/sv-corporation.jpg) no-repeat center/cover;
}
#sv .sv-case {
  background: url(/img/sv/sv-case.jpg) no-repeat center/cover;
}
#sv .sv-company {
  background: url(/img/sv/sv-company.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: #59cb65;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .breadcrumb li,
  .breadcrumb a {
    font-size: 12px;
  }
}
.breadcrumb li {
  color: #0e0e17;
}
.breadcrumb li::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 13px;
  margin: 0 10px;
  background: url(/img/all/bread-arw.png) no-repeat center;
}

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

  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 .logo {
    width: 200px;
    margin: 5px 0 0 5px;
  }
  /*	mv  SP
  ------------------------------------ */
  #top-mv .mv {
    border-top: 3px solid #3da9d0;
    padding-bottom: 30px;
  }
  #top-mv .mv-img {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  #top-mv .mv-img-left {
    width: 60vw;
    margin-top: 15px;
    margin-left: auto;
    border-radius: 10px;
  }
  #top-mv .mv-img-right {
    width: 95%;
    margin: 55px auto 0;
  }
  #top-mv .mv-ttl {
    width: 85.7vw;
    min-width: 300px;
    bottom: 13vw;
  }
  /*	fixed  SP
  ページトップへのリンク
  ------------------------------------ */
  .fixed {
    bottom: 0;
    right: 0;
  }
  .fixed-line {
    width: 60px;
    height: 60px;
  }
  .fixed-page {
    margin-top: 20px;
  }
  /*	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: #233a6c;
    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: #233a6c;
  }
  .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 {
    padding: 15px 15px 30px;
  }
  .nav-list {
    margin-top: 15px;
    padding: 10px 15px 35px;
    background-color: #fff;
    border-radius: 15px;
    border: 3px solid #3da9d0;
  }
  .nav-list-item {
    opacity: 0;
    border-bottom: 2px dashed #3da9d0;
    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;
    font-size: 22px;
    color: #0e0e17;
    text-decoration: none;
    overflow: hidden;
  }
  #drawer-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/img/all/pt05.png) left top;
    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 .sns-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
  }
  #drawer-menu .sns-list-item02 {
    width: 100%;
    text-align: center;
  }
  #drawer-menu .sns-list-link {
    width: 30px;
  }
  #drawer-menu.active {
    clip-path: circle(150% at calc(100% - 44px) 44px);
  }
  /*	gnav-add  SP
  ------------------------------------ */
  #drawer-nav .current::after {
    display: none;
  }
  /* --- 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 .current {
    border-bottom: none !important;
  }
  #footer .container {
    display: block;
  }
  #footer .logo {
    display: block;
    width: 180px;
    margin: 0 auto;
  }
  #footer .link-list {
    display: block;
  }
  #footer .link-list-item:nth-of-type(n + 2) {
    margin-top: 35px;
  }
  #footer .com-official {
    display: block;
    margin: 0 auto;
  }
  #footer .com-tel-num {
    background: url(/img/all/tel-ico-white.png) no-repeat left 5px/16px;
  }
  #footer .nav {
    width: 100%;
    margin-top: 35px;
  }
  #footer .list {
    flex-wrap: wrap;
    justify-content: left;
    border: 1px solid #fff;
  }
  #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 #fff;
  }
  #footer .list-item:nth-of-type(n + 2) {
    margin-left: 0;
    margin-top: 0;
    border-bottom: 1px solid #fff;
  }
  #footer .list-item:nth-of-type(2n) {
    border-right: 1px solid #fff;
  }
  #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::before {
    display: none;
  }
  #footer .list-link::after {
    display: none;
  }
  #footer .btm {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    padding: 15px;
  }
  #footer .copy {
    text-align: center;
    width: 100%;
    margin-top: 15px;
    padding-right: 40px;
  }
  /* =========================================
    sub  SP
    下層（サブビジュアル）のcss
  ========================================= */
  /*	sub headline  SP
  ------------------------------------ */
  /* =========================================
    sub  SP
    sv 共通部分
  ========================================= */
  #sv .sv {
    height: unset;
    padding: 60px 10px 45px;
    border-top: 3px solid #3da9d0;
    background: url(/img/sv/sv-deco.png) no-repeat left top/80vw;
  }
  #sv .sv-img {
    width: 100%;
    height: 300px;
    margin: 0;
  }
  #sv .sv-ttl {
    min-width: 180px;
    white-space: nowrap;
    text-align: center;
    padding: 13px 30.5px;
    transform: translateX(-50%);
    left: 50%;
    bottom: 20px;
  }
  #sv .sv-site {
    background: url(/img/sv/sv-site.jpg) no-repeat right center/cover;
  }
  #sv .sv-privacy {
    background: url(/img/sv/sv-privacy.jpg) no-repeat left center/cover;
  }
  /*	------- */
}
/*	------- */
/* =========================================
  breakpoint
========================================= */