@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: "Poppins-Black";
  src: url(../fonts/Poppins-Black.ttf);
}
@font-face {
  font-family: "Poppins-Bold";
  src: url(../fonts/Poppins-Bold.ttf);
}
@font-face {
  font-family: "Poppins-BoldItalic";
  src: url(../fonts/Poppins-BoldItalic.ttf);
}
@font-face {
  font-family: "Poppins-Light";
  src: url(../fonts/Poppins-Light.ttf);
}
@font-face {
  font-family: "Poppins-Italic";
  src: url(../fonts/Poppins-Italic.ttf);
}
@font-face {
  font-family: "Poppins-Medium";
  src: url(../fonts/Poppins-Medium.ttf);
}
@font-face {
  font-family: "Poppins-Regular";
  src: url(../fonts/Poppins-Regular.ttf);
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url(../fonts/Poppins-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: "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: "Poppins-Black";
  src: url(../fonts/Poppins-Black.ttf);
}
@font-face {
  font-family: "Poppins-Bold";
  src: url(../fonts/Poppins-Bold.ttf);
}
@font-face {
  font-family: "Poppins-BoldItalic";
  src: url(../fonts/Poppins-BoldItalic.ttf);
}
@font-face {
  font-family: "Poppins-Light";
  src: url(../fonts/Poppins-Light.ttf);
}
@font-face {
  font-family: "Poppins-Italic";
  src: url(../fonts/Poppins-Italic.ttf);
}
@font-face {
  font-family: "Poppins-Medium";
  src: url(../fonts/Poppins-Medium.ttf);
}
@font-face {
  font-family: "Poppins-Regular";
  src: url(../fonts/Poppins-Regular.ttf);
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url(../fonts/Poppins-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: #222222;
  font-size: 17px;
  font-size: 1.7rem;
  font-family: "Noto sansCJK Medium", sans-serif;
  letter-spacing: 0.05em;
  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 {
  position: absolute;
  width: 100%;
  padding: 40px 2.86vw 0 2.6vw;
  top: 0;
  left: 0;
  z-index: 99;
}
@media screen and (max-width: 1300px) {
  #header .headline {
    padding: 40px 15px 0;
  }
}
#header .logo {
  display: inline-block;
  margin-top: 18px;
  transition: all 0.3s ease;
}
#header .logo:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1200px) {
  #header .logo {
    width: 200px;
  }
}
#header .logo a,
#header .logo img {
  display: block;
}
#header .contact {
  width: 310px;
  margin-top: 20px;
  margin-left: auto;
}
#header .contact-btm {
  margin-top: 10px;
}

/*	gnav  PC
ヘッダーナビ（PC時）
------------------------------------ */
#gnav .list {
  padding: 10px 15px 10px 45px;
  background-color: #222222;
  border-radius: 40px;
}
@media screen and (max-width: 1300px) {
  #gnav .list {
    padding: 10px 15px 10px 20px;
  }
}
#gnav .list-item:nth-of-type(n + 2) {
  margin-left: 35px;
}
@media screen and (max-width: 1300px) {
  #gnav .list-item:nth-of-type(n + 2) {
    margin-left: 25px;
  }
}
#gnav .list-item:last-of-type {
  margin-left: 20px;
}
#gnav .list-link {
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "Noto sansCJK Bold", sans-serif;
  letter-spacing: 0.08em;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  #gnav .list-link {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#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);
}
#gnav .list-mail {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8982d;
  border-radius: 50%;
  transition: all 0.5s ease;
}
#gnav .list-mail:hover {
  transform: scale(0.95);
}

/*	mv  PC
メインビジュアル（トップ用）
------------------------------------ */
#top-mv .mv {
  position: relative;
  width: 100%;
  height: 1041px;
  background: url(/img/all/mv-illust.png) no-repeat right center, url(/img/all/mv-bg.jpg) no-repeat left center/cover;
}
@media screen and (max-width: 1700px) {
  #top-mv .mv {
    background: url(/img/all/mv-illust.png) no-repeat calc(50% + 405px) center/930px, url(/img/all/mv-bg.jpg) no-repeat left center/cover;
  }
}
@media screen and (min-width: 1921px) {
  #top-mv .mv {
    background: url(/img/all/mv-illust.png) no-repeat right center/50.8vw, url(/img/all/mv-bg.jpg) no-repeat left bottom/cover;
  }
}
#top-mv .mv-ttl {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: calc(50% - 640px);
}
@media screen and (max-width: 1300px) {
  #top-mv .mv-ttl {
    left: 10px;
  }
}

