@charset "UTF-8";
.container {
  position: relative;
  width: 1200px;
  text-align: center;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 1219px) {
  .lity-iframe-container {
    padding-top: 145%;
  }
}
@media screen and (max-width: 1219px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
  .container img {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  .container {
    padding: 0 40px;
  }
}

.wrap {
  position: relative;
}

.txt {
  text-align: justify;
  text-justify: inter-ideograph;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 75px;
  margin: 0 auto;
  z-index: 100;
}
@media screen and (max-width: 1219px) {
  header {
    height: 60px;
  }
}
header .container {
  width: 100%;
  height: 100%;
}
header .logo {
  position: absolute;
  top: 17px;
  left: 110px;
}
header .logo a {
  display: block;
}
header .logo img {
  height: 40px;
}
@media screen and (max-width: 1219px) {
  header .logo {
    top: 2px;
    left: 50px;
  }
}
header .navi {
  position: absolute;
  left: 250px;
  top: 25px;
}
header .navi ul {
  text-align: left;
}
header .navi ul li {
  display: inline-block;
  margin-right: 30px;
}
header .navi ul li a {
  color: #333;
}
@media screen and (max-width: 1219px) {
  header .navi {
    display: none;
  }
}
header .navibutton {
  position: fixed;
  width: 75px;
  height: 75px;
  top: 0;
  left: 0;
  background-color: #A3AFAC;
  padding: 25px 20px;
}
@media screen and (max-width: 1219px) {
  header .navibutton {
    width: 45px;
    height: 45px;
    padding: 15px 10px;
  }
}
header .navibutton:hover {
  cursor: pointer;
}
header .navibutton .btn {
  position: relative;
  width: 100%;
  height: 100%;
}
header .navibutton .btn span {
  display: block;
  position: absolute;
  /*background-color: #333;*/
  background-color: #fff;
  height: 2px;
  width: 100%;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .navibutton .btn .l1 {
  top: 0;
}
header .navibutton .btn .l2 {
  top: calc(50% - 1px);
}
header .navibutton .btn .l3 {
  bottom: 0;
}
header .navibutton .btn.active .l1 {
  -moz-transform: translateX(0px) translateY(11px) rotate(-45deg);
  -ms-transform: translateX(0px) translateY(11px) rotate(-45deg);
  -webkit-transform: translateX(0px) translateY(11px) rotate(-45deg);
  transform: translateX(0px) translateY(11px) rotate(-45deg);
}
header .navibutton .btn.active .l2 {
  opacity: 0;
}
header .navibutton .btn.active .l3 {
  -moz-transform: translateX(0px) translateY(-11px) rotate(45deg);
  -ms-transform: translateX(0px) translateY(-11px) rotate(45deg);
  -webkit-transform: translateX(0px) translateY(-11px) rotate(45deg);
  transform: translateX(0px) translateY(-11px) rotate(45deg);
}
@media screen and (max-width: 1219px) {
  header .navibutton .btn.active .l1 {
    -moz-transform: translateX(0px) translateY(7px) rotate(-45deg);
    -ms-transform: translateX(0px) translateY(7px) rotate(-45deg);
    -webkit-transform: translateX(0px) translateY(7px) rotate(-45deg);
    transform: translateX(0px) translateY(7px) rotate(-45deg);
  }
  header .navibutton .btn.active .l3 {
    -moz-transform: translateX(0px) translateY(-7px) rotate(45deg);
    -ms-transform: translateX(0px) translateY(-7px) rotate(45deg);
    -webkit-transform: translateX(0px) translateY(-7px) rotate(45deg);
    transform: translateX(0px) translateY(-7px) rotate(45deg);
  }
}
header .contactbutton {
  position: absolute;
  top: 12px;
  right: 60px;
  width: 190px;
  height: 50px;
}
header .contactbutton i {
  margin-right: 5px;
}
header .contactbutton a {
  width: 100%;
  height: 100%;
  display: block;
  font-size: 2rem;
  line-height: 50px;
  background-color: #fff;
  box-shadow: 5px 5px 10px -10px #777;
  border-radius: 40px;
}
header .contactbutton a:hover {
  opacity: 1;
  color: #fff;
  background-color: #333;
}
@media screen and (max-width: 767px) {
  header .contactbutton {
    top: 5px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  header .contactbutton span {
    display: none;
  }
  header .contactbutton i {
    margin: 0;
  }
}

nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #A3AFAC;
  padding: 60px 10%;
  margin: 0 auto;
  z-index: 99;
}
nav .sitemap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 80%;
  background-color: #fff;
  border-radius: 100px;
  padding: 50px 100px;
  animation: navi 0.5s ease-out 0s 1 normal;
  -webkit-animation: navi 0.5s ease-out 0s 1 normal;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  nav .sitemap {
    height: 80vh;
    top: 80px;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    border-radius: 40px;
    padding: 40px 30px;
    overflow-y: scroll;
  }
}
nav .sitemap .box {
  width: 33.333%;
}
@media screen and (max-width: 767px) {
  nav .sitemap .box {
    width: 100%;
    margin-bottom: 20px;
  }
}
nav .sitemap .box h2 {
  position: relative;
  text-align: left;
  margin-bottom: 10px;
}
nav .sitemap .box h2:before {
  position: absolute;
  top: -10px;
  left: 10px;
  width: 40px;
  height: 7px;
  display: block;
  content: "";
  background-color: #A3AFAC;
}
@media screen and (max-width: 767px) {
  nav .sitemap .box h2:before {
    left: 0;
  }
}
nav .sitemap .box h2 span {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  nav .sitemap .box h2 span {
    display: block;
    font-size: 1.6rem;
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  nav .sitemap .box h2 span {
    display: block;
    font-size: 1.6rem;
    padding-left: 20px;
  }
}
nav .sitemap .box h2 p {
  font-size: 2.5rem;
  font-weight: 900;
  vertical-align: bottom;
  padding-left: 10px;
}
@media screen and (max-width: 1219px) {
  nav .sitemap .box h2 p {
    display: block;
    font-size: 2rem;
  }
}
nav .sitemap .box ul {
  text-align: left;
  padding-left: 10px;
}
nav .sitemap .box ul:not(:last-child) {
  margin-bottom: 50px;
}
nav .sitemap .box ul li {
  line-height: 2.8rem;
}
nav .sitemap .box ul li a {
  font-weight: 500;
  color: #818181;
}
@media screen and (max-width: 1219px) {
  nav .sitemap .box ul li a {
    font-size: 1.4rem;
  }
}
nav .sitemap .box ul li.bold {
  font-size: 1.7rem;
  font-weight: 900;
}
nav .sitemap .box ul li.bold a {
  color: #1c1c1c;
}

@keyframes navi {
  0% {
    top: 200%;
  }
  100% {
    top: 50%;
  }
}
@-webkit-keyframes navi {
  0% {
    top: 200%;
  }
  100% {
    top: 50%;
  }
}
#index .sct-mainimg {
  position: relative;
  background-image: url(../images/index/mainimg@2x.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#index .sct-mainimg .container {
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}
#index .sct-mainimg .mainimg-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#index .sct-mainimg .mainimg-yellow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
#index .sct-mainimg .mainimg-yellow:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 75px;
  height: 100vh;
  display: block;
  content: "";
  background-color: #A3AFAC;
  z-index: 2;
}
@media screen and (max-width: 1219px) {
  #index .sct-mainimg .mainimg-yellow:before {
    width: 45px;
  }
}
#index .sct-mainimg .mainimg-yellow:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75px;
  display: block;
  content: "";
  background-color: #A3AFAC;
  z-index: 2;
}
@media screen and (max-width: 1219px) {
  #index .sct-mainimg .mainimg-yellow:after {
    height: 45px;
  }
}
#index .sct-mainimg .mainimg-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
#index .sct-mainimg .mainimg-line:before {
  position: absolute;
  top: 75px;
  right: 75px;
  width: calc(100% - 75px);
  height: 2px;
  display: block;
  content: "";
  background-color: #fff;
  z-index: 1;
}
@media screen and (max-width: 1219px) {
  #index .sct-mainimg .mainimg-line:before {
    top: 45px;
    right: 45px;
    width: calc(100% - 45px);
  }
}
#index .sct-mainimg .mainimg-line:after {
  position: absolute;
  top: 75px;
  right: 75px;
  width: 2px;
  height: calc(100vh - 75px);
  display: block;
  content: "";
  background-color: #fff;
  z-index: 1;
}
@media screen and (max-width: 1219px) {
  #index .sct-mainimg .mainimg-line:after {
    top: 45px;
    right: 45px;
    height: calc(100vh - 45px);
  }
}
#index .sct-mainimg .mainimg-txt {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1219px) {
  #index .sct-mainimg .mainimg-txt img {
    width: 180px;
  }
}
#index .sct-mainimg .mainimg-catch {
  position: absolute;
  bottom: 150px;
  left: 140px;
  font-size: 60px;
  line-height: 1.166;
  letter-spacing: 0.1em;
  color: #fff;
  z-index: 10;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  #index .sct-mainimg .mainimg-catch {
    /*top: 320px;
   bottom: auto;
    left: 50px;
    font-size: 5.6rem;
    line-height: 6.4rem;*/
    bottom: 150px;
    left: 60px;
    font-size: 27px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-mainimg .mainimg-catch {
    top: 400px;
    bottom: auto;
    left: 100px;
    font-size: 9rem;
    line-height: 10rem;
  }
}
#index .sct-mainimg .mainimg-movie {
  position: absolute;
  bottom: 120px;
  right: 120px;
  animation: 12s linear infinite rotation1;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  #index .sct-mainimg .mainimg-movie {
    bottom: 70px;
    right: 20px;
  }
  #index .sct-mainimg .mainimg-movie img {
    width: 100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-mainimg .mainimg-movie {
    bottom: 100px;
    right: 100px;
  }
  #index .sct-mainimg .mainimg-movie img {
    width: 120px;
  }
}
#index .sct-about {
  background-color: #A3AFAC;
  overflow: hidden;
}
#index .sct-about .container {
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: visible;
}
@media screen and (max-width: 1219px) {
  #index .sct-about .container {
    padding-top: 80px;
    padding-bottom: 30px;
  }
}
#index .sct-about h2 {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 60px;
}
#index .sct-about h2 img {
  width: calc(100% - 40px);
}
@media screen and (max-width: 1219px) {
  #index .sct-about h2 {
    margin-bottom: 30px;
  }
}
#index .sct-about .txt {
  margin-bottom: 60px;
}
@media screen and (max-width: 1219px) {
  #index .sct-about .txt {
    margin-bottom: 40px;
  }
}
#index .sct-about .txt p {
  font-size: 3rem;
  line-height: 8rem;
  text-align: center;
}
@media screen and (max-width: 1219px) {
  #index .sct-about .txt p {
    font-size: 1.6rem;
    line-height: 3rem;
  }
}
#index .sct-about .m-bt {
  margin-bottom: 130px;
}
@media screen and (max-width: 1219px) {
  #index .sct-about .m-bt {
    margin-bottom: 50px;
  }
}
#index .sct-about .about_photo {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 60px;
}
#index .sct-about .about_photo img {
  width: 100%;
}
#index .sct-service {
  position: relative;
  margin-bottom: 145px;
}
@media screen and (max-width: 1219px) {
  #index .sct-service {
    margin-bottom: 60px;
  }
}
#index .sct-service:before {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  height: 435px;
  display: block;
  content: "";
  background-color: #EDEDED;
  border-radius: 40px 0 0 40px;
}
@media screen and (max-width: 767px) {
  #index .sct-service:before {
    width: 80%;
    height: 75%;
    border-radius: 20px 0 0 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-service:before {
    width: 90%;
    height: 65%;
    border-radius: 20px 0 0 20px;
  }
}
#index .sct-service .container {
  padding-top: 130px;
  padding-bottom: 60px;
}
@media screen and (max-width: 1219px) {
  #index .sct-service .container {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
#index .sct-service .service ul {
  display: flex;
  flex-wrap: wrap;
}
#index .sct-service .service ul li {
  width: 50%;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  #index .sct-service .service ul li {
    width: 100%;
    align-items: flex-start;
  }
  #index .sct-service .service ul li:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-service .service ul li {
    align-items: flex-start;
  }
}
#index .sct-service .service ul li .photo {
  width: 315px;
}
@media screen and (max-width: 1219px) {
  #index .sct-service .service ul li .photo {
    width: 30%;
  }
}
#index .sct-service .service ul li .photo img {
  /*border-radius: 40px;*/
}
@media screen and (max-width: 1219px) {
  #index .sct-service .service ul li .photo img {
    /*border-radius: 20px;*/
  }
}
#index .sct-service .service ul li .txt {
  width: calc(100% - 315px);
  padding: 0 30px;
  color: #1c1c1c;
}
@media screen and (max-width: 767px) {
  #index .sct-service .service ul li .txt {
    width: 70%;
    padding: 50px 0 0 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-service .service ul li .txt {
    width: 70%;
    padding: 50px 20px 0 20px;
  }
}
#index .sct-service .service .s-title:before {
  background-color: #fff;
}
#index .sct-service .service h3 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 20px;
}
@media screen and (max-width: 1219px) {
  #index .sct-service .service h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
#index .sct-service .service .m-bt {
  height: 35px;
  margin-top: 30px;
}
#index .sct-service .service .m-bt a {
  font-size: 1.6rem;
  line-height: 35px;
  color: #fff;
  background-color: #818181;
}
#index .sct-service .service .m-bt a span {
  background-color: #fff;
}
@media screen and (min-width: 1220px) {
  #index .sct-service .service .m-bt a:hover {
    background-color: #686868;
  }
}
#index .sct-products {
  position: relative;
  margin-bottom: 130px;
}
@media screen and (max-width: 1219px) {
  #index .sct-products {
    margin-bottom: 0;
  }
}
#index .sct-products:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 530px;
  display: block;
  content: "";
  background-color: #ededed;
  overflow: hidden;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #index .sct-products:before {
    height: 80%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-products:before {
    height: 60%;
  }
}
#index .sct-products .container {
  overflow: visible;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #index .sct-products .container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
