@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
@font-face {
  font-family: "Noto sansCJK Black";
  src: url(../fonts/NotoSansCJKjp-Black.otf);
}
@font-face {
  font-family: "Noto sansCJK Bold";
  src: url(../fonts/NotoSansCJKjp-Bold.otf);
}
@font-face {
  font-family: "Noto sansCJK Medium";
  src: url(../fonts/NotoSansCJKjp-Medium.otf);
}
@font-face {
  font-family: "Noto sansCJK Regular";
  src: url(../fonts/NotoSansCJKjp-Regular.otf);
}
@font-face {
  font-family: "Poppins-Black";
  src: url(../fonts/Poppins-Black.ttf);
}
@font-face {
  font-family: "Poppins-Bold";
  src: url(../fonts/Poppins-Bold.ttf);
}
@font-face {
  font-family: "Poppins-BoldItalic";
  src: url(../fonts/Poppins-BoldItalic.ttf);
}
@font-face {
  font-family: "Poppins-Light";
  src: url(../fonts/Poppins-Light.ttf);
}
@font-face {
  font-family: "Poppins-Italic";
  src: url(../fonts/Poppins-Italic.ttf);
}
@font-face {
  font-family: "Poppins-Medium";
  src: url(../fonts/Poppins-Medium.ttf);
}
@font-face {
  font-family: "Poppins-Regular";
  src: url(../fonts/Poppins-Regular.ttf);
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url(../fonts/Poppins-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: "Noto sansCJK Black";
  src: url(../fonts/NotoSansCJKjp-Black.otf);
}
@font-face {
  font-family: "Noto sansCJK Bold";
  src: url(../fonts/NotoSansCJKjp-Bold.otf);
}
@font-face {
  font-family: "Noto sansCJK Medium";
  src: url(../fonts/NotoSansCJKjp-Medium.otf);
}
@font-face {
  font-family: "Noto sansCJK Regular";
  src: url(../fonts/NotoSansCJKjp-Regular.otf);
}
@font-face {
  font-family: "Poppins-Black";
  src: url(../fonts/Poppins-Black.ttf);
}
@font-face {
  font-family: "Poppins-Bold";
  src: url(../fonts/Poppins-Bold.ttf);
}
@font-face {
  font-family: "Poppins-BoldItalic";
  src: url(../fonts/Poppins-BoldItalic.ttf);
}
@font-face {
  font-family: "Poppins-Light";
  src: url(../fonts/Poppins-Light.ttf);
}
@font-face {
  font-family: "Poppins-Italic";
  src: url(../fonts/Poppins-Italic.ttf);
}
@font-face {
  font-family: "Poppins-Medium";
  src: url(../fonts/Poppins-Medium.ttf);
}
@font-face {
  font-family: "Poppins-Regular";
  src: url(../fonts/Poppins-Regular.ttf);
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url(../fonts/Poppins-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: 1300px;
  margin: 0 auto;
  color: #1e3345;
  font-family: "Noto sansCJK Medium", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 19px;
    font-size: 1.9rem;
  }
}

/* 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 {
  width: 100%;
  padding-left: 2.44vw;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}
@media screen and (max-width: 1400px) {
  #header .headline {
    padding-left: 10px;
  }
}
#header .logo {
  display: inline-block;
  transition: all 0.3s ease;
}
#header .logo:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1500px) {
  #header .logo {
    width: 250px;
  }
}
#header .logo a,
#header .logo img {
  display: block;
}

/*	gnav  PC
ヘッダーナビ（PC時）
------------------------------------ */
#gnav .list {
  justify-content: start;
  align-items: center;
}
#gnav .list-item:nth-of-type(n + 2) {
  margin-left: 2.86vw;
}
@media screen and (max-width: 1400px) {
  #gnav .list-item:nth-of-type(n + 2) {
    margin-left: 25px;
  }
}
#gnav .list-link {
  font-family: "Noto sansCJK Medium", sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  color: #1e3345;
  position: relative;
}
@media screen and (max-width: 767px) {
  #gnav .list-link {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1400px) {
  #gnav .list-link {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1400px) and (max-width: 767px) {
  #gnav .list-link {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
#gnav .list-link::before {
  background: #1782dd;
  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-entry {
  font-family: "Poppins-SemiBold", sans-serif;
  font-size: 36px;
  font-size: 3.6rem;
  width: 202px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #1782dd;
}
@media screen and (max-width: 767px) {
  #gnav .list-entry {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1400px) {
  #gnav .list-entry {
    width: 142px;
    height: 100px;
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 1400px) and (max-width: 767px) {
  #gnav .list-entry {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

/*	mv  PC
メインビジュアル（トップ用）
------------------------------------ */
#top-mv .mv {
  position: relative;
  width: 100%;
  height: 47.9vw;
  min-height: 527px;
}
#top-mv .mv-ttl {
  position: absolute;
  width: 37.5vw;
  height: 15.2vw;
  left: 5.46vw;
  bottom: 4.68vw;
  z-index: 99;
}
@media screen and (max-width: 1100px) {
  #top-mv .mv-ttl {
    width: 412px;
    height: 167px;
  }
}