/*	page-top  PC
page-top リンク
------------------------------------ */
.fixed {
  position: fixed;
  right: 0;
  bottom: 80px;
  z-index: 99;
}
.fixed-link {
  font-family: "Noto sansCJK Black", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  width: 170px;
  height: 125px;
  line-height: 1.3;
  text-align: center;
  padding-top: 62px;
  color: #fff;
  background-color: #222222;
  border-right: 30px solid #00b900;
  border-radius: 15px 0 0 15px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fixed-link {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
.fixed-link::before {
  position: absolute;
  content: "";
}
.fixed-link::after {
  position: absolute;
  content: "";
}
.fixed-link::before {
  width: 30px;
  height: 30px;
  transform: translateX(-50%);
  left: 50%;
  top: 20px;
  background: url(/img/all/line-ico.png) no-repeat;
  background-size: 100%;
  transition: all 0.5s ease;
}
.fixed-link::after {
  width: 16px;
  height: 16px;
  right: -24px;
  top: 63px;
  background: url(/img/all/fixed-ico.png) no-repeat;
  background-size: 100%;
}
.fixed-link:hover::before {
  transform: translateX(-50%) scale(0.95);
}

/* =========================================
  footer  PC
  フッター
========================================= */
#footer .bg {
  background-color: #b4b4b8;
}
#footer .container {
  position: relative;
}
#footer .wrap-box {
  margin-top: 40px;
}
@media screen and (max-width: 1200px) {
  #footer .box {
    margin-right: 50px;
  }
}
#footer .address {
  font-size: 14px;
  font-size: 1.4rem;
  margin-right: 28px;
}
@media screen and (max-width: 767px) {
  #footer .address {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .instagram {
  margin-top: 35px;
}
#footer .nav {
  margin-top: 25px;
}
#footer .list:nth-of-type(n + 2) {
  margin-left: 75px;
}
#footer .list-item {
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  #footer .list-item {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .list-item:nth-of-type(n + 2) {
  margin-top: 15px;
}
#footer .list-link {
  color: #222222;
  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: #fff;
  transition: 0.3s ease;
}
#footer .list-link:hover::after {
  width: 100%;
}
#footer .contact {
  padding: 26px 0 30px;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
  position: relative;
}
#footer .contact-ttl {
  position: absolute;
  font-family: "Poppins-Bold", sans-serif;
  line-height: 1;
  padding-right: 18px;
  left: 0;
  top: -8px;
  background-color: #b4b4b8;
}
#footer .contact-left {
  margin-top: 10px;
}
#footer .contact-left-fle {
  margin-top: 12px;
}
#footer .contact-link {
  margin-left: 55px;
}
#footer .contact-link-btn:nth-of-type(n + 2) {
  margin-top: 15px;
}
#footer .copy {
  position: absolute;
  font-size: 12px;
  font-size: 1.2rem;
  left: 0;
  bottom: 0;
}
#footer .copy-link {
  color: #222222;
}

