@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
@font-face {
  font-family: "Lobster-Regular";
  src: url(../fonts/Lobster-Regular.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Black";
  src: url(../fonts/ZenKakuGothicNew-Black.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Bold";
  src: url(../fonts/ZenKakuGothicNew-Bold.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Medium";
  src: url(../fonts/ZenKakuGothicNew-Medium.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Regular";
  src: url(../fonts/ZenKakuGothicNew-Regular.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Light";
  src: url(../fonts/ZenKakuGothicNew-Light.ttf);
}
@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);
}
/*	transition,hover
ホバー時のtransition秒数を統一、ホバーアクション
------------------------------------ */
/*	media-screen
画面サイズごとのcss設定に使用
------------------------------------ */
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
/*	layout
その他パーツ
------------------------------------ */
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
@font-face {
  font-family: "Lobster-Regular";
  src: url(../fonts/Lobster-Regular.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Black";
  src: url(../fonts/ZenKakuGothicNew-Black.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Bold";
  src: url(../fonts/ZenKakuGothicNew-Bold.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Medium";
  src: url(../fonts/ZenKakuGothicNew-Medium.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Regular";
  src: url(../fonts/ZenKakuGothicNew-Regular.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Light";
  src: url(../fonts/ZenKakuGothicNew-Light.ttf);
}
@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);
}
/*	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: #3e4748;
  font-family: "Noto sansCJK Medium", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  border-top: 5px solid #63c9dc;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.top {
  background: url(/img/all/mv-bg.jpg) no-repeat center top/100vw;
}

.sub {
  background: url(/img/all/sv-bg.jpg) no-repeat center top/100vw;
}

/* 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;
  z-index: 99;
  width: 100%;
  justify-content: space-between;
  top: 0;
  left: 0;
  padding: 0 7.8vw 0 3.125vw;
}
@media screen and (max-width: 1400px) {
  #header .headline {
    padding: 0 10px 0 10px;
  }
}
#header .logo {
  display: inline-block;
  padding: 23px 35px 92px;
  background: url(/img/all/logo-bg.png) no-repeat center bottom;
}
@media screen and (max-width: 1400px) {
  #header .logo {
    padding: 23px 15px 82px;
  }
}
#header .logo a,
#header .logo img {
  display: block;
  transition: all 0.5s ease;
}
#header .logo a:hover img,
#header .logo img:hover img {
  transform: scale(1.05);
}
#header .current {
  color: #63c9dc !important;
}
#header .instagram {
  margin-top: 50px;
}

/*	gnav  PC
ヘッダーナビ（PC時）
------------------------------------ */
#gnav .list {
  margin-top: 37px;
  padding-left: 13.5vw;
  padding-left: 5.2vw;
}
@media screen and (max-width: 1650px) {
  #gnav .list {
    padding-left: 150px;
    padding-left: 0;
  }
}
#gnav .list-item:nth-of-type(n + 2) {
  margin-left: 4.42vw;
}
@media screen and (max-width: 1200px) {
  #gnav .list-item:nth-of-type(n + 2) {
    margin-left: 30px;
  }
}
#gnav .list-item:first-of-type .list-link::after {
  width: 36px;
  height: 39px;
  background: url(/img/all/nav-ico01.png) no-repeat center top;
}
#gnav .list-item:nth-of-type(2) .list-link::after {
  width: 35px;
  height: 41px;
  background: url(/img/all/nav-ico02.png) no-repeat center top;
}
#gnav .list-item:nth-of-type(3) .list-link::after {
  width: 40px;
  height: 36px;
  background: url(/img/all/nav-ico03.png) no-repeat center top;
}
#gnav .list-item:nth-of-type(4) .list-link::after {
  width: 55px;
  height: 37px;
  background: url(/img/all/nav-ico04.png) no-repeat center top;
}
#gnav .list-item:nth-of-type(5) .list-link::after {
  width: 40px;
  height: 40px;
  background: url(/img/all/nav-ico05.png) no-repeat center top;
}
#gnav .list-link {
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  padding-top: 45px;
  color: #3e4748;
  position: relative;
}
@media screen and (max-width: 767px) {
  #gnav .list-link {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
#gnav .list-link::after {
  position: absolute;
  content: "";
}
#gnav .list-link::after {
  transform: translateX(-50%);
  left: 50%;
  top: 0;
  transition: all 0.5s ease;
}
#gnav .list-link:hover::after {
  transform: translateX(-50%) scale(1.05);
}

