@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
/* Noto Sans Japanese */
/* Zen Kaku Gothic New */
/*	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: #444444;
  letter-spacing: 0.08em;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 17px;
  font-size: 1.7rem;
}
@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 {
  position: fixed;
  overflow-y: scroll;
  height: 100vh;
  direction: rtl;
  top: 0;
  left: 0;
  border-radius: 0 0 30px 0;
  z-index: 99;
}
#header .headline-inner {
  padding: 25px 3.125vw;
}
@media screen and (min-width: 1921px) {
  #header .headline-inner {
    padding: 60px;
  }
}
#header .headline-sub-inner {
  padding: 40px 2vw;
}
#header .logo {
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease;
}
#header .logo:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1500px) {
  #header .logo {
    width: 190px;
  }
}
#header .logo a,
#header .logo img {
  display: block;
}
#header .contact-list {
  margin-top: 25px;
}
#header .contact-list-item:nth-of-type(n + 2) {
  margin-top: 20px;
}
#header .current {
  color: #29bce9 !important;
}
#header .mail {
  direction: ltr !important;
  unicode-bidi: bidi-override;
  margin: 0 auto;
}
@media screen and (max-width: 1500px) {
  #header .mail {
    width: 190px;
  }
}
#header .instagram {
  direction: ltr !important;
  unicode-bidi: bidi-override;
  margin: 0 auto;
}
@media screen and (max-width: 1500px) {
  #header .instagram {
    width: 190px;
  }
}
#header .btn {
  margin: 0 auto;
  color: #fff;
  background-color: #7bd9f6;
}
@media screen and (max-width: 1500px) {
  #header .btn {
    width: 190px;
  }
}

/*	gnav  PC
ヘッダーナビ（PC時）
------------------------------------ */
#gnav .list {
  margin-top: 25px;
}
#gnav .list-link {
  display: block;
  width: 230px;
  letter-spacing: 0.08em;
  direction: ltr !important;
  unicode-bidi: bidi-override;
  text-align: left !important;
  margin: 0 auto;
  padding: 1.4vw 0;
  color: #444444;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
}
#gnav .list-link::after {
  position: absolute;
  content: "";
}
#gnav .list-link {
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 17px;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  #gnav .list-link {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1500px) {
  #gnav .list-link {
    width: 190px;
  }
}
@media screen and (max-width: 1300px) {
  #gnav .list-link {
    padding: 18.2px 0;
  }
}
#gnav .list-link::after {
  width: 19px;
  height: 15px;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  background: url(/img/all/nav-arw.png) no-repeat;
  background-size: 100%;
  z-index: -1;
  transition: all 0.3s ease;
}
#gnav .list-link:hover::after {
  transform: translate(3px, -50%);
}

#pc-drawer .hamburger-drawer {
  position: fixed;
  top: 155px;
  left: 40px;
  z-index: 1000;
  width: 58px;
  height: 58px;
  padding: 0;
  border: none;
  background: #fff;
  cursor: pointer;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
}
#pc-drawer .hamburger-drawer span,
#pc-drawer .hamburger-drawer span::before,
#pc-drawer .hamburger-drawer span::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  transform: translateX(-50%);
  left: 50%;
  background: #0a0a0a;
  border-radius: 20px;
  transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
}
#pc-drawer .hamburger-drawer span::before {
  top: -7px;
}
#pc-drawer .hamburger-drawer span::after {
  top: 7px;
}
#pc-drawer .hamburger-drawer.active > span {
  background: transparent;
}
#pc-drawer .hamburger-drawer.active > span::before, #pc-drawer .hamburger-drawer.active > span::after {
  background: #0a0a0a;
  top: 0px;
}
#pc-drawer .hamburger-drawer.active > span::before {
  transform: translate(-50%) rotate(-225deg);
}
#pc-drawer .hamburger-drawer.active > span::after {
  transform: translate(-50%) rotate(225deg);
}
#pc-drawer .list-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#pc-drawer .list-item:nth-child(1) {
  transition-delay: 0.3s;
}
#pc-drawer .list-item:nth-child(2) {
  transition-delay: 0.4s;
}
#pc-drawer .list-item:nth-child(3) {
  transition-delay: 0.5s;
}
#pc-drawer .list-item:nth-child(4) {
  transition-delay: 0.6s;
}
#pc-drawer .list-item:nth-child(5) {
  transition-delay: 0.7s;
}
#pc-drawer .list-item:nth-child(6) {
  transition-delay: 0.8s;
}
#pc-drawer .list-item:nth-child(7) {
  transition-delay: 0.9s;
}
#pc-drawer .list-item:nth-child(8) {
  transition-delay: 1s;
}
#pc-drawer .list-item:nth-child(9) {
  transition-delay: 1.1s;
}
#pc-drawer .list-item:nth-child(10) {
  transition-delay: 1.2s;
}
#pc-drawer .list-item.active {
  opacity: 1;
  transform: translateY(0);
}
#pc-drawer .list {
  margin-top: 25px;
}
#pc-drawer .list-link {
  display: block;
  width: 230px;
  letter-spacing: 0.08em;
  text-align: left;
  margin: 0 auto;
  padding: 25.4px 0;
  color: #444444;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
}
#pc-drawer .list-link::after {
  position: absolute;
  content: "";
}
#pc-drawer .list-link {
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 17px;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  #pc-drawer .list-link {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1500px) {
  #pc-drawer .list-link {
    width: 190px;
  }
}
#pc-drawer .list-link::after {
  width: 19px;
  height: 15px;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  background: url(/img/all/nav-arw.png) no-repeat;
  background-size: 100%;
  z-index: -1;
  transition: all 0.3s ease;
}
#pc-drawer .list-link:hover::after {
  transform: translate(3px, -50%);
}
#pc-drawer .headline {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

