@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	transition,hover
ホバー時のtransition秒数を統一、ホバーアクション
------------------------------------ */
/*	media-screen
画面サイズごとのcss設定に使用
------------------------------------ */
/*	font
サイト内で使用するフォントを設定
------------------------------------ */
@font-face {
  font-family: "NotoSansJP Black";
  src: url(../fonts/NotoSansJP-Black.ttf);
}
@font-face {
  font-family: "NotoSansJP ExtraBold";
  src: url(../fonts/NotoSansJP-ExtraBold.ttf);
}
@font-face {
  font-family: "NotoSansJP Bold";
  src: url(../fonts/NotoSansJP-Bold.ttf);
}
@font-face {
  font-family: "NotoSansJP SemiBold";
  src: url(../fonts/NotoSansJP-SemiBold.ttf);
}
@font-face {
  font-family: "NotoSansJP Medium";
  src: url(../fonts/NotoSansJP-Medium.ttf);
}
@font-face {
  font-family: "NotoSansJP Regular";
  src: url(../fonts/NotoSansJP-Regular.ttf);
}
@font-face {
  font-family: "NotoSansTC Bold";
  src: url(../fonts/NotoSansTC-Bold.ttf);
}
/*	layout
その他パーツ
------------------------------------ */
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	transition,hover
ホバー時のtransition秒数を統一、ホバーアクション
------------------------------------ */
/*	media-screen
画面サイズごとのcss設定に使用
------------------------------------ */
/*	font
サイト内で使用するフォントを設定
------------------------------------ */
@font-face {
  font-family: "NotoSansJP Black";
  src: url(../fonts/NotoSansJP-Black.ttf);
}
@font-face {
  font-family: "NotoSansJP ExtraBold";
  src: url(../fonts/NotoSansJP-ExtraBold.ttf);
}
@font-face {
  font-family: "NotoSansJP Bold";
  src: url(../fonts/NotoSansJP-Bold.ttf);
}
@font-face {
  font-family: "NotoSansJP SemiBold";
  src: url(../fonts/NotoSansJP-SemiBold.ttf);
}
@font-face {
  font-family: "NotoSansJP Medium";
  src: url(../fonts/NotoSansJP-Medium.ttf);
}
@font-face {
  font-family: "NotoSansJP Regular";
  src: url(../fonts/NotoSansJP-Regular.ttf);
}
@font-face {
  font-family: "NotoSansTC Bold";
  src: url(../fonts/NotoSansTC-Bold.ttf);
}
/*	layout
その他パーツ
------------------------------------ */
/*	font-size
スマホ時にフォントサイズを自動で変更
※13px以下は文字が読めないためPC/SP同じサイズ
------------------------------------ */
/* =========================================
  base  PC
  ページ全体に付与するcss
  header/footer/フォームなど共通箇所
========================================= */
body { /* fontはcom-txtに合わせる */
  width: 100%;
  min-width: 1100px;
  margin: 0 auto;
  color: #2d3335;
  font-family: "NotoSansJP SemiBold", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  position: relative;
}
@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 {
  width: 100%;
}
#header .headline {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  margin-top: 30px;
  padding: 0 2.3vw 0 3.6vw;
}
@media screen and (max-width: 1200px) {
  #header .headline {
    padding: 0 10px;
  }
}
#header .logo {
  display: inline-block;
  transition: all 0.3s ease;
}
#header .logo:hover {
  opacity: 0.7;
}
#header .logo a, #header .logo img {
  display: block;
}
#header .contact-list-item:first-of-type {
  margin-top: 5px;
}
#header .contact-list-item:nth-of-type(n+2) {
  margin-left: 35px;
}
#header #side-menu-toggle-sp {
  display: none;
}
#header #side-menu-toggle-sp:checked ~ .menu-list {
  max-height: 500px;
  opacity: 1;
}
#header .sp-side {
  position: absolute;
  display: none;
  width: 100px;
  top: 60px;
  right: 0;
}
@media screen and (max-width: 767px) {
  #header .sp-side {
    display: block !important;
  }
}
#header .sp-side .toggle-switch {
  height: 35px;
  line-height: 35px;
  padding-left: 5px;
  border-radius: 22px 0 0 22px;
}
#header .sp-side .list-item a {
  width: 100px !important;
  border-radius: 15px 0 0 15px !important;
}