#index .sct-products .m-title {
  position: relative;
}
@media screen and (max-width: 767px) {
  #index .sct-products .m-title .m-bt {
    display: none;
  }
}
#index .sct-products .m-bt {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: auto;
  right: 0;
  width: 250px;
}
#index .sct-products .m-bt a {
  font-weight: 500;
}
#index .sct-products .m-bt a:after {
  background-color: #818181;
}
#index .sct-products .m-bt a:before {
  background-color: #686868;
}
/*
@media screen and (min-width: 1220px) {
  #index .sct-products .m-bt a:hover {
    color: #333;
  }
  #index .sct-products .m-bt a:hover span {
    background-color: #333;
  }
}*/
@media screen and (max-width: 767px) {
  #index .sct-products .m-bt {
    position: static;
    margin-top: 50px;
  }
}
#index .sct-products .products ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 70px;
  grid-row-gap: 0px;
}
@media screen and (max-width: 767px) {
  #index .sct-products .products ul {
    grid-template-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-products .products ul {
    grid-column-gap: 30px;
  }
}
#index .sct-products .products ul li {
  background-color: #fff;
  border-radius: 40px;
}
#index .sct-products .products ul li .image {
  width: 100%;
  margin-bottom: 20px;
}
#index .sct-products .products ul li .image img {
  max-width: calc(100% + 40px);
  width: calc(100% + 40px);
  /*border-radius: 40px;*/
  margin: 0 -20px;
}
#index .sct-products .products ul li span {
  display: inline-block;
  font-size: 1.2rem;
  color: #818181;
  border: 1px solid #818181;
  border-radius: 20px;
  padding: 2px 10px;
  margin-bottom: 5px;
}
#index .sct-products .products ul li h3 {
  position: relative;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 10px;
}
#index .sct-products .products ul li h3:before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: auto;
  bottom: -10px;
  width: 40px;
  height: 3px;
  display: block;
  content: "";
  background-color: #A3AFAC;
}
#index .sct-products .products ul li p {
  padding: 20px 30px;
}
#index .sct-news .container {
  padding-top: 170px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1219px) {
  #index .sct-news .container {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
#index .sct-news .m-title {
  position: relative;
}
@media screen and (max-width: 767px) {
  #index .sct-news .m-title .m-bt {
    display: none;
  }
}
#index .sct-news .m-bt {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: auto;
  right: 0;
  width: 250px;
}
#index .sct-news .m-bt a {
  font-weight: 500;
}
@media screen and (min-width: 1220px) {
  #index .sct-news .m-bt a:hover {
    color: #fff;
  }

  #index .sct-news .m-bt a:hover span {
    background-color: #ffffff;
  }
}
#index .sct-news .m-bt a:after {
  background-color: #818181;
}
#index .sct-news .m-bt a:before {
  background-color: #686868;
}
@media screen and (min-width: 1220px) {
  #index .sct-news .m-bt a:hover {
    color: #fff;
  }
  #index .sct-news .m-bt a:hover span {
    background-color: #fff;
  }
}
@media screen and (max-width: 767px) {
  #index .sct-news .m-bt {
    position: static;
    margin-top: 50px;
  }
}
#index .sct-news .whatsnew {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #index .sct-news .whatsnew {
    flex-direction: column-reverse;
  }
}
#index .sct-news .whatsnew .cat {
  width: 315px;
}
@media screen and (max-width: 767px) {
  #index .sct-news .whatsnew .cat {
    width: 100%;
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-news .whatsnew .cat {
    width: 25%;
  }
}
#index .sct-news .whatsnew .cat ul li {
  text-align: left;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  #index .sct-news .whatsnew .cat ul li {
    display: inline-block;
    margin: 2px;
  }
}
#index .sct-news .whatsnew .cat ul li a {
  font-size: 1.1rem;
  color: #818181;
  background-color: #dcdcdc;
  border-radius: 20px;
  padding: 2px 20px;
}
@media screen and (min-width: 1220px) {
  #index .sct-news .whatsnew .cat ul li a:hover {
    opacity: 1;
    color: #fff;
    background-color: #707070;
  }
}
#index .sct-news .whatsnew .news {
  width: calc(100% - 315px);
}
@media screen and (max-width: 767px) {
  #index .sct-news .whatsnew .news {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-news .whatsnew .news {
    width: 75%;
  }
}
#index .sct-news .whatsnew .news ul li {
  text-align: left;
  border-bottom: 1px solid #dcdcdc;
  padding: 25px;
}
@media screen and (max-width: 1219px) {
  #index .sct-news .whatsnew .news ul li {
    padding: 15px;
  }
}
#index .sct-news .whatsnew .news ul li a {
  position: relative;
  display: block;
  padding-right: 40px;
}
#index .sct-news .whatsnew .news ul li .date {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
#index .sct-news .whatsnew .news ul li .date span {
  font-size: 1rem;
  background-color: #818181;
  border-radius: 10px;
  padding: 2px 10px;
  margin-left: 10px;
  color: #fff;
}
#index .sct-news .whatsnew .news ul li .title {
  font-size: 1.8rem;
}
@media screen and (max-width: 1219px) {
  #index .sct-news .whatsnew .news ul li .title {
    font-size: 1.6rem;
  }
}
#index .sct-news .whatsnew .news ul li i {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: auto;
  right: 0;
  font-size: 2.4rem;
  color: #818181;
}
#index .sct-recruit {
  position: relative;
  background-color: #A3AFAC;
}

#index .sct-recruit .s-title {
  color: #fff;
}
#index .sct-recruit .m-title .title {
  font-size: 5rem;
  vertical-align: bottom;
  display: inline-block;
  text-transform: uppercase;
}
#index .sct-recruit .container {
  padding-top: 90px;
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  #index .sct-recruit .container {
    padding-top: 60px;
    padding-bottom: 300px;
  }
}
#index .sct-recruit .s-title:before {
  background-color: #fff;
}
#index .sct-recruit .m-title {
  margin-bottom: 75px;
  color: #fff;
}

@media screen and (max-width: 1219px) {
  #index .sct-recruit .m-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1219px) {
  #index .sct-recruit .m-title .title {
    font-size: 2.9rem;
  }
}
@media screen and (max-width: 1219px) {
  #index .sct-recruit .m-title .txt {
    font-size: 1.6rem;
  }
}
#index .sct-recruit .m-bt {
  margin-left: 40px;
}

#index .sct-recruit .m-bt a {
  color: #fff;
}
#index .sct-recruit .m-bt a span {
  background-color: #fff;
}
@media screen and (min-width: 1220px) {
  #index .sct-recruit .m-bt a:hover {
    color: #fff;
  }
  #index .sct-recruit .m-bt a:hover span {
    background-color: #fff;
  }
}
#index .sct-recruit .image {
    position: absolute;
    top: 50%;
    right: 0;
    width: 43%;
    transform: translateY(-50%);
}
@media screen and (max-width: 1219px) {
  #index .sct-recruit .image {
	  top: unset;
    transform: unset;
    bottom: -24px;
    width: 300px;
  }
}

@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.sct-pagetitle {
  position: relative;
  background-color: #A3AFAC;
}
.sct-pagetitle .container {
  padding-top: 230px;
  padding-bottom: 40px;
}
@media screen and (max-width: 1219px) {
  .sct-pagetitle .container {
    padding-top: 100px;
    padding-bottom: 30px;
  }
}
.sct-pagetitle .title {
  position: relative;
  text-align: left;
  color: #fff;
}
.sct-pagetitle .title .e {
  display: inline-block;
  font-size: 9.8rem;
  font-weight: 500;
}
@media screen and (max-width: 1219px) {
  .sct-pagetitle .title .e {
    font-size: 3.6rem;
  }
}
.sct-pagetitle .title .j {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 900;
  margin-left: 20px;
}
@media screen and (max-width: 1219px) {
  .sct-pagetitle .title .j {
    font-size: 1.4rem;
    margin-left: 10px;
  }
}

.sct-main {
  position: relative;
  background-color: #A3AFAC;
}
.sct-main:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background-color: #fff;
  border-radius: 50px 50px 0 0;
  z-index: 0;
}
.sct-main .container {
  z-index: 1;
}

#page .sct-2column {
  overflow: hidden;
}
#page .sct-2column .container {
  display: flex;
  overflow: visible;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1219px) {
  #page .sct-2column .container {
    padding-top: 50px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #page .sct-2column .container {
    display: block;
  }
}
#page .sct-2column .main {
  width: calc(100% - 290px);
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  #page .sct-2column .main {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #page .sct-2column .main {
    width: calc(100% - 230px);
    margin-right: 30px;
  }
}
#page .sct-2column .side {
  width: 250px;
  text-align: left;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
}
@media screen and (max-width: 767px) {
  #page .sct-2column .side {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #page .sct-2column .side {
    width: 200px;
  }
}
#page .sct-2column .side .side_title {
  font-weight: 700;
  color: #A3AFAC;
  border-bottom: 1px solid #A3AFAC;
  margin-bottom: 10px;
}
#page .sct-2column .side .news ul.new {
  margin-bottom: 30px;
}
#page .sct-2column .side .news ul.new li {
  border-bottom: 1px dashed #ccc;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
#page .sct-2column .side .news ul.new li .date {
  color: #999;
  font-size: 12px;
}
#page .sct-2column .side .news ul.new li a {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  color: #333;
}
#page .sct-2column .side .news ul.cat {
  margin-bottom: 30px;
}
#page .sct-2column .side .news ul.cat li a {
  text-decoration: none;
  color: #333;
}
#page .sct-2column .side .blog ul.new {
  margin-bottom: 30px;
}
#page .sct-2column .side .blog ul.new li {
  border-bottom: 1px dashed #ccc;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
#page .sct-2column .side .blog ul.new li .date {
  color: #999;
  font-size: 12px;
}
#page .sct-2column .side .blog ul.new li a {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  color: #333;
}
#page .sct-2column .side .blog ul.cat {
  margin-bottom: 30px;
}
#page .sct-2column .side .blog ul.cat li a {
  text-decoration: none;
  color: #333;
}
#page .sct-2column .side .menu ul li a {
  text-decoration: none;
  color: #333;
}