#pc-drawer-menu {
  position: fixed;
  top: 170px;
  left: 0;
  width: 350px;
  max-height: calc(100vh - 170px);
  padding-top: 25px;
  padding-bottom: 25px;
  border-radius: 0 20px 20px 0;
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  direction: rtl;
  clip-path: circle(0% at 70px 22px);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
}
@media screen and (max-width: 1500px) {
  #pc-drawer-menu {
    width: 285px;
  }
}
@media screen and (max-width: 1275px) {
  #pc-drawer-menu {
    width: 270px;
  }
}
@media screen and (max-width: 1150px) {
  #pc-drawer-menu {
    width: 240px;
  }
}

#pc-drawer-menu.active {
  clip-path: circle(150% at 70px 22px);
}

/*	mv  PC
メインビジュアル（トップ用）
------------------------------------ */
#top-mv .mv {
  width: 100%;
  height: 720px;
  padding-left: 350px;
}
@media screen and (max-width: 1500px) {
  #top-mv .mv {
    padding-left: 285px;
  }
}
@media screen and (max-width: 1275px) {
  #top-mv .mv {
    padding-left: 270px;
  }
}
@media screen and (max-width: 1150px) {
  #top-mv .mv {
    padding-left: 265px;
  }
}
@media screen and (max-width: 767px) {
  #top-mv .mv {
    padding-left: 0;
  }
}
#top-mv .mv {
  position: relative;
}
#top-mv .mv::before {
  position: absolute;
  content: "";
}
#top-mv .mv {
  z-index: 1;
  overflow: hidden;
}
#top-mv .mv::before {
  width: 60.9vw;
  height: 630px;
  top: 0;
  right: 0;
  background-color: #7bd9f6;
  z-index: -1;
}
#top-mv .mv-img01 {
  position: absolute;
  width: 21.87vw;
  min-width: 300px;
  top: 0;
  right: 0;
  border-radius: 0 0 0 40px;
  overflow: hidden;
  z-index: 5;
}
@media screen and (min-width: 1921px) {
  #top-mv .mv-img01 {
    width: 420px;
    right: calc(50% - 800px);
    border-radius: 0 0 40px 40px;
  }
}
#top-mv .mv-img02 {
  position: absolute;
  width: 980px;
  top: 90px;
  left: 21.875vw;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 1475px) {
  #top-mv .mv-img02 {
    left: 27.3vw;
  }
}
#top-mv .mv-ttl {
  position: absolute;
  right: 6.25vw;
  bottom: 188px;
}
@media screen and (max-width: 1475px) {
  #top-mv .mv-ttl {
    right: 30px;
  }
}
@media screen and (min-width: 1921px) {
  #top-mv .mv-ttl {
    right: calc(50% - 600px);
  }
}

