@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
@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);
}
@font-face {
  font-family: "RocknRollOne-Regular";
  src: url(../fonts/RocknRollOne-Regular.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: "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);
}
@font-face {
  font-family: "RocknRollOne-Regular";
  src: url(../fonts/RocknRollOne-Regular.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: #524c2a;
  font-family: "Noto sansCJK Medium", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  background-color: #f8f6ef;
}
@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 {
  width: 100%;
}
#header .logo {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  display: inline-block;
  transition: all 0.3s ease;
}
#header .logo:hover {
  opacity: 0.7;
}
#header .logo a,
#header .logo img {
  display: block;
}
#header .wrap {
  position: fixed;
  z-index: 99;
  top: 132px;
  right: 0;
  width: 260px;
  height: 180px;
  text-align: center;
  padding-top: 48px;
  background: url(/img/all/header-deco.png) no-repeat right bottom, #3598d1;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 0 10px rgba(91, 101, 108, 0.2);
}
#header .wrap-ttl {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: -20px;
}
#header .com-tel {
  margin-top: 16px;
}
#header .mail-btn {
  margin: 0 auto;
}

/*	gnav  PC
ヘッダーナビ（PC時）
------------------------------------ */
#gnav .list {
  position: fixed;
  z-index: 99;
  top: 20px;
  right: 20px;
  width: 570px;
  height: 70px;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 35px;
  box-shadow: 0 0 10px rgba(91, 101, 108, 0.2);
}
#gnav .list-item:nth-of-type(n + 2) {
  margin-left: 35px;
  position: relative;
}
#gnav .list-item:nth-of-type(n + 2)::before {
  position: absolute;
  content: "";
}
#gnav .list-item:nth-of-type(n + 2)::before {
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  top: 50%;
  left: -22px;
  background-color: #fceb80;
  border-radius: 50%;
}
#gnav .list-link {
  color: #524c2a;
  position: relative;
}
#gnav .list-link::before {
  background: #3598d1;
  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 .current {
  color: #3598d1;
}

/*	mv  PC
メインビジュアル（トップ用）
------------------------------------ */
#top-mv .mv {
  width: 100%;
  height: 41.3vw;
  min-height: 453px;
}
#top-mv .mv-ttl {
  position: absolute;
  width: 39.7vw;
  top: 135px;
  left: calc(50% - 35.5vw);
}
#top-mv .mv-bg01 {
  background: url(/img/all/mv-bg01.jpg) no-repeat center/cover;
}
#top-mv .mv-bg02 {
  background: url(/img/all/mv-bg02.jpg) no-repeat center/cover;
}
#top-mv .mv-bg03 {
  background: url(/img/all/mv-bg03.jpg) no-repeat center/cover;
}
#top-mv .mv-bg04 {
  background: url(/img/all/mv-bg04.jpg) no-repeat center/cover;
}

#fade {
  position: relative;
  width: 100%;
  height: 41.3vw;
  min-height: 453px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#fade li {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
#fade li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#fade li.active {
  opacity: 1;
  z-index: 1;
}