.side-menu {
  position: relative;
  width: 180px;
}
.side-menu .toggle-switch {
  display: block;
  height: 45px;
  line-height: 45px;
  text-align: center;
  padding: 0;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  border-radius: 22px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: transform 0.3s ease;
}
.side-menu .toggle-switch::before {
  display: none;
}
.side-menu .toggle-switch::after {
  display: none !important;
}
.side-menu #side-menu-toggle {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.side-menu #side-menu-toggle:checked ~ .menu-list {
  max-height: 500px;
  opacity: 1;
}
.side-menu .menu-list {
  margin-top: 10px;
  margin-bottom: 10px;
  list-style: none;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.side-menu .menu-list .list-item {
  margin-left: auto;
}
.side-menu .menu-list .list-item:nth-of-type(n+2) {
  margin-top: 10px;
}
.side-menu .menu-list .list-item a {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  width: 130px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  margin-left: auto;
  border-radius: 15px;
  color: #1baada;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .side-menu .menu-list .list-item a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.side-menu .menu-list .list-item a:hover {
  color: #fff;
  background-color: #1baada;
}
.side-menu .menu-list .list-item .font-tc {
  font-family: "NotoSansTC Bold", sans-serif;
}

/*	gnav  PC
ヘッダーナビ（PC時）
------------------------------------ */
#gnav .list-item:nth-of-type(n+2) {
  margin-left: 40px;
}
@media screen and (max-width: 1200px) {
  #gnav .list-item:nth-of-type(n+2) {
    margin-left: 30px;
  }
}
#gnav .list-link {
  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: #1baada;
  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;
  height: 0;
  padding-top: 48.4vw;
  background: url(/img/all/mv.jpg) no-repeat right top/57.2vw;
}
@media screen and (max-width: 1350px) {
  #top-mv .mv {
    background: url(/img/all/mv.jpg) no-repeat right top/63.2vw;
  }
}
@media screen and (max-width: 1080px) {
  #top-mv .mv {
    background: url(/img/all/mv.jpg) no-repeat right top/683px;
    padding-top: 523px;
  }
}
#top-mv .mv-ttl {
  position: absolute;
  font-family: "NotoSansJP Bold", sans-serif;
  font-size: clamp(40px, 3.65vw, 70px);
  width: 30vw;
  min-width: 324px;
  left: 6.8vw;
  bottom: 11vw;
}
@media screen and (max-width: 1350px) {
  #top-mv .mv-ttl {
    left: 3.8vw;
    bottom: 5vw;
  }
}

/*	page-top  PC
page-top リンク
------------------------------------ */
.fixed {
  position: fixed;
  right: 20px;
  bottom: 20px;
  text-align: right;
  z-index: 99;
}
.fixed-contact {
  font-family: "NotoSansJP Bold", sans-serif;
  width: 145px;
  height: 145px;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 30px;
  color: #fff;
  background-color: #1baada;
  border-radius: 50%;
}
.fixed-contact:hover {
  opacity: 0.9;
}
.fixed-txt {
  font-size: 23px;
  font-size: 2.3rem;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .fixed-txt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.fixed #pagetop {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 45px;
  transition: 0.1s all ease-in;
  background-color: #fff;
  border: 1px solid #2d3335;
  border-radius: 50%;
}

