@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
/* Noto Sans Japanese */
/* Jost */
/* M PLUS 1p */
/*	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;
  letter-spacing: 0.05em;
  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: 120px;
  padding-left: 30px;
  background-color: #fff;
  position: relative;
  z-index: 99;
}
#header .logo {
  display: inline-block;
  transition: all 0.3s ease;
}
#header .logo a,
#header .logo img {
  display: block;
}
#header .logo:hover {
  opacity: 0.7;
}
#header .current {
  color: #23adeb !important;
}
#header .wrap {
  padding-bottom: 12px;
}
#header .contact-list {
  gap: 30px;
}
#header .line {
  margin-bottom: 10px;
}
#header .mail {
  width: 200px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #05469a;
  border-radius: 0 0 0 10px;
}
#header .mail::before {
  content: "";
  width: 20px;
  height: 15px;
  margin-right: 10px;
  background: url(/img/all/mail-ico.png) no-repeat;
}

/*	gnav  PC
ヘッダーナビ（PC時）
------------------------------------ */
#gnav .list {
  margin-top: 22px;
  padding-right: 20px;
}
#gnav .list-item:nth-of-type(n + 2) {
  margin-left: 40px;
}
#gnav .list-link {
  color: #0e0e17;
  position: relative;
}
#gnav .list-link::before {
  background: #23adeb;
  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%;
  height: 44.8vw;
  margin-top: 20px;
  position: relative;
}
#top-mv .mv-box {
  position: absolute;
  width: 41.6vw;
  height: 21.875vw;
  padding: 7.8vw 3.6vw 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 100;
  border-radius: 0 30px 0 0;
}
#top-mv .mv-box::after {
  position: absolute;
  content: "";
  width: 26px;
  height: 27px;
  bottom: 0;
  right: -26px;
  background: url(/img/all/catch-right.png) no-repeat;
}
#top-mv .mv-box-deco {
  position: absolute;
  width: 30.57vw;
  transform: translateX(-50%);
  left: 50%;
  top: -4vw;
}
#top-mv .mv-ttl {
  width: 34.3vw;
}

#fade {
  position: relative;
  width: 100%;
  max-width: 84.375vw;
  height: auto;
  list-style: none;
  margin: 0 2.6vw 0 auto;
  padding: 0;
}
@media screen and (min-width: 1921px) {
  #fade {
    max-width: 84.375vw;
  }
}
#fade li {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
#fade li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#fade li img {
  border-radius: 30px;
}
#fade li.active {
  opacity: 1;
  z-index: 1;
}

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

/* =========================================
  footer  PC
  フッター
========================================= */
#footer .current {
  border-bottom: 1px solid #fff !important;
}
#footer .bg {
  background-color: #65c5f1;
}
#footer .logo {
  display: block;
  width: 267px;
  margin: 0 auto;
}
#footer .nav {
  margin-top: 60px;
  padding-top: 55px;
  border-top: 1px solid #fff;
}
#footer .list {
  justify-content: center;
}
#footer .list:nth-of-type(n + 2) {
  margin-top: 15px;
}
#footer .list-item:nth-of-type(n + 2) {
  margin-left: 30px;
}
#footer .list-link {
  color: #fff;
  display: inline-block;
  position: relative;
  transition: 0.3s ease;
  font-size: 14px;
  font-size: 1.4rem;
}
#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%;
}
@media screen and (max-width: 767px) {
  #footer .list-link {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .copy {
  padding: 17px 0;
  text-align: center;
  color: #23adeb;
  background-color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
}
#footer .copy-link {
  color: #23adeb;
}

/* =========================================
  sub  PC
  sv 共通部分
========================================= */
#sv .sv {
  width: 100%;
  position: relative;
  padding-right: 2.6vw;
}
@media screen and (max-width: 1550px) {
  #sv .sv {
    padding-right: 0;
  }
}
#sv .sv-img {
  width: 100%;
  max-width: 1500px;
  height: 450px;
  margin-left: auto;
  border-radius: 30px;
  position: relative;
}
#sv .sv-img::before {
  position: absolute;
  content: "";
}
@media screen and (min-width: 1921px) {
  #sv .sv-img {
    max-width: 78.1vw;
    height: 23.4vw;
  }
}
#sv .sv-img::before {
  width: 26px;
  height: 27px;
  bottom: 10.4vw;
  left: 0;
  background: url(/img/all/catch-right.png) no-repeat center/100%;
}
@media screen and (max-width: 1450px) {
  #sv .sv-img::before {
    bottom: 150px;
  }
}
#sv .sv-box {
  position: absolute;
  width: 37.5vw;
  min-width: 550px;
  height: 10.4vw;
  min-height: 150px;
  padding: 0 5.36vw;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #23adeb;
  background-color: #fff;
  border-radius: 0 30px 0 0;
}
#sv .sv-box::after {
  position: absolute;
  content: "";
  width: 26px;
  height: 27px;
  bottom: 0;
  right: -26px;
  background: url(/img/all/catch-right.png) no-repeat center/100%;
}
#sv .sv-ttl {
  white-space: nowrap;
  letter-spacing: 0.1em;
  font-family: "M PLUS 1p", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  position: relative;
  font-size: clamp(40px, 2.34vw, 55px);
}
#sv .sv-ttl::after {
  position: absolute;
  content: "";
}
#sv .sv-ttl::after {
  width: 4.6vw;
  height: 5.2vw;
  transform: translateY(-50%);
  top: 50%;
  right: -5.4vw;
  background: url(/img/sv/sv-deco.png) no-repeat;
  background-size: 100%;
}

