@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
@font-face {
  font-family: "NotoSerifCJKjp-Black";
  src: url(../fonts/NotoSerifCJKjp-Black.otf);
}
@font-face {
  font-family: "NotoSerifCJKjp-Bold";
  src: url(../fonts/NotoSerifCJKjp-Bold.otf);
}
@font-face {
  font-family: "NotoSerifCJKjp-ExtraLight";
  src: url(../fonts/NotoSerifCJKjp-ExtraLight.otf);
}
@font-face {
  font-family: "NotoSerifCJKjp-Light";
  src: url(../fonts/NotoSerifCJKjp-Light.otf);
}
@font-face {
  font-family: "NotoSerifCJKjp-Medium";
  src: url(../fonts/NotoSerifCJKjp-Medium.otf);
}
@font-face {
  font-family: "NotoSerifCJKjp-Regular";
  src: url(../fonts/NotoSerifCJKjp-Regular.otf);
}
@font-face {
  font-family: "NotoSerifCJKjp-SemiBold";
  src: url(../fonts/NotoSerifCJKjp-SemiBold.otf);
}
@font-face {
  font-family: "Cormorant-Bold";
  src: url(../fonts/Cormorant-Bold.ttf);
}
@font-face {
  font-family: "Cormorant-Light";
  src: url(../fonts/Cormorant-Light.ttf);
}
@font-face {
  font-family: "Cormorant-Medium";
  src: url(../fonts/Cormorant-Medium.ttf);
}
@font-face {
  font-family: "Cormorant-Regular";
  src: url(../fonts/Cormorant-Regular.ttf);
}
@font-face {
  font-family: "Cormorant-SemiBold";
  src: url(../fonts/Cormorant-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: "NotoSerifCJKjp-Black";
  src: url(../fonts/NotoSerifCJKjp-Black.otf);
}
@font-face {
  font-family: "NotoSerifCJKjp-Bold";
  src: url(../fonts/NotoSerifCJKjp-Bold.otf);
}
@font-face {
  font-family: "NotoSerifCJKjp-ExtraLight";
  src: url(../fonts/NotoSerifCJKjp-ExtraLight.otf);
}
@font-face {
  font-family: "NotoSerifCJKjp-Light";
  src: url(../fonts/NotoSerifCJKjp-Light.otf);
}
@font-face {
  font-family: "NotoSerifCJKjp-Medium";
  src: url(../fonts/NotoSerifCJKjp-Medium.otf);
}
@font-face {
  font-family: "NotoSerifCJKjp-Regular";
  src: url(../fonts/NotoSerifCJKjp-Regular.otf);
}
@font-face {
  font-family: "NotoSerifCJKjp-SemiBold";
  src: url(../fonts/NotoSerifCJKjp-SemiBold.otf);
}
@font-face {
  font-family: "Cormorant-Bold";
  src: url(../fonts/Cormorant-Bold.ttf);
}
@font-face {
  font-family: "Cormorant-Light";
  src: url(../fonts/Cormorant-Light.ttf);
}
@font-face {
  font-family: "Cormorant-Medium";
  src: url(../fonts/Cormorant-Medium.ttf);
}
@font-face {
  font-family: "Cormorant-Regular";
  src: url(../fonts/Cormorant-Regular.ttf);
}
@font-face {
  font-family: "Cormorant-SemiBold";
  src: url(../fonts/Cormorant-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: 1100px;
  margin: 0 auto;
  color: #443b2a;
  font-family: "NotoSerifCJKjp-Regular", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.6;
}
@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;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 0 30px;
  background-color: #fff;
  z-index: 99;
}
@media screen and (max-width: 1200px) {
  #header .headline {
    padding: 0 20px;
  }
}
#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 .current {
  color: #a4df98 !important;
}

