@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: "KaiseiOpti-Bold";
  src: url(../fonts/KaiseiOpti-Bold.ttf);
}
@font-face {
  font-family: "KaiseiOpti-Medium";
  src: url(../fonts/KaiseiOpti-Medium.ttf);
}
@font-face {
  font-family: "KaiseiOpti-Regular";
  src: url(../fonts/KaiseiOpti-Regular.ttf);
}
@font-face {
  font-family: "LovedbytheKing-Regular";
  src: url(../fonts/LovedbytheKing-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: "KaiseiOpti-Bold";
  src: url(../fonts/KaiseiOpti-Bold.ttf);
}
@font-face {
  font-family: "KaiseiOpti-Medium";
  src: url(../fonts/KaiseiOpti-Medium.ttf);
}
@font-face {
  font-family: "KaiseiOpti-Regular";
  src: url(../fonts/KaiseiOpti-Regular.ttf);
}
@font-face {
  font-family: "LovedbytheKing-Regular";
  src: url(../fonts/LovedbytheKing-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: #5a3509;
  font-size: 20px;
  font-size: 2rem;
  font-family: "Noto sansCJK Medium", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.6;
  background: url(/img/all/pt1.jpg) left top;
}
@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%;
}
#header .headline {
  position: absolute;
  width: 100%;
  padding: 22px 65px 0 60px;
  z-index: 99;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1200px) {
  #header .headline {
    padding: 15px 15px 0 15px;
  }
}
#header .logo {
  display: inline-block;
  transition: all 0.3s ease;
}
#header .logo:hover {
  opacity: 0.7;
}
#header .logo a,
#header .logo img {
  display: block;
}
#header .contact-list {
  margin-top: 20px;
}
#header .contact-list-item {
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #header .contact-list-item {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
#header .contact-list-item:nth-of-type(n + 2) {
  margin-top: 5px;
}
#header .contact-list-item:nth-of-type(3) {
  height: 14px;
}
#header .contact-list-item:nth-of-type(3) img {
  display: block;
}

/*	gnav  PC
ヘッダーナビ（PC時）
------------------------------------ */
#gnav .list {
  margin-top: 7px;
}
#gnav .list-item:nth-of-type(n + 2) {
  margin-left: 35px;
}
#gnav .list-link {
  font-family: "Noto sansCJK Bold", sans-serif;
  text-align: center;
  color: #5a3509;
  position: relative;
}
#gnav .list-link::before {
  background: #f2801c;
  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-img {
  margin-bottom: 5px;
}

/*	mv  PC
メインビジュアル（トップ用）
------------------------------------ */
#top-mv .mv {
  position: relative;
  height: 930px;
  background: url(/img/all/mv.png) no-repeat center bottom, url(/img/all/head-deco.png) no-repeat left top;
}
@media screen and (min-width: 1921px) {
  #top-mv .mv {
    background: url(/img/all/mv.png) no-repeat center 120px/100%, url(/img/all/head-deco.png) no-repeat left top;
    position: relative;
  }
  #top-mv .mv::before {
    position: absolute;
    content: "";
  }
  #top-mv .mv::before {
    width: 100%;
    height: 15px;
    bottom: -1px;
    left: 0;
    background-color: #fff;
  }
}
#top-mv .mv-ttl {
  position: absolute;
  width: 598px;
  height: 522px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-50%);
  left: 50%;
  bottom: 130px;
  background: url(/img/all/catch-bg.png) no-repeat center top/cover;
}
#top-mv .mv-ttl::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 259px;
  bottom: -30px;
  right: -95px;
  background: url(/img/all/catch-deco.png) no-repeat;
  background-size: 100%;
}