/*	mv  PC
メインビジュアル（トップ用）
------------------------------------ */
#top-mv .mv {
  position: relative;
  width: 100%;
  padding-top: 135px;
  padding-bottom: 71px;
  position: relative;
}
#top-mv .mv::before {
  position: absolute;
  content: "";
}
#top-mv .mv::after {
  position: absolute;
  content: "";
}
#top-mv .mv::before {
  width: 14.5vw;
  height: 10.1vw;
  left: 0;
  bottom: 8px;
  background: url(/img/all/mv-deco01.png) no-repeat;
  background-size: 100%;
  z-index: 5;
}
@media screen and (max-width: 1840px) {
  #top-mv .mv::before {
    bottom: 0;
  }
}
#top-mv .mv::after {
  width: 19.6vw;
  height: 14.7vw;
  right: 0;
  top: 197px;
  background: url(/img/all/mv-deco02.png) no-repeat;
  background-size: 100%;
  z-index: 5;
}
#top-mv .mv-img {
  display: block;
  width: 84.375vw;
  min-width: 1050px;
  margin: 0 auto;
}
#top-mv .mv-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top-mv .mv-box {
  position: absolute;
  top: 27vw;
  left: 3.125vw;
}
@media screen and (max-width: 1250px) {
  #top-mv .mv-box {
    top: 355px;
    left: 10px;
  }
}
#top-mv .mv-ttl {
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-size: 40px;
  font-size: 4rem;
  letter-spacing: 0.06em;
  padding: 14px 12px 14px 25px;
  background-color: #fff;
  border-left: 13px solid #2bb3cc;
}
@media screen and (max-width: 767px) {
  #top-mv .mv-ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-mv .mv-ttl-lg {
  font-size: 45px;
  font-size: 4.5rem;
  color: #2bb3cc;
}
@media screen and (max-width: 767px) {
  #top-mv .mv-ttl-lg {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
#top-mv .mv-txt {
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-size: 33px;
  font-size: 3.3rem;
  display: inline-block;
  letter-spacing: 0.06em;
  margin-top: 20px;
  padding: 13px 7px 13px 25px;
  background-color: #fff;
  border-left: 13px solid #2bb3cc;
}
@media screen and (max-width: 767px) {
  #top-mv .mv-txt {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-mv .mv-txt-lg {
  font-size: 42px;
  font-size: 4.2rem;
}
@media screen and (max-width: 767px) {
  #top-mv .mv-txt-lg {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-mv .mv-marker {
  padding-left: 5px;
  background: linear-gradient(transparent calc(100% - 43%), #fff0aa 0%);
}

/*	page-top  PC
page-top リンク
------------------------------------ */
.fixed {
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 99;
}
.fixed-item {
  text-align: center;
}
.fixed-contact {
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  width: 80px;
  height: 260px;
  padding-top: 80px;
  writing-mode: vertical-rl;
  color: #fff;
  background-color: #63c9dc;
  outline: 1px solid #fff;
  outline-offset: -6px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fixed-contact {
    font-size: 20px;
    font-size: 2rem;
  }
}
.fixed-contact::before {
  position: absolute;
  content: "";
}
.fixed-contact::after {
  position: absolute;
  content: "";
}
.fixed-contact::before {
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  left: 50%;
  top: 20px;
  background-color: #fff;
  border-radius: 50%;
}
.fixed-contact::after {
  width: 28px;
  height: 21px;
  transform: translateX(-50%);
  left: 50%;
  top: 48px;
  background: url(/img/all/mail-ico.png) no-repeat center;
  background-size: 100%;
  transition: all 0.5s ease;
}
.fixed-contact:hover::after {
  transform: translateX(-50%) scale(1.05);
}
.fixed-page {
  margin-top: 30px;
  transition: 0.3s ease;
}
.fixed-page:hover {
  transform: translate(0px, -5px);
}

/* =========================================
  footer  PC
  フッター
========================================= */
#footer .bg {
  background: url(/img/all/foo-bg.jpg) no-repeat center/cover;
  border-top: 3px solid #2bb3cc;
}
#footer .current {
  border-bottom: 1px solid #2bb3cc !important;
}
#footer .logo {
  display: inline-block;
  padding: 23px 35px 92px;
  background: url(/img/all/logo-bg.png) no-repeat center bottom;
}
@media screen and (max-width: 1400px) {
  #footer .logo {
    padding: 23px 15px 82px;
  }
}
#footer .logo a,
#footer .logo img {
  display: block;
  transition: all 0.5s ease;
}
#footer .logo a:hover img,
#footer .logo img:hover img {
  transform: scale(1.05);
}
#footer .instagram {
  margin-top: 68px;
}
@media screen and (max-width: 1350px) {
  #footer .box {
    margin-right: 100px;
  }
}
#footer .nav {
  margin-top: 120px;
}
#footer .list:nth-of-type(n + 2) {
  margin-left: 60px;
}
#footer .list-item {
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
}
#footer .list-item:nth-of-type(n + 2) {
  margin-top: 30px;
}
#footer .list-link {
  color: #3e4748;
  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: #2bb3cc;
  transition: 0.3s ease;
}
#footer .list-link:hover::after {
  width: 100%;
}
#footer .copy {
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  text-align: right;
  margin-top: 105px;
}
@media screen and (max-width: 767px) {
  #footer .copy {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .copy-link {
  color: #3e4748;
}