/*	gnav  PC
ヘッダーナビ（PC時）
------------------------------------ */
#gnav {
  /* ドロップダウンメニュー */
}
#gnav .list-item {
  padding: 0 20px;
}
@media screen and (max-width: 1200px) {
  #gnav .list-item {
    padding: 0 15px;
  }
}
#gnav .list-item:nth-of-type(n + 2) {
  position: relative;
}
#gnav .list-item:nth-of-type(n + 2)::before {
  position: absolute;
  content: "";
}
#gnav .list-item:nth-of-type(n + 2)::before {
  width: 1px;
  height: 40px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  background-color: #a4df98;
}
#gnav .list-link {
  text-align: center;
  color: #443b2a;
  position: relative;
}
#gnav .list-link::before {
  background: #a4df98;
  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-item {
  position: relative;
}
#gnav .drop-menu {
  position: relative;
}
#gnav .drop-menu::after {
  position: absolute;
  content: "";
}
#gnav .drop-menu::after {
  width: 12px;
  height: 1px;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
}
#gnav .drop-menu-list {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 200px; /* 必要に応じて調整 */
  list-style: none;
  padding-top: 15px;
  opacity: 0;
  visibility: hidden; /* 透明だがレイアウトは維持 */
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}
#gnav .drop-menu-item:nth-of-type(n + 2) {
  margin-top: 2px;
}
#gnav .drop-menu-link {
  display: block;
  width: 100%;
  padding: 11.2px 0;
  text-align: center;
  color: #fff;
  background: #a4df98;
  text-decoration: none;
  transition: background 0.3s;
}
#gnav .drop-menu-link:hover {
  opacity: 1;
  background: #c6eebd;
}
#gnav .list-item:hover .drop-menu-list {
  opacity: 1;
  visibility: visible; /* 表示 */
  transform: translateX(-50%) translateY(0);
}

/*	mv  PC
メインビジュアル（トップ用）
------------------------------------ */
#top-mv .mv {
  padding-top: 100px;
}
#top-mv .mv-bg {
  position: relative;
  width: 100%;
  height: 840px;
  background: url(/img/all/mv-top.png) no-repeat center top, url(/img/all/mv-btm-l.png) no-repeat left bottom, url(/img/all/mv-btm-r.png) no-repeat right bottom, url(/img/all/mv.jpg) no-repeat center/cover;
}
#top-mv .mv-box {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  text-align: center;
}
#top-mv .mv-ttl {
  font-family: "NotoSerifCJKjp-Regular", sans-serif;
  font-size: 40px;
  font-size: 4rem;
  letter-spacing: 0.1em;
  margin-top: 30px;
  color: #846529;
}
@media screen and (max-width: 767px) {
  #top-mv .mv-ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-mv .list {
  gap: 27px;
  margin-top: 40px;
}
#top-mv .list-item {
  font-family: "NotoSerifCJKjp-ExtraLight", sans-serif;
  font-size: 26px;
  font-size: 2.6rem;
  width: 292px;
  height: 292px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-text-stroke: 6px #fff;
  paint-order: stroke;
  background: url(/img/all/mv-box.png) no-repeat center/100%;
}
@media screen and (max-width: 767px) {
  #top-mv .list-item {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#top-mv .list-item:first-of-type {
  position: relative;
}
#top-mv .list-item:first-of-type::before {
  position: absolute;
  content: "";
}
#top-mv .list-item:first-of-type::before {
  width: 117px;
  height: 120px;
  bottom: 16px;
  left: -5px;
  background: url(/img/all/mv-deco01.png) no-repeat;
  background-size: 100%;
}
#top-mv .list-item:nth-of-type(2) {
  position: relative;
}
#top-mv .list-item:nth-of-type(2)::before {
  position: absolute;
  content: "";
}
#top-mv .list-item:nth-of-type(2)::after {
  position: absolute;
  content: "";
}
#top-mv .list-item:nth-of-type(2)::before {
  width: 62px;
  height: 80px;
  left: -29px;
  top: 27px;
  background: url(/img/all/mv-deco02.png) no-repeat;
  background-size: 100%;
}
#top-mv .list-item:nth-of-type(2)::after {
  width: 73px;
  height: 150px;
  bottom: 4px;
  right: -15px;
  background: url(/img/all/mv-deco03.png) no-repeat;
  background-size: 100%;
}
#top-mv .list-item:nth-of-type(3) {
  position: relative;
}
#top-mv .list-item:nth-of-type(3)::before {
  position: absolute;
  content: "";
}
#top-mv .list-item:nth-of-type(3)::after {
  position: absolute;
  content: "";
}
#top-mv .list-item:nth-of-type(3)::before {
  width: 122px;
  height: 78px;
  top: 1px;
  right: -9px;
  background: url(/img/all/mv-deco04.png) no-repeat;
  background-size: 100%;
}
#top-mv .list-item:nth-of-type(3)::after {
  width: 85px;
  height: 38px;
  bottom: 47px;
  right: 38px;
  background: url(/img/all/mv-deco05.png) no-repeat;
  background-size: 100%;
}