#about .sct-main .container {
  padding-top: 190px;
  padding-bottom: 150px;
  z-index: 1;
}
@media screen and (max-width: 1219px) {
  #about .sct-main .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
#about .sct-main .about {
  margin-bottom: 90px;
}
@media screen and (max-width: 1219px) {
  #about .sct-main .about {
    margin-bottom: 40px;
  }
}
#about .sct-main .about h2 {
  position: relative;
  font-size: 3.9rem;
  font-weight: 900;
  margin-bottom: 80px;
}
@media screen and (max-width: 1219px) {
  #about .sct-main .about h2 {
    font-size: 2.6rem;
    margin-bottom: 60px;
  }
}
#about .sct-main .about h2:before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: auto;
  bottom: -30px;
  width: 120px;
  height: 3px;
  display: block;
  content: "";
  background-color: #A3AFAC;
}
@media screen and (max-width: 767px) {
  #about .sct-main .about h2:before {
    width: 80px;
  }
}
#about .sct-main .about .txt {
  width: 550px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #about .sct-main .about .txt {
    width: 100%;
  }
}
#about .sct-main .about .txt p {
  font-size: 1.8rem;
  line-height: 3.2rem;
}
@media screen and (max-width: 1219px) {
  #about .sct-main .about .txt p {
    font-size: 1.6rem;
  }
}
#about .sct-main .movie {
  position: relative;
  width: 70%;
  aspect-ratio: 16 / 9;
  background-color: #f9f9f9;
  margin: 0 auto 160px;
}
#about .sct-main .movie iframe {
  width: 100%;
  height: 100%;
}
#about .sct-main .movie .ico {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}
#about .sct-main .movie .ico img {
  width: 150px;
}
@media screen and (max-width: 1219px) {
  #about .sct-main .movie {
    width: 100%;
    margin-bottom: 40px;
  }
}
#about .sct-main .message {
  width: 950px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
@media screen and (max-width: 1219px) {
  #about .sct-main .message {
    width: 100%;
  }
}
#about .sct-main .message .image {
  width: 390px;
}
@media screen and (max-width: 767px) {
  #about .sct-main .message .image {
    width: 100%;
    margin-bottom: 30px;
  }
  #about .sct-main .message .image img {
    width: 60%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #about .sct-main .message .image {
    width: 35%;
  }
}
#about .sct-main .message .txt {
  width: calc(100% - 390px);
  padding-left: 90px;
}
@media screen and (max-width: 767px) {
  #about .sct-main .message .txt {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #about .sct-main .message .txt {
    width: 65%;
    padding-left: 30px;
  }
}
#about .sct-main .message .txt p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 4rem;
  margin-bottom: 60px;
}
@media screen and (max-width: 1219px) {
  #about .sct-main .message .txt p {
    line-height: 3rem;
    margin-bottom: 20px;
  }
}
#about .sct-main .message .txt .name {
  text-align: right;
}
#about .sct-main .message .txt .name span {
  display: block;
  font-size: 2.8rem;
  font-size: 500;
}
@media screen and (max-width: 1219px) {
  #about .sct-main .message .txt .name span {
    font-size: 2rem;
  }
}
#about .sct-main .message .txt .name .s {
  font-size: 1.4rem;
  font-size: 400;
}
@media screen and (max-width: 1219px) {
  #about .sct-main .message .txt .name .s {
    font-size: 1.2rem;
  }
}
#about .sct-philosophy {
  background-color: #ededed;
}
#about .sct-philosophy .container {
  padding-top: 200px;
  padding-bottom: 220px;
  z-index: 1;
}
@media screen and (max-width: 1219px) {
  #about .sct-philosophy .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
#about .sct-philosophy h2 {
  margin-bottom: 90px;
}
@media screen and (max-width: 1219px) {
  #about .sct-philosophy h2 {
    margin-bottom: 40px;
  }
}
#about .sct-philosophy h2 p {
  text-align: center;
}
#about .sct-philosophy h2 .title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 1219px) {
  #about .sct-philosophy h2 .title {
    font-size: 1.4rem;
  }
}
#about .sct-philosophy h2 .title span {
  font-size: 3.7rem;
  font-weight: 900;
  color: #A3AFAC;
  display: block;
  margin-bottom: 5px;
}
@media screen and (max-width: 1219px) {
  #about .sct-philosophy h2 .title span {
    font-size: 3.2rem;
  }
}
#about .sct-philosophy h2 .txt {
  font-size: 7rem;
}
@media screen and (max-width: 1219px) {
  #about .sct-philosophy h2 .txt {
    font-size: 3rem;
  }
}
#about .sct-philosophy h3 {
  position: relative;
  font-size: 3.9rem;
  font-weight: 900;
  margin-bottom: 140px;
}
@media screen and (max-width: 1219px) {
  #about .sct-philosophy h3 {
    font-size: 2.6rem;
    margin-bottom: 80px;
  }
}
#about .sct-philosophy h3:before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: auto;
  bottom: -30px;
  width: 120px;
  height: 3px;
  display: block;
  content: "";
  background-color: #A3AFAC;
}
@media screen and (max-width: 767px) {
  #about .sct-philosophy h3:before {
    width: 80px;
  }
}
#about .sct-philosophy .philosophy {
  width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 1219px) {
  #about .sct-philosophy .philosophy {
    width: 100%;
  }
}
#about .sct-philosophy .philosophy ul li {
  display: flex;
  flex-wrap: wrap;
}
#about .sct-philosophy .philosophy ul li:not(:last-child) {
  margin-bottom: 65px;
}
#about .sct-philosophy .philosophy ul li .image {
  width: 310px;
}
#about .sct-philosophy .philosophy ul li .image img {
  /*border-radius: 40px;*/
}
@media screen and (max-width: 767px) {
  #about .sct-philosophy .philosophy ul li .image {
    width: 100%;
    margin-bottom: 20px;
  }
  #about .sct-philosophy .philosophy ul li .image img {
    width: 100%;
    margin: 0 auto;
  }
}
#about .sct-philosophy .philosophy ul li .txt {
  width: calc(100% - 310px);
  padding-left: 36px;
}
@media screen and (max-width: 767px) {
  #about .sct-philosophy .philosophy ul li .txt {
    width: 100%;
    padding-left: 0;
  }
}
#about .sct-philosophy .philosophy ul li .txt .border {
  position: relative;
  border: 4px solid #818181;
  padding: 45px 40px;
}
@media screen and (max-width: 767px) {
  #about .sct-philosophy .philosophy ul li .txt .border {
    padding: 25px 20px;
  }
}
#about .sct-philosophy .philosophy ul li .txt .border:before {
  position: absolute;
  top: 39px;
  left: -4px;
  width: 4px;
  height: 20px;
  background-color: #ededed;
  display: block;
  content: "";
}
@media screen and (max-width: 767px) {
  #about .sct-philosophy .philosophy ul li .txt .border:before {
    display: none;
  }
}
#about .sct-philosophy .philosophy ul li .txt .border:after {
  position: absolute;
  top: 60px;
  left: -65px;
  width: 74px;
  height: 4px;
  background-color: #818181;
  display: block;
  content: "";
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  #about .sct-philosophy .philosophy ul li .txt .border:after {
    display: none;
  }
}
#about .sct-philosophy .philosophy ul li .txt h4 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  #about .sct-philosophy .philosophy ul li .txt h4 {
    margin-bottom: 15px;
  }
}
#about .sct-philosophy .philosophy ul li .txt h4 p {
  font-size: 1.4rem;
  line-height: 2.8rem;
}
@media screen and (max-width: 1219px) {
  #about .sct-philosophy .philosophy ul li .txt h4 {
    font-size: 1.8rem;
  }
}
#about .sct-philosophy .philosophy ul li:nth-child(2n) {
  flex-direction: row-reverse;
}
#about .sct-philosophy .philosophy ul li:nth-child(2n) .txt {
  padding-left: 0;
  padding-right: 36px;
}
@media screen and (max-width: 767px) {
  #about .sct-philosophy .philosophy ul li:nth-child(2n) .txt {
    padding-right: 0;
  }
}
#about .sct-philosophy .philosophy ul li:nth-child(2n) .txt .border {
  border: 4px solid #A3AFAC;
}
#about .sct-philosophy .philosophy ul li:nth-child(2n) .txt .border:before {
  left: auto;
  right: -4px;
}
#about .sct-philosophy .philosophy ul li:nth-child(2n) .txt .border:after {
  left: auto;
  right: -65px;
  background-color: #A3AFAC;
  transform: rotate(45deg);
}

