@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 DemiLight";
  src: url(../fonts/NotoSansCJKjp-DemiLight.otf);
}
@font-face {
  font-family: "Noto sansCJK Light";
  src: url(../fonts/NotoSansCJKjp-Light.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: "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: "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 DemiLight";
  src: url(../fonts/NotoSansCJKjp-DemiLight.otf);
}
@font-face {
  font-family: "Noto sansCJK Light";
  src: url(../fonts/NotoSansCJKjp-Light.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: "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: 1300px;
  margin: 0 auto;
  color: #0b1304;
  font-family: "Noto sansCJK Regular", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 19px;
    font-size: 1.9rem;
  }
}

.body-top {
  min-width: 1300px;
}

/* 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%;
  max-width: 1800px;
  height: 120px;
  padding: 0 54px;
  position: fixed;
  transform: translateX(-50%);
  left: 50%;
  top: 32px;
  background-color: #fff;
  border-radius: 18px;
  z-index: 99;
}
@media screen and (max-width: 1830px) {
  #header .headline {
    width: 98%;
  }
}
#header .logo {
  display: inline-block;
  transition: all 0.3s ease;
}
#header .logo:hover {
  opacity: 0.7;
}
#header .logo a,
#header .logo img {
  display: block;
}

/*	gnav  PC
ヘッダーナビ（PC時）
------------------------------------ */
#gnav .list-item:nth-of-type(n + 2) {
  margin-left: 35px;
}
#gnav .list-link {
  font-family: "Noto sansCJK Bold", sans-serif;
  color: #0b1304;
  position: relative;
}
#gnav .list-link::before {
  background: #77c532;
  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: "Ubuntu-Bold", sans-serif;
  font-size: 25px;
  font-size: 2.5rem;
  width: 200px;
  line-height: 64px;
  padding-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #77c532;
  border-radius: 32px;
}
@media screen and (max-width: 767px) {
  #gnav .list-entry {
    font-size: 20px;
    font-size: 2rem;
  }
}
#gnav .list-entry::after {
  content: "";
  width: 22px;
  height: 18px;
  margin-left: 15px;
  background: url(/img/all/entry-ico.png) no-repeat;
  transition: all 0.3s ease;
}
#gnav .list-entry:hover::after {
  transform: translate(5px, -3px);
}

/*	mv  PC
メインビジュアル（トップ用）
------------------------------------ */
#top-mv .mv {
  width: 100%;
  height: 47.9vw;
  min-height: 622px;
  background: url(/img/all/mv.jpg) no-repeat center bottom/cover;
  position: relative;
  z-index: 10;
}
#top-mv .mv-ttl {
  position: absolute;
  font-family: "Noto sansCJK Bold", sans-serif;
  font-size: 90px;
  font-size: 9rem;
  left: 70px;
  bottom: 6.2vw;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #top-mv .mv-ttl {
    font-size: 45px;
    font-size: 4.5rem;
  }
}

/* =========================================
  footer  PC
  フッター
========================================= */
#footer .bg {
  background: url(/img/all/foo-bg.jpg) no-repeat center bottom/cover;
}
#footer .logo {
  width: 350px;
}
#footer .list:nth-of-type(n + 2) {
  margin-left: 150px;
}
#footer .list-item {
  font-family: "Noto sansCJK Medium", sans-serif;
}
#footer .list-item:nth-of-type(n + 2) {
  margin-top: 20px;
}
#footer .list-link {
  color: #0b1304;
  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 .copy {
  font-size: 15px;
  font-size: 1.5rem;
  margin-top: 95px;
  color: #9e9e9e;
}
@media screen and (max-width: 767px) {
  #footer .copy {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .copy-link {
  color: #9e9e9e;
}

/* =========================================
  sub  PC
  sv 共通部分
========================================= */
#sv .sv {
  width: 100%;
  height: 550px;
  position: relative;
}
#sv .sv-ttl {
  position: absolute;
  font-family: "Noto sansCJK Bold", sans-serif;
  font-size: 90px;
  font-size: 9rem;
  left: 55px;
  bottom: 80px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #sv .sv-ttl {
    font-size: 45px;
    font-size: 4.5rem;
  }
}