/*	page-top  PC
page-top リンク
------------------------------------ */
.fixed {
  position: fixed;
  width: 120px;
  right: 15px;
  bottom: 50px;
  z-index: 99;
}
.fixed-page {
  font-family: "NotoSerifCJKjp-Medium", sans-serif;
  width: 50px;
  height: 50px;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  border-radius: 50%;
  position: relative;
}
.fixed-page::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: rgba(164, 223, 152, 0.8);
  filter: blur(3px);
  z-index: -1;
  border-radius: 50%;
}
.fixed-page::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 18px;
  transform: translateX(-50%);
  left: 50%;
  top: -8px;
  background: url(/img/all/page-top.png) no-repeat center/100%;
}
.fixed-page:hover {
  transform: translate(0px, -5px);
}
.fixed-item:nth-of-type(2) {
  width: 110px;
  padding-top: 40px;
  position: relative;
}
.fixed-item:nth-of-type(2)::before {
  position: absolute;
  content: "";
}
.fixed-item:nth-of-type(2)::before {
  width: 76px;
  height: 42px;
  transform: translateX(-50%);
  left: 50%;
  top: 3px;
  background: url(/img/all/fixed-deco.png) no-repeat;
  background-size: 100%;
}
.fixed-marche {
  width: 115px;
  height: 115px;
  font-family: "Cormorant-Regular", sans-serif;
  font-size: 28px;
  font-size: 2.8rem;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
  padding-top: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fixed-marche {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
.fixed-marche::before {
  position: absolute;
  content: "";
}
.fixed-marche::after {
  position: absolute;
  content: "";
}
.fixed-marche::before {
  width: 115px;
  height: 115px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: rgba(255, 233, 194, 0.8);
  filter: blur(3px);
  z-index: -1;
  border-radius: 50%;
}
.fixed-marche::after {
  width: 18px;
  height: 10px;
  transform: translateX(-50%);
  left: 50%;
  bottom: 8px;
  background: url(/img/all/fixed-arw.png) no-repeat;
  background-size: 100%;
  transition: all 0.3s ease;
}
.fixed-marche:hover::after {
  left: 55%;
}
.fixed-marche-sm {
  font-family: "NotoSerifCJKjp-Medium", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #e89222;
}
@media screen and (max-width: 767px) {
  .fixed-marche-sm {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* =========================================
  footer  PC
  フッター
========================================= */
#footer .current {
  border-bottom: 1px solid #a4df98 !important;
}
#footer .inner {
  border-bottom: 1px solid #878787;
}
#footer .wrap {
  gap: 60px;
}
#footer .logo {
  position: relative;
}
#footer .logo::before {
  position: absolute;
  content: "";
}
#footer .logo::before {
  width: 1px;
  height: 55px;
  transform: translateY(-50%);
  top: 50%;
  right: -30px;
  background-color: #a4df98;
}
#footer .list:nth-of-type(n + 2) {
  margin-left: 60px;
}
#footer .list-item {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.375;
}
@media screen and (max-width: 767px) {
  #footer .list-item {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#footer .list-link {
  padding-left: 15px;
  color: #443b2a;
  display: inline-block;
  position: relative;
  transition: 0.3s ease;
  position: relative;
}
#footer .list-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: #75b269;
  transition: 0.3s ease;
}
#footer .list-link:hover::after {
  width: 100%;
}
#footer .list-link::before {
  position: absolute;
  content: "・";
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}
#footer .list-drop {
  display: inline-block;
  padding-left: 15px;
  position: relative;
}
#footer .list-drop::before {
  position: absolute;
  content: "・";
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}
#footer .list-drop-item {
  line-height: 2.375;
  padding-left: 15px;
}
#footer .list-drop-link {
  display: inline-block;
  position: relative;
  transition: 0.3s ease;
  color: #75b269;
}
#footer .list-drop-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: #75b269;
  transition: 0.3s ease;
}
#footer .list-drop-link:hover::after {
  width: 100%;
}
#footer .copy {
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 15px;
  color: #878787;
}
@media screen and (max-width: 767px) {
  #footer .copy {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .copy-link {
  color: #878787;
}