/* =========================================
  footer  PC
  フッター
========================================= */
#footer .bg {
  background-color: #2d3335;
}
#footer .inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1250px) {
  #footer .wrap01 {
    margin-left: 25px;
  }
}
#footer .wrap02 {
  margin-left: 16.4vw;
}
@media screen and (max-width: 1350px) {
  #footer .wrap02 {
    margin-left: 0;
  }
}
#footer .link-list {
  margin-top: 50px;
}
#footer .link-list-item:nth-of-type(n+2) {
  margin-left: 30px;
}
#footer .com-tel {
  padding-bottom: 15px;
}
#footer .com-tel-num {
  font-size: 25px;
  font-size: 2.5rem;
  padding-left: 0;
  background: unset;
}
@media screen and (max-width: 767px) {
  #footer .com-tel-num {
    font-size: 20px;
    font-size: 2rem;
  }
}
#footer .instagram img {
  transition: transform 0.3s ease;
}
#footer .instagram img:hover {
  transform: translate(0, -10px);
}
#footer .btn {
  font-family: "NotoSansJP Medium", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  width: 280px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-top: 60px;
  color: #fff;
  background-color: #42484a;
  border: 1px solid #fff;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  #footer .btn {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#footer .nav {
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #footer .nav {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#footer .nav-list {
  width: 165px;
}
#footer .nav-list02 {
  width: 115px;
  margin-left: 35px;
}
#footer .nav-list03 {
  margin-top: 70px;
}
#footer .nav-item:nth-of-type(n+2) {
  margin-top: 25px;
}
#footer .nav-item02 {
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "NotoSansJP Regular", sans-serif;
}
@media screen and (max-width: 767px) {
  #footer .nav-item02 {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .nav-item02:nth-of-type(n+2) {
  margin-left: 55px;
  position: relative;
}
#footer .nav-item02:nth-of-type(n+2)::before {
  position: absolute;
  content: "";
}
#footer .nav-item02:nth-of-type(n+2)::before {
  width: 1px;
  height: 16px;
  transform: translateX(-50%);
  top: 20%;
  left: -30px;
  background-color: #acadae;
}
#footer .nav-link {
  color: #fff;
  display: inline-block;
  position: relative;
  transition: 0.3s;
}
#footer .nav-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: #1baada;
  transition: 0.3s;
}
#footer .nav-link:hover::after {
  width: 100%;
}
#footer .nav-link::after {
  background-color: #fff;
}
#footer .copy {
  font-size: 13px;
  font-size: 1.3rem;
  text-align: right;
  margin-top: 25px;
  color: #fff;
}
#footer .copy-link {
  color: #fff;
}

/* =========================================
  sub  PC
  sv 共通部分
========================================= */
#sv .sv {
  width: 100%;
  height: 620px;
  position: relative;
}
#sv .sv-ttl {
  position: absolute;
  font-family: "NotoSansJP Bold", sans-serif;
  font-size: 50px;
  font-size: 5rem;
  line-height: 1;
  bottom: 11.7vw;
  left: 6vw;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #sv .sv-ttl {
    font-size: 30px;
    font-size: 3rem;
  }
}
#sv .sv-ttl-sm {
  font-size: 25px;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  #sv .sv-ttl-sm {
    font-size: 20px;
    font-size: 2rem;
  }
}

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