/* =========================================
    sub  PC
    sv
========================================= */
#sv .sv-about {
  background: url(/img/sv/sv-about.jpg) no-repeat center/cover;
}
#sv .sv-air {
  background: url(/img/sv/sv-air.jpg) no-repeat center/cover;
}
#sv .sv-cleaning {
  background: url(/img/sv/sv-cleaning.jpg) no-repeat center/cover;
}
#sv .sv-service {
  background: url(/img/sv/sv-service.jpg) no-repeat center/cover;
}
#sv .sv-case {
  background: url(/img/sv/sv-case.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: #de266a;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb li,
  .breadcrumb a {
    font-size: 12px;
  }
}
.breadcrumb li {
  color: #0e0e17;
}
.breadcrumb li::after {
  content: ">";
  display: inline-block;
  padding: 0 5px;
  color: #0e0e17;
}

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

  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: 60px;
    padding-left: 10px;
  }
  #header .logo {
    width: 160px;
  }
  /*	mv  SP
  ------------------------------------ */
  #top-mv .mv {
    height: 91vw;
    min-height: 318.5px;
    margin-top: 10px;
  }
  #top-mv .mv-ttl {
    width: 85.7vw;
    min-width: 300px;
  }
  #top-mv .mv-box {
    width: 100%;
    height: 37.1vw;
    min-height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-50%);
    left: 50%;
  }
  #top-mv .mv-box::after {
    display: none;
  }
  #top-mv .mv-box-deco {
    width: 57.1vw;
    min-width: 200px;
    top: -11.4vw;
  }
  #fade {
    max-width: unset;
    margin: 0;
  }
  #fade li img {
    border-radius: 15px;
  }
  /*	fixed  SP
  ページトップへのリンク
  ------------------------------------ */
  .fixed {
    bottom: 60px;
  }
  .fixed-page {
    width: 50px;
    height: 50px;
  }
  /*	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: #23adeb;
    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: #23adeb;
  }
  .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: 25px 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: 18px;
    color: #0e0e17;
    text-decoration: none;
    overflow: hidden;
    border-bottom: 1px solid #23adeb;
  }
  #drawer-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/img/top/service-bg01.png) no-repeat right 80px/40vw, url(/img/top/service-bg02.png) no-repeat right bottom/50vw, url(/img/top/service-bg03.png) no-repeat left calc(100% - 100px)/50vw, #e7f8ff;
    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 .contact-list-item01 {
    width: 100%;
  }
  #drawer-nav .com-tel {
    width: 100%;
  }
  #drawer-nav .com-tel-svg {
    transform: translateX(-50%);
    left: 50%;
  }
  #drawer-nav .line {
    margin-bottom: 0;
  }
  #drawer-nav .mail {
    border-radius: 10px;
  }
  /* --- info系 --- */
  .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  SP
  ------------------------------------ */
  .ggmap {
    padding-top: 250px;
  }
  /* =========================================
  footer  SP
  ========================================= */
  #footer .current {
    color: #fff !important;
    border-bottom: none !important;
  }
  #footer .logo {
    width: 200px;
  }
  #footer .nav {
    width: 100%;
    margin-top: 40px;
    padding-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: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 {
    padding-bottom: 75px;
  }
  #sv .sv-img {
    height: 250px;
    border-radius: 10px;
  }
  #sv .sv-img::before {
    display: none;
  }
  #sv .sv-box {
    width: 300px;
    height: 100px;
    min-width: unset;
    min-height: unset;
    padding: 0 15px;
    border-radius: 0 10px 0 0;
  }
  #sv .sv-box::before {
    position: absolute;
    content: "";
    width: 12px;
    height: 16px;
    top: -14px;
    left: 0;
    background: url(/img/all/catch-right.png) no-repeat center/100%;
  }
  #sv .sv-box::after {
    width: 12px;
    height: 16px;
    bottom: 73px;
    right: -12px;
  }
  #sv .sv-ttl {
    text-align: center;
    font-size: 28px;
  }
  #sv .sv-ttl::after {
    width: 40px;
    height: 45px;
    right: -75px;
  }
  #sv .sv-air {
    background: url(/img/sv/sv-air.jpg) no-repeat calc(100% + 110px) center/cover;
  }
  /*	------- */
}
/*	------- */
/* =========================================
  breakpoint
========================================= */