/* =========================================
  sub  PC
  sv 共通部分
========================================= */
#top-mv .sv {
  width: 100%;
  height: 38vw;
  max-height: 700px;
  min-height: 545px;
  position: relative;
  background: url(/img/sv/sv-bg-left.png) no-repeat left top/26.2vw;
}
@media screen and (min-width: 1921px) {
  #top-mv .sv {
    background: url(/img/sv/sv-bg-left.png) no-repeat left top;
  }
}
@media screen and (max-width: 1500px) {
  #top-mv .sv {
    height: 42vw;
  }
}
#top-mv .sv-ttl {
  position: absolute;
  font-family: "Noto sansCJK Black", sans-serif;
  font-size: 45px;
  font-size: 4.5rem;
  bottom: 15px;
  left: calc(50% - 640px);
  padding-bottom: 195px;
}
@media screen and (max-width: 767px) {
  #top-mv .sv-ttl {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1310px) {
  #top-mv .sv-ttl {
    left: 10px;
  }
}
#top-mv .sv-ttl::first-letter {
  color: #f8982d;
}
#top-mv .sv-ttl::before {
  position: absolute;
  content: "";
  width: 497px;
  height: 163px;
  left: -68px;
  bottom: 0;
  background: url(/img/sv/sv-ttl-deco.png) no-repeat;
  background-size: 100%;
  z-index: 1;
}
@media screen and (max-width: 1450px) {
  #top-mv .sv-ttl::before {
    left: -10px;
  }
}
#top-mv .sv-img {
  position: absolute;
  width: 51vw;
  max-width: 1020px;
  min-width: 650px;
  height: 23.4vw;
  max-height: 470px;
  min-height: 300px;
  right: 2.6vw;
  bottom: 0;
}
#top-mv .sv-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1921px) {
  #top-mv .sv-img {
    right: calc(50% - 900px);
  }
}
@media screen and (max-width: 1650px) {
  #top-mv .sv-img {
    right: 10px;
  }
}
#top-mv .sv-img img {
  border-radius: 20px;
}
#top-mv .sv-img::before {
  position: absolute;
  content: "";
  width: 23.5vw;
  max-width: 452px;
  height: 16vw;
  max-height: 307px;
  top: -6.5vw;
  left: -10.6vw;
  z-index: -1;
  background: url(/img/sv/sv-deco.png) no-repeat center/100%;
}
@media screen and (min-width: 1921px) {
  #top-mv .sv-img::before {
    top: -125px;
    left: -205px;
  }
}

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

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

  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: 5px 10px;
  }
  #header .logo {
    width: 200px;
    margin-top: 0;
    padding: 4px 5px;
  }
  /*	mv  SP
  ------------------------------------ */
  #top-mv .mv {
    height: 450px;
    background: url(/img/all/mv-illust.png) no-repeat calc(50% + 27.1vw) bottom/100vw, url(/img/all/mv-bg.jpg) no-repeat left center/cover;
  }
  #top-mv .mv-ttl {
    width: 300px;
    transform: unset;
    top: 100px;
  }
  /*	fixed  SP
  ページトップへのリンク
  ------------------------------------ */
  .fixed {
    display: flex;
    width: 100%;
    bottom: 0;
    right: 0;
  }
  .fixed-item {
    width: 100%;
  }
  .fixed-link {
    width: 100%;
    height: 60px;
    padding-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 40px solid #00b900;
    border-radius: 10px 10px 0 0;
  }
  .fixed-link::before {
    display: block;
    position: unset;
    transform: unset;
    margin-right: 15px;
  }
  .fixed-link::after {
    top: 24px;
    right: -28px;
  }
  /*	gnav  SP
  ハンバーガーメニュー、メニュー内のcss
  ------------------------------------ */
  .sp-menu-btn-wrp {
    width: 50px;
    height: 50px;
    padding-top: 16px;
    background-color: #f8982d;
    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: #e5e7e8;
  }
  #drawer-nav .contact {
    margin: 0 auto;
  }
  #drawer-nav .contact-link {
    margin-top: 25px;
  }
  #drawer-nav .contact-link-btn {
    display: block;
    margin: 0 auto;
  }
  #drawer-nav .contact-link-btn:nth-of-type(n + 2) {
    margin-top: 15px;
  }
  #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 #222222;
    padding: 6% 0;
    font-size: clamp(18px, 4.8vw, 36px);
    letter-spacing: 0.1em;
    color: #222222;
    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
  ========================================= */
  #footer .inner {
    padding: 50px 15px 70px;
  }
  #footer .container {
    display: block;
    padding-bottom: 50px;
  }
  #footer .logo {
    display: block;
    width: 200px;
    margin: 0 auto;
  }
  #footer .wrap-box {
    text-align: center;
    margin-top: 35px;
  }
  #footer .address {
    margin-right: 0;
  }
  #footer .instagram {
    margin: 15px auto 0;
  }
  #footer .box {
    margin-right: 0;
  }
  #footer .contact {
    display: block;
    margin-top: 45px;
    padding: 20px 0 30px;
  }
  #footer .contact-ttl {
    padding: 0 15px;
    transform: translateX(-50%);
    left: 50%;
  }
  #footer .contact-link {
    width: 280px;
    margin: 25px auto 0;
  }
  #footer .contact-left-fle {
    justify-content: center;
  }
  #footer .nav {
    width: 100%;
  }
  #footer .list {
    flex-wrap: wrap;
    justify-content: left;
    border: 1px solid #222222;
  }
  #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 #222222;
  }
  #footer .list-item:nth-of-type(n + 2) {
    margin-left: 0;
    margin-top: 0;
    border-bottom: 1px solid #222222;
  }
  #footer .list-item:nth-of-type(2n) {
    border-right: 1px solid #222222;
  }
  #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 {
    width: 100%;
    text-align: center;
  }
  /* =========================================
    sub  SP
    下層（サブビジュアル）のcss
  ========================================= */
  /*	sub headline  SP
  ------------------------------------ */
  /* =========================================
    sub  SP
    sv 共通部分
  ========================================= */
  #top-mv .sv {
    height: 80vw;
    min-height: 300px;
    max-height: 350px;
    background: url(/img/sv/sv-bg-left.png) no-repeat left top/35.2vw;
  }
  #top-mv .sv-ttl {
    padding-bottom: 65px;
    left: unset;
    bottom: unset;
    top: 80px;
    right: 30px;
    z-index: 1;
  }
  #top-mv .sv-ttl::before {
    width: 197px;
    height: 65px;
    left: unset;
    right: -25px;
  }
  #top-mv .sv-img {
    width: 95%;
    min-width: unset;
    height: 45.7vw;
    min-height: 160px;
    right: unset;
    transform: translateX(-50%);
    left: 50%;
  }
  #top-mv .sv-img::before {
    width: 100px;
    height: 70px;
    top: -40px;
    left: 31.5vw;
  }
  /*	------- */
}
/*	------- */
/* =========================================
  breakpoint
========================================= */