@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: #313731;
  font-family: "ZenOldMincho-Bold", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  background: url(/img/all/pt01.jpg) left top;
}
@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: absolute;
  width: 100%;
  padding: 1.5vw;
  top: 0;
  left: 0;
  z-index: 99;
}
#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 {
  border-bottom: 1px solid #fff;
}

/*	gnav  PC
ヘッダーナビ（PC時）
------------------------------------ */
#gnav .list {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 1.5vw;
}
@media screen and (max-width: 1300px) {
  #gnav .list {
    position: unset;
    transform: unset;
    left: unset;
    top: unset;
  }
}
#gnav .list-item:nth-of-type(n + 2) {
  margin-left: 35px;
}
#gnav .list-link {
  font-family: "ZenOldMincho-Bold", sans-serif;
  letter-spacing: 0.05em;
  padding-bottom: 5px;
  color: #fff;
  position: relative;
}
#gnav .list-link::before {
  background: #fff;
  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 {
  /* 線のアニメーション */
  /* 矢印を下から上へ滑らかに移動させるアニメーション */
}
#top-mv .mv {
  padding: 2vw;
}
#top-mv .mv-inner {
  position: relative;
  overflow: hidden;
}
#top-mv .mv-img {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}
#top-mv .mv-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top-mv .mv-ttl {
  position: absolute;
  font-family: "ZenOldMincho-Black", sans-serif;
  font-size: clamp(45px, 3.125vw, 75px);
  white-space: nowrap;
  letter-spacing: 0.05em;
  transform: translateX(-50%);
  left: 50%;
  bottom: 95px;
  color: #fff;
}
#top-mv .scroll {
  position: absolute;
  font-family: "ZenOldMincho-Medium", sans-serif;
  transform: translateX(-50%);
  left: 50%;
  bottom: 60px;
  color: #fff;
}
#top-mv .scroll::before {
  animation: scroll 2s infinite;
  background-color: #fff;
  bottom: -60px;
  content: "";
  height: 35px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 2px;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes slide-up {
  0% {
    transform: translateX(-50%) translateY(0); /* 親の下にある状態 */
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  60% {
    transform: translateX(-50%) translateY(-120%); /* 上方向へ移動（通過） */
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-120%);
    opacity: 0;
  }
}

/*	page-top  PC
page-top リンク
------------------------------------ */
.fixed {
  position: fixed;
  right: 0px;
  bottom: 50px;
  z-index: 99;
}
.fixed-contact {
  font-family: "ZenOldMincho-Bold", sans-serif;
  display: flex;
  align-items: center;
  width: 80px;
  height: 200px;
  writing-mode: vertical-rl;
  padding: 30px 25px 10px 25px;
  color: #fff;
  background: url(/img/all/pt02.jpg) left top;
  border-radius: 10px 0 0 10px;
  transition: all 0.5s ease;
  transform-origin: right;
}
.fixed-contact:hover {
  opacity: 0.9;
  transform: scale(0.95);
}

/* =========================================
  footer  PC
  フッター
========================================= */
#is-safari #footer .list-link {
  width: 27.19px;
}

#footer .bg {
  border-top: 1px solid #313731;
}
#footer .current {
  color: #2f4a2f !important;
}
@media screen and (max-width: 1700px) {
  #footer .box {
    margin-right: 100px;
  }
}
#footer .list:nth-of-type(n + 2) {
  margin-left: 65px;
}
#footer .list-item:nth-of-type(n + 2) {
  margin-left: 20px;
}
#footer .list-link {
  writing-mode: vertical-rl;
  color: #313731;
  transition: filter 0.5s;
}
#footer .list-link:hover {
  opacity: 1;
  filter: drop-shadow(7px 7px 2px #2f4a2f);
}
#footer .copy {
  font-family: "ZenOldMincho-Bold", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-top: 165px;
}
@media screen and (max-width: 767px) {
  #footer .copy {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .copy-link {
  color: #313731;
}
#footer .instagram {
  display: block;
  width: 30px;
  height: 30px;
  margin: 80px 0 0 auto;
}
#footer .page-top {
  font-family: "ZenOldMincho-Bold", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  width: 100%;
  line-height: 40px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  background: url(/img/all/pt02.jpg) left top;
  position: relative;
}
@media screen and (max-width: 767px) {
  #footer .page-top {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .page-top::after {
  position: absolute;
  content: "";
}
#footer .page-top::after {
  /* 下から上へ移動する矢印（ループ） */
  content: "";
  position: absolute;
  width: 38px;
  height: 19px;
  left: 50%;
  bottom: 50px;
  /* X 軸は中央へ、Y 軸は keyframe で変化させる */
  transform: translateX(-50%) translateY(0);
  background: url(/img/all/page-arw.png) no-repeat;
  background-size: 100%;
  animation: slide-up 2s linear infinite;
}