#service .sct-main .container {
  width: 980px;
  padding-top: 160px;
  padding-bottom: 250px;
}
@media screen and (max-width: 1219px) {
  #service .sct-main .container {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 120px;
  }
}
#service .sct-main .title {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  #service .sct-main .title {
    margin-bottom: 20px;
  }
}
#service .sct-main .title h2 {
  width: 250px;
  border-right: 2px solid #A3AFAC;
}
@media screen and (max-width: 767px) {
  #service .sct-main .title h2 {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid #A3AFAC;
    padding-bottom: 2px;
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #service .sct-main .title h2 {
    width: 20%;
  }
}
#service .sct-main .title h2 span {
  display: block;
  font-size: 3.2rem;
  text-align: left;
  color: #818181;
}
@media screen and (max-width: 1219px) {
  #service .sct-main .title h2 span {
    font-size: 1.6rem;
  }
}
#service .sct-main .title h2 p {
  font-size: 5rem;
  font-weight: 900;
  padding-left: 20px;
}
@media screen and (max-width: 1219px) {
  #service .sct-main .title h2 p {
    font-size: 2.4rem;
    padding-left: 10px;
  }
}
#service .sct-main .title .txt {
  width: calc(100% - 250px);
  line-height: 2.8rem;
  padding-top: 8px;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  #service .sct-main .title .txt {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #service .sct-main .title .txt {
    width: 80%;
  }
}
#service .sct-main .image {
  margin-bottom: 60px;
}
#service .sct-main .service ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 0px;
}
@media screen and (max-width: 767px) {
  #service .sct-main .service ul {
    grid-template-columns: 1fr;
    grid-row-gap: 15px;
  }
}
#service .sct-main .service ul li {
  position: relative;
  width: 100%;
  background-color: #ededed;
  border-radius: 20px;
  padding: 20px 15px 105px 15px;
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #service .sct-main .service ul li {
    padding-bottom: 70px;
  }
}
#service .sct-main .service ul li .num {
  font-size: 1.8rem;
  text-align: left;
  color: #A3AFAC;
}
@media screen and (max-width: 1219px) {
  #service .sct-main .service ul li .num {
    font-size: 1.6rem;
  }
}
#service .sct-main .service ul li .num span {
  font-size: 6.2rem;
  line-height: 5rem;
  color: #818181;
  vertical-align: top;
  margin-right: 5px;
}
@media screen and (max-width: 1219px) {
  #service .sct-main .service ul li .num span {
    font-size: 4rem;
    line-height: 3rem;
  }
}
#service .sct-main .service ul li img {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #service .sct-main .service ul li img {
    width: 100px;
    margin-bottom: 15px;
  }
}
#service .sct-main .service ul li p {
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #service .sct-main .service ul li p {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #service .sct-main .service ul li p {
    font-size: 1.4rem;
  }
}
#service .sct-main .service ul li .m-bt {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: auto;
  bottom: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #service .sct-main .service ul li .m-bt {
    width: 90%;
  }
}
#service .sct-main .service ul li .m-bt a {
  font-size: 1.6rem;
}
@media screen and (max-width: 1219px) {
  #service .sct-main .service ul li .m-bt a {
    font-size: 1.4rem;
  }
}
#service .sct-main .service ul li .m-bt a:before {
  background-color: #686868;
}
#service .sct-main .service ul li .m-bt a:after {
  background-color: #818181;
}
#service .sct-enter .container {
  width: 980px;
  padding-top: 0;
  padding-bottom: 80px;
}
@media screen and (max-width: 1219px) {
  #service .sct-enter .container {
    width: 100%;
    padding-top: 0;
    padding-bottom: 50px;
  }
}
#service .sct-enter .title {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  #service .sct-enter .title {
    margin-bottom: 20px;
  }
}
#service .sct-enter .title h2 {
  width: 320px;
  border-right: 2px solid #A3AFAC;
}
@media screen and (max-width: 767px) {
  #service .sct-enter .title h2 {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid #A3AFAC;
    padding-bottom: 2px;
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #service .sct-enter .title h2 {
    width: 30%;
  }
}
#service .sct-enter .title h2 span {
  display: block;
  font-size: 3.2rem;
  text-align: left;
  color: #818181;
}
@media screen and (max-width: 1219px) {
  #service .sct-enter .title h2 span {
    font-size: 1.6rem;
  }
}
#service .sct-enter .title h2 p {
  font-size: 4rem;
  font-weight: 900;
  padding-left: 20px;
}
@media screen and (max-width: 1219px) {
  #service .sct-enter .title h2 p {
    font-size: 2.4rem;
    padding-left: 10px;
  }
}
#service .sct-enter .title .txt {
  width: calc(100% - 320px);
  line-height: 2.8rem;
  padding-top: 8px;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  #service .sct-enter .title .txt {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #service .sct-enter .title .txt {
    width: 70%;
  }
}
#service .sct-enter .image {
  margin-bottom: 60px;
}
#service .sct-recycle .container {
  width: 980px;
  padding-top: 0;
  padding-bottom: 80px;
}
@media screen and (max-width: 1219px) {
  #service .sct-recycle .container {
    width: 100%;
    padding-top: 0;
    padding-bottom: 50px;
  }
}
#service .sct-recycle .recycle {
  margin-bottom: 35px;
}
#service .sct-recycle .recycle .p-title {
  line-height: 4.6rem;
  border-bottom: 2px solid #A3AFAC;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #service .sct-recycle .recycle .p-title {
    line-height: 3.2rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #service .sct-recycle .recycle .p-title {
    line-height: 3.2rem;
  }
}
#service .sct-recycle .recycle .p-title .title {
  font-size: 1.8rem;
  padding-left: 0;
}
@media screen and (max-width: 1219px) {
  #service .sct-recycle .recycle .p-title .title {
    font-size: 1.4rem;
  }
}
#service .sct-recycle .recycle .p-title .title span {
  font-size: 3.7rem;
  font-weight: 400;
}
@media screen and (max-width: 1219px) {
  #service .sct-recycle .recycle .p-title .title span {
    font-size: 3rem;
  }
}
#service .sct-recycle .recycle .p-title .txt {
  font-size: 4rem;
  font-weight: 900;
  padding-left: 20px;
}
@media screen and (max-width: 1219px) {
  #service .sct-recycle .recycle .p-title .txt {
    font-size: 3rem;
  }
}
#service .sct-recycle .recycle .about {
  font-size: 1.4rem;
  line-height: 2.8rem;
  padding: 0 20px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  #service .sct-recycle .recycle .about {
    padding: 0;
  }
}
#service .sct-recycle .recycle .image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 45px;
  grid-row-gap: 0px;
}
@media screen and (max-width: 767px) {
  #service .sct-recycle .recycle .image {
    grid-template-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #service .sct-recycle .recycle .image {
    grid-column-gap: 20px;
  }
}
#service .sct-recycle .shop {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #service .sct-recycle .shop {
    margin-bottom: 20px;
  }
}
#service .sct-recycle .shop h3 {
  font-weight: 700;
  text-align: left;
  color: #fff;
  background-color: #818181;
  border-radius: 30px;
  padding: 10px 50px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #service .sct-recycle .shop h3 {
    padding: 5px 20px;
    margin-bottom: 20px;
  }
}
#service .sct-recycle .shop ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 40px;
}
@media screen and (max-width: 767px) {
  #service .sct-recycle .shop ul {
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
  }
}
#service .sct-recycle .shop ul li {
  padding-right: 45px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #service .sct-recycle .shop ul li {
    border-bottom: 1px solid #dcdcdc;
    padding-right: 0;
    padding-bottom: 25px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #service .sct-recycle .shop ul li {
    padding-right: 25px;
  }
}
#service .sct-recycle .shop ul li:nth-child(2n) {
  border-left: 1px solid #dcdcdc;
  padding-left: 45px;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  #service .sct-recycle .shop ul li:nth-child(2n) {
    border-left: none;
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #service .sct-recycle .shop ul li:nth-child(2n) {
    padding-left: 25px;
  }
}
#service .sct-recycle .shop ul li .box {
  display: flex;
  margin-bottom: 10px;
}
#service .sct-recycle .shop ul li .box .image {
  width: 148px;
}
@media screen and (max-width: 767px) {
  #service .sct-recycle .shop ul li .box .image {
    width: 80px;
  }
}
#service .sct-recycle .shop ul li .box .info {
  width: calc(100% - 148px);
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  #service .sct-recycle .shop ul li .box .info {
    width: calc(100% - 80px);
    padding-left: 15px;
  }
}
#service .sct-recycle .shop ul li .box .info h4 {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: left;
  border-bottom: 2px solid #A3AFAC;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#service .sct-recycle .shop ul li .box .info .txt {
  font-size: 1.2rem;
  line-height: 2rem;
}
#service .sct-recycle .shop ul li .tag {
  text-align: left;
}
#service .sct-recycle .shop ul li .tag span {
  font-size: 1rem;
  display: inline-block;
  background-color: #818181;
  border-radius: 20px;
  padding: 2px 10px;
  margin-right: 2px;
  margin-bottom: 2px;
  color: #fff;
}
#service .sct-recycle .bt ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 0px;
}
@media screen and (max-width: 767px) {
  #service .sct-recycle .bt ul {
    grid-column-gap: 10px;
  }
}
#service .sct-introduce {
  background-color: #A3AFAC;
}
#service .sct-introduce .container {
  width: 800px;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1219px) {
  #service .sct-introduce .container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
#service .sct-introduce h2 {
  position: relative;
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 80px;
  color: #fff;
}
@media screen and (max-width: 1219px) {
  #service .sct-introduce h2 {
    font-size: 2.6rem;
    margin-bottom: 60px;
  }
}
#service .sct-introduce h2:before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: auto;
  bottom: -30px;
  width: 120px;
  height: 3px;
  display: block;
  content: "";
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #service .sct-introduce h2:before {
    width: 80px;
  }
}
#service .sct-introduce .txt {
  font-size: 1.8rem;
  margin-bottom: 65px;
  color: #fff;
}
@media screen and (max-width: 1219px) {
  #service .sct-introduce .txt {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}
#service .sct-introduce .introduce dl {
  width: 100%;
  display: flex;
  font-size: 1.2rem;
}
#service .sct-introduce .introduce dl:not(:last-child) {
  border-bottom: 1px solid #dcdcdc;
}
#service .sct-introduce .introduce dl dt {
  width: 27%;
  font-weight: 900;
  text-align: center;
  color: #fff;
  background-color: #818181;
  padding: 25px;
}
@media screen and (max-width: 767px) {
  #service .sct-introduce .introduce dl dt {
    padding: 15px;
  }
}
#service .sct-introduce .introduce dl dd {
  width: 73%;
  background-color: #fff;
  padding: 25px 40px;
}
@media screen and (max-width: 767px) {
  #service .sct-introduce .introduce dl dd {
    padding: 15px 20px;
  }
}
#service .sct-introduce .introduce dl dd a {
  text-decoration: underline;
  color: #007fff;
}

#products_list .sct-main {
  overflow: hidden;
}
#products_list .sct-main .container {
  overflow: visible;
  padding-top: 90px;
  padding-bottom: 190px;
}
@media screen and (max-width: 1219px) {
  #products_list .sct-main .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
#products_list .sct-main .products ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 80px;
}
@media screen and (max-width: 767px) {
  #products_list .sct-main .products ul {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #products_list .sct-main .products ul {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
  }
}
#products_list .sct-main .products ul li {
  position: relative;
  padding-bottom: 30px;
}
#products_list .sct-main .products ul li .image {
  margin-bottom: 20px;
}
#products_list .sct-main .products ul li .image a {
  position: relative;
  height: 330px;
  display: block;
  /*border-radius: 50px;*/
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #products_list .sct-main .products ul li .image a {
    height: 220px;
    /*border-radius: 30px;*/
  }
}
#products_list .sct-main .products ul li .image img {
  width: 100%;
  height: 100%;
}
#products_list .sct-main .products ul li h3 {
  position: relative;
}
#products_list .sct-main .products ul li h3 span {
  display: inline-block;
  font-size: 1.2rem;
  border: 1px solid #818181;
  border-radius: 20px;
  padding: 2px 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #products_list .sct-main .products ul li h3 span {
    font-size: 1.1rem;
  }
}
#products_list .sct-main .products ul li h3 p {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #products_list .sct-main .products ul li h3 p {
    font-size: 1.8rem;
  }
}
#products_list .sct-main .products ul li h3:before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: auto;
  bottom: -15px;
  width: 50px;
  height: 4px;
  display: block;
  content: "";
  background-color: #A3AFAC;
}
#products_list .sct-main .products ul li .txt {
  padding: 0 50px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #products_list .sct-main .products ul li .txt {
    font-size: 1.4rem;
    padding: 0 20px;
    margin-bottom: 20px;
  }
}
#products_list .sct-main .products ul li .m-bt {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: auto;
  bottom: 0;
  width: 160px;
  height: 35px;
}
#products_list .sct-main .products ul li .m-bt a {
  font-size: 1.6rem;
  line-height: 35px;
  padding: 0 20px;
}

#products_list .sct-main .products ul li .m-bt a:after {
  background-color: #818181;
}
#products_list .sct-main .products ul li .m-bt a span {
  right: 20px;
}
#products_list .sct-contact {
  background-color: #A3AFAC;
}
#products_list .sct-contact .container {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1219px) {
  #products_list .sct-contact .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
#products_list .sct-contact .txt p {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}
@media screen and (max-width: 1219px) {
  #products_list .sct-contact .txt p {
    font-size: 1.5rem;
  }
}
#products_list .sct-contact .m-bt a {
  text-align: center;
  color: #333;
}
#products_list .sct-contact .m-bt a i {
  margin-right: 8px;
}
#products_list .sct-contact .m-bt a:hover {
  color: #fff;
}

#products_single .sct-pagetitle .title {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  color: #fff;
}
#products_single .sct-pagetitle .title .e {
  max-width: 50%;
  display: inline-block;
  font-size: 5.9rem;
  font-weight: 900;
  line-height: 7rem;
}
@media screen and (max-width: 1219px) {
  #products_single .sct-pagetitle .title .e {
    width: 100%;
    max-width: 100%;
    display: block;
    font-size: 3.6rem;
  }
}
#products_single .sct-pagetitle .title .e span {
  position: relative;
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 4rem;
}
@media screen and (max-width: 1219px) {
  #products_single .sct-pagetitle .title .e span {
    font-size: 1.4rem;
  }
}
#products_single .sct-pagetitle .title .e span:before {
  position: absolute;
  top: -5px;
  left: 10px;
  width: 40px;
  height: 7px;
  display: block;
  content: "";
  background-color: #fff;
}
@media screen and (max-width: 1219px) {
  #products_single .sct-pagetitle .title .e span:before {
    left: 0;
  }
}
#products_single .sct-pagetitle .title .txt {
  max-width: 50%;
  display: inline-block;
  padding-left: 35px;
}
@media screen and (max-width: 1219px) {
  #products_single .sct-pagetitle .title .txt {
    max-width: 100%;
    display: block;
    padding-left: 0;
  }
}
#products_single .sct-main {
  overflow: hidden;
}
#products_single .sct-main:before {
  background-color: #ededed;
}
#products_single .sct-main .container {
  overflow: visible;
  padding-top: 90px;
  padding-bottom: 190px;
}
@media screen and (max-width: 1219px) {
  #products_single .sct-main .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
#products_single .sct-main .products_box {
  padding: 0 60px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1219px) {
  #products_single .sct-main .products_box {
    padding: 0;
    margin-bottom: 40px;
  }
}
#products_single .sct-main .products_box h2 {
  position: relative;
  font-size: 0;
  text-align: left;
  padding-left: 25px;
  margin-bottom: 75px;
}
@media screen and (max-width: 1219px) {
  #products_single .sct-main .products_box h2 {
    padding-left: 20px;
    margin-bottom: 30px;
  }
}
#products_single .sct-main .products_box h2 p {
  max-width: 35%;
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 900;
  vertical-align: top;
}
@media screen and (max-width: 1219px) {
  #products_single .sct-main .products_box h2 p {
    width: 100%;
    max-width: 100%;
    display: block;
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
#products_single .sct-main .products_box h2 .txt {
  max-width: 65%;
  display: inline-block;
  font-size: 1.4rem;
  vertical-align: bottom;
  padding-left: 40px;
}
@media screen and (max-width: 1219px) {
  #products_single .sct-main .products_box h2 .txt {
    width: 100%;
    max-width: 100%;
    display: block;
    padding-left: 0;
  }
}
#products_single .sct-main .products_box h2:before {
  position: absolute;
  top: 12px;
  left: 0;
  width: 7px;
  height: 40px;
  display: block;
  content: "";
  background-color: #A3AFAC;
}
@media screen and (max-width: 1219px) {
  #products_single .sct-main .products_box h2:before {
    top: 7px;
    width: 4px;
    height: 25px;
  }
}
#products_single .sct-main .products_box ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 120px;
}
@media screen and (max-width: 767px) {
  #products_single .sct-main .products_box ul {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
  }
}
#products_single .sct-main .products_box ul li {
  width: 100%;
}
#products_single .sct-main .products_box ul li .image {
  position: relative;
  height: 320px;
  overflow: hidden;
  /*border-radius: 50px;*/
  margin-bottom: 25px;
}
#products_single .sct-main .products_box ul li .image img {
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 1219px) {
  #products_single .sct-main .products_box ul li .image {
    margin-bottom: 15px;
  }
}
#products_single .sct-main .products_box ul li .txt {
  font-size: 1.8rem;
  font-weight: 500;
}
#products_single .sct-main .products_box ul li .txt span {
  font-size: 1.4rem;
  color: #A3AFAC;
  margin-right: 10px;
}
@media screen and (max-width: 1219px) {
  #products_single .sct-main .products_box ul li .txt {
    font-size: 1.6rem;
  }
  #products_single .sct-main .products_box ul li .txt span {
    font-size: 1.2rem;
  }
}
#products_single .sct-main .products_box ul li .detail {
  text-align: left;
  margin-top: 10px;
}
#products_single .sct-main .m-bt {
  height: 40px;
}
#products_single .sct-main .m-bt a {
  font-size: 1.6rem;
  line-height: 40px;
  color: #fff;
}
#products_single .sct-main .m-bt a span {
  background-color: #fff;
}
@media screen and (min-width: 1220px) {
  #products_single .sct-main .m-bt a:hover {
    color: #fff;
  }
  #products_single .sct-main .m-bt a:hover span {
    background-color: #fff;
  }
}
@media screen and (max-width: 767px) {
  #products_single .sct-main .m-bt a {
    font-size: 1.4rem;
    padding: 0 20px;
  }
  #products_single .sct-main .m-bt a span {
    right: 20px;
  }
}
#products_single .sct-contact {
  background-color: #A3AFAC;
}
#products_single .sct-contact .container {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1219px) {
  #products_single .sct-contact .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
