@charset "UTF-8";
/* ------------------------
    ヘッダー
------------------------ */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 0 20px 0 35px;
  transition: all .3s ease;
}

.header.js-scroll {
  background-color: rgba(0, 0, 0, 0.8);
}

.header.js-scroll .header__inner {
  height: 80px;
}

.header.js-scroll .header__logo {
  width: 168px;
  margin-right: 50px;
}

.header.js-scroll .global-nav .global-nav__link span {
  padding-top: 5px;
}

.header__inner {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  height: 90px;
  transition: all .3s ease;
}

.header__logo {
  display: block;
  width: 231px;
  height: 52px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  background: url(./img/logo_site.svg) no-repeat center/contain;
  margin-right: 36px;
}

@media screen and (min-width: 1025px) {

  .header__logo:hover {
    opacity: .75;
  }
}

.header .global-nav {
  height: 100%;
}

.header .global-nav__list {
  -js-display: flex;
  display: flex;
  align-items: center;
  height: 100%;
}

.header .global-nav__item {
  position: relative;
  margin-right: 25px;
}

.header .global-nav__link {
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
}

.header .global-nav__link span {
  position: relative;
  display: block;
  font-family: "Roboto", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 22px;
  line-height: 1.2em;
  font-weight: bold;
  padding-top: 20px;
}

.header .global-nav__link span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: scale(0, 1);
  transition: all .5s ease;
  transform-origin: left bottom;
}

.header .global-nav__link .eng {
  position: relative;
  font-family: "Roboto", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 22px;
  line-height: 1.2em;
  font-weight: bold;
}

.header .global-nav__link .eng::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: scale(0, 1);
  transition: all .5s ease;
  transform-origin: left bottom;
}

@media screen and (min-width: 1025px) {
  .header .global-nav__link:hover .eng::after {
    transform: scale(1, 1);
    opacity: 1;
  }
}

.header .global-nav .sub-nav {
  position: absolute;
  top: 100%;
  left: -20px;
  white-space: nowrap;
  background-color: #000000;
  box-shadow: 1px 2px 5px rgba(51, 51, 51, 0.5);
  padding: 12.5px 20px;
  opacity: 0;
  pointer-events: none;
}

.header .global-nav .sub-nav.js-fade {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.5s ease;
}

.header .global-nav .sub-nav__link {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  padding: 7.5px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.0em;
}

.header .global-nav .sub-nav__link span {
  display: none;
}

.header .global-nav .sub-nav__link .eng {
  display: none;
}

.header .global-nav .sub-nav__link .jpn {
  padding: 7.5px 0;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.0em;
}

.header .global-nav .sub-nav__item {
  transition: all 0.5s ease;
}

@media screen and (min-width: 1025px) {
  .header .global-nav .sub-nav__item:hover {
    opacity: .8;
  }
}

@media only screen and (max-width: 1024px) {
  .header__inner {
    height: 75px;
    justify-content: space-between;
  }
  .header.js-scroll .header__inner {
    height: 50px;
  }
  .header.js-scroll .header__logo {
    width: 168px;
    height: 28px;
  }
  .header__logo {
    width: 212px;
    height: 36px;
  }
  .header .global-nav__list {
    display: none;
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
  .header {
    padding-left: 20px;
  }
  .header__logo {
    margin-right: 0;
  }
  .header__inner {
    height: 66px;
  }
}

/* ------------------------
    ドロワーナビ
------------------------ */
.hamburger-nav {
  height: auto;
  border-left: 0 none;
  text-decoration: none;
  color: #ffffff;
}

.hamburger-nav__logo {
  display: block;
  width: 231px;
  height: 52px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  background: url(./img/logo_site.svg) no-repeat center/contain;
  margin: 19px 20px 0 35px;
}

@media screen and (min-width: 1025px) {
  .hamburger-nav__logo:hover {
    opacity: .75;
  }
}

.hamburger-nav__inner {
  margin: 0 auto;
}

.hamburger-nav__list {
  padding: 105px 15px 0;
  margin: 60px auto 0;
}

.hamburger-nav__item {
  position: relative;
  padding: 10px 0;
  width: 450px;
  max-width: 100%;
  margin: 0 auto;
}

.hamburger-nav__link {
  text-decoration: none;
  color: #ffffff;
  font-weight: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  padding: 0;
  color: #ffffff;
  font-size: 20px;
  -js-display: flex;
  display: flex;
  justify-content: center;
}

.hamburger-nav__nolink {
  text-decoration: none;
  color: #ffffff;
  font-weight: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  padding: 0;
  color: #ffffff;
  font-size: 20px;
  -js-display: flex;
  display: flex;
  justify-content: center;
}

.hamburger-nav .sub-nav__link {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.0em;
  color: #ffffff;
  font-size: 16px;
  -js-display: flex;
  display: flex;
  justify-content: center;
  padding: 0;
}

.hamburger-nav__item:nth-of-type(4) .hamburger-nav__link .eng {
  margin-left: 0;
}

.hamburger-nav__link {
  padding: 0;
  color: #ffffff;
  font-size: 20px;
  -js-display: flex;
  display: flex;
  justify-content: space-between;
  padding-bottom: 5px;
  position: relative;
}
.hamburger-nav__link ::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.hamburger-nav__nolink {
  padding: 0;
  color: #ffffff;
  font-size: 20px;
  -js-display: flex;
  display: flex;
  justify-content: space-between;
  padding-bottom: 5px;
  position: relative;
}
.hamburger-nav__nolink ::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (min-width: 1025px) {
  .hamburger-nav__link:hover ::after  {
    height: 3px;
  }
}

.hamburger-nav__link .eng {
  width: auto;
  text-align: left;
  font-size: 40px;
  line-height: 53px;
}

.hamburger-nav__link .eng::after {
  display: none;
}

.hamburger-nav__link .jpn {
  text-align: right;
  font-size: 16px;
  line-height: 53px;
  margin-left: 0;
  white-space: nowrap;
}
.hamburger-nav__nolink .eng {
  width: auto;
  text-align: left;
  font-size: 40px;
  line-height: 53px;
}

.hamburger-nav__nolink .eng::after {
  display: none;
}

.hamburger-nav__nolink .jpn {
  text-align: right;
  font-size: 16px;
  line-height: 53px;
  margin-left: 0;
  white-space: nowrap;
}

.hamburger-nav .sub-nav {
  padding-top: 0;
}

.hamburger-nav .sub-nav__item {
  padding: 17px 0 5px;
}

.hamburger-nav .sub-nav__item:nth-of-type(2) .sub-nav__link .eng, .hamburger-nav .sub-nav__item:nth-of-type(3) .sub-nav__link .eng, .hamburger-nav .sub-nav__item:nth-of-type(4) .sub-nav__link .eng {
  margin-left: 0;
}

.hamburger-nav .sub-nav__link {
  padding: 0;
  color: #ffffff;
  font-size: 16px;
  -js-display: flex;
  display: flex;
  justify-content: space-between;
  padding-bottom: 5px;
  position: relative;
}
.hamburger-nav .sub-nav__link ::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 1025px) {
  .hamburger-nav .sub-nav__link:hover ::after  {
    height: 3px;
  }
}


