@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
/* Zen Maru Gothic */
/*	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: #5d4528;
  letter-spacing: 0.08em;
  line-height: 1.6;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

/* 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 .header-bg {
  width: 100%;
  position: relative;
  background: url(/img/all/mv-btm.png) no-repeat center calc(100% + 25px), url(/img/all/mv-left-top.png) no-repeat top left/21.6vw, url(/img/all/mv-right.png) no-repeat top right/24.4vw;
}
@media screen and (min-width: 1921px) {
  #header .header-bg {
    background: url(/img/all/mv-btm.png) no-repeat center calc(100% + 35px)/100%, url(/img/all/mv-left-top.png) no-repeat top left/21.6vw, url(/img/all/mv-right.png) no-repeat top right/24.4vw;
  }
}
#header .headline {
  position: absolute;
  text-align: center;
  top: 4vw;
  left: 7vw;
  z-index: 99;
}
@media screen and (max-width: 1450px) {
  #header .headline {
    left: 2vw;
  }
}
#header .logo {
  display: inline-block;
  width: 10.88vw;
  transition: all 0.3s ease;
}
#header .logo a,
#header .logo img {
  display: block;
}
#header .logo:hover {
  opacity: 0.7;
}
#header .current {
  color: #9cd97f !important;
}
#header .contact {
  margin-top: 3.6vw;
}
#header .contact-list {
  gap: 28px;
}
#header .sub-header-bg {
  background: url(/img/work/attempt-top.png) no-repeat center calc(100% + 25px), url(/img/all/mv-left-top.png) no-repeat top left/19.7vw, url(/img/all/mv-right.png) no-repeat top right/19.2vw;
}
@media screen and (min-width: 1921px) {
  #header .sub-header-bg {
    background: url(/img/work/attempt-top.png) no-repeat center calc(100% + 35px)/100%, url(/img/all/mv-left-top.png) no-repeat top left/19.7vw, url(/img/all/mv-right.png) no-repeat top right/19.2vw;
  }
}
#header .sub-headline {
  top: 3.125vw;
}
@media screen and (max-width: 1400px) {
  #header .sub-headline {
    top: 25px;
  }
}
#header .sub-logo {
  width: 8.125vw;
}

/*	gnav  PC
ヘッダーナビ（PC時）
------------------------------------ */
#gnav .nav {
  margin-top: 3.6vw;
}
#gnav .sub-nav {
  margin-top: 1.92vw;
}
#gnav .list-item {
  position: relative;
}
#gnav .list-item::before {
  position: absolute;
  content: "";
}
#gnav .list-item::before {
  width: 100%;
  height: 2px;
  left: 0;
  top: 0;
  background: radial-gradient(circle, #c4aa8c 1px, transparent 1px);
  background-size: 10px;
}
#gnav .list-item:last-of-type::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  background: radial-gradient(circle, #c4aa8c 1px, transparent 1px);
  background-size: 10px;
}
#gnav .list-link {
  width: 100%;
  padding: 1.29vw 0;
  color: #5d4528;
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  transition: all 0.3s ease;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #gnav .list-link {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#gnav .list-link:hover {
  color: #9cd97f;
}

/*	mv  PC
メインビジュアル（トップ用）
------------------------------------ */
#top-mv .mv {
  width: 66.4vw;
  margin-left: auto;
  margin-right: 1.5vw;
  padding: 60px 0 155px;
  position: relative;
  z-index: 1;
}
#top-mv .mv::before {
  position: absolute;
  content: "";
}
#top-mv .mv::after {
  position: absolute;
  content: "";
}
#top-mv .mv::before {
  width: 28vw;
  height: 30vw;
  left: -5.2vw;
  bottom: 6.51vw;
  background: url(/img/all/mv-center.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#top-mv .mv::after {
  width: 13.4vw;
  height: 17.4vw;
  left: -2.9vw;
  bottom: 5.3vw;
  background: url(/img/all/mv-deco.png) no-repeat;
  background-size: 100%;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  #top-mv .mv::after {
    left: 3.1vw;
    bottom: 6.3vw;
  }
}
#top-mv .mv-ttl {
  position: absolute;
  width: 13.2vw;
  top: 10.1vw;
  left: 6.6vw;
}
#top-mv .season {
  width: 100%;
}
#top-mv .season img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =========================================
  footer  PC
  フッター