/* =========================================
    sub  PC
    sv
========================================= */
#sv .sv-about {
  background: url(/img/sv/sv-about.jpg) no-repeat center/cover;
}
#sv .sv-business {
  background: url(/img/sv/sv-business.jpg) no-repeat center/cover;
}
#sv .sv-work {
  background: url(/img/sv/sv-work.jpg) no-repeat center/cover;
}
#sv .sv-recruit {
  background: url(/img/sv/sv-recruit.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-top: 35px;
  margin: 0 auto;
}
.breadcrumb-business {
  background-color: #f9f4eb;
}
.breadcrumb-privacy {
  background-color: #f9f4eb;
}
@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: #0b1304;
  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: #0b1304;
}
.breadcrumb li::after {
  content: ">";
  display: inline-block;
  padding: 0 5px;
  color: #0b1304;
}

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

  layout  SP
  共通パーツのスマホ時css
========================================= */
@media screen and (max-width: 767px) {
  /* =========================================
    base  SP
  ========================================= */
  body {
    min-width: 350px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .body-top {
    min-width: 350px;
  }
  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 {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    transform: unset;
    top: 0;
    left: 0;
    border-radius: 0;
  }
  #header .logo {
    width: 150px;
  }
  /*	mv  SP
  ------------------------------------ */
  #top-mv .mv {
    height: 400px;
    min-height: unset;
  }
  #top-mv .mv-ttl {
    width: 300px;
    line-height: 1.3;
    left: 20px;
    bottom: unset;
    top: 70px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  }
  /*	gnav  SP
  ハンバーガーメニュー、メニュー内のcss
  ------------------------------------ */
  .sp-menu-btn-wrp {
    width: 50px;
    height: 50px;
    padding-top: 16px;
    background-color: #77c532;
    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: #fff;
  }
  #drawer-nav .com-tel {
    margin-top: 20px;
  }
  #drawer-nav .current::after {
    display: none;
  }
  #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 #77c532;
    padding: 6% 0;
    font-size: clamp(18px, 4.8vw, 36px);
    letter-spacing: 0.1em;
    color: #0b1304;
    line-height: 1.22;
  }
  /* --- info系 --- */
  .drawer-info {
    display: flex;
    margin: 5% auto 0;
    flex-direction: column;
    align-items: center;
  }
  .drawer-info-img {
    width: 120px;
    height: 100px;
    margin-left: auto;
    background: url(/img/top/greeting-deco.png) no-repeat center/100%;
  }
  .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;
  }
  .drawer-info .list-entry {
    font-family: "Ubuntu-Bold", sans-serif;
    font-size: 25px;
    font-size: 2.5rem;
    width: 200px;
    line-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #77c532;
    border-radius: 32px;
  }
  /*	ggmap  SP
  ------------------------------------ */
  /* =========================================
  footer  SP
  ========================================= */
  /* =========================================
    sub  SP
    下層（サブビジュアル）のcss
  ========================================= */
  /*	sub headline  SP
  ------------------------------------ */
  /* =========================================
    sub  SP
    sv 共通部分
  ========================================= */
  /*	------- */
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .drawer-info .list-entry {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .drawer-info .list-entry::after {
    content: "";
    width: 22px;
    height: 18px;
    margin-left: 15px;
    background: url(/img/all/entry-ico.png) no-repeat;
    transition: all 0.3s ease;
  }
  .drawer-info .list-entry:hover::after {
    transform: translate(5px, -3px);
  }
  .ggmap {
    padding-top: 250px;
  }
  #footer .container {
    display: block;
    position: relative;
    padding-bottom: 50px;
  }
  #footer .logo {
    display: block;
    width: 180px;
    margin: 0 auto;
  }
  #footer .copy {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    bottom: 0;
  }
  #footer .nav {
    display: block;
    width: 100%;
    margin-top: 50px;
  }
  #footer .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    border: 1px solid #77c532;
    background-color: #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 #77c532;
  }
  #footer .list-item:nth-of-type(n + 2) {
    margin-left: 0;
    margin-top: 0;
    border-bottom: 1px solid #77c532;
  }
  #footer .list-item:nth-of-type(2n) {
    border-right: 1px solid #77c532;
  }
  #footer .list-item:last-of-type {
    border-bottom: none;
  }
  #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;
  }
  #sv .sv {
    height: 350px;
  }
  #sv .sv-ttl {
    font-size: 40px;
    width: 320px;
    left: 15px;
    bottom: 40px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
}
/*	------- */
/* =========================================
  breakpoint
========================================= */