/*	page-top  PC
page-top リンク
------------------------------------ */
.fixed {
  position: fixed;
  right: 30px;
  bottom: 50px;
  z-index: 99;
}
.fixed-page {
  font-family: "Noto sansCJK Bold", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  padding-top: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fixed-page {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.fixed-page::after {
  position: absolute;
  content: "";
}
.fixed-page::after {
  width: 50px;
  height: 50px;
  transform: translateX(-50%);
  left: 50%;
  top: 0;
  background: url(/img/all/page-top.png) no-repeat;
  background-size: 100%;
  transition: all 0.3s ease;
}
.fixed-page:hover::after {
  transform: translate(-50%, -5px);
}

/* =========================================
  footer  PC
  フッター
========================================= */
#footer .bg {
  background-color: #fff;
}
#footer .current {
  color: #3598d1 !important;
}
#footer .wrap {
  padding-bottom: 30px;
  border-bottom: 4px dotted #c2beaa;
}
#footer .list-item:nth-of-type(n + 2) {
  margin-left: 35px;
  position: relative;
}
#footer .list-item:nth-of-type(n + 2)::before {
  position: absolute;
  content: "";
}
#footer .list-item:nth-of-type(n + 2)::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  top: 50%;
  left: -21px;
  background-color: #fceb80;
  border-radius: 50%;
}
#footer .list-link {
  font-family: "Noto sansCJK Bold", sans-serif;
  color: #524c2a;
  position: relative;
}
#footer .list-link::before {
  background: #3598d1;
  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;
}
#footer .list-link:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}
#footer .box {
  margin-top: 50px;
}
@media screen and (max-width: 1400px) {
  #footer .box {
    margin-right: 125px;
  }
}
#footer .btn {
  font-family: "Noto sansCJK Bold", sans-serif;
  padding-right: 25px;
  border-bottom: 2px solid #423d22;
  position: relative;
}
#footer .btn::after {
  position: absolute;
  content: "";
}
#footer .btn::after {
  width: 16px;
  height: 16px;
  right: 0;
  transform: translateY(-50%);
  top: 50%;
  background: url(/img/all/link-ico.png) no-repeat;
  background-size: 100%;
  transition: all 0.3s ease;
}
#footer .btn:nth-of-type(n + 2) {
  margin-left: 20px;
}
#footer .btn:hover::after {
  transform: translate(3px, -60%);
}
#footer .foo-btm {
  width: 100%;
  background-color: #423d22;
}
#footer .foo-btm-inner {
  max-width: 1080px;
  height: 40px;
  margin: 0 auto;
}
#footer .btm-list-item:nth-of-type(n + 2) {
  margin-left: 15px;
}
#footer .btm-list-link {
  display: block;
  font-family: "Noto sansCJK Regular", sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
  display: inline-block;
  position: relative;
  transition: 0.3s ease;
}
#footer .btm-list-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: 0.3s ease;
}
#footer .btm-list-link:hover::after {
  width: 100%;
}
#footer .copy {
  font-family: "Noto sansCJK Regular", sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
}
#footer .copy-link {
  color: #fff;
}

/* =========================================
  sub  PC
  sv 共通部分
========================================= */
#sv .sv {
  width: 100%;
  height: 600px;
  z-index: 0;
  overflow: hidden;
  position: relative;
}
#sv .sv::after {
  position: absolute;
  content: "";
}
@media screen and (min-width: 1921px) {
  #sv .sv {
    height: 31.25vw;
  }
}
#sv .sv::after {
  width: 100%;
  min-width: 1300px;
  height: 18.2vw;
  min-height: 238px;
  transform: translateX(-50%);
  left: 50%;
  bottom: -1px;
  background: url(/img/sv/sv-deco.png) no-repeat;
  background-size: 100%;
}
#sv .sv-ttl {
  position: absolute;
  font-family: "RocknRollOne-Regular", sans-serif;
  font-size: 56px;
  font-size: 5.6rem;
  white-space: nowrap;
  top: 35%;
  left: calc(50% - 540px);
  color: #3598d1;
}
@media screen and (max-width: 767px) {
  #sv .sv-ttl {
    font-size: 30px;
    font-size: 3rem;
  }
}
#sv .sv-ttl::before {
  position: absolute;
  content: attr(data-text);
  top: 0;
  left: 0;
  z-index: -1;
  color: #fff;
  -webkit-text-stroke: 7px #fff;
  paint-order: stroke;
}
#sv .sv-ttl::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6);
}