/* =========================================
  sub  PC
  sv 共通部分
========================================= */
#top-mv .sv-img {
  width: 100%;
  height: 600px;
  position: relative;
}
#top-mv .sv-ttl {
  position: absolute;
  font-family: "ZenOldMincho-Black", sans-serif;
  font-size: 60px;
  font-size: 6rem;
  letter-spacing: 0.05em;
  padding-left: 145px;
  left: 0;
  bottom: 35px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #top-mv .sv-ttl {
    font-size: 30px;
    font-size: 3rem;
  }
}
#top-mv .sv-ttl::before {
  position: absolute;
  content: "";
  width: 120px;
  height: 2px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  background-color: #fff;
  z-index: 1;
}

/* =========================================
    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: #9fa69f;
  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: #313731;
}
.breadcrumb li::after {
  content: ">";
  display: inline-block;
  padding: 0 15px;
  color: #313731;
}

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

  layout  SP
  共通パーツのスマホ時css
========================================= */
@media screen and (max-width: 767px) {
  /* =========================================
    base  SP
  ========================================= */
  body {
    min-width: 350px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  body.active {
    /* スクロール禁止 */
    overflow: hidden;
  }
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: inherit !important;
  }
  a[href^="tel:"] {
    pointer-events: all;
  }
  /*	parts  SP
  ------------------------------------ */
  .com-inner,
  .bread-inner {
    width: 100% !important;
  }
  .breadcrumb {
    display: none;
  }
  /* =========================================
  header  SP
  ========================================= */
  /*	headline  SP
  ------------------------------------ */
  #header .logo {
    width: 140px;
  }
  /*	mv  SP
  ------------------------------------ */
  #top-mv .mv {
    padding: 0;
  }
  #top-mv .mv-inner {
    padding-top: 60px;
  }
  #top-mv .mv-img {
    border-radius: 15px;
  }
  #top-mv .mv-img img {
    width: 150%;
    max-width: unset;
  }
  #top-mv .mv-ttl {
    font-size: clamp(28px, 8.571vw, 35px);
    bottom: 65px;
  }
  #top-mv .scroll {
    bottom: 30px;
  }
  #top-mv .scroll::before {
    bottom: -30px;
    content: "";
    height: 25px;
  }
  /*	fixed  SP
  ページトップへのリンク
  ------------------------------------ */
  .fixed {
    display: flex;
    bottom: 50px;
  }
  .fixed-contact {
    width: 60px;
    height: 175px;
    writing-mode: vertical-rl;
    padding: 20px 15px 20px 15px;
  }
  /*	gnav  SP
  ハンバーガーメニュー、メニュー内のcss
  ------------------------------------ */
  .sp-menu-btn-wrp {
    width: 50px;
    height: 50px;
    padding-top: 16px;
    background: url(/img/all/pt02.jpg) left top;
    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/pt02.jpg) left top;
  }
  #drawer-nav .current::after {
    display: none;
  }
  #drawer-nav .contact-btn {
    display: block;
    width: 250px;
    text-align: center;
    margin: 25px auto 0;
    padding: 17px 15px;
    border-radius: 35px;
    color: #313731;
    background: url(/img/all/pt01.jpg) left top;
  }
  #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 #c7c4bd;
    padding: 6% 0;
    font-size: clamp(18px, 4.8vw, 36px);
    letter-spacing: 0.1em;
    color: #fff;
    line-height: 1.22;
  }
  /* --- info系 --- */
  .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  SP
  ------------------------------------ */
  .ggmap {
    padding-top: 250px;
  }
  /* =========================================
  footer  SP
  ========================================= */
  #is-safari #footer .list-link {
    width: 100%;
  }
  #footer .current {
    color: #9fa69f;
    border-bottom: none !important;
  }
  #footer .container {
    display: block;
    padding-bottom: 75px;
    position: relative;
  }
  #footer .copy {
    position: absolute;
    width: 100%;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
    padding-right: 70px;
  }
  #footer .logo {
    display: block;
    width: 200px;
    margin: 0 auto;
  }
  #footer .box {
    margin-right: 0;
    margin-top: 35px;
  }
  #footer .instagram {
    margin: 35px auto 0;
  }
  #footer .nav {
    width: 100%;
  }
  #footer .list {
    flex-wrap: wrap;
    justify-content: left;
    border: 1px solid #9fa69f;
  }
  #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 #9fa69f;
  }
  #footer .list-item:nth-of-type(n + 2) {
    margin-left: 0;
    margin-top: 0;
    border-bottom: 1px solid #9fa69f;
  }
  #footer .list-item:nth-of-type(2n) {
    border-right: 1px solid #9fa69f;
  }
  #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;
    writing-mode: unset;
  }
  #footer .list-link::after {
    display: none;
  }
  #footer .page-top {
    line-height: 50px;
  }
  #footer .page-top::after {
    width: 30px;
    height: 16px;
  }
  /* =========================================
    sub  SP
    下層（サブビジュアル）のcss
  ========================================= */
  /*	sub headline  SP
  ------------------------------------ */
  /* =========================================
    sub  SP
    sv 共通部分
  ========================================= */
  #top-mv .sv-img {
    height: 300px;
  }
  #top-mv .sv-ttl {
    padding-left: 50px;
  }
  #top-mv .sv-ttl::before {
    width: 40px;
  }
  /*	------- */
}
/*	------- */
/* =========================================
  breakpoint
========================================= */