/*	page-top  PC
page-top リンク
------------------------------------ */
.fixed {
  width: 247px;
  height: 263px;
  padding-top: 65px;
  padding-left: 15px;
  text-align: center;
  background: url(/img/all/fixed-bg.png) no-repeat center;
}
.fixed-deco {
  position: fixed;
  right: -195px;
  bottom: 50px;
  z-index: 99;
  transition: all 0.3s ease;
}
.fixed-deco::before {
  position: absolute;
  content: "";
  width: 209px;
  height: 234px;
  top: -110px;
  left: -120px;
  background: url(/img/all/fixed-deco.png) no-repeat center/100%;
  z-index: -1;
}
.fixed-deco:hover {
  transform: translate(-195px, 0);
}
.fixed-item:nth-of-type(3) {
  margin-top: 10px;
}
.fixed-contact {
  width: 188px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "KaiseiOpti-Bold", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0 auto;
  color: #fff;
  background-color: #f2801c;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .fixed-contact {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.fixed-contact::before {
  content: "";
  width: 16px;
  height: 12px;
  margin-right: 12px;
  background: url(/img/all/mail-ico.png) no-repeat center/100%;
}
.fixed-line {
  width: 188px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "KaiseiOpti-Bold", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0 auto;
  color: #fff;
  background-color: #59b400;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .fixed-line {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.fixed-line::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 12px;
  background: url(/img/all/line-ico.png) no-repeat center/100%;
}

/* =========================================
  footer  PC
  フッター
========================================= */
#footer .bg {
  z-index: 10;
  position: relative;
}
#footer .bg::before {
  position: absolute;
  content: "";
}
#footer .bg::after {
  position: absolute;
  content: "";
}
#footer .bg::before {
  width: 242px;
  height: 210px;
  top: -70px;
  right: calc(50% - 36vw);
  background: url(/img/all/foo-dog.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media screen and (max-width: 1300px) {
  #footer .bg::before {
    right: calc(50% - 520px);
  }
}
#footer .bg::after {
  width: 100%;
  height: 527px;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  background: url(/img/all/foo-bg.png) no-repeat center top/cover;
  z-index: -1;
}
#footer .logo {
  position: relative;
  z-index: 1;
}
#footer .logo::before {
  position: absolute;
  content: "";
}
#footer .logo::before {
  width: 600px;
  height: 163px;
  transform: translateY(-50%);
  top: 40%;
  left: -170px;
  background: url(/img/all/foo-logo-bg.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media screen and (max-width: 1450px) {
  #footer .logo::before {
    width: 510px;
    height: 163px;
    top: 55%;
    left: -120px;
  }
}
@media screen and (max-width: 1350px) {
  #footer .logo::before {
    width: 450px;
    height: 123px;
    top: 45%;
    left: -95px;
  }
}
#footer .wrap {
  margin-top: 30px;
}
#footer .wrap-box {
  margin-top: 70px;
}
#footer .wrap-box-txt {
  font-family: "KaiseiOpti-Bold", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #footer .wrap-box-txt {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
#footer .btn {
  font-size: 22px;
  font-size: 2.2rem;
  width: 380px;
  margin-top: 10px;
  padding-right: 55px;
}
@media screen and (max-width: 767px) {
  #footer .btn {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1430px) {
  #footer .box {
    padding-right: 160px;
  }
}
#footer .list:nth-of-type(n + 2) {
  margin-left: 70px;
}
@media screen and (max-width: 1430px) {
  #footer .list:nth-of-type(n + 2) {
    margin-left: 40px;
  }
}
#footer .list-item:nth-of-type(n + 2) {
  margin-top: 27px;
}
#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 .copy {
  text-align: right;
  margin-top: 120px;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Noto sansCJK DemiLight", sans-serif;
  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 共通部分
========================================= */
#top-mv .sv {
  width: 100%;
  height: 610px;
  position: relative;
}
#top-mv .sv::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 15px;
  bottom: -1px;
  left: 0;
  background-color: #fff;
}
#top-mv .sv-ttl {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 598px;
  height: 220px;
  transform: translateX(-50%);
  left: 50%;
  bottom: 115px;
  background: url(/img/sv/sv-ttl-bg.png) no-repeat center/cover;
  border-radius: 10px;
}
#top-mv .sv-ttl::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 259px;
  bottom: -80px;
  right: -95px;
  background: url(/img/all/catch-deco.png) no-repeat;
  background-size: 100%;
}