#fade {
  position: relative;
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
#fade li {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 0;
  width: 100%;
  height: 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.active {
  opacity: 1;
  z-index: 1;
}

/* =========================================
  footer  PC
  フッター
========================================= */
#footer .bg {
  background-color: #1782dd;
}
#footer .container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
#footer .wrap01 {
  flex-shrink: 0;
}
#footer .link-list {
  margin-top: 50px;
}
#footer .link-list-item:nth-of-type(n + 2) {
  margin-top: 50px;
}
#footer .com-tel-num {
  font-size: 30px;
  font-size: 3rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #footer .com-tel-num {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#footer .list:nth-of-type(n + 2) {
  margin-left: 40px;
}
#footer .list-item:nth-of-type(n + 2) {
  margin-top: 25px;
}
#footer .list-link {
  position: relative;
  color: #fff;
  display: inline-block;
  position: relative;
  transition: 0.3s ease;
}
#footer .list-link::before {
  position: absolute;
  content: "";
}
#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 .copy {
  text-align: right;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "Noto sansCJK Regular", sans-serif;
  margin-top: 90px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #footer .copy {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .copy-link {
  color: #fff;
}

/* =========================================
  sub  PC
  sv 共通部分
========================================= */
#sv .sv {
  width: 100%;
  height: 520px;
  position: relative;
}
#sv .sv-ttl {
  position: absolute;
  font-family: "Noto sansCJK Bold", sans-serif;
  font-size: 66px;
  font-size: 6.6rem;
  letter-spacing: 3.35px;
  left: 92px;
  bottom: 79px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #sv .sv-ttl {
    font-size: 33px;
    font-size: 3.3rem;
  }
}

/* =========================================
    sub  PC
    sv
========================================= */
#sv .sv-about {
  background: url(/img/sv/sv-about.jpg) no-repeat center/cover;
}
#sv .sv-driver {
  background: url(/img/sv/sv-driver.jpg) no-repeat center/cover;
}
#sv .sv-staff {
  background: url(/img/sv/sv-staff.jpg) no-repeat center/cover;
}
#sv .sv-recruit {
  background: url(/img/sv/sv-recruit.jpg) no-repeat center calc(50% - 100px)/cover;
}
#sv .sv-news {
  background: url(/img/sv/sv-news.jpg) no-repeat left center/cover;
}
#sv .sv-site {
  background: url(/img/sv/sv-site.jpg) no-repeat left center/cover;
}
#sv .sv-privacy {
  background: url(/img/sv/sv-privacy.jpg) no-repeat left center/cover;
}
#sv .sv-error {
  background: url(/img/sv/sv-error.jpg) no-repeat left 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 left center/cover;
}