/* =========================================
  sub  PC
  sv 共通部分
========================================= */
#sv .sv {
  width: 100%;
  padding-top: 100px;
  overflow: hidden;
}
#sv .sv-bg {
  width: 100%;
  position: relative;
  background: url(/img/sv/sv-bg.jpg) no-repeat center/cover;
  position: relative;
}
#sv .sv-bg::before {
  position: absolute;
  content: "";
}
#sv .sv-bg::after {
  position: absolute;
  content: "";
}
#sv .sv-bg::before {
  width: 18.4vw;
  height: 9.6vw;
  left: 0;
  bottom: 0;
  background: url(/img/sv/sv-deco-l.png) no-repeat;
  background-size: 100%;
}
#sv .sv-bg::after {
  width: 14.1vw;
  height: 9.9vw;
  right: 0;
  bottom: 0;
  background: url(/img/sv/sv-deco-r.png) no-repeat;
  background-size: 100%;
}
#sv .sv-ttl {
  position: absolute;
  font-family: "NotoSerifCJKjp-Medium", sans-serif;
  font-size: 50px;
  font-size: 5rem;
  line-height: 1.44;
  text-align: center;
  letter-spacing: 0.1em;
  transform: translateY(-50%);
  top: 50%;
  left: calc(50% - 620px);
  -webkit-text-stroke: 6px #fff;
  paint-order: stroke;
  color: #846529;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #sv .sv-ttl {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 1400px) {
  #sv .sv-ttl {
    left: 30px;
  }
}
#sv .sv-ttl::before {
  position: absolute;
  content: "";
  width: 810px;
  height: 460px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background: url(/img/sv/sv-ttl-bg.png) no-repeat center/100%;
  z-index: -1;
}
#sv .sv-ttl-en {
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #sv .sv-ttl-en {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#sv .sv-img {
  width: 48.4vw;
  min-width: 700px;
  margin-right: 5.2vw;
  margin-left: auto;
  position: relative;
}
#sv .sv-img::after {
  position: absolute;
  content: "";
}
@media screen and (max-width: 1350px) {
  #sv .sv-img {
    margin-right: 30px;
  }
}
#sv .sv-img::after {
  width: 100%;
  height: 92%;
  transform: translateY(-50%);
  top: 50%;
  left: 20px;
  border: 1px solid #a4df98;
}

