@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
@font-face {
  font-family: "ZenOldMincho-Black";
  src: url(../fonts/ZenOldMincho-Black.ttf);
}
@font-face {
  font-family: "ZenOldMincho-Bold";
  src: url(../fonts/ZenOldMincho-Bold.ttf);
}
@font-face {
  font-family: "ZenOldMincho-Medium";
  src: url(../fonts/ZenOldMincho-Medium.ttf);
}
@font-face {
  font-family: "ZenOldMincho-Regular";
  src: url(../fonts/ZenOldMincho-Regular.ttf);
}
@font-face {
  font-family: "ZenOldMincho-SemiBold";
  src: url(../fonts/ZenOldMincho-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: "ZenOldMincho-Black";
  src: url(../fonts/ZenOldMincho-Black.ttf);
}
@font-face {
  font-family: "ZenOldMincho-Bold";
  src: url(../fonts/ZenOldMincho-Bold.ttf);
}
@font-face {
  font-family: "ZenOldMincho-Medium";
  src: url(../fonts/ZenOldMincho-Medium.ttf);
}
@font-face {
  font-family: "ZenOldMincho-Regular";
  src: url(../fonts/ZenOldMincho-Regular.ttf);
}
@font-face {
  font-family: "ZenOldMincho-SemiBold";
  src: url(../fonts/ZenOldMincho-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: #775211;
  font-family: "ZenOldMincho-Medium", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  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 {
  padding: 15px 25px;
  background-color: #fff;
  z-index: 99;
  position: relative;
}
#header .headline::before {
  position: absolute;
  content: "";
}
#header .headline::before {
  width: 100%;
  height: 1.5vw;
  bottom: -1.5vw;
  transform: translateX(-50%);
  left: 50%;
  background: url(/img/all/headline-btm.png) no-repeat;
  background-size: 100%;
}
#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: #ccaa00 !important;
}
#header .line {
  margin-left: 30px;
}

/*	gnav  PC
ヘッダーナビ（PC時）
------------------------------------ */
#gnav .list {
  margin-top: 15px;
}
#gnav .list-item:nth-of-type(n + 2) {
  margin-left: 35px;
}
#gnav .list-link {
  color: #775211;
  position: relative;
}
#gnav .list-link::before {
  background: #ccaa00;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
#gnav .list-link:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}

/*	mv  PC
メインビジュアル（トップ用）
------------------------------------ */
#top-mv .mv {
  background: url(/img/all/mv-bg.jpg) no-repeat center/cover;
  overflow: hidden;
  position: relative;
}
#top-mv .mv::before {
  position: absolute;
  content: "";
}
#top-mv .mv::before {
  width: 1920px;
  height: 40px;
  bottom: 0;
  transform: translateX(-50%);
  left: 50%;
  background: url(/img/top/about-bg-top.png) no-repeat;
  background-size: 100%;
}
@media screen and (min-width: 1921px) {
  #top-mv .mv::before {
    width: 100%;
    height: 2.08vw;
  }
}
#top-mv .mv-ttl {
  position: absolute;
  width: 38.125vw;
  right: 16.14vw;
  top: 20px;
  z-index: 99;
}
#top-mv .mv-ttl img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top-mv .season {
  width: 100%;
}
#top-mv .season img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

/* =========================================
  footer  PC
  フッター
========================================= */
#footer .bg {
  background: url(/img/all/foo-bg-deco01.png) no-repeat left bottom/28vw, url(/img/all/foo-bg-deco02.png) no-repeat right bottom/28vw;
}
#footer .current {
  border-bottom: 1px solid #ccaa00 !important;
}
#footer .wrap {
  margin-top: 20px;
}
#footer .address {
  margin-top: 35px;
}
#footer .address-txt {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.73;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #footer .address-txt {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .line {
  margin-left: 30px;
}
#footer .nav {
  margin-top: 30px;
}
#footer .list:nth-of-type(n + 2) {
  margin-left: 45px;
}
#footer .list-item:nth-of-type(n + 2) {
  margin-top: 10px;
}
#footer .list-link {
  font-family: "ZenOldMincho-Regular", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0;
  color: #775211;
  display: inline-block;
  position: relative;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  #footer .list-link {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .list-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: #ccaa00;
  transition: 0.3s ease;
}
#footer .list-link:hover::after {
  width: 100%;
}
#footer .copy {
  text-align: center;
  background-color: #ccaa00;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "ZenOldMincho-Regular", sans-serif;
  letter-spacing: 0;
  color: #fff;
  height: 60px;
  line-height: 60px;
}
#footer .copy-link {
  color: #fff;
}

/* =========================================
  sub  PC
  sv 共通部分
========================================= */
#sv .sv {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#sv .sv::before {
  position: absolute;
  content: "";
}
#sv .sv::after {
  position: absolute;
  content: "";
}
#sv .sv::before {
  width: 962px;
  height: 402px;
  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::after {
  width: 100%;
  height: 2.08vw;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  background: url(/img/sv/sv-btm.png) no-repeat center/100%;
}
#sv .sv-box {
  position: absolute;
  width: 700px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border: 4px solid #ccaa00;
  outline: 1px solid #ccaa00;
  outline-offset: -7px;
}
#sv .sv-box::before {
  position: absolute;
  content: "";
  width: 91px;
  height: 71px;
  top: -20px;
  left: -17px;
  background: url(/img/sv/sv-deco01.png) no-repeat center/100%;
}
#sv .sv-box::after {
  position: absolute;
  content: "";
  width: 97px;
  height: 99px;
  bottom: -18px;
  right: -17px;
  background: url(/img/sv/sv-deco03.png) no-repeat center/100%;
}
#sv .sv-ttl {
  font-family: "ZenOldMincho-Bold", sans-serif;
  font-size: 42px;
  font-size: 4.2rem;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 28.5px 15px;
  text-shadow: 3px 3px 5px rgba(255, 255, 255, 0.8), -3px -3px 5px rgba(255, 255, 255, 0.8), -3px 3px 5px rgba(255, 255, 255, 0.8), 3px -3px 5px rgba(255, 255, 255, 0.8);
  color: #c8a063;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sv .sv-ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#sv .sv-ttl::before {
  position: absolute;
  content: "";
}
#sv .sv-ttl::before {
  width: 60px;
  height: 60px;
  top: -28px;
  right: -21px;
  background: url(/img/sv/sv-deco02.png) no-repeat;
  background-size: 100%;
}

