@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
@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: "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: #25282b;
  font-family: "Noto sansCJK Medium", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
  background: url(/img/all/pt01.png) 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 {
  z-index: 99;
}
#header .logo {
  position: absolute;
  display: inline-block;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: 5;
}
#header .logo:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1200px) {
  #header .logo {
    width: 280px;
  }
}
#header .logo a,
#header .logo img {
  display: block;
}
#header .current {
  color: #204089 !important;
}

/*	gnav  PC
ヘッダーナビ（PC時）
------------------------------------ */
#gnav .list {
  position: absolute;
  top: 90px;
  right: 6.25vw;
  z-index: 5;
}
@media screen and (max-width: 1250px) {
  #gnav .list {
    right: 35px;
    top: 75px;
  }
}
#gnav .list-item:nth-of-type(n + 2) {
  margin-left: 2vw;
}
#gnav .list-link {
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  #gnav .list-link {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
#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 .mv {
  position: relative;
  padding: 30px 2vw 0;
}
#top-mv .mv-bg {
  width: 100%;
  position: relative;
}
#top-mv .mv-ttl {
  position: absolute;
  width: 59.1vw;
  height: 23.3vw;
  right: -1px;
  bottom: 9.5vw;
  z-index: 10;
}
#top-mv .mv-ttl img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1330px) {
  #top-mv .mv-ttl {
    right: 80px;
    bottom: 80px;
  }
}
#top-mv .mv-txt {
  position: absolute;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.04em;
  padding-left: 10px;
  left: 50px;
  bottom: 28px;
  color: #fff;
  transform: skewX(-10deg);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #top-mv .mv-txt {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
#top-mv .mv-txt::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  background-color: #fff;
  border-radius: 50%;
}

#fade {
  position: relative;
  width: 100%;
  height: 47.5vw;
  min-height: 580px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#fade li {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 0;
  width: 100%;
  height: 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 img {
  border-top: 10px solid #204089;
  border-bottom: 10px solid #204089;
  border-radius: 10px;
}
#fade li.active {
  opacity: 1;
  z-index: 1;
}

/*	page-top  PC
page-top リンク
------------------------------------ */
.fixed {
  position: fixed;
  right: 0;
  top: 260px;
  z-index: 99;
}
.fixed-item01 {
  width: 90px;
  height: 220px;
  text-align: center;
  padding: 25px 15px 0;
  background-color: #fff;
  border: 2px solid #204089;
  border-right: none;
  border-radius: 5px 0 0 5px;
}
.fixed-item02 {
  position: relative;
}
.fixed-box {
  position: relative;
}
.fixed-box::before {
  position: absolute;
  content: "";
}
.fixed-box::before {
  width: 40px;
  height: 1px;
  transform: translateX(-50%);
  left: 50%;
  bottom: -20px;
  background-color: #b7bfc9;
}
.fixed-txt {
  font-family: "ZenKakuGothicNew-Black", sans-serif;
}
.fixed-line {
  margin-top: 17px;
  transition: all 0.5s ease;
}
.fixed-line:hover {
  transform: scale(0.95);
}
.fixed-mail {
  margin-top: 42px;
  transition: all 0.5s ease;
}
.fixed-mail:hover {
  transform: scale(0.95);
}
.fixed-page {
  position: absolute;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: -90px;
  margin-top: 30px;
  transition: 0.5s ease;
  background-color: #fff;
  border: 2px solid #204089;
  border-right: none;
  border-radius: 5px 0 0 5px;
  opacity: 0;
}
.fixed-page:hover {
  opacity: 1;
  transform: translate(0px, -5px);
}
.fixed .active {
  right: 0;
  opacity: 1;
}

/* =========================================
  footer  PC
  フッター
========================================= */
#footer .bg {
  background-color: #204089;
}
#footer .current {
  border-bottom: 1px solid #fff !important;
}
#footer .instagram {
  margin-top: 245px;
  transition: all 0.5s ease;
}
#footer .instagram:hover {
  transform: scale(0.95);
}
#footer .list:nth-of-type(n + 2) {
  margin-left: 70px;
}
#footer .list-item:nth-of-type(n + 2) {
  margin-top: 15px;
}
#footer .list-item-sm {
  margin-top: 19.5px !important;
}
#footer .list-link {
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: #fff;
  position: relative;
  display: inline-block;
  position: relative;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  #footer .list-link {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