/* =========================================
    sub  PC
    sv
========================================= */
#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 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: #443b2a;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@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: #443b2a;
}
.breadcrumb li::after {
  content: ">";
  display: inline-block;
  padding: 0 10px;
  color: #443b2a;
}

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

  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: 50px;
  }
  #header .logo {
    width: 55px;
  }
  /*	mv  SP
  ------------------------------------ */
  #top-mv .mv {
    padding-top: 50px;
  }
  #top-mv .mv-bg {
    height: 650px;
    background: url(/img/all/mv-top.png) no-repeat center top/100%, url(/img/all/mv-btm-l.png) no-repeat left bottom/50vw, url(/img/all/mv-btm-r.png) no-repeat right bottom/50vw, url(/img/all/mv.jpg) no-repeat calc(50% + 400px)/cover;
  }
  #top-mv .mv-logo {
    width: 150px;
  }
  #top-mv .mv-box {
    width: 100%;
    transform: translateX(-50%);
    left: 50%;
    top: 50px;
  }
  #top-mv .list {
    flex-wrap: wrap;
    gap: 0;
  }
  #top-mv .list-item {
    font-size: 18px;
    width: 172px;
    height: 162px;
    -webkit-text-stroke: 4px #fff;
  }
  #top-mv .list-item:first-of-type::before {
    width: 57px;
    height: 60px;
    bottom: 6px;
    left: 5px;
  }
  #top-mv .list-item:nth-of-type(2)::before {
    width: 42px;
    height: 55px;
    left: 10px;
    top: -15px;
  }
  #top-mv .list-item:nth-of-type(2)::after {
    width: 43px;
    height: 88px;
    bottom: 80px;
    right: 0px;
  }
  #top-mv .list-item:nth-of-type(3)::before {
    width: 62px;
    height: 40px;
    top: -5px;
    right: 5px;
  }
  #top-mv .list-item:nth-of-type(3)::after {
    width: 55px;
    height: 25px;
    bottom: 22px;
    right: 30px;
  }
  /*	fixed  SP
  ページトップへのリンク
  ------------------------------------ */
  .fixed {
    width: 100px;
    bottom: 50px;
  }
  .fixed-item:nth-of-type(2) {
    padding-top: 30px;
  }
  .fixed-item:nth-of-type(2)::before {
    width: 56px;
    height: 32px;
    top: 10px;
  }
  .fixed-marche {
    width: 105px;
    height: 115px;
  }
  .fixed-marche::before {
    width: 105px;
    height: 105px;
  }
  /*	gnav  SP
  ハンバーガーメニュー、メニュー内のcss
  ------------------------------------ */
  .sp-menu-btn-wrp {
    width: 50px;
    height: 50px;
    padding-top: 16px;
    background-color: #a4df98;
    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: #fff9ed;
  }
  #drawer-nav .current::after {
    display: none;
  }
  #drawer-nav .drawer-logo {
    width: 73%;
    margin-bottom: 15px;
  }
  #drawer-nav .list {
    padding-top: 20px;
  }
  #drawer-nav .list-item {
    font-size: 17px;
    line-height: 2.375;
  }
  #drawer-nav .list-item:nth-of-type(n + 2) {
    margin-top: 10px;
  }
  #drawer-nav .list-link {
    font-size: 17px;
    line-height: 2.375;
    color: #443b2a;
    display: inline-block;
    position: relative;
    transition: 0.3s ease;
  }
  #drawer-nav .list-link::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 0;
    height: 1px;
    background-color: #75b269;
    transition: 0.3s ease;
  }
  #drawer-nav .list-link:hover::after {
    width: 100%;
  }
  #drawer-nav .list-drop-item {
    padding-left: 15px;
  }
  #drawer-nav .list-drop-link {
    font-size: 17px;
    line-height: 1.8;
    display: inline-block;
    position: relative;
    transition: 0.3s ease;
    color: #75b269;
  }
  #drawer-nav .list-drop-link::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 0;
    height: 1px;
    background-color: #75b269;
    transition: 0.3s ease;
  }
  #drawer-nav .list-drop-link:hover::after {
    width: 100%;
  }
  #drawer-nav #nav {
    padding: 0;
  }
  /* --- info系 --- */
  .drawer-info {
    flex-wrap: wrap;
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 30px auto 0;
    padding: 30px 45px 25px;
    gap: 30px 50px;
    border: 1px solid #846529;
    position: relative;
  }
  .drawer-info-ttl {
    position: absolute;
    font-family: "Cormorant-Regular", sans-serif;
    font-size: 24px;
    font-size: 2.4rem;
    letter-spacing: 0.1em;
    padding: 0 10px;
    white-space: nowrap;
    transform: translateX(-50%);
    left: 50%;
    top: -20px;
    color: #846529;
    background-color: #fff9ed;
  }
  /*	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-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .drawer-info-item:nth-of-type(2)::before {
    display: none;
  }
  .drawer-info-item:nth-of-type(3) {
    position: relative;
  }
  .drawer-info-item:nth-of-type(3)::before {
    position: absolute;
    content: "";
  }
  .drawer-info-item:nth-of-type(3)::before {
    content: "";
    width: 1px;
    height: 45px;
    transform: translateY(-50%);
    top: 50%;
    left: -25px;
    background-color: #a4df98;
  }
  .drawer-info-link {
    transition: all 0.5s ease;
  }
  .drawer-info-link:hover {
    transform: scale(0.95);
  }
  .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 .inner {
    padding: 50px 15px 70px;
  }
  #footer .current {
    color: #a4df98;
    border-bottom: none !important;
  }
  #footer .container {
    display: block;
  }
  #footer .wrap {
    justify-content: center;
  }
  #footer .nav {
    width: 100%;
  }
  #footer .list {
    width: 175px;
    margin: 35px auto 0;
  }
  #footer .list:nth-of-type(n + 2) {
    margin-left: auto;
  }
  #sv .sv {
    padding-top: 50px;
  }
  #sv .sv-bg {
    background: url(/img/sv/sv-bg.jpg) no-repeat right bottom/250%;
  }
  #sv .sv-bg::before {
    width: 150px;
    height: 79px;
  }
  #sv .sv-bg::after {
    width: 100px;
    height: 69px;
  }
  #sv .sv-img {
    width: 100%;
    min-width: unset;
    margin-right: 0;
  }
  #sv .sv-img::after {
    width: 98%;
    height: 93%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
  }
  #sv .sv-ttl {
    position: relative;
    width: 100%;
    transform: unset;
    left: unset;
    top: unset;
    padding: 40px 0 50px;
  }
  #sv .sv-ttl::before {
    width: 100%;
    height: 100%;
    background: url(/img/sv/sv-ttl-bg.png) no-repeat center/cover;
  }
}
/*	------- */
/* =========================================
  breakpoint
========================================= */