/*	breadcrumb  PC
パンくずリスト
------------------------------------ */
.breadcrumb {
  display: flex;
  max-width: 1050px;
  height: 52px;
  align-items: center;
  margin: 25px auto 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: #2d3335;
  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: #2d3335;
}
.breadcrumb li::after {
  content: ">";
  display: inline-block;
  padding: 0 15px;
  color: #2d3335;
}

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

  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 {
    margin-top: 0;
  }
  #header .logo {
    width: 200px;
    padding: 13px 5px;
  }
  /*	mv  SP
  ------------------------------------ */
  #top-mv .mv {
    background: url(/img/all/mv.jpg) no-repeat right top/cover;
    padding-top: 300px;
    margin-bottom: 250px;
  }
  #top-mv .mv-ttl {
    width: 250px;
    font-size: 30px;
    min-width: unset;
    bottom: -200px;
  }
  /*	fixed  SP
  ページトップへのリンク
  ------------------------------------ */
  .fixed {
    display: flex;
    width: 100%;
    bottom: 0;
    right: 0;
  }
  .fixed-item01 {
    flex: 1;
    width: 100%;
  }
  .fixed-contact {
    width: 100%;
    height: 60px;
    margin-right: 0;
    margin-bottom: 0;
    padding-top: 0;
    border-radius: 0;
  }
  .fixed-contact-img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .fixed-contact-box {
    display: flex;
  }
  .fixed-txt {
    font-size: 16px;
    margin-top: 5px;
  }
  .fixed #pagetop {
    margin-left: 0;
    border-radius: 0;
  }
  /*	gnav  SP
  ハンバーガーメニュー、メニュー内のcss
  ------------------------------------ */
  .sp-menu-btn-wrp {
    width: 50px;
    height: 50px;
    padding-top: 16px;
    background-color: #1baada;
    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(6px) translateX(0px) rotate(30deg);
  }
  .sp-menu-btn-wrp .sp-menu-btn.active .bottom {
    bottom: 10px;
    transform: translateY(-1px) translateX(0px) rotate(-30deg);
  }
  #drawer-nav.active {
    z-index: 1001;
  }
  /*	gnav-add  SP
  ------------------------------------ */
  #drawer-nav {
    padding: 15px 15px 30px;
    background: #fff;
  }
  #drawer-nav .current::after {
    display: none;
  }
  #drawer-nav .drawer-logo {
    width: 73%;
    margin-bottom: 15px;
  }
  #drawer-nav .drawer-bg {
    padding: 35px 25px;
    background: url("/img/all/list-deco.png") no-repeat 15px 15px, url("/img/all/list-deco.png") no-repeat calc(100% - 15px) 15px, url("/img/all/list-deco.png") no-repeat 15px calc(100% - 15px), url("/img/all/list-deco.png") no-repeat calc(100% - 15px) calc(100% - 15px), #f3f5f6; /* 右下 */
  }
  #drawer-nav #nav {
    padding: 0;
  }
  #drawer-nav #nav .drawer-link {
    display: block;
    border-color: #ebebeb;
    padding: 6% 0;
    font-size: clamp(18px, 4.8vw, 36px);
    letter-spacing: 0.1em;
    color: #2d3335;
    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 .com-tel-num {
    padding-left: 20px;
    color: #2d3335;
    background: url(/img/all/tel-ico-color.png) no-repeat left 3px/15px;
  }
  .drawer-info #language .language-ttl {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ebebeb;
  }
  .drawer-info #language .language-list {
    justify-content: center;
  }
  .drawer-info #language .language-list-item:nth-of-type(n+2) {
    margin-left: 10px;
  }
  .drawer-info #language .language-list-item a {
    display: block;
    font-size: 15px;
    font-size: 1.5rem;
    width: 110px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    margin-left: auto;
    border-radius: 15px;
    color: #1baada;
    background-color: #fff;
    border: 1px solid #1baada;
  }
  /*	ggmap  SP
  ------------------------------------ */
  /* =========================================
  footer  SP
  ========================================= */
  /* =========================================
    sub  SP
    下層（サブビジュアル）のcss
  ========================================= */
  /*	sub headline  SP
  ------------------------------------ */
  /* =========================================
    sub  SP
    sv 共通部分
  ========================================= */
  /*	------- */
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .drawer-info #language .language-list-item a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .drawer-info #language .language-list-item a:hover {
    color: #fff;
    background-color: #1baada;
  }
  .ggmap {
    padding-top: 250px;
  }
  #footer .inner {
    padding: 50px 15px 100px;
  }
  #footer .container {
    display: block;
  }
  #footer .wrap01 {
    text-align: center;
    margin-left: 0;
  }
  #footer .wrap02 {
    margin-top: 50px;
  }
  #footer .logo {
    width: 200px;
  }
  #footer .link-list {
    justify-content: center;
  }
  #footer .btn {
    width: 250px;
    height: 50px;
    line-height: 50px;
    margin-top: 50px;
  }
  #footer .nav {
    justify-content: center;
  }
  #footer .nav-list02 {
    margin-left: 20px;
  }
  #footer .nav-list03 {
    justify-content: center;
    margin-top: 50px;
  }
  #footer .copy {
    font-size: 12px;
    text-align: center;
  }
  #footer .foo-current {
    color: #fff;
    background-color: #1baada;
  }
  #footer .foo-current::after {
    display: none;
  }
  #sv .sv {
    height: 350px;
  }
  #sv .sv-txt {
    width: 320px;
    height: 80px;
  }
}
/*	------- */
/* =========================================
  breakpoint
========================================= */