/* =========================================
    sub  PC
    sv
========================================= */
#sv .sv-about {
  background: url(/img/sv/sv-about.jpg) no-repeat center/cover;
}
#sv .sv-menu {
  background: url(/img/sv/sv-menu.jpg) no-repeat center/cover;
}
#sv .sv-voice {
  background: url(/img/sv/sv-voice.jpg) no-repeat center/cover;
}
#sv .sv-shop {
  background: url(/img/sv/sv-shop.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: #775211;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  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: #775211;
}
.breadcrumb li::after {
  content: "|";
  display: inline-block;
  padding: 0 8px;
  color: #775211;
}

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

  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: 17px 15px;
  }
  #header .headline::before {
    height: 2.08vw;
    bottom: -2.08vw;
    min-height: 7px;
  }
  #header .logo {
    width: 200px;
  }
  /*	mv  SP
  ------------------------------------ */
  #top-mv .mv {
    width: 100%;
    height: 300px;
    position: relative;
    z-index: 1;
  }
  #top-mv .mv::before {
    bottom: -1px;
  }
  #top-mv .mv-ttl {
    width: 70vw;
    min-width: 280px;
    right: -7.25vw;
    top: -35px;
  }
  /*	fixed  SP
  ページトップへのリンク
  ------------------------------------ */
  /*	gnav  SP
  ハンバーガーメニュー、メニュー内のcss
  ------------------------------------ */
  /*	gnav-add  SP
  ------------------------------------ */
  /* --- info系 --- */
  /*	ggmap  SP
  ------------------------------------ */
  /* =========================================
  footer  SP
  ========================================= */
  /* =========================================
    sub  SP
    下層（サブビジュアル）のcss
  ========================================= */
  /*	sub headline  SP
  ------------------------------------ */
  /* =========================================
    sub  SP
    sv 共通部分
  ========================================= */
  /*	------- */
}
@media screen and (max-width: 767px) and (max-width: 410px) {
  #top-mv .mv-ttl {
    right: -40px;
  }
}
@media screen and (max-width: 767px) {
  #top-mv .season {
    position: absolute;
    width: 140%;
    max-width: 700px;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  .fixed {
    right: 15px;
    bottom: 65px;
  }
  .fixed-page {
    width: 45px;
    height: 45px;
  }
  .sp-menu-btn-wrp {
    width: 50px;
    height: 50px;
    padding-top: 16px;
    background-color: #906b29;
    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;
  }
  #drawer-nav {
    padding: 15px 15px 30px;
    background: url(/img/top/about-bg-deco.png) no-repeat right calc(100% - 215px)/35vw, url(/img/top/about-bg.jpg) no-repeat center top/cover;
  }
  #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 #ccaa00;
    padding: 6% 0;
    font-size: clamp(18px, 4.8vw, 36px);
    letter-spacing: 0.1em;
    color: #775211;
    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 .bg {
    background: url(/img/all/foo-bg-deco01.png) no-repeat left bottom/50vw, url(/img/all/foo-bg-deco02.png) no-repeat right bottom/50vw;
  }
  #footer .current {
    color: #ccaa00;
    border-bottom: none !important;
  }
  #footer .container {
    display: block;
  }
  #footer .logo {
    display: block;
    width: 250px;
    margin: 0 auto;
  }
  #footer .address {
    display: flex;
    justify-content: center;
  }
  #footer .address-txt {
    display: flex;
    justify-content: center;
  }
  #footer .box {
    margin-top: 35px;
  }
  #footer .box-fle {
    justify-content: center;
  }
  #footer .nav {
    width: 204px;
    flex-wrap: wrap;
    justify-content: left;
    margin: 30px auto 0;
    gap: 10px 35px;
  }
  #footer .list:nth-of-type(n + 2) {
    margin-left: 0;
  }
  #footer .list-link {
    font-size: 14px;
  }
  #footer .copy {
    height: auto;
    line-height: unset;
    padding: 10px;
  }
  #sv .sv {
    height: 350px;
  }
  #sv .sv::after {
    min-height: 7px;
  }
  #sv .sv-box {
    width: 320px;
    border: 2px solid #ccaa00;
    outline-offset: -5px;
  }
  #sv .sv-box::before {
    width: 71px;
    height: 60px;
    top: -20px;
    left: -10px;
  }
  #sv .sv-box::after {
    width: 67px;
    height: 69px;
    bottom: -20px;
    right: -15px;
  }
  #sv .sv-ttl {
    padding: 20px 15px;
  }
  #sv .sv-ttl::before {
    width: 40px;
    height: 40px;
    top: -18px;
    right: -15px;
  }
}
/*	------- */
/* =========================================
  breakpoint
========================================= */