/* =========================================
    sub  PC
    sv
========================================= */
#top-mv .sv-business {
  background: url(/img/sv/sv-business.png) no-repeat center bottom, url(/img/all/head-deco.png) no-repeat left top;
}
@media screen and (min-width: 1921px) {
  #top-mv .sv-business {
    background: url(/img/sv/sv-business.png) no-repeat center 120px/100%, url(/img/all/head-deco.png) no-repeat left top;
  }
}
#top-mv .sv-first {
  background: url(/img/sv/sv-first.png) no-repeat center bottom, url(/img/all/head-deco.png) no-repeat left top;
}
@media screen and (min-width: 1921px) {
  #top-mv .sv-first {
    background: url(/img/sv/sv-first.png) no-repeat center 120px/100%, url(/img/all/head-deco.png) no-repeat left top;
  }
}
#top-mv .sv-case {
  background: url(/img/sv/sv-case.png) no-repeat center bottom, url(/img/all/head-deco.png) no-repeat left top;
}
@media screen and (min-width: 1921px) {
  #top-mv .sv-case {
    background: url(/img/sv/sv-case.png) no-repeat center 120px/100%, url(/img/all/head-deco.png) no-repeat left top;
  }
}
#top-mv .sv-voice {
  background: url(/img/sv/sv-voice.png) no-repeat center bottom, url(/img/all/head-deco.png) no-repeat left top;
}
@media screen and (min-width: 1921px) {
  #top-mv .sv-voice {
    background: url(/img/sv/sv-voice.png) no-repeat center 120px/100%, url(/img/all/head-deco.png) no-repeat left top;
  }
}
#top-mv .sv-news {
  background: url(/img/sv/sv-news.png) no-repeat center bottom, url(/img/all/head-deco.png) no-repeat left top;
}
@media screen and (min-width: 1921px) {
  #top-mv .sv-news {
    background: url(/img/sv/sv-news.png) no-repeat center 120px/100%, url(/img/all/head-deco.png) no-repeat left top;
  }
}
#top-mv .sv-site {
  background: url(/img/sv/sv-site.png) no-repeat center bottom, url(/img/all/head-deco.png) no-repeat left top;
}
@media screen and (min-width: 1921px) {
  #top-mv .sv-site {
    background: url(/img/sv/sv-site.png) no-repeat center 120px/100%, url(/img/all/head-deco.png) no-repeat left top;
  }
}
#top-mv .sv-privacy {
  background: url(/img/sv/sv-privacy.png) no-repeat center bottom, url(/img/all/head-deco.png) no-repeat left top;
}
@media screen and (min-width: 1921px) {
  #top-mv .sv-privacy {
    background: url(/img/sv/sv-privacy.png) no-repeat center 120px/100%, url(/img/all/head-deco.png) no-repeat left top;
  }
}
#top-mv .sv-error {
  background: url(/img/sv/sv-error.png) no-repeat center bottom, url(/img/all/head-deco.png) no-repeat left top;
}
@media screen and (min-width: 1921px) {
  #top-mv .sv-error {
    background: url(/img/sv/sv-error.png) no-repeat center 120px/100%, url(/img/all/head-deco.png) no-repeat left top;
  }
}
#top-mv .sv-contact {
  background: url(/img/sv/sv-contact.png) no-repeat center bottom, url(/img/all/head-deco.png) no-repeat left top;
}
@media screen and (min-width: 1921px) {
  #top-mv .sv-contact {
    background: url(/img/sv/sv-contact.png) no-repeat center 120px/100%, url(/img/all/head-deco.png) no-repeat left top;
  }
}
#top-mv .sv-complete {
  background: url(/img/sv/sv-complete.png) no-repeat center bottom, url(/img/all/head-deco.png) no-repeat left top;
}
@media screen and (min-width: 1921px) {
  #top-mv .sv-complete {
    background: url(/img/sv/sv-complete.png) no-repeat center 120px/100%, url(/img/all/head-deco.png) no-repeat left top;
  }
}