/*	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: #29bce9;
  border-radius: 40px 40px 8px 40px;
  position: relative;
}
.fixed-contact::after {
  position: absolute;
  content: "";
}
.fixed-contact {
  font-size: 23px;
  font-size: 2.3rem;
}
@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 {
  padding-left: 350px;
}
@media screen and (max-width: 1500px) {
  #footer .bg {
    padding-left: 285px;
  }
}
@media screen and (max-width: 1275px) {
  #footer .bg {
    padding-left: 270px;
  }
}
@media screen and (max-width: 1150px) {
  #footer .bg {
    padding-left: 265px;
  }
}
@media screen and (max-width: 767px) {
  #footer .bg {
    padding-left: 0;
  }
}
#footer .sub-bg {
  padding-left: 0;
}
#footer .inner {
  width: 100%;
  margin-left: auto;
  background-color: #7bd9f6;
}
#footer .container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
#footer .sub-container {
  width: 100%;
  max-width: 1080px;
}
#footer .wrap {
  gap: 30px;
}
@media screen and (max-width: 1720px) {
  #footer .box {
    padding-right: 100px;
  }
}
#footer .list:nth-of-type(n + 2) {
  margin-left: 45px;
}
#footer .list-item:nth-of-type(n + 2) {
  margin-left: 25px;
  position: relative;
}
#footer .list-item:nth-of-type(n + 2)::before {
  position: absolute;
  content: "";
}
#footer .list-item:nth-of-type(n + 2) {
  z-index: 1;
}
#footer .list-item:nth-of-type(n + 2)::before {
  content: "｜";
  letter-spacing: 0.08em;
  transform: translateY(-50%);
  top: 55%;
  left: -20px;
  color: #fff;
  z-index: -1;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  #footer .list-item:nth-of-type(n + 2)::before {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .list-link {
  color: #fff;
  display: inline-block;
  position: relative;
  transition: 0.3s ease;
}
#footer .list-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: 0.3s ease;
}
#footer .list-link:hover::after {
  width: 100%;
}
#footer .list-link {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  #footer .list-link {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .copy {
  letter-spacing: 0.08em;
  margin-top: 10px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  font-size: 1.2rem;
}
#footer .copy-link {
  color: #fff;
}

/* =========================================
  sub  PC
  sv 共通部分
========================================= */
#sv .sv {
  width: 100%;
  padding-left: 21.875vw;
  overflow: hidden;
  position: relative;
}
#sv .sv::before {
  position: absolute;
  content: "";
}
#sv .sv {
  z-index: 1;
}
#sv .sv::before {
  width: 60.93vw;
  height: 330px;
  top: 0;
  right: 0;
  background-color: #7bd9f6;
  z-index: -1;
}
#sv .sv-inner {
  width: 100%;
  max-width: 1340px;
  padding-top: 90px;
  position: relative;
}
#sv .sv-inner::before {
  position: absolute;
  content: "";
}
#sv .sv-inner {
  z-index: 1;
}
#sv .sv-inner::before {
  width: 111px;
  height: 88px;
  left: -150px;
  bottom: 0;
  background: url(/img/sv/sv-deco.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#sv .sv-img {
  width: 100%;
  height: 410px;
  border-radius: 40px;
}
#sv .sv-ttl {
  position: absolute;
  letter-spacing: 0.1em;
  padding: 13px 29.5px;
  left: 0;
  bottom: 60px;
  color: #29bce9;
  background-color: #fff;
  border-radius: 0 16px 16px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  #sv .sv-ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