#products_single .sct-contact .container .txt {
  color: #fff;
}
#products_single .sct-contact .txt p {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1219px) {
  #products_single .sct-contact .txt p {
    font-size: 1.5rem;
  }
}
#products_single .sct-contact .m-bt a {
  text-align: center;
  color: #fff;
}
#products_single .sct-contact .m-bt a i {
  margin-right: 8px;
}

#products_single .sct-contact .m-bt a:hover {
  color: #fff;
}

#company .sct-main .container {
  padding-top: 90px;
  padding-bottom: 190px;
}
@media screen and (max-width: 1219px) {
  #company .sct-main .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
#company .sct-main table {
  width: 950px;
  border-collapse: collapse;
  font-size: 1.2rem;
  margin: 0 auto;
}
@media screen and (max-width: 1219px) {
  #company .sct-main table {
    width: 100%;
  }
}
#company .sct-main table tr {
  text-align: left;
}
#company .sct-main table tr th {
  width: 25%;
  font-weight: 900;
  vertical-align: top;
  color: #818181;
  border-bottom: 1px solid #A3AFAC;
  padding: 20px 50px;
}
@media screen and (max-width: 767px) {
  #company .sct-main table tr th {
    width: 27%;
    padding: 20px 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #company .sct-main table tr th {
    width: 30%;
  }
}
#company .sct-main table tr td {
  width: 75%;
  border-bottom: 1px solid #dcdcdc;
  padding: 20px 50px;
}
@media screen and (max-width: 767px) {
  #company .sct-main table tr td {
    width: 73%;
    padding: 20px 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #company .sct-main table tr td {
    width: 70%;
  }
}
#company .sct-main table tr td a {
  color: #007fff;
  text-decoration: underline;
}
#company .sct-access .container {
  padding-top: 0;
  padding-bottom: 160px;
}
@media screen and (max-width: 1219px) {
  #company .sct-access .container {
    padding-top: 0;
    padding-bottom: 80px;
  }
}
#company .sct-access .access {
  width: 980px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
@media screen and (max-width: 1219px) {
  #company .sct-access .access {
    width: 100%;
  }
}
#company .sct-access .access .map {
  width: 490px;
  height: 300px;
}
@media screen and (max-width: 767px) {
  #company .sct-access .access .map {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #company .sct-access .access .map {
    width: 35%;
    height: 250px;
  }
}
#company .sct-access .access .address {
  width: calc(100% - 490px);
  font-size: 500;
  line-height: 2.5rem;
  padding-left: 90px;
}
@media screen and (max-width: 767px) {
  #company .sct-access .access .address {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #company .sct-access .access .address {
    width: 65%;
    padding-left: 40px;
  }
}
#company .sct-access .access .address .l {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 1219px) {
  #company .sct-access .access .address .l {
    margin-bottom: 20px;
  }
}
#company .sct-access .access .address .bt {
  text-align: left;
  margin-top: 45px;
}
@media screen and (max-width: 1219px) {
  #company .sct-access .access .address .bt {
    margin-top: 30px;
  }
}
#company .sct-access .access .address .bt a {
  position: relative;
  width: 210px;
  height: 45px;
  display: block;
  line-height: 45px;
  background-color: #818181;
  box-shadow: 5px 5px 15px -10px #333;
  border-radius: 50px;
  padding: 0 20px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #company .sct-access .access .address .bt a {
    margin: 0 auto;
  }
}
#company .sct-access .access .address .bt a span {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: auto;
  right: 20px;
  font-size: 1rem;
  color: #fff;
}
#company .sct-history {
  background-color: #ededed;
}
#company .sct-history .container {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1219px) {
  #company .sct-history .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
#company .sct-history .p-title span {
  color: #A3AFAC;
}
#company .sct-history table {
  /*width: 100%;*/
  width: 980px;
  margin: 0 auto;
  border-collapse: collapse;
  text-align: left;
}
@media screen and (max-width: 1219px) {
  #company .sct-history table {
    width: 100%;
  }
}
#company .sct-history table tr {
  border-bottom: 1px solid #fff;
}
#company .sct-history table tr th {
  position: relative;
  font-size: 3.5rem;
  font-weight: 400;
  color: #818181;
  width: 20%;
  padding: 10px 30px;
}
@media screen and (max-width: 767px) {
  #company .sct-history table tr th {
    width: 25%;
    font-size: 2rem;
    padding: 5px 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #company .sct-history table tr th {
    width: 22%;
    font-size: 2.4rem;
    padding: 10px 20px;
  }
}
#company .sct-history table tr th:before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: auto;
  right: 0;
  width: 80px;
  content: "………";
  color: #A3AFAC;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #company .sct-history table tr th:before {
    width: 22px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #company .sct-history table tr th:before {
    width: 30px;
  }
}
#company .sct-history table tr td {
  width: 80%;
  font-size: 0;
  padding: 10px 50px;
}
@media screen and (max-width: 767px) {
  #company .sct-history table tr td {
    width: 75%;
    padding: 5px 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #company .sct-history table tr td {
    width: 78%;
    padding: 10px 20px;
  }
}
#company .sct-history table tr td span {
  width: 4%;
  display: inline-block;
  font-size: 1.6rem;
  text-align: right;
  vertical-align: top;
}
@media screen and (max-width: 1219px) {
  #company .sct-history table tr td span {
    width: 12%;
    font-size: 1.3rem;
  }
}
#company .sct-history table tr td p {
  width: 96%;
  display: inline-block;
  font-size: 1.6rem;
  padding-left: 20px;
}
@media screen and (max-width: 1219px) {
  #company .sct-history table tr td p {
    width: 88%;
    font-size: 1.3rem;
    padding-left: 10px;
  }
}

#recruit .sct-main .container {
  padding-top: 240px;
  padding-bottom: 140px;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-main .container {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
#recruit .sct-main h2 {
  position: relative;
  width: 820px;
  margin: 0 auto 70px;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-main h2 {
    width: 100%;
    margin-bottom: 30px;
  }
}
#recruit .sct-main h2 span {
  /*position: absolute;*/
  position: relative;
  /*top: -80px;*/
  /*left: -100px;*/
  color: #A3AFAC;
  font-size: 12rem;
  font-weight: 400;
  letter-spacing: 1.1rem;
  z-index: -1;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-main h2 span {
    top: -30px;
    left: -15px;
    font-size: 4rem;
    letter-spacing: 1rem;
  }
}
#recruit .sct-main h2 p {
  font-size: 3.4rem;
  font-weight: 900;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-main h2 p {
    font-size: 2rem;
  }
}
#recruit .sct-main .txt {
  width: 820px;
  font-size: 1.8rem;
  line-height: 3.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-main .txt {
    width: 100%;
    font-size: 1.6rem;
    line-height: 3rem;
  }
}
#recruit .sct-main .txt .margin {
  margin-bottom: 30px;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-main .txt .margin {
    margin-bottom: 20px;
  }
}
#recruit .sct-photo .container {
  width: 100%;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-photo .container {
    padding: 0;
  }
}
#recruit .sct-photo img {
  width: 100%;
}
#recruit .sct-interview {
  position: relative;
}
#recruit .sct-interview:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  display: block;
  content: "";
  background-color: #ededed;
  border-radius: 50px;
}
#recruit .sct-interview .container {
  padding-top: 340px;
  padding-bottom: 240px;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-interview .container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
#recruit .sct-interview h2 {
  position: relative;
  margin: 0 auto 70px;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-interview h2 {
    margin-bottom: 30px;
  }
}
#recruit .sct-interview h2 span {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -110px;
  color: #A3AFAC;
  font-size: 12rem;
  font-weight: 400;
  z-index: -1;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-interview h2 span {
    top: -30px;
    font-size: 4rem;
  }
}
#recruit .sct-interview h2 p {
  font-size: 3.4rem;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-interview h2 p {
    font-size: 2rem;
  }
}
#recruit .sct-interview .movie {
  position: relative;
  width: 70%;
  aspect-ratio: 16 / 9;
  background-color: #f9f9f9;
  margin: 0 auto 160px;
}
#recruit .sct-interview .movie iframe {
  width: 100%;
  height: 100%;
}
#recruit .sct-interview .movie .ico {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}
#recruit .sct-interview .movie .ico img {
  width: 150px;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-interview .movie {
    width: 100%;
    margin-bottom: 40px;
  }
}
#recruit .sct-interview ul {
  width: 1020px;
  margin: 0 auto;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-interview ul {
    width: 100%;
  }
}
#recruit .sct-interview ul li {
  display: flex;
  flex-wrap: wrap;
}
#recruit .sct-interview ul li:not(:last-child) {
  margin-bottom: 150px;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-interview ul li:not(:last-child) {
    margin-bottom: 80px;
  }
}
#recruit .sct-interview ul li .image {
  width: 390px;
}
#recruit .sct-interview ul li .image img {
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  #recruit .sct-interview ul li .image {
    width: 100%;
    margin-bottom: 20px;
  }
  #recruit .sct-interview ul li .image img {
    width: 60%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #recruit .sct-interview ul li .image {
    width: 40%;
  }
}
#recruit .sct-interview ul li .box {
  width: calc(100% - 390px);
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  #recruit .sct-interview ul li .box {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #recruit .sct-interview ul li .box {
    width: 60%;
    padding-left: 40px;
  }
}
#recruit .sct-interview ul li .box h3 {
  text-align: left;
}
#recruit .sct-interview ul li .box h3 span {
  display: inline-block;
  background-color: #A3AFAC;
  border-radius: 20px;
  padding: 2px 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-interview ul li .box h3 span {
    font-size: 1.4rem;
  }
}
#recruit .sct-interview ul li .box h3 p {
  font-size: 3.4rem;
  font-weight: 900;
  margin-bottom: 20px;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-interview ul li .box h3 p {
    font-size: 2.4rem;
  }
}
#recruit .sct-interview ul li .box .name {
  font-size: 2rem;
  font-weight: 900;
  text-align: right;
  border-bottom: 1px solid #A3AFAC;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-interview ul li .box .name {
    font-size: 1.6rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