/*	breadcrumb  PC
パンくずリスト
------------------------------------ */
.breadcrumb {
  display: flex;
  max-width: 1050px;
  align-items: center;
  margin: 25px auto 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: #f2801c;
  font-family: "Noto sansCJK Regular", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .breadcrumb li,
  .breadcrumb a {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb li,
  .breadcrumb a {
    font-size: 12px;
  }
}
.breadcrumb li {
  color: #5a3509;
}
.breadcrumb li::after {
  content: ">";
  display: inline-block;
  padding: 0 15px;
  color: #5a3509;
}

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

  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 {
    padding: 10px 15px 0 10px;
  }
  #header .logo {
    width: 122px;
  }
  /*	mv  SP
  ------------------------------------ */
  #top-mv .mv {
    height: 500px;
    background: url(/img/all/mv.png) no-repeat center 50px/150%, url(/img/all/head-deco.png) no-repeat left top/50vw;
  }
  #top-mv .mv-ttl {
    width: 320px;
    height: 280px;
    padding: 10px;
    bottom: 0px;
    border-radius: 10px;
  }
  #top-mv .mv-ttl::before {
    width: 100px;
    height: 129px;
    bottom: 225px;
    right: -15px;
  }
  /*	fixed  SP
  ページトップへのリンク
  ------------------------------------ */
  .fixed-sp-deco {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 99;
    border-top: 2px solid #ecd3a5;
  }
  .fixed-sp-deco::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 50px;
    top: -40px;
    left: 30px;
    background: url(/img/all/fixed-deco-sp.png) no-repeat;
    background-size: 100%;
    z-index: -1;
  }
  .fixed-sp-item {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    background-color: #fff;
  }
  .fixed-sp-item:first-of-type {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .fixed-sp-txt {
    max-width: 128px;
    padding: 5px;
  }
  .fixed-sp-contact {
    font-family: "KaiseiOpti-Bold", sans-serif;
    font-size: 12px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #f2801c;
  }
  .fixed-sp-contact::before {
    content: "";
    width: 17px;
    height: 12px;
    margin-right: 10px;
    background: url(/img/all/mail-ico.png) no-repeat center/100%;
  }
  .fixed-sp-line {
    font-family: "KaiseiOpti-Bold", sans-serif;
    font-size: 12px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #59b400;
  }
  .fixed-sp-line::before {
    content: "";
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background: url(/img/all/line-ico.png) no-repeat center/100%;
  }
  /*	gnav  SP
  ハンバーガーメニュー、メニュー内のcss
  ------------------------------------ */
  .sp-menu-btn-wrp {
    width: 50px;
    height: 50px;
    padding-top: 16px;
    background-color: #3fbdd5;
    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: url(/img/all/pt1.jpg) left top;
  }
  #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: flex;
    align-items: center;
    border-bottom: 1px solid #f2801c;
    padding: 5% 0;
    font-size: clamp(18px, 4.8vw, 36px);
    letter-spacing: 0.1em;
    color: #5a3509;
    line-height: 1.22;
  }
  #drawer-nav #nav .list-img {
    width: 40px;
    margin-right: 10px;
  }
  #drawer-nav .link {
    width: 247px;
    height: 263px;
    margin-top: 10px;
    padding-top: 65px;
    padding-left: 15px;
    text-align: center;
    background: url(/img/all/fixed-bg.png) no-repeat center;
  }
  #drawer-nav .link-deco {
    position: fixed;
    right: -195px;
    bottom: 50px;
    z-index: 99;
    transition: all 0.3s ease;
  }
  #drawer-nav .link-deco::before {
    position: absolute;
    content: "";
    width: 209px;
    height: 234px;
    top: -110px;
    left: -120px;
    background: url(/img/all/fixed-deco.png) no-repeat center/100%;
    z-index: -1;
  }
  #drawer-nav .link-deco:hover {
    transform: translate(-195px, 0);
  }
  #drawer-nav .link-item:nth-of-type(3) {
    margin-top: 10px;
  }
  #drawer-nav .link-contact {
    width: 188px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "KaiseiOpti-Bold", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0 auto;
    color: #fff;
    background-color: #f2801c;
    border-radius: 20px;
  }
  /* --- 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 .link-contact {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  #drawer-nav .link-contact::before {
    content: "";
    width: 16px;
    height: 12px;
    margin-right: 12px;
    background: url(/img/all/mail-ico.png) no-repeat center/100%;
  }
  #drawer-nav .link-line {
    width: 188px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "KaiseiOpti-Bold", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0 auto;
    color: #fff;
    background-color: #59b400;
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #drawer-nav .link-line {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  #drawer-nav .link-line::before {
    content: "";
    width: 20px;
    height: 20px;
    margin-right: 12px;
    background: url(/img/all/line-ico.png) no-repeat center/100%;
  }
  .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 .bg {
    background-color: #5a3509;
  }
  #footer .bg::before {
    width: 132px;
    height: 116px;
    top: -100px;
    right: 5px;
  }
  #footer .bg::after {
    height: 355px;
    bottom: unset;
    top: -100px;
    background: url(/img/all/foo-bg.png) no-repeat right top/cover;
  }
  #footer .container {
    display: block;
  }
  #footer .logo {
    width: 200px;
    margin: 0 auto;
    display: block;
  }
  #footer .logo::before {
    width: 320px;
    height: 90px;
    top: 45%;
    left: -75px;
  }
  #footer .wrap {
    margin-top: 0;
  }
  #footer .wrap-box {
    margin-top: 35px;
  }
  #footer .wrap-box-txt {
    font-size: 15px;
  }
  #footer .btn {
    display: block;
    width: 310px;
    margin: 5px auto 0;
    padding-right: 35px;
  }
  #footer .box {
    padding-right: 0;
    margin-top: 50px;
  }
  #footer .nav {
    width: 100%;
  }
  #footer .list {
    flex-wrap: wrap;
    justify-content: left;
    border: 1px solid #f2801c;
  }
  #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 #f2801c;
  }
  #footer .list-item:nth-of-type(n + 2) {
    margin-left: 0;
    margin-top: 0;
    border-bottom: 1px solid #f2801c;
  }
  #footer .list-item:nth-of-type(2n) {
    border-right: 1px solid #f2801c;
  }
  #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::after {
    display: none;
  }
  #footer .copy {
    text-align: center;
    margin-top: 25px;
  }
  #top-mv .sv {
    height: 350px;
  }
  #top-mv .sv::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    left: 0;
    bottom: 0;
    background-color: #fff;
  }
  #top-mv .sv-ttl {
    width: 320px;
    height: 80px;
    bottom: 100px;
  }
  #top-mv .sv-ttl::before {
    width: 100px;
    height: 130px;
    bottom: -100px;
    right: -15px;
  }
  #top-mv .sv-ttl-business {
    width: 150px;
  }
  #top-mv .sv-ttl-first {
    width: 230px;
  }
  #top-mv .sv-ttl-case {
    width: 150px;
  }
  #top-mv .sv-ttl-voice {
    width: 200px;
  }
  #top-mv .sv-ttl-news {
    width: 150px;
  }
  #top-mv .sv-ttl-contact {
    width: 220px;
  }
  #top-mv .sv-ttl-complete {
    width: 250px;
  }
  #top-mv .sv-ttl-privacy {
    width: 200px;
  }
  #top-mv .sv-ttl-site {
    width: 220px;
  }
  #top-mv .sv-ttl-error {
    width: 200px;
  }
  #top-mv .sv-business {
    background: url(/img/sv/sv-business.png) no-repeat center 50px/350%, url(/img/all/head-deco.png) no-repeat left top/50vw;
  }
  #top-mv .sv-first {
    background: url(/img/sv/sv-first.png) no-repeat center 50px/350%, url(/img/all/head-deco.png) no-repeat left top/50vw;
  }
  #top-mv .sv-case {
    background: url(/img/sv/sv-case.png) no-repeat center 50px/350%, url(/img/all/head-deco.png) no-repeat left top/50vw;
  }
  #top-mv .sv-voice {
    background: url(/img/sv/sv-voice.png) no-repeat calc(50% - 80px) 50px/350%, url(/img/all/head-deco.png) no-repeat left top/50vw;
  }
  #top-mv .sv-news {
    background: url(/img/sv/sv-news.png) no-repeat center 50px/350%, url(/img/all/head-deco.png) no-repeat left top/50vw;
  }
  #top-mv .sv-site {
    background: url(/img/sv/sv-site.png) no-repeat center 50px/350%, url(/img/all/head-deco.png) no-repeat left top/50vw;
  }
  #top-mv .sv-privacy {
    background: url(/img/sv/sv-privacy.png) no-repeat center 50px/350%, url(/img/all/head-deco.png) no-repeat left top/50vw;
  }
  #top-mv .sv-error {
    background: url(/img/sv/sv-error.png) no-repeat center 50px/350%, url(/img/all/head-deco.png) no-repeat left top/50vw;
  }
  #top-mv .sv-contact {
    background: url(/img/sv/sv-contact.png) no-repeat center 50px/350%, url(/img/all/head-deco.png) no-repeat left top/50vw;
  }
  #top-mv .sv-complete {
    background: url(/img/sv/sv-complete.png) no-repeat center 50px/350%, url(/img/all/head-deco.png) no-repeat left top/50vw;
  }
}
/*	------- */
/* =========================================
  breakpoint
========================================= */