/* =========================================
    sub  PC
    sv
========================================= */
#sv .sv-forte {
  background: url(/img/sv/sv-forte.jpg) no-repeat center/cover;
}
#sv .sv-service {
  background: url(/img/sv/sv-service.jpg) no-repeat center/cover;
}
#sv .sv-voice {
  background: url(/img/sv/sv-voice.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 right 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: #29bce9;
  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: #444444;
}
.breadcrumb li::after {
  content: ">";
  display: inline-block;
  padding: 0 15px;
  color: #444444;
}

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

  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 {
    border-radius: 0 0 20px 0;
  }
  #header .headline-inner {
    padding: 0;
  }
  #header .logo {
    width: 160px;
  }
  #header .logo-link {
    padding: 10px 15px;
  }
  /*	mv  SP
  ------------------------------------ */
  #top-mv .mv {
    height: unset;
    padding: 85px 5px;
  }
  #top-mv .mv-img01 {
    width: 180px;
    min-width: unset;
    border-radius: 0 0 0 20px;
  }
  #top-mv .mv-img02 {
    position: unset;
    width: 100%;
    top: unset;
    left: unset;
    border-radius: 20px;
  }
  #top-mv .mv-ttl {
    width: 300px;
    right: 20px;
    bottom: 10px;
  }
  /*	fixed  SP
  ページトップへのリンク
  ------------------------------------ */
  .fixed {
    right: 15px;
    bottom: 25px;
  }
  .fixed-page {
    width: 50px;
  }
  /*	gnav  SP
  ハンバーガーメニュー、メニュー内のcss
  ------------------------------------ */
  #drawer .hamburger-drawer {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    width: 58px;
    height: 58px;
    padding: 0;
    border: none;
    background: #fff;
    cursor: pointer;
    border: 1px solid #d9d9d9;
    border-radius: 50%;
  }
  #drawer .hamburger-drawer span,
  #drawer .hamburger-drawer span::before,
  #drawer .hamburger-drawer span::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 1px;
    transform: translateX(-50%);
    left: 50%;
    background: #0a0a0a;
    border-radius: 20px;
    transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
  }
  #drawer .hamburger-drawer span::before {
    top: -7px;
  }
  #drawer .hamburger-drawer span::after {
    top: 7px;
  }
  #drawer .hamburger-drawer.active > span {
    background: transparent;
  }
  #drawer .hamburger-drawer.active > span::before, #drawer .hamburger-drawer.active > span::after {
    background: #0a0a0a;
    top: 0px;
  }
  #drawer .hamburger-drawer.active > span::before {
    transform: translate(-50%) rotate(-225deg);
  }
  #drawer .hamburger-drawer.active > span::after {
    transform: translate(-50%) rotate(225deg);
  }
  #drawer .nav-list-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  #drawer .nav-list-item:nth-child(1) {
    transition-delay: 0.3s;
  }
  #drawer .nav-list-item:nth-child(2) {
    transition-delay: 0.4s;
  }
  #drawer .nav-list-item:nth-child(3) {
    transition-delay: 0.5s;
  }
  #drawer .nav-list-item:nth-child(4) {
    transition-delay: 0.6s;
  }
  #drawer .nav-list-item:nth-child(5) {
    transition-delay: 0.7s;
  }
  #drawer .nav-list-item:nth-child(6) {
    transition-delay: 0.8s;
  }
  #drawer .nav-list-item:nth-child(7) {
    transition-delay: 0.9s;
  }
  #drawer .nav-list-item:nth-child(8) {
    transition-delay: 1s;
  }
  #drawer .nav-list-item:nth-child(9) {
    transition-delay: 1.1s;
  }
  #drawer .nav-list-item:nth-child(10) {
    transition-delay: 1.2s;
  }
  #drawer .nav-list.active .nav-list-item {
    opacity: 1;
    transform: translateY(0);
  }
  #drawer .nav-list-link {
    position: relative;
    display: block;
    padding: 20px 0;
    font-size: 18px;
    color: #444444;
    text-decoration: none;
    overflow: hidden;
    border-bottom: 1px solid #d9d9d9;
  }
  #drawer .headline {
    position: fixed;
    height: 70px;
    top: 0;
    left: 0;
  }
  #drawer-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 85px 15px 50px;
    overflow-y: scroll;
    background: url(/img/top/about-deco.png) no-repeat center bottom/320px, #fff;
    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;
  }
  /* --- info系 --- */
  .drawer-info {
    display: flex;
    margin: 25px auto 0;
    flex-direction: column;
    align-items: center;
  }
  .drawer-info .pcnav-info-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .drawer-info {
    /* 初期状態: 非表示 + 下方向オフセット */
  }
  .drawer-info > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .drawer-info {
    /* ドロワーが開いたとき（#drawer-menu.active）に表示させる */
  }
  #drawer-menu.active .drawer-info > * {
    opacity: 1;
    transform: translateY(0);
  }
  #drawer-menu.active .drawer-info {
    /* nav リストのアニメーションの後に順次出現させる遅延を付与 */
  }
  #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  SP
  ------------------------------------ */
  .ggmap {
    padding-top: 250px;
  }
  /* =========================================
  footer  SP
  ========================================= */
  #footer .container {
    display: block;
    width: 320px;
    margin: 0 auto;
  }
  #footer .wrap {
    justify-content: center;
  }
  #footer .logo {
    display: block;
    width: 150px;
  }
  #footer .box {
    margin-top: 35px;
    padding-right: 0;
  }
  #footer .nav {
    width: 100%;
  }
  #footer .list {
    justify-content: center;
  }
  #footer .copy {
    text-align: center;
    padding-right: 55px;
  }
}
@media screen and (max-width: 767px) and (min-width: 445px) {
  #footer .copy {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  /* =========================================
    sub  SP
    下層（サブビジュアル）のcss
  ========================================= */
  /*	sub headline  SP
  ------------------------------------ */
  /* =========================================
    sub  SP
    sv 共通部分
  ========================================= */
  #sv .sv {
    overflow: unset;
    padding-left: 0;
  }
  #sv .sv::before {
    width: 45vw;
    height: 200px;
  }
  #sv .sv-inner {
    padding-top: 80px;
  }
  #sv .sv-inner::before {
    width: 61px;
    height: 48px;
    left: unset;
    right: 10px;
    bottom: -15px;
    z-index: 1;
  }
  #sv .sv-img {
    height: 250px;
    border-radius: 20px;
  }
  #sv .sv-ttl {
    padding: 10px 29.5px;
    bottom: 25px;
    z-index: 5;
  }
  #sv .sv-news {
    background: url(/img/sv/sv-news.jpg) no-repeat calc(50% - 100px) center/cover;
  }
  /*	------- */
}
/*	------- */
/* =========================================
  breakpoint
========================================= */