#footer .list-link::before {
  position: absolute;
  content: "";
}
#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 .list-link-sm {
  font-family: "ZenKakuGothicNew-Medium", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  padding-left: 14px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #footer .list-link-sm {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#footer .list-link-sm::before {
  position: absolute;
  content: "";
}
#footer .list-link-sm::before {
  width: 4px;
  height: 4px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  background-color: #fff;
  border-radius: 50%;
}
#footer .copy {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 60px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #footer .copy {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .copy-link {
  color: #fff;
}
@media screen and (max-width: 1300px) {
  #footer .box {
    margin-right: 150px;
  }
}
#footer .nav-btm {
  margin-top: 135px;
}
#footer .nav-btm-item:nth-of-type(n + 2) {
  margin-left: 55px;
  position: relative;
}
#footer .nav-btm-item:nth-of-type(n + 2)::before {
  position: absolute;
  content: "";
}
#footer .nav-btm-item:nth-of-type(n + 2)::before {
  width: 2px;
  height: 13px;
  transform: translateY(-50%);
  top: 50%;
  left: -30px;
  background-color: #fff;
}
#footer .nav-btm-link {
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  display: inline-block;
  position: relative;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  #footer .nav-btm-link {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#footer .nav-btm-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: 0.3s ease;
}
#footer .nav-btm-link:hover::after {
  width: 100%;
}

/* =========================================
  sub  PC
  sv 共通部分
========================================= */
#top-mv .sv {
  width: 100%;
  height: 39vw;
  min-height: 580px;
  position: relative;
  border-top: 10px solid #204089;
  border-bottom: 10px solid #204089;
  border-radius: 10px;
}
#top-mv .sv-ttl {
  position: absolute;
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-size: 65px;
  font-size: 6.5rem;
  min-width: 820px;
  text-align: center;
  line-height: 1.23;
  transform: translate(-50%, -50%) skewX(-10deg);
  top: 50%;
  left: 50%;
  color: #204089;
}
@media screen and (max-width: 767px) {
  #top-mv .sv-ttl {
    font-size: 33px;
    font-size: 3.3rem;
  }
}
#top-mv .sv-ttl::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) skewX(10deg);
  top: 50%;
  left: 50%;
  background-color: #fff;
  z-index: -1;
}

/* =========================================
    sub  PC
    sv
========================================= */
#top-mv .sv-work {
  background: url(/img/sv/sv-work.jpg) no-repeat center/cover;
}
#top-mv .sv-staff {
  background: url(/img/sv/sv-staff.jpg) no-repeat center/cover;
}
#top-mv .sv-recruit {
  background: url(/img/sv/sv-recruit.jpg) no-repeat center/cover;
}
#top-mv .sv-company {
  background: url(/img/sv/sv-company.jpg) no-repeat center/cover;
}
#top-mv .sv-news {
  background: url(/img/sv/sv-news.jpg) no-repeat center/cover;
}
#top-mv .sv-site {
  background: url(/img/sv/sv-site.jpg) no-repeat center/cover;
}
#top-mv .sv-privacy {
  background: url(/img/sv/sv-privacy.jpg) no-repeat center/cover;
}
#top-mv .sv-error {
  background: url(/img/sv/sv-error.jpg) no-repeat center/cover;
}
#top-mv .sv-contact {
  background: url(/img/sv/sv-contact.jpg) no-repeat center/cover;
}
#top-mv .sv-complete {
  background: url(/img/sv/sv-complete.jpg) no-repeat center/cover;
}