.hamburger-nav .sub-nav__link .eng {
  text-align: left;
  font-size: 25px;
  margin-right: 0;
  line-height: 33px;
}
.hamburger-nav .sub-nav__link .jpn {
  text-align: right;
  padding: 0;
  line-height: 33px;
  margin-left: 0;
  white-space: nowrap;
}

@media only screen and (max-width: 1024px) {
  .hamburger-nav__logo {
    width: 212px;
    height: 36px;
  }
}

@media only screen and (max-width: 767px) {
  .hamburger-nav__logo {
    margin: 15px 20px 0;
  }
  .hamburger-nav__item {
    padding: 10px 0 5px;
    width: 100%;
  }
  .hamburger-nav__item:nth-of-type(4) .hamburger-nav__link .eng {
    margin-left: 0;
  }
  .hamburger-nav__link {
    padding: 0;
    color: #ffffff;
    font-size: 20px;
    -js-display: flex;
    display: flex;
    justify-content: space-between;
    padding-bottom: 5px;
  }
  .hamburger-nav__nolink {
    padding: 0;
    color: #ffffff;
    font-size: 20px;
    -js-display: flex;
    display: flex;
    justify-content: space-between;
    padding-bottom: 5px;
  }
  .hamburger-nav__link .eng {
    width: auto;
    text-align: left;
    font-size: 30px;
    line-height: 53px;
  }
  .hamburger-nav__link .eng::after {
    display: none;
  }
  .hamburger-nav__link .jpn {
    text-align: right;
    font-size: 16px;
    line-height: 53px;
    margin-left: 0;
    white-space: nowrap;
  }
  .hamburger-nav__nolink .eng {
    width: auto;
    text-align: left;
    font-size: 30px;
    line-height: 53px;
  }
  .hamburger-nav__nolink .eng::after {
    display: none;
  }
  .hamburger-nav__link .jpn {
    text-align: right;
    font-size: 16px;
    line-height: 53px;
    margin-left: 0;
    white-space: nowrap;
  }
  .hamburger-nav .sub-nav {
    padding-top: 0;
  }
  .hamburger-nav .sub-nav__item {
    padding: 17px 0 5px;
  }
  
  .hamburger-nav .sub-nav__item:hover {
    opacity: 1;
  }
  .hamburger-nav .sub-nav__item:nth-of-type(2) .sub-nav__link .eng, .hamburger-nav .sub-nav__item:nth-of-type(3) .sub-nav__link .eng, .hamburger-nav .sub-nav__item:nth-of-type(4) .sub-nav__link .eng {
    margin-left: 0;
  }
  .hamburger-nav .sub-nav__link {
    color: #ffffff;
    font-size: 16px;
    -js-display: flex;
    display: flex;
    justify-content: space-between;
    padding: 0;
  }
  .hamburger-nav .sub-nav__link .eng {
    text-align: left;
    font-size: 25px;
    margin-right: 0;
    line-height: 33px;
  }
  .hamburger-nav .sub-nav__link .eng::after {
    display: none;
  }
  .hamburger-nav .sub-nav__link .jpn {
    text-align: right;
    padding: 0;
    line-height: 33px;
    margin-left: 0;
    white-space: nowrap;
  }
  .hamburger-nav .sub-nav__link::after {
    width: 15px;
    height: 1px;
    background-color: #ffffff;
    bottom: auto;
    top: calc(50% - 0.5px);
    left: 10px;
    transform: scale(1);
  }
}

.drawer.drawer--top .drawer-hamburger {
  display: block;
  position: relative;
  box-sizing: border-box;
  width: 72px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  padding: 0 10px 0 13px;
  overflow: visible;
  margin-left: auto;
}

.drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon {
  height: 3px;
  background-color: #ffffff;
  margin: 0;
  width: 100%;
}

.drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::before, .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::after {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
}

.drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::before {
  top: -11px;
}

.drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::after {
  width: calc(100% - 15px);
  top: 11px;
}

.drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon .line {
  width: 7px;
  height: 3px;
  background-color: #ffffff;
  position: absolute;
  left: -13px;
  top: 50%;
  transform: translateY(-50%);
}

.drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon .line::before, .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon .line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  left: 0;
}

.drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon .line::before {
  top: -11px;
}

.drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon .line::after {
  content: "";
  top: 11px;
}

.drawer.drawer--top .drawer-nav {
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.drawer.drawer--top .drawer-menu {
  margin: 70px auto 0;
  width: 600px;
}

.drawer.drawer--top.drawer-open .drawer-toggle {
  left: auto;
}

.drawer.drawer--top.drawer-open .drawer-toggle::after {
  opacity: 1;
}

.drawer.drawer--top.drawer-open .drawer-toggle .drawer-hamburger-icon {
  background: transparent;
}

.drawer.drawer--top.drawer-open .drawer-toggle .drawer-hamburger-icon::before, .drawer.drawer--top.drawer-open .drawer-toggle .drawer-hamburger-icon::after {
  top: 0;
  left: -10px;
  background: none;
  background-color: #ffffff;
  width: calc(100% + 8px);
}

.drawer.drawer--top.drawer-open .drawer-toggle .drawer-hamburger-icon::before {
  transform: rotate(30deg);
}

.drawer.drawer--top.drawer-open .drawer-toggle .drawer-hamburger-icon::after {
  transform: rotate(-30deg);
}

.drawer.drawer--top.drawer-open .drawer-toggle .drawer-hamburger-icon .line {
  background: transparent;
}

.drawer.drawer--top.drawer-open .drawer-toggle .drawer-hamburger-icon .line::before, .drawer.drawer--top.drawer-open .drawer-toggle .drawer-hamburger-icon .line::after {
  background: transparent;
}

.drawer.drawer--top.drawer-open .drawer-nav {
  pointer-events: auto;
  animation: opacity .5s ease forwards;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #000000;
}

.drawer.drawer--top.drawer-open .drawer-overlay {
  background-color: #000000;
}

.drawer--right.drawer-open .drawer-nav {
  top: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

@media only screen and (max-width: 1024px) {
  .drawer.drawer--top .drawer-hamburger {
    padding-top: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .drawer.drawer--top .drawer-hamburger {
    width: 47px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    padding: 7px 0 0 20px;
    overflow: visible;
  }
  .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon {
    height: 2px;
  }
  .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::before, .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::after {
    height: 2px;
  }
  .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::before {
    top: -11px;
  }
  .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::after {
    width: calc(100% - 15px);
    top: 11px;
  }
  .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon .line {
    width: 4px;
    height: 2px;
    left: -10px;
  }
  .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon .line::before, .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon .line::after {
    content: "";
    height: 2px;
  }
  .drawer.drawer--top .drawer-menu {
    margin: 85px auto 0;
    padding: 0 35px;
    width: 100%;
  }
}

/* ------------------------
    フッター
------------------------ */
#page-index .footer {
  margin-top: 0;
}

.footer {
  position: relative;
  margin-top: 110px;
  background-color: #000000;
  padding: 72px 0 20px;
  color: #ffffff;
  font-size: 1.4rem;
  z-index: 1;
}

.footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  -js-display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer__logo {
  display: block;
  width: 299px;
  height: 50px;
}

@media screen and (min-width: 1025px) {
  .footer__logo:hover {
    opacity: .75;
  }
}

.footer-contact {
  margin: 43px -20px 0;
  -js-display: flex;
  display: flex;
}

.footer-contact__item {
  width: 330px;
  max-width: 100%;
  margin: 0 20px auto;
}

.footer-contact__item .department {
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #838383;
  padding: 7px 0 10px;
  line-height: 20px;
  font-weight: 600;
}

.footer-contact__item .jobtype {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.footer-contact__item .address {
  margin-top: 13px;
}

.footer-contact__item .address a {
  text-decoration: none;
  color: #ffffff;
  margin-right: 15px;
  pointer-events: none;
}

.footer__copy {
  margin-top: 35px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .footer {
    padding: 30px 0 15px;
  }
  .footer__logo {
    width: 211px;
    height: 36px;
  }
  .footer-contact {
    margin: 15px auto 0;
    display: block;
  }
  .footer-contact__item {
    display: block;
    margin: 12px auto 0;
    width: 100%;
    max-width: none;
  }
  .footer-contact__item .department {
    width: 100%;
  }
  .footer-contact__item .address {
    margin: 10px 0 0;
    line-height: 25px;
  }
  .footer-contact__item .address a {
    pointer-events: auto;
  }
}

/* ------------------------
    トップページ
------------------------ */
.index-hero {
  width: 100%;
  height: 100vh;
}

.index-hero__image {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 0;
}

.index-hero__image figure {
  height: 100%;
}

.index-hero__image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.5s ease-out;
  z-index: 1;
}

.index-hero__image.invert::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: background-color 0.5s ease-out;
  z-index: 1;
}

.index-hero__image .hero-image {
  height: 100%;
}

.index-hero__inner {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 63%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  -js-display: inline-flex;
  display: inline-flex;
  flex-direction: column;
}

.index-hero__inner p {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-align: justify;
}

.index-hero__inner .hero-title {
  color: #ffffff;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  -js-display: inline-flex;
  display: inline-flex;
  line-height: 1.0;
}

.index-hero__inner .title-main {
  font-size: 63px;
  font-weight: 600;
  letter-spacing: .2em;
  line-height: 80px;
  white-space: nowrap;
}

.index-hero__inner .caption {
  padding-left: 0.4em;
  display: inline-block;
}


@media only screen and (max-width: 1024px) {
  .index-hero__inner .caption {
    font-size: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .index-hero__inner .title-main{
    font-size: 40px;
    line-height: 50px;
    letter-spacing: .1em;
  }
  .index-hero__inner .caption {
    font-size: 15px;
    line-height: 26px;
    padding-left: 0.2em;
  }
}

.top-business {
  position: relative;
  color: #ffffff;
  margin: 80px auto 0;
}

.top-business__inner {
  width: 1160px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.top-business__content {
  margin: 80px auto 0;
}

.top-business__content .image {
  width: 100vw;
  height: 530px;
  margin: 0 calc(50% - 50vw);
}

.top-business__content .image figure {
  width: 63.1%;
  height: 100%;
}

.top-business__content .text {
  display: block;
  position: relative;
  margin-top: -300px;
  width: 455px;
  max-width: 100%;
  background-color: #000000;
  padding: 45px 50px 50px;
  color: #ffffff;
  text-decoration: none;
}

.top-business__content .text .link-cmn-01 {
  margin-top: 30px;
  text-align: left;
}

@media screen and (min-width: 1025px) {
  .top-business__content .text:hover {
    outline: 1px solid #ffffff;
  }

  .top-business__content .text:hover .link-cmn-01 span {
    background-color: #ffffff;
  }

  .top-business__content .text:hover .link-cmn-01 span::before,
  .top-business__content .text:hover .link-cmn-01 span::after {
    background: #333333;
  }
}

.top-business__content .text .title {
  margin-top: 5px;
  font-size: 25px;
  font-weight: 600;
  border-bottom: 1px solid #ffffff;
}

.top-business__content .text .description {
  margin-top: 15px;
}

.top-business__content:nth-of-type(odd) .image figure {
  margin-left: auto;
}

.top-business__content:nth-of-type(even) .image figure {
  margin-right: auto;
}

.top-business__content:nth-of-type(even) .text {
  margin-left: auto;
}

@media only screen and (max-width: 767px) {
  .top-business__content {
    margin: 50px auto 0;
  }
  .top-business__content .image {
    height: 75%;
  }
  .top-business__content .image figure {
    width: calc(100vw - 25px);
    height: 100%;
  }
  .top-business__content .text {
    width: calc(100vw - 20px);
    max-width: 450px;
    padding: 25px 25px 30px;
  }
  .top-business__content .text .title {
    font-size: 24px;
  }
  .top-business__content:nth-of-type(odd) .text {
    margin: -20px auto 0 calc(50% - 50vw - 5px);
  }
  .top-business__content:nth-of-type(even) .text {
    margin: -20px calc(50% - 50vw - 5px) 0 auto;
  }
}

.top-area {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 45px auto 0;
  height: 950px;
  padding-top: 105px;
}

.top-area__inner {
  margin: 0 auto;
  width: 100%;
  background-color: #000000;
  position: absolute;
  top: 104px;
  padding-top: 80px;
}

.top-area__content {
  width: 1160px;
  max-width: 100%;
  height: 846px;
  z-index: 1;
  margin: 0 auto;
  padding: 0 20px;
}

.top-area__content p {
  width: 550px;
  max-width: 100%;
  color: #ffffff;
  margin-top: 30px;
}

.top-area__content .lead {
  margin-top: 0;
}

.top-area__image {
  position: absolute;
  top: 0;
  overflow: hidden;
  width: 100%;
}

.top-area__image figure {
  width: 1690px;
  max-width: 100%;
  height: 1165px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .top-area {
    margin: 80px auto 0;
    height: 750px;
    padding-top: 0;
  }
  .top-area__inner {
    top: 0;
    padding-top: 45px;
  }
  .top-area__content p {
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .top-area__image {
    top: 18%;
    left: -12%;
    width: 150vw;
  }
  .top-area__image figure {
    height: 800px;
    margin: 0 auto;
  }
}

.top-about {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 100px;
  background-color: #222;
}

.top-about__inner {
  width: 1160px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  -js-display: flex;
  display: flex;
}

.top-about__text {
  width: 50%;
  padding-right: 20px;
}

.top-about__text .link-cmn-01 {
  margin-top: 40px;
}

.top-about__image {
  width: 50%;
  margin: auto;
}

.top-about__image .grid-cmn .col {
  margin-top: 10px;
}

.top-about__image .link-cmn-01 {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .top-about {
    padding: 35px 0 50px;
  }
  .top-about__inner {
    display: block;
  }
  .top-about__text {
    width: 100%;
    padding-right: 0;
  }
  .top-about__text .link-cmn-01 {
    display: none;
  }
  .top-about__image {
    margin: 30px auto 0;
    width: 550px;
    max-width: 100%;
  }
  .top-about__image .grid-cmn .col {
    margin-top: 10px;
  }
  .top-about__image .link-cmn-01 {
    display: inline-block;
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .top-about__text {
    width: 100%;
    padding-right: 0;
  }
  .top-about__text .link-cmn-01 {
    display: none;
  }
  .top-about__image {
    margin: 15px auto 0;
  }
  .top-about__image .grid-cmn .col {
    margin-top: 10px;
  }
  .top-about__image .grid-cmn figure {
    margin: 0 auto;
    text-align: center;
    width: 68%;
    min-width: 255px;
  }
  .top-about__image .link-cmn-01 {
    display: inline-block;
    margin-top: 40px;
  }
}

.top-links {
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.top-links__inner {
  width: 100%;
  -js-display: flex;
  display: flex;
  position: relative;
}

.top-links__inner a {
  display: block;
  width: 50%;
  text-decoration: none;
  position: relative;
}

.top-links__inner a > div {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25%;
  width: 312px;
  height: 225px;
  background: rgba(51, 51, 51, 0.85);
  padding: 40px 40px 44px;
}

.top-links__inner a > div h4 {
  font-family: "Roboto", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 35px;
  line-height: 46px;
  font-weight: bold;
  color: #ffffff;
}

.top-links__inner a > div h4 span {
  display: block;
  line-height: 31px;
  font-size: 18px;
  font-weight: 600;
}

.top-links__inner a > div .link-cmn-01 {
  margin-top: 35px;
}

@media screen and (min-width: 1025px) {
  .top-links__inner a:hover .link-cmn-01 span {
    background-color: #ffffff;
  }
  .top-links__inner a:hover .link-cmn-01 span::before,
  .top-links__inner a:hover .link-cmn-01 span::after {
    background: #333333;
  }
}

.top-links__inner figure {
  width: 100%;
}

.top-links__inner figure img {
  object-position: top;
}

@media only screen and (max-width: 1200px) {
  .top-links__inner a > div {
    left: 40px;
    width: 270px;
  }
}

@media only screen and (max-width: 1024px) {
  .top-links__inner a > div {
    left: 20px;
    width: auto;
    height: auto;
    padding: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .top-links__inner {
    display: block;
  }
  .top-links__inner a {
    width: 100%;
  }
  .top-links__inner a > div {
    left: 0;
    width: 240px;
    height: 163px;
    background: rgba(51, 51, 51, 0.85);
    padding: 15px 22px 20px;
  }
  .top-links__inner a > div .link-cmn-01 {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 374px) {
  .top-links__inner a > div {
    left: 0;
    width: 200px;
    padding: 15px 15px 20px;
  }
  .top-links__inner a > div h4 {
    font-size: 30px;
  }
}

.top-contact {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 93px 0 100px;
  background-color: #222;
}

.top-contact__inner {
  width: 1160px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  color: #ffffff;
}

.top-contact__inner p {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
}

.top-contact-ttl {
  -js-display: inline-flex;
  display: inline-flex;
}

.top-contact-ttl h2, .top-contact-ttl p {
  display: inline-block;
}

.top-contact-ttl p {
  line-height: 80px;
  margin-left: 20px;
}

.top-contact__content {
  margin: 25px auto 0;
  -js-display: inline-flex;
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
}

.top-contact__item {
  width: 50%;
  position: relative;
}

.top-contact__item .type {
  line-height: 31px;
}

.top-contact__item .type::after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #ffffff;
  display: block;
}

.top-contact__item .hour {
  font-size: 15px;
  line-height: 26px;
}

.top-contact__item:first-child {
  margin-right: 80px;
}

.top-contact__item img {
  margin-top: 20px;
  max-width: 350px;
  margin-left: -3px;
}


.top-contact__item a {
  text-decoration: none;
  font-family: "Roboto", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
  line-height: 79px;
  margin-top: 10px;
  display: inline-block;
  white-space: nowrap;
}

.top-contact__item .tel {
  pointer-events: none;
  font-size: 36px;
  line-height: 1.5;
  margin-bottom: 10px;
  margin-top: 0;  
}

@media only screen and (max-width: 1200px) {
  .top-contact__content {
    justify-content: flex-start;
  }
  .top-contact__item {
    width: 100%;
  }
  .top-contact__item a {
    font-size: 52px;
  }
  .top-contact__item .tel {
    pointer-events: auto;
  }
}

@media only screen and (max-width: 1024px) {
  .top-contact {
    padding: 50px 0 100px;
  }
  .top-contact__inner {
    text-align: center;
  }
  .top-contact__container {
    -js-display: inline-flex;
    display: inline-flex;
    flex-direction: column;
  }
  .top-contact-ttl {
    flex-direction: column;
  }
  .top-contact-ttl p {
    line-height: 2;
    margin-left: 0;
    text-align: left;
  }
  .top-contact__content {
    margin: 50px auto 0;
    flex-direction: column;
  }
  .top-contact__item {
    margin-top: 40px;
    -js-display: inline-flex;
    display: inline-flex;
    flex-direction: column;
  }
  .top-contact__item:first-child {
    margin: 0;
  }
  .top-contact__item p {
    text-align: left;
  }
  .top-contact__item a {
    font-size: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .top-contact {
    padding: 45px 0 54px;
  }
  .top-contact-ttl p {
    margin-top: 15px;
  }
  .top-contact__content {
    margin-top: 40px;
  }
  .top-contact__item a {
    width: 100%;
    pointer-events: auto;
    font-size: clamp(39px, 8vw, 60px);
    line-height: 52px;
  }
}

@media only screen and (max-width: 374px) {
  .top-contact__item a {
    font-size: 32px;
    text-align: left;
  }
}

/* ------------------------
    下層タイトル
------------------------ */

.under-title {
  position: relative;
}

.under-title-bg {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 390px;
  background-color: #000000;
}

.under-title-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.under-title-inner {
  position: absolute;
  top: 210px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  line-height: 50px;
}

.under-title-en {
  color: #ffffff;
  font-family: "Roboto", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 60px;
  font-weight: bold;
}

.under-title-jp {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
}

.under-title-en-bsiness {
  color: #ffffff;
  font-family: "Roboto", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 25px;
  font-weight: bold;
}

.under-title-jp-bsiness {
  color: #ffffff;
  font-size: 50px;
  font-weight: 600;
}



@media only screen and (max-width: 767px){
  .under-title-bg {
    height: 240px;
  }
  .under-title-inner {
    top: 140px;
    line-height: 35px;
    width: 100%;
  }
  .under-title-en {
    font-size: 40px;
  }
  .under-title-jp {
    font-size: 17px;
  }
  .under-title-en-bsiness {
    font-size: 18px;
  }
  .under-title-jp-bsiness {
    font-size: 30px;
  }
  
}


/* ------------------------
    下層コンテンツ
------------------------ */

.under-contents {
  margin: 85px auto;
  width: 930px;
}

.under-lead-copy {
  max-width: 740px;
  margin: auto;
  font-size: 17px;
  font-weight: 600;
  line-height: 250%;
}

@media only screen and (max-width: 1024px) {
  .under-contents {
    margin: 40px auto;
    width: 90%;
  }
  .under-lead-copy {
    font-size: 16px;
    line-height: 200%;
  }
}


.under-about__image {
  margin: 50px auto 0;
  width: 550px;
  max-width: 100%;
}

.under-about__image .grid-cmn .col {
  margin-top: 10px;
}

.under-about__image .link-cmn-01 {
  display: inline-block;
  margin-top: 40px;
}


@media only screen and (max-width: 767px) {
  .under-about__image {
    margin: 15px auto 0;
  }
  .under-about__image .grid-cmn .col {
    margin-top: 10px;
  }
  .under-about__image .grid-cmn figure {
    margin: 0 auto;
    text-align: center;
    width: 68%;
    min-width: 255px;
  }
  .under-about__image .link-cmn-01 {
    display: inline-block;
    margin-top: 40px;
  }
}

.under-h2 {
  margin: 80px auto 20px;
  font-size: 30px;
  position: relative;
  text-align: center;
}

.under-h2::after {
  content: "";
  background-image: url(./img/under-h2-accent.svg);
  position: absolute;
  width: 25px;
  height: 7px;
  display: block;
  left: 50%;
  transform: translateX(-50%);
}

.under-content-maintext {
  margin-top: 50px;
}

table {
  width: 100%;
}

th,td {
  padding: 15px;
}

.table-about th,.table-about td {
  border-top: solid 1px #cdcdcd;
  border-bottom: solid 1px #cdcdcd;
  margin-top: -1px;
  text-align: left;
}

.table-about th {
  background-color: #000000;
  width: 25%;
}

@media only screen and (max-width: 767px) {
  th,td {
    padding: 10px;
  }
  .table-about th {
    margin: -1px;
    border-top: solid 1px #cdcdcd;
    border-bottom: none;
    display: block;
  }
  .table-about td {
    border-top: none;
    border-bottom: solid 1px #cdcdcd;
    display: block;
  }
  .table-about th {
    width: 100%;
  }
}

.table-equipment {
  max-width: 740px;
}

.table-equipment th,.table-equipment td {
  border-top: solid 1px #cdcdcd;
  border-bottom: solid 1px #cdcdcd;
  margin-top: -1px;
}

.table-equipment th {
  background-color: #000000;
  width: 80%;
}
.table-equipment td {
text-align: right;}


.greeting-signature {
  max-width: 740px;
  margin: 50px auto;
  text-align: right;
}

.greeting-name {
  font-size: 25px;
  margin-left: 20px;
}

.contact-info {
  margin-top: 80px;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  padding: 15px;
}

@media only screen and (max-width: 767px) {
  .contact-info {
    margin-top: 40px;
    font-size: 18px;
  }
}

.under-contact {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 30px 0 100px;
  background-color: #222;
}

.under-contact__inner {
  width: 1160px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  color: #ffffff;
}

.under-contact__inner p {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
}

.under-contact-ttl {
  -js-display: inline-flex;
  display: inline-flex;
}

.under-contact-ttl h2, .under-contact-ttl p {
  display: inline-block;
}

.under-contact-ttl p {
  line-height: 80px;
  margin-left: 20px;
}

.under-contact__content {
  margin: 25px auto 0;
  -js-display: inline-flex;
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
}

.under-contact__item {
  width: 50%;
}

.under-contact__item .type {
  line-height: 31px;
}

.under-contact__item .type::after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #ffffff;
  display: block;
}

.under-contact__item .hour {
  font-size: 15px;
  line-height: 26px;
}

.under-contact__item:first-child {
  margin-right: 80px;
}

.under-contact__item img {
  margin-top: 20px;
}

.under-contact__item a {
  text-decoration: none;
  font-family: "Roboto", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 60px;
  font-weight: bold;
  color: #ffffff;
  line-height: 79px;
  margin-top: 10px;
  display: inline-block;
}

.under-contact__item .tel {
  pointer-events: none;
  text-align: left;
}

@media only screen and (max-width: 1200px) {
  .under-contact__content {
    justify-content: flex-start;
  }
  .under-contact__item {
    width: 100%;
  }
  .under-contact__item a {
    font-size: 52px;
  }
  .under-contact__item .tel {
    pointer-events: auto;
  }
}

@media only screen and (max-width: 1024px) {
  .under-contact {
    padding: 50px 0 100px;
  }
  .under-contact__inner {
    text-align: center;
  }
  .under-contact__container {
    -js-display: inline-flex;
    display: inline-flex;
    flex-direction: column;
  }
  .under-contact-ttl {
    flex-direction: column;
  }
  .under-contact-ttl p {
    line-height: 2;
    margin-left: 0;
    text-align: left;
  }
  .under-contact__content {
    margin: 50px auto 0;
    flex-direction: column;
  }
  .under-contact__item {
    margin-top: 40px;
    -js-display: inline-flex;
    display: inline-flex;
    flex-direction: column;
  }
  .under-contact__item:first-child {
    margin: 0;
  }
  .under-contact__item p {
    text-align: left;
  }
  .under-contact__item a {
    font-size: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .under-contact {
    padding: 0 0 54px;
  }
  .under-contact-ttl p {
    margin-top: 15px;
  }
  .under-contact__content {
    margin-top: 40px;
  }
  .under-contact__item a {
    width: 100%;
    pointer-events: auto;
    font-size: clamp(39px, 8vw, 60px);
    line-height: 52px;
  }
}

@media only screen and (max-width: 374px) {
  .under-contact__item a {
    font-size: 32px;
    text-align: left;
  }
}

.btn-under-contents {
  padding: 10px;
  margin: 40px auto;
  font-size: 18px;
  font-weight: 600;
  width: 360px;
  border: solid 2px #ffffff;
  text-align: center;
}

.btn-under-contents a {
  color: #ffffff;
  text-decoration: none;
  display: block;
}

@media screen and (min-width: 1025px) {
  .btn-under-contents:hover {
    background-color: #ffffff;
    color: #222;
  }
  .btn-under-contents a:hover {
    color: #222;
  }
}

@media only screen and (max-width: 767px) {
  .btn-under-contents {
    width: 100%;
  }
}


.business-image {
  display: inline-flex;
  max-width: 1120px;
  margin: -30 auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 767px) {
  .business-image {
    display: inline-flex;
    flex-wrap: wrap;
    padding: 20px 0;
  }
  .business-image figure {
    width: 50%;
    margin-top: -10px;
  }
}

.business-info {
  width: 100%;
  margin: 20px auto;
  font-size: 20px;
  font-weight: 600;
  line-height: 200%;
  display: flex;
  align-items: flex-start;
}

.info-dismantling {
  max-width: 740px;
}


.businessinfo-info-tit {
  font-size: 15px;
  width: 158px;
  background-color: #ffffff;
  color: #222;
  text-align: center;
  position: relative;
  margin-right: 30px;
}

.businessinfo-info-tit::after {
  content: "";
  width: 12px;
  height: 14px;
  position: absolute;
  background-image: url(./img/arrow-right.svg);
  background-size: cover;
  left: 100%;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
}
.business-info p {
  width: calc(100% - 188px);
}

@media only screen and (max-width: 767px) {
  .business-info {
    display: block;
  }
  
  .businessinfo-info-tit {
    margin: auto ;
    margin-bottom: 20px;
  }
  .businessinfo-info-tit::after {
    width: 14px;
    height: 12px;
    background-image: url(./img/arrow-bottom.svg);
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
  }
  .business-info p {
    width: 100%;
  }
  
}

.permission {
  display: flex;
  max-width: 740px;
  margin: 30px auto;
}

@media only screen and (max-width: 767px) {
  .permission {
    display: block;
  }
}


.tit-h2-accent {
  font-weight: 600;
  font-size: 25px;
  width: 100%;
  margin: auto;
  margin-top: 70px;
}

.tit-h2-accent::after {
  content: "";
  background-color: #ffffff;
  height: 2px;
  width: 100%;
  display: block;
  margin-bottom: 40px;
}

.excellent-area {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: auto;
}

.excellent-area p {
  width: 55%;
}

.excellent-area img {
  display: block;
  width: 40%;
}

@media only screen and (max-width: 767px) {
  .tit-h2-accent {
    font-size: 23px;
    margin-top: 40px;
  }
  .excellent-area {
    display: block;
    width: 100%;
  }
  .excellent-area p {
    width: 100%;
  }
  .excellent-area img {
    display: block;
    width: 80%;
    margin: 30px auto;
  }
}

/* ------------------------
    モーダル
------------------------ */

.modal {
  display: none;
  position: fixed;
  z-index: 8887;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 1s ease-in-out;
}

.modal-content {
  color: #222;
  background-color: #ffffff;
  padding: 60px 50px;
  width: 97%;
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  animation: show 0.6s linear 0s;
}

.modal-nomal {
  max-width: 1100px;
}

.modal-special {
  max-width: 700px;
}

.modal-top {
  display: inline-block;
  position: absolute;
  right: 20px;
  top: -10px;
}

.close-cross {
  font-family: "Roboto", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 50px;
  font-weight: 100;
}

.btn-modal-close {
  margin: 50px auto;
  font-size: 15px;
  font-weight: 600;
  padding: 15px;
  width: 250px;
  text-align: center;
  border: solid 2px #333;
}

@media screen and (min-width: 1025px) {
  .btn-modal-close:hover {
    color: #ffffff;
    background-color: #333;
  }
}

@media only screen and (max-width: 767px) {
  .modal-content {
    padding: 50px 10px;
    width: 97%;
    top: 5%;
  }
  .modal-top {
    right: 10px;
    top: -20px;
  }
  .modal-close {
    font-size: 40px;
  }
}


/* ------------------------
    モーダル内
------------------------ */

.modal-tit {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 40px;
}

.modal-container-table{
  margin-bottom: 40px; 
}

.scroll table{
  width:100%;
  }
  .scroll{
  overflow: auto;/*tableをスクロールさせる*/
  white-space: nowrap;/*tableのセル内にある文字の折り返しを禁止*/
  }
  .scroll::-webkit-scrollbar{/*tableにスクロールバーを追加*/
   height: 5px;
  }
  .scroll::-webkit-scrollbar-track{/*tableにスクロールバーを追加*/
   background: #F1F1F1;
  }
  .scroll::-webkit-scrollbar-thumb {/*tableにスクロールバーを追加*/
   background: #BCBCBC;
  }

@media only screen and (max-width: 767px) {
  .modal-tit {
    font-size: 18px;
  }
  .modal-container-table{
    margin-bottom: 40px;
  }
}

/* ------------------------
    モーダル内　テーブル普通産廃
------------------------ */

.permission-nomal-table {
  border-collapse: collapse;
  border-spacing: 0;
  white-space: nowrap;
}

.permission-nomal-table th,.permission-nomal-table td{
border: solid 1px #c6c6c6;
padding: 12px;
text-align: center;
}

.permission-nomal-table th {
  background-color: #333;
  color: #ffffff;
  vertical-align: bottom;
  height: 260px;
}

.permission-nomal-table th:first-child,.permission-nomal-table td:first-child {
  width: 92px;
}

.permission-nomal-table th:nth-child(2),.permission-nomal-table td:nth-child(2) {
  width: 143px;
}

.vertical-txt {
  line-height: 1em;
  writing-mode: vertical-lr;
  text-align: right;
  min-height: 250px;
}

.permission-nomal-table th:nth-child(n+3) {
  line-height: 1.4em;
  writing-mode: vertical-lr;
  text-align: right;
}

.permission-nomal-table td {
  background-color: #ffffff;
}

.permission-nomal-table td:first-child {
  font-weight: 600;
}

.permission-nomal-table tr:nth-child(odd) td {
  background-color: #F2F2F2;
}

/* ------------------------
    モーダル内　テーブル特別産廃
------------------------ */

.permission-specail-table {
  border-collapse: collapse;
  border-spacing: 0;
  white-space: nowrap;
}

.permission-specail-table th,.permission-specail-table td{
border: solid 1px #c6c6c6;
padding: 12px;
text-align: center;
}

.permission-specail-table th {
  background-color: #333;
  color: #ffffff;
}

.permission-specail-table th:first-child,.permission-specail-table td:first-child {
  width: 92px;
}

.permission-specail-table th:nth-child(2),.permission-specail-table td:nth-child(2) {
  width: 143px;
}

.permission-specail-table td:nth-child(3) {
  text-align: left;
  vertical-align: middle;
}

.permission-specail-table td {
  background-color: #ffffff;
}
.permission-specail-table tr:nth-child(odd) td {
  background-color: #F2F2F2;
}

.permission-specail-table td:first-child {
  font-weight: 600;
}

.tit-annexed-table {
  font-weight: 600;
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .tit-annexed-table {
    margin-top: 10px;
  }
}


.permission-specail-annexed-table {
  border-collapse: collapse;
  border-spacing: 0;
  white-space: nowrap;
}

.permission-specail-annexed-table th,.permission-specail-annexed-table td{
border: solid 1px #c6c6c6;
padding: 12px;
text-align: center;
}

.permission-specail-annexed-table th {
  background-color: #333;
  color: #ffffff;
}

.vertical-txt-annexed {
  line-height: 1em;
  writing-mode: vertical-lr;
  text-align: right;
  min-height: 115px;
}

.permission-specail-annexed-table th:nth-child(n+2),.permission-specail-annexed-table  td:nth-child(n+2){
  width: 45px;
}

.permission-specail-annexed-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.permission-specail-annexed-table td {
  background-color: #ffffff;
}
.permission-specail-annexed-table tr:nth-child(odd) td {
  background-color: #F2F2F2;
}


/* ------------------------
    汎用
------------------------ */
.ttl-cmn-02 {
  display: block;
  position: relative;
  text-align: left;
  font-family: "Roboto", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 50px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .ttl-cmn-02 {
    font-size: 45px;
    line-height: 1.3;
  }
}

.lead {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .lead {
    line-height: 1.67em;
    margin-top: 10px;
  }
}

.catch {
  font-size: 23px;
  font-weight: bold;
  line-height: 1.65;
  margin-top: 40px;
  color: #ffffff;
}

.catch:first-child {
  margin-top: 0;
}

@media only screen and (max-width: 767px) {
  .catch {
    text-align: left;
    font-size: 19px;
    margin-top: 30px;
  }
}

.link-cmn-01 {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  font-size: 23px;
  font-family: "Roboto", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  line-height: 30px;
  padding-left: 42px;
  margin: 50px auto 0;
  transition: all .3s ease;
  z-index: 1;
}

.link-cmn-01 span {
  content: '';
  position: absolute;
  width: 31px;
  height: 31px;
  border: 2px solid #ffffff;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s ease;
}

.link-cmn-01 span::before, .link-cmn-01 span::after {
  content: "";
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 15px;
  background: #ffffff;
}

.link-cmn-01 span::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

@media screen and (min-width: 1025px) {
  .link-cmn-01:hover span {
    background-color: #ffffff;
  }

  .link-cmn-01:hover span::before,
  .link-cmn-01:hover span::after {
    background: #333333;
  }
}

.corp-name {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-style: italic;
}

.business-contact {
  width: 740px;
  border: #ffffff 2px solid;
  margin: 80px auto;
  text-align: center;
  padding: 30px;
}

.business-contact-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.business-contact a {
  text-decoration: none;
  font-family: "Roboto", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  line-height: 79px;
  display: inline-block;
}

.business-contact img {
  height: 47px;
}

@media only screen and (max-width: 767px) {
  .business-contact {
    width: 100%;
    margin: 50px auto;
  }
  .business-contact a {
    font-size: 32px;
    line-height: 30px;
  }
  .business-contact-title {
    font-size: 15px;
  }
}


/*# sourceMappingURL=common.css.map */