/* =========================================
    sub  PC
    sv
========================================= */
#sv .sv-menu {
  background: url(/img/sv/sv-menu.png) no-repeat calc(100% - 16vw) 125px, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
}
@media screen and (min-width: 1921px) {
  #sv .sv-menu {
    background: url(/img/sv/sv-menu.png) no-repeat calc(100% - 16vw) 125px/20.8vw, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
  }
}
#sv .sv-fee {
  background: url(/img/sv/sv-fee.png) no-repeat calc(100% - 16vw) 125px, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
}
@media screen and (min-width: 1921px) {
  #sv .sv-fee {
    background: url(/img/sv/sv-fee.png) no-repeat calc(100% - 16vw) 125px/20.8vw, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
  }
}
#sv .sv-case {
  background: url(/img/sv/sv-case.png) no-repeat calc(100% - 16vw) 125px, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
}
@media screen and (min-width: 1921px) {
  #sv .sv-case {
    background: url(/img/sv/sv-case.png) no-repeat calc(100% - 16vw) 125px/20.8vw, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
  }
}
#sv .sv-company {
  background: url(/img/sv/sv-company.png) no-repeat calc(100% - 16vw) 125px, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
}
@media screen and (min-width: 1921px) {
  #sv .sv-company {
    background: url(/img/sv/sv-company.png) no-repeat calc(100% - 16vw) 125px/20.8vw, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
  }
}
#sv .sv-news {
  background: url(/img/sv/sv-news.png) no-repeat calc(100% - 16vw) 125px, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
}
@media screen and (min-width: 1921px) {
  #sv .sv-news {
    background: url(/img/sv/sv-news.png) no-repeat calc(100% - 16vw) 125px/20.8vw, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
  }
}
#sv .sv-site {
  background: url(/img/sv/sv-site.png) no-repeat calc(100% - 16vw) 125px, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
}
@media screen and (min-width: 1921px) {
  #sv .sv-site {
    background: url(/img/sv/sv-site.png) no-repeat calc(100% - 16vw) 125px/20.8vw, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
  }
}
#sv .sv-privacy {
  background: url(/img/sv/sv-privacy.png) no-repeat calc(100% - 16vw) 125px, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
}
@media screen and (min-width: 1921px) {
  #sv .sv-privacy {
    background: url(/img/sv/sv-privacy.png) no-repeat calc(100% - 16vw) 125px/20.8vw, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
  }
}
#sv .sv-error {
  background: url(/img/sv/sv-error.png) no-repeat calc(100% - 16vw) 125px, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
}
@media screen and (min-width: 1921px) {
  #sv .sv-error {
    background: url(/img/sv/sv-error.png) no-repeat calc(100% - 16vw) 125px/20.8vw, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
  }
}
#sv .sv-contact {
  background: url(/img/sv/sv-contact.png) no-repeat calc(100% - 16vw) 125px, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
}
@media screen and (min-width: 1921px) {
  #sv .sv-contact {
    background: url(/img/sv/sv-contact.png) no-repeat calc(100% - 16vw) 125px/20.8vw, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
  }
}
#sv .sv-complete {
  background: url(/img/sv/sv-complete.png) no-repeat calc(100% - 16vw) 125px, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
}
@media screen and (min-width: 1921px) {
  #sv .sv-complete {
    background: url(/img/sv/sv-complete.png) no-repeat calc(100% - 16vw) 125px/20.8vw, url(/img/sv/sv-bg.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: #3598d1;
  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: #524c2a;
}
.breadcrumb li::after {
  content: ">";
  display: inline-block;
  padding: 0 15px;
  color: #524c2a;
}

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

  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: 160px;
  }
  /*	mv  SP
  ------------------------------------ */
  #top-mv .mv {
    height: 350px;
    min-height: unset;
  }
  #top-mv .mv-ttl {
    width: 300px;
    top: 170px;
    left: 10px;
  }
  #top-mv .mv-bg01 {
    background: url(/img/all/mv-bg01.jpg) no-repeat calc(50% - 50px)/cover;
  }
  #top-mv .mv-bg02 {
    background: url(/img/all/mv-bg02.jpg) no-repeat calc(50% - 50px)/cover;
  }
  #top-mv .mv-bg03 {
    background: url(/img/all/mv-bg03.jpg) no-repeat calc(50% - 50px)/cover;
  }
  #top-mv .mv-bg04 {
    background: url(/img/all/mv-bg04.jpg) no-repeat calc(50% - 50px)/cover;
  }
  #fade {
    min-height: 350px;
    overflow: hidden;
  }
  /*	fixed  SP
  ページトップへのリンク
  ------------------------------------ */
  .fixed {
    right: 10px;
    bottom: 40px;
  }
  .fixed-page {
    padding-top: 50px;
  }
  .fixed-page::after {
    width: 40px;
    height: 40px;
  }
  /*	gnav  SP
  ハンバーガーメニュー、メニュー内のcss
  ------------------------------------ */
  .sp-menu-btn-wrp {
    width: 50px;
    height: 50px;
    padding-top: 16px;
    background-color: #3598d1;
    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: 75px 15px 30px;
    background: #f8f6ef;
  }
  #drawer-nav .wrap {
    position: relative;
    top: unset;
    right: unset;
    border-radius: 10px;
  }
  #drawer-nav .current::after {
    display: none;
  }
  #drawer-nav .drawer-logo {
    width: 73%;
    margin-bottom: 15px;
  }
  #drawer-nav #nav {
    padding: 0;
  }
  #drawer-nav #nav .list {
    padding: 10px 15px 25px;
    background-color: #fff;
    border-radius: 20px;
  }
  #drawer-nav #nav .list-link {
    display: block;
    border-bottom: 1px solid #3598d1;
    padding: 6% 0 6% 20px;
    font-size: clamp(18px, 4.8vw, 36px);
    letter-spacing: 0.1em;
    color: #524c2a;
    line-height: 1.22;
    position: relative;
  }
  #drawer-nav #nav .list-link::before {
    position: absolute;
    content: "";
  }
  #drawer-nav #nav .list-link::before {
    width: 4px;
    height: 4px;
    transform: translateY(-50%);
    top: 50%;
    left: 5px;
    background-color: #fceb80;
  }
  /* --- info系 --- */
  .drawer-info {
    display: flex;
    margin: 45px 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
  ========================================= */
  #footer .inner {
    padding: 50px 15px 80px;
  }
  #footer .logo {
    display: block;
    width: 160px;
    margin: 0 auto;
  }
  #footer .wrap {
    display: block;
  }
  #footer .nav {
    width: 100%;
  }
  #footer .list {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: left;
    margin-top: 35px;
    border: 1px solid #3598d1;
  }
  #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 #3598d1;
  }
  #footer .list-item:nth-of-type(n + 2) {
    margin-left: 0;
    margin-top: 0;
    border-bottom: 1px solid #3598d1;
  }
  #footer .list-item:nth-of-type(n + 2)::before {
    display: none;
  }
  #footer .list-item:nth-of-type(2n) {
    border-right: 1px solid #3598d1;
  }
  #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 .box {
    display: block;
    margin-right: 0;
    margin-top: 25px;
  }
  #footer .box-link {
    justify-content: center;
    margin-top: 20px;
  }
  #footer .address {
    text-align: center;
  }
  #footer .foo-btm-inner {
    justify-content: center;
  }
  #footer .copy-inner {
    padding: 0 15px;
  }
  #footer .copy-txt {
    text-align: center;
  }
  /* =========================================
    sub  SP
    下層（サブビジュアル）のcss
  ========================================= */
  /*	sub headline  SP
  ------------------------------------ */
  /* =========================================
    sub  SP
    sv 共通部分
  ========================================= */
  #sv .sv {
    height: 350px;
  }
  #sv .sv::after {
    min-width: unset;
    min-height: unset;
    width: 700px;
    height: 127px;
  }
  #sv .sv-ttl {
    left: 15px;
  }
  #sv .sv-ttl-sm {
    font-size: 26px;
  }
  /*	------- */
}
@media screen and (max-width: 767px) and (min-width: 390px) {
  #sv .sv-ttl-sm {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  #sv .sv-menu {
    background: url(/img/sv/sv-menu.png) no-repeat calc(100% - 5vw) 75px/250px, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
  }
  #sv .sv-fee {
    background: url(/img/sv/sv-fee.png) no-repeat calc(100% - 5vw) 75px/250px, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
  }
  #sv .sv-case {
    background: url(/img/sv/sv-case.png) no-repeat calc(100% - 5vw) 75px/250px, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
  }
  #sv .sv-company {
    background: url(/img/sv/sv-company.png) no-repeat calc(100% - 5vw) 75px/250px, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
  }
  #sv .sv-news {
    background: url(/img/sv/sv-news.png) no-repeat calc(100% - 5vw) 75px/250px, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
  }
  #sv .sv-contact {
    background: url(/img/sv/sv-contact.png) no-repeat calc(100% - 5vw) 75px/250px, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
  }
  #sv .sv-complete {
    background: url(/img/sv/sv-complete.png) no-repeat calc(100% - 5vw) 75px/250px, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
  }
  #sv .sv-privacy {
    background: url(/img/sv/sv-privacy.png) no-repeat calc(100% - 5vw) 75px/250px, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
  }
  #sv .sv-site {
    background: url(/img/sv/sv-site.png) no-repeat calc(100% - 5vw) 75px/250px, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
  }
  #sv .sv-error {
    background: url(/img/sv/sv-error.png) no-repeat calc(100% - 5vw) 75px/250px, url(/img/sv/sv-bg.jpg) no-repeat center/cover;
  }
}
/*	------- */
/* =========================================
  breakpoint
========================================= */