/*	breadcrumb  PC
パンくずリスト
------------------------------------ */
.breadcrumb {
  display: flex;
  align-items: center;
  padding: 45px 0 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: #25282b;
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .breadcrumb li,
  .breadcrumb a {
    font-size: 12px;
  }
}
.breadcrumb li {
  color: #204089;
}
.breadcrumb li::after {
  content: ">";
  display: inline-block;
  padding: 0 20px;
  color: #25282b;
}

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

  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: 135px;
  }
  /*	mv  SP
  ------------------------------------ */
  #top-mv .mv {
    padding: 60px 10px 0;
  }
  #top-mv .mv-ttl {
    width: 300px;
    height: 120px;
    bottom: 45px;
  }
  #top-mv .mv-txt {
    font-size: 12px;
    left: 10px;
    bottom: 8px;
  }
  #fade {
    min-height: 300px;
  }
  #fade li {
    height: 100%;
  }
  #fade li img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #fade li img {
    border-top: 5px solid #204089;
    border-bottom: 5px solid #204089;
    border-radius: 5px;
  }
  /*	fixed  SP
  ページトップへのリンク
  ------------------------------------ */
  .fixed {
    display: flex;
    width: 100%;
    top: unset;
    bottom: 0;
  }
  .fixed-item01 {
    width: 100%;
    height: 70px;
    padding: 0 70px 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 2px solid #204089;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
  }
  .fixed-box::before {
    display: none;
  }
  .fixed-line {
    width: 35px;
    margin-top: 0;
    margin-left: 25px;
    position: relative;
  }
  .fixed-line::before {
    position: absolute;
    content: "";
  }
  .fixed-line::before {
    width: 1px;
    height: 30px;
    transform: translateY(-50%);
    top: 50%;
    right: -16px;
    background-color: #b7bfc9;
  }
  .fixed-mail {
    width: 35px;
    margin-top: 0;
    margin-left: 35px;
  }
  .fixed-page {
    width: 70px;
    height: 70px;
    margin-top: 0;
    border-right: 2px solid #204089;
    border-bottom: none;
    border-radius: 0 5px 0 0;
  }
  .fixed-page:hover {
    transform: translate(0);
  }
  /*	gnav  SP
  ハンバーガーメニュー、メニュー内のcss
  ------------------------------------ */
  .sp-menu-btn-wrp {
    width: 50px;
    height: 50px;
    padding-top: 16px;
    background-color: #204089;
    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: 60px 15px 30px;
    background: url(/img/top/about-deco-l.png) no-repeat left 200px/25.8vw, url(/img/top/about-deco-r.png) no-repeat right calc(100% - 150px)/25.8vw, url(/img/all/pt01.png) left top;
  }
  #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 #204089;
    padding: 6% 0;
    font-size: clamp(18px, 4.8vw, 36px);
    letter-spacing: 0.1em;
    color: #25282b;
    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 .current {
    color: #204089;
    border-bottom: none !important;
  }
  #footer .container {
    display: block;
    padding-bottom: 30px;
  }
  #footer .logo {
    display: block;
    width: 200px;
    margin: 0 auto;
  }
  #footer .instagram {
    display: block;
    width: 45px;
    margin: 25px auto 0;
  }
  #footer .nav {
    justify-content: center;
    margin-top: 50px;
  }
  #footer .list:nth-of-type(n + 2) {
    margin-left: 45px;
  }
  #footer .copy {
    text-align: center;
    margin-top: 35px;
  }
  #footer .box {
    margin-right: 0;
  }
  #footer .nav {
    width: 100%;
  }
  #footer .nav-btm {
    justify-content: center;
    margin-top: 50px;
  }
  #footer .nav-btm-item:nth-of-type(n + 2) {
    margin-left: 45px;
  }
  #footer .nav-btm-item:nth-of-type(n + 2)::before {
    height: 15px;
    left: -22px;
  }
  /* =========================================
    sub  SP
    下層（サブビジュアル）のcss
  ========================================= */
  /*	sub headline  SP
  ------------------------------------ */
  /* =========================================
    sub  SP
    sv 共通部分
  ========================================= */
  #top-mv .sv {
    border-top: 5px solid #204089;
    border-bottom: 5px solid #204089;
    border-radius: 5px;
    height: 300px;
    min-height: unset;
  }
  #top-mv .sv-ttl {
    width: 320px;
    min-width: unset;
  }
  /*	------- */
}
/*	------- */
/* =========================================
  breakpoint
========================================= */