#recruit .sct-interview ul li .box .name span {
  font-size: 1.6rem;
  margin-left: 20px;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-interview ul li .box .name span {
    font-size: 1.2rem;
  }
}
#recruit .sct-interview ul li .box .txt {
  font-size: 1.4rem;
  line-height: 2.8rem;
}
#recruit .sct-interview ul li .box .txt p {
  margin-bottom: 30px;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-interview ul li .box .txt p {
    margin-bottom: 20px;
  }
}
#recruit .sct-interview ul li:nth-child(2n) {
  flex-direction: row-reverse;
}
#recruit .sct-interview ul li:nth-child(2n) .box {
  padding-left: 0;
  padding-right: 80px;
}
@media screen and (max-width: 767px) {
  #recruit .sct-interview ul li:nth-child(2n) .box {
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #recruit .sct-interview ul li:nth-child(2n) .box {
    padding-right: 40px;
  }
}
#recruit .sct-application .container {
  padding-top: 220px;
  padding-bottom: 140px;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-application .container {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
#recruit .sct-application h2 {
  position: relative;
  margin: 0 auto 70px;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-application h2 {
    margin-bottom: 30px;
  }
}
#recruit .sct-application h2 span {
  width: 100%;
  /*osition: absolute;*/
  top: 0;
  /*left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);*/
  top: -110px;
  color: #A3AFAC;
  font-size: 12rem;
  font-weight: 400;
  z-index: -1;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-application h2 span {
    top: -30px;
    font-size: 4rem;
  }
}
#recruit .sct-application h2 p {
  font-size: 3.4rem;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-application h2 p {
    font-size: 2rem;
  }
}
#recruit .sct-application .txt {
  margin-bottom: 60px;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-application .txt {
    margin-bottom: 30px;
  }
}
#recruit .sct-application .txt p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3.6rem;
  text-align: center;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-application .txt p {
    font-size: 1.6rem;
    line-height: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  #recruit .sct-application .txt p {
    text-align: left;
  }
}
#recruit .sct-application .application {
  width: 920px;
  margin: 0 auto;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-application .application {
    width: 100%;
  }
}
#recruit .sct-application .application ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 10px;
}
@media screen and (max-width: 767px) {
  #recruit .sct-application .application ul {
    grid-template-columns: 1fr;
  }
}
#recruit .sct-application .application ul li.m-bt {
  width: 100%;
}
#recruit .sct-application .application ul li.m-bt a {
  font-size: 2.6rem;
  font-weight: 900;
}
@media screen and (max-width: 1219px) {
  #recruit .sct-application .application ul li.m-bt a {
    font-size: 2rem;
  }
}
#recruit .sct-application .application ul li.m-bt a:after {
  background-color: #818181;
}

#recruit_detail .sct-main .container {
  padding-top: 200px;
  padding-bottom: 140px;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-main .container {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
#recruit_detail .sct-main h2 {
  position: relative;
  margin: 0 auto 140px;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-main h2 {
    margin-bottom: 60px;
  }
}
#recruit_detail .sct-main h2 span {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -110px;
  color: #A3AFAC;
  font-size: 12rem;
  font-weight: 400;
  z-index: -1;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-main h2 span {
    top: -30px;
    font-size: 4rem;
  }
}
#recruit_detail .sct-main h2 p {
  font-size: 3.4rem;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-main h2 p {
    font-size: 2rem;
  }
}
#recruit_detail .sct-main h3 {
  width: 750px;
  position: relative;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 3.8rem;
  text-align: left;
  padding-left: 18px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-main h3 {
    width: 100%;
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
#recruit_detail .sct-main h3:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  display: block;
  content: "";
  background-color: #A3AFAC;
}
@media screen and (max-width: 767px) {
  #recruit_detail .sct-main h3:before {
    left: 0;
  }
}
#recruit_detail .sct-main .application {
  width: 750px;
  box-shadow: 5px 5px 10px -10px #777;
  margin: 0 auto 80px;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-main .application {
    width: 100%;
  }
}
#recruit_detail .sct-main .application dl {
  display: flex;
  font-size: 1.2rem;
  line-height: 1.7rem;
}
#recruit_detail .sct-main .application dl:not(:last-child) {
  border-bottom: 1px solid #dcdcdc;
}
#recruit_detail .sct-main .application dl dt {
  width: 27%;
  font-weight: 900;
  text-align: center;
  color: #fff;
  background-color: #818181;
  padding: 25px;
}
@media screen and (max-width: 767px) {
  #recruit_detail .sct-main .application dl dt {
    padding: 15px;
  }
}
#recruit_detail .sct-main .application dl dd {
  width: 73%;
  background-color: #fcfcfc;
  padding: 25px 40px;
}
@media screen and (max-width: 767px) {
  #recruit_detail .sct-main .application dl dd {
    padding: 15px 20px;
  }
}
#recruit_detail .sct-main .application dl dd .margin {
  margin-bottom: 15px;
}
#recruit_detail .sct-main .entry p {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-main .entry p {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}
#recruit_detail .sct-main .entry .bt a {
  width: 340px;
  display: block;
  font-weight: 900;
  background-color: #A3AFAC;
  border-radius: 60px;
  padding: 15px;
  margin: 0 auto;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #recruit_detail .sct-main .entry .bt a {
    width: 100%;
    padding: 10px;
  }
}
#recruit_detail .sct-main .entry .bt a p {
  font-size: 3.9rem;
  line-height: 5rem;
  margin-bottom: 0;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-main .entry .bt a p {
    font-size: 2.4rem;
    line-height: 3rem;
  }
}
#recruit_detail .sct-main .entry .bt a span {
  display: block;
  font-size: 1.4rem;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-main .entry .bt a span {
    font-size: 1.2rem;
  }
}
#recruit_detail .sct-main .entry .bt a:hover {
  opacity: 1;
  color: #fff;
  background-color: #333;
}
#recruit_detail .sct-interview {
  position: relative;
}
#recruit_detail .sct-interview:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  display: block;
  content: "";
  background-color: #ededed;
  border-radius: 50px 50px 0 0;
}
#recruit_detail .sct-interview .container {
  padding-top: 80px;
  padding-bottom: 240px;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-interview .container {
    padding-top: 20px;
    padding-bottom: 100px;
  }
}
#recruit_detail .sct-interview h2 {
  position: relative;
  margin: 0 auto 70px;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-interview h2 {
    margin-bottom: 30px;
  }
}
#recruit_detail .sct-interview h2 span {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -110px;
  color: #A3AFAC;
  font-size: 12rem;
  font-weight: 400;
  z-index: -1;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-interview h2 span {
    top: -30px;
    font-size: 4rem;
  }
}
#recruit_detail .sct-interview h2 p {
  font-size: 3.4rem;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-interview h2 p {
    font-size: 2rem;
  }
}
#recruit_detail .sct-interview .movie {
  position: relative;
  width: 70%;
  aspect-ratio: 16 / 9;
  background-color: #f9f9f9;
  margin: 0 auto 160px;
}
#recruit_detail .sct-interview .movie iframe {
  width: 100%;
  height: 100%;
}
#recruit_detail .sct-interview .movie .ico {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}
#recruit_detail .sct-interview .movie .ico img {
  width: 150px;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-interview .movie {
    width: 100%;
    margin-bottom: 40px;
  }
}
#recruit_detail .sct-interview ul {
  width: 1020px;
  margin: 0 auto;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-interview ul {
    width: 100%;
  }
}
#recruit_detail .sct-interview ul li {
  display: flex;
  flex-wrap: wrap;
}
#recruit_detail .sct-interview ul li:not(:last-child) {
  margin-bottom: 150px;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-interview ul li:not(:last-child) {
    margin-bottom: 80px;
  }
}
#recruit_detail .sct-interview ul li .image {
  width: 390px;
}
#recruit_detail .sct-interview ul li .image img {
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  #recruit_detail .sct-interview ul li .image {
    width: 100%;
    margin-bottom: 20px;
  }
  #recruit_detail .sct-interview ul li .image img {
    width: 60%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #recruit_detail .sct-interview ul li .image {
    width: 40%;
  }
}
#recruit_detail .sct-interview ul li .box {
  width: calc(100% - 390px);
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  #recruit_detail .sct-interview ul li .box {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #recruit_detail .sct-interview ul li .box {
    width: 60%;
    padding-left: 40px;
  }
}
#recruit_detail .sct-interview ul li .box h3 {
  text-align: left;
}
#recruit_detail .sct-interview ul li .box h3 span {
  display: inline-block;
  background-color: #A3AFAC;
  border-radius: 20px;
  padding: 2px 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-interview ul li .box h3 span {
    font-size: 1.4rem;
  }
}
#recruit_detail .sct-interview ul li .box h3 p {
  font-size: 3.4rem;
  font-weight: 900;
  margin-bottom: 20px;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-interview ul li .box h3 p {
    font-size: 2.4rem;
  }
}
#recruit_detail .sct-interview ul li .box .name {
  font-size: 2rem;
  font-weight: 900;
  text-align: right;
  border-bottom: 1px solid #A3AFAC;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-interview ul li .box .name {
    font-size: 1.6rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
#recruit_detail .sct-interview ul li .box .name span {
  font-size: 1.6rem;
  margin-left: 20px;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-interview ul li .box .name span {
    font-size: 1.2rem;
  }
}
#recruit_detail .sct-interview ul li .box .txt {
  font-size: 1.4rem;
  line-height: 2.8rem;
}
#recruit_detail .sct-interview ul li .box .txt p {
  margin-bottom: 30px;
}
@media screen and (max-width: 1219px) {
  #recruit_detail .sct-interview ul li .box .txt p {
    margin-bottom: 20px;
  }
}
#recruit_detail .sct-interview ul li:nth-child(2n) {
  flex-direction: row-reverse;
}
#recruit_detail .sct-interview ul li:nth-child(2n) .box {
  padding-left: 0;
  padding-right: 80px;
}
@media screen and (max-width: 767px) {
  #recruit_detail .sct-interview ul li:nth-child(2n) .box {
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #recruit_detail .sct-interview ul li:nth-child(2n) .box {
    padding-right: 40px;
  }
}

#news_list .sct-main .container {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1219px) {
  #news_list .sct-main .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
#news_list .sct-main .news_list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #news_list .sct-main .news_list {
    flex-direction: column-reverse;
  }
}
#news_list .sct-main .news_list h2 {
  position: relative;
  text-align: left;
  line-height: 3rem;
  margin-bottom: 60px;
}
#news_list .sct-main .news_list h2 span {
  font-size: 1.2rem;
  font-weight: 900;
}
#news_list .sct-main .news_list h2 p {
  font-size: 3rem;
  font-weight: 500;
}
#news_list .sct-main .news_list h2:before {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 40px;
  height: 7px;
  display: block;
  content: "";
  background-color: #A3AFAC;
}
@media screen and (max-width: 767px) {
  #news_list .sct-main .news_list h2:before {
    left: 0;
  }
}
#news_list .sct-main .news_list .cat {
  width: 260px;
}
@media screen and (max-width: 767px) {
  #news_list .sct-main .news_list .cat {
    width: 100%;
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #news_list .sct-main .news_list .cat {
    width: 25%;
  }
}
#news_list .sct-main .news_list .cat ul li {
  text-align: left;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  #news_list .sct-main .news_list .cat ul li {
    display: inline-block;
    margin: 2px;
  }
}
#news_list .sct-main .news_list .cat ul li a {
  display: inline-block;
  font-size: 1.1rem;
  color: #818181;
  background-color: #dcdcdc;
  border-radius: 20px;
  padding: 2px 20px;
}
@media screen and (min-width: 1220px) {
  #news_list .sct-main .news_list .cat ul li a:hover {
    opacity: 1;
    color: #fff;
    background-color: #707070;
  }
}
#news_list .sct-main .news_list .news {
  width: calc(100% - 260px);
}
@media screen and (max-width: 767px) {
  #news_list .sct-main .news_list .news {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #news_list .sct-main .news_list .news {
    width: 75%;
  }
}
#news_list .sct-main .news_list .news ul li {
  text-align: left;
  border-bottom: 1px solid #dcdcdc;
  padding: 25px;
}
@media screen and (max-width: 1219px) {
  #news_list .sct-main .news_list .news ul li {
    padding: 15px;
  }
}
#news_list .sct-main .news_list .news ul li a {
  position: relative;
  display: block;
  padding-right: 40px;
}
#news_list .sct-main .news_list .news ul li .date {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
#news_list .sct-main .news_list .news ul li .date span {
  font-size: 1rem;
  background-color: #A3AFAC;
  border-radius: 10px;
  padding: 2px 10px;
  margin-left: 10px;
  color: #fff;
}
#news_list .sct-main .news_list .news ul li .title {
  font-size: 1.8rem;
}
@media screen and (max-width: 1219px) {
  #news_list .sct-main .news_list .news ul li .title {
    font-size: 1.6rem;
  }
}
#news_list .sct-main .news_list .news ul li i {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: auto;
  right: 0;
  font-size: 2.4rem;
  color: #818181;
}
#news_list .sct-main .wp-pagenavi {
  text-align: right;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  #news_list .sct-main .wp-pagenavi {
    margin-top: 20px;
  }
}
#news_list .sct-main .wp-pagenavi .current,
#news_list .sct-main .wp-pagenavi .page,
#news_list .sct-main .wp-pagenavi .extend,
#news_list .sct-main .wp-pagenavi .previouspostslink,
#news_list .sct-main .wp-pagenavi .nextpostslink,
#news_list .sct-main .wp-pagenavi .first,
#news_list .sct-main .wp-pagenavi .last {
  height: 30px;
  display: inline-block;
  font-size: 14px;
  line-height: 23px;
  text-align: center;
  text-decoration: none;
  border: none;
  margin: 0 5px;
}
@media screen and (max-width: 1219px) {
  #news_list .sct-main .wp-pagenavi .current,
  #news_list .sct-main .wp-pagenavi .page,
  #news_list .sct-main .wp-pagenavi .extend,
  #news_list .sct-main .wp-pagenavi .previouspostslink,
  #news_list .sct-main .wp-pagenavi .nextpostslink,
  #news_list .sct-main .wp-pagenavi .first,
  #news_list .sct-main .wp-pagenavi .last {
    width: 25px;
    height: 25px;
    font-size: 12px;
    line-height: 19px;
    margin: 0 2px;
  }
}
#news_list .sct-main .wp-pagenavi .previouspostslink,
#news_list .sct-main .wp-pagenavi .first {
  font-weight: 900;
  color: #d1d1d1;
}
#news_list .sct-main .wp-pagenavi .nextpostslink,
#news_list .sct-main .wp-pagenavi .last {
  font-weight: 900;
  color: #A3AFAC;
}
#news_list .sct-main .wp-pagenavi .current {
  color: #333;
  background-color: none;
  border-bottom: 2px solid #A3AFAC;
}