========================================= */
#footer .current {
  color: #9cd97f !important;
}
#footer .inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
#footer .container {
  padding: 0 10px;
}
#footer .logo {
  width: 170px;
}
#footer .address {
  line-height: 2.1;
  margin-top: 30px;
}
#footer .work {
  line-height: 2.1;
}
#footer .wrap {
  min-width: 400px;
}
#footer .box-top {
  gap: 25px;
}
#footer .instagram {
  gap: 32px;
  margin-bottom: 40px;
}
#footer .instagram-btn {
  width: auto;
  height: 70px;
  letter-spacing: 0.08em;
  padding: 0 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #efb340;
  border-radius: 35px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #footer .instagram-btn {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#footer .instagram-btn::before {
  content: "";
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background: url(/img/all/instagram-ico.png) no-repeat center/100%;
  transition: all 0.5s ease;
}
#footer .instagram-btn:hover::before {
  transform: scale(0.95);
}
#footer .nav {
  margin-top: 70px;
}
#footer .list:nth-of-type(n + 2) {
  margin-top: 5px;
}
#footer .list-item:nth-of-type(n + 2) {
  margin-left: 35px;
}
#footer .list-link {
  letter-spacing: 0.12em;
  color: #5d4528;
  display: inline-block;
  position: relative;
  transition: 0.3s ease;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
#footer .list-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: #9cd97f;
  transition: 0.3s ease;
}
#footer .list-link:hover::after {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #footer .list-link {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#footer .copy {
  text-align: right;
  letter-spacing: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 70px;
  font-size: 10px;
  font-size: 1rem;
  color: #000000;
}
#footer .copy-link {
  color: #000000;
}
#footer .sub-bg {
  background: url(/img/work/attempt-top.png) no-repeat center -25px;
}
@media screen and (min-width: 1921px) {
  #footer .sub-bg {
    background: url(/img/work/attempt-top.png) no-repeat center -15px/100%;
  }
}

/* =========================================
  sub  PC
  sv 共通部分
========================================= */
#top-mv .sv {
  padding: 60px 0 95px;
}
@media screen and (max-width: 1400px) {
  #top-mv .sv {
    padding: 60px 0 100px;
  }
}
#top-mv .sv::before {
  width: 20.7vw;
  height: 22.4vw;
  left: -5.2vw;
  bottom: 3.9vw;
}
#top-mv .sv::after {
  width: 12.3vw;
  height: 9.2vw;
  left: 11px;
  bottom: 4.94vw;
  background: url(/img/sv/sv-deco.png) no-repeat top/100%;
}
#top-mv .sv-img {
  width: 100%;
}
#top-mv .sv-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top-mv .sv-ttl {
  position: absolute;
  letter-spacing: 0.12em;
  padding: 11.4px 69px;
  text-align: center;
  bottom: 16.98vw;
  left: -1.2vw;
  background-color: #fff;
  border-radius: 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  #top-mv .sv-ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1200px) {
  #top-mv .sv-ttl {
    left: 20px;
  }
}
#top-mv .sv-ttl::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  top: 50%;
  left: 40px;
  background-color: #9cd97f;
  border-radius: 50%;
}
#top-mv .sv-ttl::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  top: 50%;
  right: 40px;
  background-color: #9cd97f;
  border-radius: 50%;
}