/* =========================================
  sub  PC
  sv 共通部分
========================================= */
#top-mv .sv {
  padding-bottom: 33px;
}
#top-mv .sv-ttl {
  position: absolute;
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-size: 48px;
  font-size: 4.8rem;
  width: 740px;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 12px 20px;
  transform: translateX(-50%);
  left: 50%;
  top: 50%;
  color: #2bb3cc;
  background-color: #fff;
  border-left: 13px solid #2bb3cc;
  border-right: 13px solid #2bb3cc;
}
@media screen and (max-width: 767px) {
  #top-mv .sv-ttl {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

/*	breadcrumb  PC
パンくずリスト
------------------------------------ */
main {
  position: relative;
}

.breadcrumb {
  position: absolute;
  top: 15px;
  left: calc(50% - 540px);
  display: flex;
  align-items: center;
  z-index: 10;
}
@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: #3e4748;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@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: #3e4748;
}
.breadcrumb li::after {
  content: ">";
  display: inline-block;
  padding: 0 18px;
  color: #3e4748;
}

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

  layout  SP
  共通パーツのスマホ時css
========================================= */
@media screen and (max-width: 767px) {
  /* =========================================
    base  SP
  ========================================= */
  body {
    min-width: 350px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  body::before {
    display: none;
  }
  .top {
    background: url(/img/all/mv-bg.jpg) no-repeat center top/150vw;
  }
  .sub {
    background: url(/img/all/sv-bg.jpg) no-repeat center top/150vw;
  }
  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: 85px;
    padding: 10px 10px 65px;
  }
  /*	mv  SP
  ------------------------------------ */
  #top-mv .mv {
    padding-top: 55px;
    padding-bottom: 180px;
  }
  /*	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 (min-width: 400px) {
  #top-mv .mv::before {
    bottom: -10px;
  }
}
@media screen and (max-width: 767px) {
  #top-mv .mv::after {
    top: 56.2vw;
  }
  #top-mv .mv-img {
    width: 90vw;
    min-width: unset;
    margin: 0 10px 0 auto;
  }
  #top-mv .mv-box {
    top: unset;
    bottom: 30px;
    left: 5.7vw;
  }
  #top-mv .mv-ttl {
    padding: 5px 5px 5px 10px;
    border-left: 8px solid #2bb3cc;
  }
  #top-mv .mv-txt {
    margin-top: 10px;
    padding: 5px 5px 5px 10px;
    border-left: 8px solid #2bb3cc;
  }
  .fixed {
    display: flex;
    width: 100%;
    bottom: 0;
    right: 0;
    border-top: 2px solid #63c9dc;
  }
  .fixed-item01 {
    width: 100%;
  }
  .fixed-contact {
    width: 100%;
    height: 70px;
    justify-content: center;
    writing-mode: unset;
    padding-top: 0;
    padding-left: 25px;
    border-radius: 0;
  }
  .fixed-contact::before {
    transform: translateY(-50%);
    top: 50%;
    left: calc(50% - 115px);
  }
  .fixed-contact::after {
    transform: translateY(-50%);
    top: 50%;
    left: calc(50% - 90px);
  }
  .fixed-contact:hover::after {
    transform: translateY(-50%);
    top: 50%;
    left: calc(50% - 90px);
  }
  .fixed-page {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin-top: 0;
    padding: 16px 25px;
    background-color: #fff;
  }
  .fixed-page:hover {
    transform: unset;
  }
  .sp-menu-btn-wrp {
    width: 50px;
    height: 50px;
    padding-top: 16px;
    background-color: #2bb3cc;
    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/all/mv-bg.jpg) no-repeat center top/150vw, #fff;
  }
  #drawer-nav .current::after {
    display: none;
  }
  #drawer-nav .drawer-logo {
    width: 73%;
    margin-bottom: 15px;
  }
  #drawer-nav .drawer-box {
    text-align: center;
    margin-top: 15px;
    padding: 25px 15px;
    background-color: #63c9dc;
    position: relative;
  }
  #drawer-nav .drawer-box::before {
    position: absolute;
    content: "";
  }
  #drawer-nav .drawer-box::before {
    width: 90%;
    height: 1px;
    transform: translate(-50%, -50%);
    top: 45%;
    left: 50%;
    border-bottom: 2px dashed #fff;
  }
  #drawer-nav .instagram {
    margin-top: 0;
  }
  #drawer-nav .mail {
    margin-top: 30px;
  }
  #drawer-nav #nav {
    padding: 0;
  }
  #drawer-nav #nav .list-link {
    display: block;
    border-bottom: 1px solid #63c9dc;
    padding: 6% 0;
    font-size: clamp(18px, 4.8vw, 36px);
    letter-spacing: 0.1em;
    color: #3e4748;
    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 .inner {
    padding: 50px 15px 80px;
  }
  #footer .container {
    display: block;
  }
  #footer .logo {
    display: block;
    width: 105px;
    margin: 0 auto;
    padding: 10px 10px 65px;
  }
  #footer .instagram {
    margin: 10px auto 0;
  }
  #footer .box {
    margin-right: 0;
  }
  #footer .nav {
    display: block;
    width: 100%;
    margin-top: 35px;
  }
  #footer .list {
    text-align: center;
  }
  #footer .list:nth-of-type(n + 2) {
    margin-left: 0;
    margin-top: 30px;
  }
  #footer .copy {
    text-align: center;
    margin-top: 50px;
  }
  #top-mv .mv::after {
    top: 26.2vw;
  }
  #top-mv .mv-img {
    width: 95vw;
    min-width: 330px;
    height: 150px;
    margin: 0 auto;
  }
  #top-mv .sv {
    padding-bottom: 45px;
  }
  #top-mv .sv-ttl {
    width: 320px;
    padding: 5px 10px;
    top: unset;
    bottom: 20px;
    border-left: 8px solid #2bb3cc;
    border-right: 7px solid #2bb3cc;
  }
}
/*	------- */
/* =========================================
  breakpoint
========================================= */