#news_single .sct-main .container {
  width: 900px;
  padding-top: 140px;
  padding-bottom: 140px;
}
@media screen and (max-width: 1219px) {
  #news_single .sct-main .container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
#news_single .sct-main .news_single .date {
  font-size: 1.5rem;
  text-align: left;
  color: #818181;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  #news_single .sct-main .news_single .date {
    font-size: 1.2rem;
  }
}
#news_single .sct-main .news_single .date .cat {
  display: inline-block;
  margin-left: 10px;
}
#news_single .sct-main .news_single .date .cat span {
  display: inline-block;
  font-size: 1.1rem;
  color: #fff;
  background-color: #A3AFAC;
  border-radius: 20px;
  padding: 2px 20px;
}
#news_single .sct-main .news_single .title {
  font-size: 3rem;
  font-weight: 500;
  text-align: left;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #news_single .sct-main .news_single .title {
    font-size: 2rem;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
#news_single .sct-main .news_single .txt {
  font-size: 1.8rem;
  line-height: 3.6rem;
  padding: 0 50px;
}
@media screen and (max-width: 767px) {
  #news_single .sct-main .news_single .txt {
    font-size: 1.4rem;
    line-height: 2.6rem;
    padding: 0;
  }
}
#news_single .sct-main .news_single .txt a {
  word-break: break-all;
  text-decoration: underline;
}
#news_single .sct-bt_area .container {
  width: 1000px;
  padding-top: 0;
  padding-bottom: 140px;
}
@media screen and (max-width: 1219px) {
  #news_single .sct-bt_area .container {
    width: 100%;
    padding-top: 0;
    padding-bottom: 50px;
  }
}
#news_single .sct-bt_area .bt_area ul {
  display: flex;
}
#news_single .sct-bt_area .bt_area ul li {
  width: 33.333%;
}
#news_single .sct-bt_area .bt_area ul li .m-bt {
  height: 40px;
}
#news_single .sct-bt_area .bt_area ul li .m-bt a {
  font-size: 1.6rem;
  line-height: 40px;
}
#news_single .sct-bt_area .bt_area ul li .m-bt a:after {
  background-color: #818181;
}
@media screen and (max-width: 767px) {
  #news_single .sct-bt_area .bt_area ul li .m-bt a {
    font-size: 1.4rem;
    padding: 0 20px;
  }
  #news_single .sct-bt_area .bt_area ul li .m-bt a span {
    right: 20px;
  }
}
#news_single .sct-bt_area .bt_area ul li .back-bt a {
  position: relative;
  display: inline-block;
  height: 40px;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  #news_single .sct-bt_area .bt_area ul li .back-bt a {
    font-size: 1.2rem;
  }
}
#news_single .sct-bt_area .bt_area ul li .back-bt a:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  display: block;
  content: "";
  background-color: #A3AFAC;
}

#blog .sct-bloglist {
  overflow: hidden;
}
#blog .sct-bloglist .container {
  width: 750px;
  overflow: visible;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1219px) {
  #blog .sct-bloglist .container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
#blog .sct-bloglist .blog {
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  padding: 50px 60px;
}
#blog .sct-bloglist .blog table {
  width: 100%;
  border-collapse: collapse;
}
#blog .sct-bloglist .blog table tr {
  text-align: left;
  border-bottom: 1px dashed #ccc;
}
#blog .sct-bloglist .blog table tr th {
  width: 15%;
  font-weight: 300;
  padding: 10px;
}
#blog .sct-bloglist .blog table tr td {
  width: 85%;
  padding: 10px;
}
#blog .sct-bloglist .blog table tr td a {
  text-decoration: none;
  color: #A3AFAC;
}
@media screen and (max-width: 767px) {
  #blog .sct-bloglist .blog {
    padding: 20px;
  }
  #blog .sct-bloglist .blog table,
  #blog .sct-bloglist .blog tbody,
  #blog .sct-bloglist .blog tr,
  #blog .sct-bloglist .blog th,
  #blog .sct-bloglist .blog td {
    width: 100%;
    display: block;
  }
  #blog .sct-bloglist .blog table tr th {
    width: 100%;
    font-size: 12px;
    color: #999;
    padding: 5px 0 0;
  }
  #blog .sct-bloglist .blog table tr td {
    width: 100%;
    padding: 0 0 5px;
  }
}
#blog .sct-bloglist .wp-pagenavi {
  text-align: center;
  margin-top: 40px;
}
#blog .sct-bloglist .wp-pagenavi .current,
#blog .sct-bloglist .wp-pagenavi .page,
#blog .sct-bloglist .wp-pagenavi .extend,
#blog .sct-bloglist .wp-pagenavi .previouspostslink,
#blog .sct-bloglist .wp-pagenavi .nextpostslink,
#blog .sct-bloglist .wp-pagenavi .first,
#blog .sct-bloglist .wp-pagenavi .last {
  width: 30px;
  height: 30px;
  display: inline-block;
  font-size: 14px;
  line-height: 23px;
  text-decoration: none;
  color: #A3AFAC;
  border: 1px solid #A3AFAC;
  border-radius: 2px;
  margin: 0 5px;
}
@media screen and (max-width: 1219px) {
  #blog .sct-bloglist .wp-pagenavi .current,
  #blog .sct-bloglist .wp-pagenavi .page,
  #blog .sct-bloglist .wp-pagenavi .extend,
  #blog .sct-bloglist .wp-pagenavi .previouspostslink,
  #blog .sct-bloglist .wp-pagenavi .nextpostslink,
  #blog .sct-bloglist .wp-pagenavi .first,
  #blog .sct-bloglist .wp-pagenavi .last {
    width: 25px;
    height: 25px;
    font-size: 12px;
    line-height: 19px;
    margin: 0 2px;
  }
}
#blog .sct-bloglist .wp-pagenavi .previouspostslink,
#blog .sct-bloglist .wp-pagenavi .nextpostslink,
#blog .sct-bloglist .wp-pagenavi .first,
#blog .sct-bloglist .wp-pagenavi .last {
  color: #fff;
  background-color: #A3AFAC;
}
#blog .sct-bloglist .wp-pagenavi .current {
  color: #333;
  background-color: #dcdcdc;
}
#blog .sct-blogsingle {
  overflow: hidden;
}
#blog .sct-blogsingle .container {
  width: 750px;
  overflow: visible;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1219px) {
  #blog .sct-blogsingle .container {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
#blog .sct-blogsingle .single {
  margin-bottom: 60px;
}
#blog .sct-blogsingle .single .title {
  font-size: 18px;
  text-align: left;
  color: #A3AFAC;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #blog .sct-blogsingle .single .title {
    font-size: 20px;
  }
}
#blog .sct-blogsingle .single .date {
  font-size: 12px;
  text-align: right;
  margin-bottom: 5px;
}
#blog .sct-blogsingle .single .txt {
  text-align: justify;
  text-justify: inter-ideograph;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  padding: 60px;
}
#blog .sct-blogsingle .single .txt a {
  color: #A3AFAC;
  word-break: break-all;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #blog .sct-blogsingle .single .title {
    font-size: 16px;
  }
  #blog .sct-blogsingle .single .date {
    font-size: 12px;
  }
  #blog .sct-blogsingle .single .txt {
    padding: 20px;
  }
}

#contact .sct-main .container {
  padding-top: 100px;
  padding-bottom: 140px;
}
@media screen and (max-width: 1219px) {
  #contact .sct-main .container {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}
#contact .sct-main h2 {
  font-weight: 500;
  line-height: 5rem;
  text-align: left;
  margin-bottom: 80px;
}
#contact .sct-main h2 p {
  font-size: 7rem;
}
#contact .sct-main h2 span {
  display: block;
  font-size: 1.8rem;
  padding-left: 20px;
}
#contact .sct-main h3 {
  width: 900px;
  position: relative;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 3.8rem;
  text-align: left;
  padding-left: 18px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 1219px) {
  #contact .sct-main h3 {
    width: 100%;
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
#contact .sct-main h3:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  display: block;
  content: "";
  background-color: #A3AFAC;
}
@media screen and (max-width: 767px) {
  #contact .sct-main h3:before {
    left: 0;
  }
}
#contact .sct-main .faq {
  width: 830px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 1219px) {
  #contact .sct-main .faq {
    width: 100%;
  }
}
#contact .sct-main .faq ul li {
  text-align: left;
  border-bottom: 1px solid #dcdcdc;
}
#contact .sct-main .faq ul li:not(:last-child) {
  margin-bottom: 20px;
}
#contact .sct-main .faq ul li .q {
  position: relative;
  cursor: pointer;
  padding: 15px 30px 15px 40px;
}
#contact .sct-main .faq ul li .q:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "Q";
  font-size: 3rem;
  color: #A3AFAC;
}
#contact .sct-main .faq ul li .q i {
  position: absolute;
  top: 18px;
  right: 0;
  color: #818181;
  font-size: 2rem;
}
#contact .sct-main .faq ul li .a {
  display: none;
  position: relative;
  padding: 15px 0 15px 40px;
}
#contact .sct-main .faq ul li .a:before {
  position: absolute;
  top: 0;
  left: 2px;
  content: "A";
  font-size: 3rem;
  color: #818181;
}
#contact .sct-contact {
  background-color: #ededed;
}
#contact .sct-contact .container {
  width: 820px;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1219px) {
  #contact .sct-contact .container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
#contact .sct-contact h2 {
  font-weight: 500;
  line-height: 5rem;
  text-align: left;
  margin-bottom: 80px;
}
@media screen and (max-width: 1219px) {
  #contact .sct-contact h2 {
    line-height: 4rem;
    margin-bottom: 40px;
  }
}
#contact .sct-contact h2 span {
  display: block;
  font-size: 1.8rem;
  text-align: center;
}
#contact .sct-contact h2 p {
  font-size: 7rem;
  text-align: center;
}
@media screen and (max-width: 1219px) {
  #contact .sct-contact h2 p {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 768px) {
  #contact .sct-contact .txt {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  #contact .sct-contact .txt {
    margin-bottom: 30px;
  }
}
#contact .sct-contact .caution {
  display: inline-block;
  font-size: 1.2rem;
  color: #fff;
  background-color: #dd0303;
  border-radius: 20px;
  padding: 0 10px;
  margin-left: 10px;
}
#contact .sct-contact table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
#contact .sct-contact table tr th {
  position: relative;
  width: 30%;
  font-weight: 400;
  text-align: right;
  vertical-align: top;
  padding: 36px 80px 20px 0;
}
#contact .sct-contact table tr th span {
  position: absolute;
  top: 39px;
  right: 20px;
  padding: 36px 80px 20px 0;
}
@media screen and (max-width: 767px) {
  #contact .sct-contact table tr th span {
    position: static;
  }
}
@media screen and (max-width: 767px) {
  #contact .sct-contact table tr th {
    width: 100%;
    font-weight: 700;
    color: #999;
    text-align: left;
    padding: 20px 80px 10px 0;
  }
}
#contact .sct-contact table tr td {
  position: relative;
  width: 70%;
  text-align: left;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  #contact .sct-contact table tr td {
    width: 100%;
    padding: 0 0 20px;
  }
}
#contact .sct-contact table tr td input,
#contact .sct-contact table tr td textarea,
#contact .sct-contact table tr td select {
  width: 100%;
  height: 50px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  border: none;
  border-radius: 30px;
  font-size: 1.6rem;
  line-height: 1.15;
  box-shadow: none;
  -moz-transition: box-shadow 0.3s, border 0.3s;
  -o-transition: box-shadow 0.3s, border 0.3s;
  -webkit-transition: box-shadow 0.3s, border 0.3s;
  transition: box-shadow 0.3s, border 0.3s;
  overflow: visible;
  padding: 8px 20px;
  margin: 4px 0;
}
#contact .sct-contact table tr td input.long_s,
#contact .sct-contact table tr td textarea.long_s,
#contact .sct-contact table tr td select.long_s {
  width: 30%;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  #contact .sct-contact table tr td input.long_s,
  #contact .sct-contact table tr td textarea.long_s,
  #contact .sct-contact table tr td select.long_s {
    width: 40%;
  }
}
#contact .sct-contact table tr td input:focus,
#contact .sct-contact table tr td textarea:focus,
#contact .sct-contact table tr td select:focus {
  border: 1px solid #A3AFAC;
  box-shadow: 0 1px 0 0 #A3AFAC;
}
#contact .sct-contact table tr td textarea {
  height: auto;
  min-height: 150px;
  line-height: normal;
  padding: 12px 20px;
  resize: none;
  box-sizing: border-box;
}
#contact .sct-contact table tr td.radio label {
  position: static;
  display: block;
  color: #333;
  margin: 12px 5px 8px 0;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