/*	breadcrumb  PC
パンくずリスト
------------------------------------ */
.breadcrumb {
  display: flex;
  align-items: center;
  padding: 15px 0;
  background-color: #f1fbea;
}
@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: #5d4528;
  letter-spacing: 0.12em;
  line-height: 1.2;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb li,
  .breadcrumb a {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb li,
  .breadcrumb a {
    font-size: 12px;
  }
}
.breadcrumb li {
  color: #5d4528;
}
.breadcrumb li::after {
  content: ">";
  display: inline-block;
  padding: 0 10px;
  color: #5d4528;
}

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

  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 .header-bg {
    background: url(/img/all/mv-btm.png) no-repeat center calc(100% + 10px)/200%, url(/img/all/mv-left-top.png) no-repeat top left/40.6vw, url(/img/all/mv-right.png) no-repeat top right/51.4vw;
  }
  #header .headline {
    top: 5px;
    left: 5px;
  }
  #header .logo {
    width: 80px;
  }
  /*	mv  SP
  ------------------------------------ */
  #top-mv .mv {
    width: 100%;
    margin-right: 0;
    padding: 75px 5px 36vw;
  }
  #top-mv .mv::before {
    width: 38vw;
    height: 41vw;
  }
  #top-mv .mv::after {
    width: 28.4vw;
    height: 37vw;
    left: unset;
    right: 10vw;
    bottom: 10vw;
  }
  #top-mv .mv-ttl {
    width: 40vw;
    min-width: 140px;
    top: 45.7vw;
    left: 15px;
  }
  /*	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 (min-width: 425px) {
  #top-mv .mv-ttl {
    top: 40vw;
  }
}
@media screen and (max-width: 767px) {
  .hamburger-drawer {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .hamburger-drawer-icon {
    width: 100%;
    height: 100%;
  }
  .hamburger-drawer-line {
    fill: none;
    stroke: #9cd97f;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hamburger-drawer-line:nth-child(1) {
    stroke-dasharray: 60 207;
  }
  .hamburger-drawer-line:nth-child(2) {
    stroke-dasharray: 60 60;
  }
  .hamburger-drawer-line:nth-child(3) {
    stroke-dasharray: 60 207;
  }
  .hamburger-drawer.active .hamburger-drawer-line {
    stroke: #9cd97f;
  }
  .hamburger-drawer.active .hamburger-drawer-line:nth-child(1) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
  }
  .hamburger-drawer.active .hamburger-drawer-line:nth-child(2) {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
  }
  .hamburger-drawer.active .hamburger-drawer-line:nth-child(3) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
  }
  .nav-list {
    padding: 100px 15px 30px;
  }
  .nav-list-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: relative;
  }
  .nav-list-item::before {
    position: absolute;
    content: "";
  }
  .nav-list-item::before {
    width: 100%;
    height: 2px;
    left: 0;
    top: 0;
    background: radial-gradient(circle, #c4aa8c 1px, transparent 1px);
    background-size: 10px;
  }
  .nav-list-item:last-of-type::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    background: radial-gradient(circle, #c4aa8c 1px, transparent 1px);
    background-size: 10px;
  }
  .nav-list.active .nav-list-item:nth-child(1) {
    transition-delay: 0.3s;
  }
  .nav-list.active .nav-list-item:nth-child(2) {
    transition-delay: 0.4s;
  }
  .nav-list.active .nav-list-item:nth-child(3) {
    transition-delay: 0.5s;
  }
  .nav-list.active .nav-list-item:nth-child(4) {
    transition-delay: 0.6s;
  }
  .nav-list.active .nav-list-item:nth-child(5) {
    transition-delay: 0.7s;
  }
  .nav-list.active .nav-list-item:nth-child(6) {
    transition-delay: 0.8s;
  }
  .nav-list.active .nav-list-item:nth-child(7) {
    transition-delay: 0.9s;
  }
  .nav-list.active .nav-list-item:nth-child(8) {
    transition-delay: 1s;
  }
  .nav-list.active .nav-list-item:nth-child(9) {
    transition-delay: 1.1s;
  }
  .nav-list.active .nav-list-item:nth-child(10) {
    transition-delay: 1.2s;
  }
  .nav-list.active .nav-list-item {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-list-link {
    position: relative;
    display: block;
    padding: 15px 0;
    font-size: 20px;
    color: #5d4528;
    text-decoration: none;
    overflow: hidden;
  }
  #drawer-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f1fbea;
    clip-path: circle(0% at calc(100% - 44px) 44px);
    transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 900;
  }
  #drawer-menu.active {
    clip-path: circle(150% at calc(100% - 44px) 44px);
  }
  #drawer-nav .current::after {
    display: none;
  }
  .drawer-info {
    display: flex;
    margin: 5% auto 0;
    align-items: center;
    gap: 25px;
    /* 初期状態: 非表示 + 下方向オフセット */
    /* ドロワーが開いたとき（#drawer-menu.active）に表示させる */
  }
  .drawer-info .pcnav-info-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .drawer-info > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  #drawer-menu.active .drawer-info {
    /* nav リストのアニメーションの後に順次出現させる遅延を付与 */
  }
  #drawer-menu.active .drawer-info > * {
    opacity: 1;
    transform: translateY(0);
  }
  #drawer-menu.active .drawer-info > *:nth-child(1) {
    transition-delay: 0.9s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(2) {
    transition-delay: 1s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(3) {
    transition-delay: 1.1s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(4) {
    transition-delay: 1.2s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(5) {
    transition-delay: 1.3s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(6) {
    transition-delay: 1.4s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(7) {
    transition-delay: 1.5s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(8) {
    transition-delay: 1.6s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(9) {
    transition-delay: 1.7s;
  }
  #drawer-menu.active .drawer-info > *:nth-child(10) {
    transition-delay: 1.8s;
  }
  .ggmap {
    padding-top: 250px;
  }
  #footer .current {
    color: #9cd97f;
    border-bottom: none !important;
  }
  #footer .inner {
    padding: 50px 15px;
  }
  #footer .container {
    display: block;
  }
  #footer .wrap {
    width: 100%;
    min-width: unset;
  }
  #footer .logo {
    display: block;
    width: 100px;
    margin: 0 auto;
  }
  #footer .address {
    display: flex;
    justify-content: center;
  }
  #footer .work {
    display: flex;
    justify-content: center;
  }
  #footer .box {
    margin-top: 35px;
  }
  #footer .box-top {
    justify-content: center;
  }
  #footer .instagram {
    justify-content: center;
  }
  #footer .instagram-btn {
    width: 320px;
    height: 60px;
    padding: 0 15px;
  }
  #footer .nav {
    width: 100%;
    margin-top: 50px;
  }
  #footer .list {
    flex-wrap: wrap;
    justify-content: left;
    border: 1px solid #9cd97f;
  }
  #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 #9cd97f;
  }
  #footer .list-item:nth-of-type(n + 2) {
    margin-left: 0;
    margin-top: 0;
    border-bottom: 1px solid #9cd97f;
  }
  #footer .list-item:nth-of-type(2n) {
    border-right: 1px solid #9cd97f;
  }
  #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: 35px;
  }
  #top-mv .sv {
    padding: 75px 5px 110px;
  }
  #top-mv .sv::after {
    height: 22vw;
    right: unset;
    left: 5px;
    bottom: 112px;
  }
  #top-mv .sv-ttl {
    white-space: nowrap;
    padding: 7.5px 40px;
    transform: translateX(-50%);
    left: 50%;
    bottom: 75px;
    z-index: 5;
  }
  #top-mv .sv-ttl::before {
    width: 8px;
    height: 8px;
    left: 20px;
  }
  #top-mv .sv-ttl::after {
    width: 8px;
    height: 8px;
    right: 20px;
  }
}
/*	------- */
/* =========================================
  breakpoint
========================================= */