/*	breadcrumb  PC
パンくずリスト
------------------------------------ */
.breadcrumb {
  display: flex;
  max-width: 1280px;
  align-items: center;
  margin: 25px auto 0;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    height: 25px;
    padding: 0 2%;
  }
}
.breadcrumb .bread-inner {
  width: 100%;
  max-width: 1280px;
  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: #1e3345;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .breadcrumb li,
  .breadcrumb a {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb li,
  .breadcrumb a {
    font-size: 12px;
  }
}
.breadcrumb li {
  color: #1e3345;
}
.breadcrumb li::after {
  content: ">";
  display: inline-block;
  padding: 0 10px;
  color: #1e3345;
}

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

  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: 160px;
    padding: 9px 6px;
  }
  /*	mv  SP
  ------------------------------------ */
  #top-mv .mv {
    min-height: 350px;
  }
  #top-mv .mv-ttl {
    width: 300px;
    height: 122px;
  }
  /*	gnav  SP
  ハンバーガーメニュー、メニュー内のcss
  ------------------------------------ */
  .sp-menu-btn-wrp {
    width: 50px;
    height: 50px;
    padding-top: 16px;
    background-color: #1782dd;
    top: 0;
    right: 0;
  }
  .sp-menu-btn-wrp .sp-menu-btn {
    width: 47%;
    height: 18px;
    margin: auto;
  }
  .sp-menu-btn-wrp .sp-menu-btn span {
    width: 100%;
    height: 2px;
    background: #fff;
  }
  .sp-menu-btn-wrp .sp-menu-btn .top {
    top: 0;
  }
  .sp-menu-btn-wrp .sp-menu-btn .middle {
    top: 0;
    bottom: 0;
  }
  .sp-menu-btn-wrp .sp-menu-btn .bottom {
    top: auto;
    bottom: 0;
  }
  .sp-menu-btn-wrp .sp-menu-btn-txt {
    display: block;
    margin: 8px auto 0;
    font-size: 11px;
    font-size: 1.1rem;
    letter-spacing: 0;
    line-height: 1;
    top: auto;
  }
  .sp-menu-btn-wrp .sp-menu-btn-txt img {
    height: 10px;
  }
  .sp-menu-btn-wrp .sp-menu-btn.active span {
    width: 28px;
  }
  .sp-menu-btn-wrp .sp-menu-btn.active .top {
    transform: translateY(9px) translateX(-3px) rotate(45deg);
  }
  .sp-menu-btn-wrp .sp-menu-btn.active .bottom {
    bottom: 10px;
    transform: translateY(3px) translateX(-3px) rotate(-45deg);
  }
  #drawer-nav.active {
    z-index: 1001;
  }
  /*	gnav-add  SP
  ------------------------------------ */
  #drawer-nav {
    padding: 15px 15px 30px;
    background: #1782dd;
  }
  #drawer-nav .current::after {
    display: none;
  }
  #drawer-nav .com-btn01 {
    color: #1782dd;
    background-color: #fff;
  }
  #drawer-nav .com-btn01::after {
    background: url(/img/all/arrow-lg.png) no-repeat center/12px, #1782dd;
  }
  #drawer-nav .com-tel {
    margin-top: 25px;
  }
  #drawer-nav .com-tel-num {
    font-size: 30px;
    font-size: 3rem;
    color: #fff;
  }
  /* --- info系 --- */
  /*	ggmap  SP
  ------------------------------------ */
  /* =========================================
  footer  SP
  ========================================= */
  /* =========================================
    sub  SP
    下層（サブビジュアル）のcss
  ========================================= */
  /*	sub headline  SP
  ------------------------------------ */
  /* =========================================
    sub  SP
    sv 共通部分
  ========================================= */
  /*	------- */
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #drawer-nav .com-tel-num {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  #drawer-nav .sns-list {
    margin-top: 20px;
  }
  #drawer-nav .sns-list-item {
    width: 30px;
  }
  #drawer-nav .drawer-logo {
    width: 73%;
    margin-bottom: 15px;
  }
  #drawer-nav #nav {
    padding: 0;
  }
  #drawer-nav #nav .list-link {
    display: block;
    border-bottom: 1px solid #fff;
    padding: 6% 0;
    font-size: clamp(18px, 4.8vw, 36px);
    letter-spacing: 0.1em;
    color: #fff;
    line-height: 1.22;
  }
  .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;
  }
  .drawer-info .shop-btn {
    margin-left: 0px;
    line-height: 50px;
    display: flex;
    justify-content: center;
    background-color: #ff957d;
    position: relative;
    color: #ffffff;
  }
  .ggmap {
    padding-top: 250px;
  }
  #footer .container {
    display: block;
  }
  #footer .wrap01 {
    text-align: center;
  }
  #footer .logo {
    width: 200px;
  }
  #footer .link-list {
    margin-top: 35px;
  }
  #footer .link-list-item:nth-of-type(n + 2) {
    margin-top: 25px;
  }
  #footer .link-list-instagram {
    width: 30px;
  }
  #footer .nav {
    width: 100%;
    margin-top: 50px;
    display: block;
  }
  #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-top: 1px solid #fff;
  }
  #footer .list-item:nth-of-type(2), #footer .list-item:nth-of-type(3) {
    border-top: none;
  }
  #footer .list-item:nth-of-type(2n) {
    border-right: 1px solid #fff;
  }
  #footer .list-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    text-align: center;
    padding: 10px 5px;
  }
  #footer .list-link::after {
    display: none;
  }
  #footer .copy {
    margin-top: 35px;
    text-align: center;
  }
  #sv .sv {
    height: 300px;
  }
  #sv .sv-ttl {
    left: 20px;
    bottom: 30px;
  }
  #sv .sv-recruit {
    background: url(/img/sv/sv-recruit.jpg) no-repeat center/cover;
  }
}
/*	------- */
/* =========================================
  breakpoint
========================================= */