@media screen and (max-width: 1219px) {
  #contact .sct-contact table tr td.radio label {
    width: 100%;
  }
}
#contact .sct-contact table tr td.radio span {
  display: inline-block;
  text-align: left;
}
#contact .sct-contact table tr td.radio input {
  width: auto;
  height: auto;
  vertical-align: middle;
  margin: 0;
}
#contact .sct-contact table tr td.radio input:focus {
  border-bottom: none;
  box-shadow: none;
}
#contact .sct-contact table tr td.select label {
  position: static;
  display: block;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
#contact .sct-contact table tr td.select select {
  position: relative;
  width: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  #contact .sct-contact table tr td.select select {
    -webkit-appearance: none;
  }
}
#contact .sct-contact table tr td.file input {
  width: auto;
  border-radius: 0;
  padding: 12px 0 0 0;
}
#contact .sct-contact table tr td .error {
  position: absolute;
  left: 0;
  bottom: -6px;
  display: inline-block;
  font-size: 12px;
  color: #dd0303;
  padding: 2px 5px;
}
@media screen and (max-width: 767px) {
  #contact .sct-contact table tr td .error {
    position: static;
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  #contact .sct-contact table,
  #contact .sct-contact thead,
  #contact .sct-contact tbody,
  #contact .sct-contact tr,
  #contact .sct-contact th,
  #contact .sct-contact td {
    display: block;
  }
}
#contact .sct-contact .policy {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1219px) {
  #contact .sct-contact .policy {
    margin-bottom: 30px;
  }
}
#contact .sct-contact .policy .s {
  font-size: 1rem;
}
#contact .sct-contact .btn,
#contact .sct-contact .btn_back {
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  display: inline-block;
  padding: 15px 100px;
  font-size: 1.4rem;
  font-weight: 500;
  border: none;
  margin: 0 10px;
  color: #fff;
  /*color: #333;*/
  background: #A3AFAC;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  #contact .sct-contact .btn,
  #contact .sct-contact .btn_back {
    width: 100%;
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 1220px) {
  #contact .sct-contact .btn:hover,
  #contact .sct-contact .btn_back:hover {
    cursor: pointer;
    color: #fff;
    background: #333;
    opacity: 1;
  }
}
#contact .sct-contact .grp {
  width: 750px;
  margin: 0 auto;
}
#contact .sct-contact .grp p {
  margin-bottom: 40px;
}
@media screen and (max-width: 1219px) {
  #contact .sct-contact .grp {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #contact .sct-contact .grp .row .col {
    width: 100%;
  }
}
#contact .sct-contact .submit {
  margin-top: 60px;
  font-size: 0;
}
#contact .sct-contact .submit a.button {
  color: #A3AFAC;
  text-decoration: none;
}
#contact .sct-confirm dl {
  text-align: left;
}
#contact .sct-confirm dl dt {
  display: block;
  font-size: 1.2rem;
  color: #999999;
}
#contact .sct-confirm dl dd {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #ccc;
}
#contact .sct-submit em {
  display: block;
  text-align: center;
  padding: 60px 0 100px;
  font-style: normal;
  font-size: 2rem;
}
#contact .sct-submit p {
  text-align: center;
}

#policy .sct-main .container {
  padding-top: 150px;
  padding-bottom: 110px;
  z-index: 1;
}
@media screen and (max-width: 1219px) {
  #policy .sct-main .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
#policy .sct-main .policy h2 {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: left;
  margin-bottom: 10px;
}
#policy .sct-main .policy .txt {
  font-size: 1.4rem;
  line-height: 2.8rem;
  margin-bottom: 70px;
}
#policy .sct-main ul li h3 {
  font-size: 2rem;
  font-weight: 900;
  text-align: left;
}
#policy .sct-main ul li .txt {
  font-size: 1.4rem;
  line-height: 2.8rem;
  margin-bottom: 30px;
}
#policy .sct-main a {
  color: #007fff;
  text-decoration: underline;
}

#sitemap .sct-main .container {
  padding-top: 90px;
  padding-bottom: 100px;
  z-index: 1;
}
@media screen and (max-width: 1219px) {
  #sitemap .sct-main .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
#sitemap .sct-main .sitemap {
  display: flex;
  flex-wrap: wrap;
}
#sitemap .sct-main .sitemap .box {
  width: 33.333%;
}
@media screen and (max-width: 767px) {
  #sitemap .sct-main .sitemap .box {
    width: 100%;
    margin-bottom: 20px;
  }
}
#sitemap .sct-main .sitemap .box h2 {
  position: relative;
  text-align: left;
  margin-bottom: 10px;
}
#sitemap .sct-main .sitemap .box h2:before {
  position: absolute;
  top: -10px;
  left: 10px;
  width: 40px;
  height: 7px;
  display: block;
  content: "";
  background-color: #A3AFAC;
}
@media screen and (max-width: 767px) {
  #sitemap .sct-main .sitemap .box h2:before {
    left: 0;
  }
}
#sitemap .sct-main .sitemap .box h2 span {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #sitemap .sct-main .sitemap .box h2 span {
    display: block;
    font-size: 1.6rem;
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #sitemap .sct-main .sitemap .box h2 span {
    display: block;
    font-size: 1.6rem;
    padding-left: 20px;
  }
}
#sitemap .sct-main .sitemap .box h2 p {
  font-size: 2.5rem;
  font-weight: 900;
  vertical-align: bottom;
  padding-left: 10px;
}
@media screen and (max-width: 1219px) {
  #sitemap .sct-main .sitemap .box h2 p {
    display: block;
    font-size: 2rem;
  }
}
#sitemap .sct-main .sitemap .box ul {
  text-align: left;
  padding-left: 10px;
}
#sitemap .sct-main .sitemap .box ul:not(:last-child) {
  margin-bottom: 50px;
}
#sitemap .sct-main .sitemap .box ul li {
  line-height: 2.8rem;
}
#sitemap .sct-main .sitemap .box ul li a {
  font-weight: 500;
  color: #818181;
}
@media screen and (max-width: 1219px) {
  #sitemap .sct-main .sitemap .box ul li a {
    font-size: 1.4rem;
  }
}
#sitemap .sct-main .sitemap .box ul li.bold {
  font-size: 1.7rem;
  font-weight: 900;
}
#sitemap .sct-main .sitemap .box ul li.bold a {
  color: #1c1c1c;
}

footer {
  padding-top: 10px;
}
footer .sct-navi {
  background-color: #fff;
  box-shadow: 0px -5px 15px -10px #333;
  border-radius: 50px 50px 0 0;
  padding-top: 120px;
}
@media screen and (max-width: 1219px) {
  footer .sct-navi {
    padding-top: 60px;
  }
}
footer .sct-navi .container {
  padding-top: 100px;
  padding-bottom: 0;
}
@media screen and (max-width: 1219px) {
  footer .sct-navi .container {
    padding-top: 60px;
  }
}
footer .sct-navi .f_img {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  footer .sct-navi .f_img img {
    width: 90%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  footer .sct-navi .f_img {
    text-align: left;
  }
  footer .sct-navi .f_img img {
    width: 60%;
  }
}
footer .sct-navi .navi {
  width: 300px;
  display: flex;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  footer .sct-navi .navi {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
footer .sct-navi .navi ul li {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  footer .sct-navi .navi ul li {
    margin-bottom: 15px;
  }
}
footer .sct-navi .navi ul li a {
  position: relative;
  display: block;
  font-weight: 900;
  text-align: left;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  footer .sct-navi .navi ul li a {
    font-size: 1.4rem;
  }
}
footer .sct-navi .navi ul li a:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  display: block;
  content: "";
  background-color: #A3AFAC;
  border-radius: 2px;
}
footer .sct-info {
  background-color: #fff;
}
footer .sct-info .container {
  padding-top: 0;
  padding-bottom: 20px;
}
footer .sct-info .logo {
  text-align: left;
}
@media screen and (max-width: 767px) {
  footer .sct-info .logo {
    text-align: center;
  }
}
footer .sct-info .logo img {
  width: 120px;
  margin-bottom: 10px;
}
footer .sct-info .info {
  display: flex;
}
@media screen and (max-width: 767px) {
  footer .sct-info .info {
    display: block;
  }
}
footer .sct-info .info .company_name {
  font-size: 2rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  footer .sct-info .info .company_name {
    margin-bottom: 10px;
  }
}
footer .sct-info .info .company_address {
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  footer .sct-info .info .company_address {
    font-size: 1.4rem;
    padding-left: 0;
    margin-bottom: 30px;
  }
  footer .sct-info .info .company_address p {
    text-align: center;
  }
}
footer .sct-info .navi {
  position: absolute;
  bottom: 20px;
  right: 0;
}
@media screen and (max-width: 767px) {
  footer .sct-info .navi {
    position: static;
    margin-bottom: 30px;
  }
}
footer .sct-info .navi ul li {
  font-size: 1rem;
  font-weight: 900;
  text-align: left;
  padding: 2px 0;
}
@media screen and (max-width: 767px) {
  footer .sct-info .navi ul li {
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  footer .sct-info .navi ul li {
    padding-right: 20px;
  }
}
footer .sct-info .copy {
  font-size: 1.2rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  footer .sct-info .copy {
    text-align: center;
  }
}

#fixed_contact {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 0;
  width: 75px;
  height: 220px;
  z-index: 100;
}
#fixed_contact a {
  width: 100%;
  height: 100%;
  display: block;
  font-size: 3rem;
  line-height: 7rem;
  text-align: center;
  writing-mode: vertical-rl;
  background-color: #fff;
  box-shadow: 5px 5px 10px -10px #777;
}
#fixed_contact a:hover {
  opacity: 1;
  color: #fff;
  background-color: #333;
}
#fixed_contact i {
  margin-bottom: 8px;
}
@media screen and (max-width: 1219px) {
  #fixed_contact {
    bottom: 60px;
    width: 45px;
    height: 150px;
  }
  #fixed_contact a {
    font-size: 1.8rem;
    line-height: 4.5rem;
  }
  #fixed_contact i {
    margin-bottom: 5px;
  }
}

#pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 100px;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  #pagetop {
    right: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #pagetop {
    bottom: 80px;
    right: 60px;
  }
}
#pagetop a {
  display: block;
  width: 50px;
  height: 50px;
  color: #fff;
  text-align: center;
  font-size: 12px;
  text-decoration: none;
  line-height: 50px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
}
#pagetop a:hover {
  color: #818181;
  background: #A3AFAC;
  opacity: 1;
}
#pagetop a .svg-inline--fa.fa-w-14 {
  width: 100%;
}

/*1128追加*/

#recruit_detail .interview-img {
  position: relative;
  margin-bottom: 80px;
}

#recruit_detail .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: auto;
}

.fv-playBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 10%;
}
@media screen and (max-width: 1219px) {
  .fv-playBtn {
    width: 30%;
  }
}
/*1128追記*/
@media screen and (max-width: 1219px) {
  #recruit_detail .play-btn {
    width: 60px;
  }

  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}

@media screen and (max-width: 1219px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}
