body {
  padding-top: 100px;
}
@media screen and (max-width: 1219px) {
  body {
    padding-top: 60px;
  }
}

.mb30{
  margin-bottom: 30px;
}
.mb60{
  margin-bottom: 60px;
}
.top_link{
  display: block;
  margin-top: 60px;
  position: relative;
  width: fit-content;
    margin-inline: auto;
    text-align: left;
    color: #204078;
    font-size: clamp(16px, 2.2vw, 24px);
    font-weight: 800;
    text-decoration: none;
}
.top_link::after{
content:"";
display: block;
width:0;
height:0;
border-style:solid;
border-width: 12px 0 12px 14px;
border-color: transparent transparent transparent #204078;
position: absolute;
top: 50%;
right: -20%;
-webkit-transform: translate(20%, -50%);
transform: translate(20%, -50%);
}
.container {
  position: relative;
  max-width: 800px;
  text-align: center;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 6%;
  }
  .container img {
    max-width: 100%;
  }
  .top_link::after{
    content:"";
    display: block;
    width:0;
    height:0;
    border-style:solid;
    border-width: 6px 0 6px 7px;
    border-color: transparent transparent transparent #204078;
    position: absolute;
    top: 50%;
    right: -20%;
    -webkit-transform: translate(20%, -50%);
    transform: translate(20%, -50%);
    }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  .container {
    padding: 0 2%;
  }
}

.wrap {
  position: relative;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-color: #FFF;
  margin: 0 auto;
  z-index: 100;
}
@media screen and (min-width: 1220px) {
  header {
    box-shadow: 0px 10px 8px -5px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 10px 8px -5px rgba(0, 0, 0, 0.3);
  }
}
@media screen and (max-width: 1219px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #008ccf;
  }
}
header .container {
  width: 100%;
  max-width: 100%;
  height: 100%;
}
header .logo {
  position: absolute;
  top: 18px;
  left: 80px;
}
header .logo a {
  display: block;
}
header .logo img {
  height: 60px;
}
@media screen and (max-width: 1219px) {
  header .logo {
    top: 17px;
    left: 20px;
  }
  header .logo img {
    height: 25px;
  }
}
header .navi {
  position: absolute;
  right: 350px;
  top: 48px;
}
header .navi ul {
  display: inline-block;
  text-align: left;
}
header .navi ul li {
  display: inline-block;
  margin-left: 28px;
}
header .navi ul li a {
  font-size: 16px;
  font-weight: 700;
  color: #595757;
  text-decoration: none;
}
@media screen and (max-width: 1219px) {
  header .navi {
    display: none;
  }
}
header .h_bt {
  width: 230px;
  position: absolute;
  right: 80px;
  top: 32px;
  display: inline-block;
  margin-left: 50px;
}
header .h_bt a {
  display: block;
}
@media screen and (max-width: 1219px) {
  header .h_bt {
    display: none;
  }
}
header .navibutton {
  position: absolute;
  width: 30px;
  height: 20px;
  top: 20px;
  right: 20px;
}
header .navibutton:hover {
  cursor: pointer;
}
header .navibutton .btn {
  position: relative;
  width: 100%;
  height: 100%;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .navibutton .btn span {
  display: block;
  position: absolute;
  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 {
  width: 15px;
  -moz-transform: translateX(17px) translateY(14px) rotate(-45deg);
  -ms-transform: translateX(17px) translateY(14px) rotate(-45deg);
  -webkit-transform: translateX(17px) translateY(14px) rotate(-45deg);
  transform: translateX(17px) translateY(14px) rotate(-45deg);
}
header .navibutton .btn.active .l3 {
  width: 15px;
  -moz-transform: translateX(17px) translateY(-14px) rotate(45deg);
  -ms-transform: translateX(17px) translateY(-14px) rotate(45deg);
  -webkit-transform: translateX(17px) translateY(-14px) rotate(45deg);
  transform: translateX(17px) translateY(-14px) rotate(45deg);
}
@media screen and (min-width: 1220px) {
  header .navibutton {
    display: none;
  }
}

nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  margin: 0 auto;
  z-index: 99;
}
nav .inner {
  position: absolute;
  top: 60px;
  right: 0;
  height: calc(100vh - 60px);
  background-color: #FFF;
  padding: 20px 40px;
  animation: navi .5s ease-out 0s 1 normal;
  -webkit-animation: navi .5s ease-out 0s 1 normal;
}
nav .inner ul li {
  margin-bottom: 20px;
}
nav .inner ul li a {
  font-size: 16px;
  text-decoration: none;
  color: #231815;
}
nav .inner ul li:last-child {
  margin-bottom: 0;
}
nav .inner .business {
  margin-top: 20px;
}
nav .inner .business a {
  display: inline-block;
}
nav .inner .business a img {
  height: 30px;
}
nav .inner .tel {
  position: fixed;
  bottom: 40px;
  right: 27px;
}
nav .inner .tel a {
  display: inline-block;
}
nav .inner .tel a img {
  height: 20px;
}
nav .inner .mail {
  position: fixed;
  bottom: 80px;
  right: 27px;
}
nav .inner .mail a {
  display: inline-block;
}
nav .inner .mail a img {
  height: 20px;
}

@keyframes navi {
  0% {
    right: -50%;
  }
  100% {
    right: 0;
  }
}
@-webkit-keyframes navi {
  0% {
    right: -50%;
  }
  100% {
    right: 0;
  }
}
#index .sct-mainimg .container {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}
@media screen and (max-width: 1219px) {
  #index .sct-mainimg .container {
    padding: 0;
  }
}
#index .sct-mainimg .slider {
  opacity: 0;
  transition: opacity .3s linear;
}
#index .sct-mainimg .slider .item {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: none;
}
#index .sct-mainimg .slider .item a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
#index .sct-mainimg .slider .item:before {
  content: '';
  display: block;
  padding-top: 31.25%;
}
@media screen and (max-width: 767px) {
  #index .sct-mainimg .slider .item:before {
    padding-top: 55.55%;
  }
}
#index .sct-mainimg .slider ul.slick-dots {
  bottom: 5px;
}
#index .sct-mainimg .slider ul.slick-dots li {
  margin: 0 2px;
}
#index .sct-mainimg .slick-initialized {
  opacity: 1;
}
#index .sct-mainimg .slick-next, #index .sct-mainimg .slick-prev {
  top: 50%;
}
#index .sct-mainimg .slick-next:before, #index .sct-mainimg .slick-prev:before {
  font-family: "Font Awesome 5 pro";
  font-size: 50px;
  color: #f0ea0c;
}
@media screen and (max-width: 767px) {
  #index .sct-mainimg .slick-next:before, #index .sct-mainimg .slick-prev:before {
    font-size: 20px;
  }
}
#index .sct-mainimg .slick-prev {
  left: 40px;
}
#index .sct-mainimg .slick-prev:before {
  content: "\f053";
}
@media screen and (max-width: 1219px) {
  #index .sct-mainimg .slick-prev {
    left: 20px;
  }
}
#index .sct-mainimg .slick-next {
  right: 40px;
}
#index .sct-mainimg .slick-next:before {
  content: "\f054";
}
@media screen and (max-width: 1219px) {
  #index .sct-mainimg .slick-next {
    right: 20px;
  }
}
#index .sct-mainimg .slick-arrow {
  z-index: 50;
}
#index .sct-mainimg .slick-slider {
  margin-bottom: 0;
}
#index .sct-performance {
  overflow: hidden;
  background-color: #eeefef;
}
#index .sct-performance .container {
  text-align: left;
  overflow: visible;
  padding-top: 80px;
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  #index .sct-performance .container {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
#index .sct-performance .magnify {
  -moz-animation: animemagnify 3.5s infinite ease-in-out;
  -webkit-animation: animemagnify 3.5s infinite ease-in-out;
  animation: animemagnify 3.5s infinite ease-in-out;
  position: absolute;
  top: 206px;
  right: -100px;
  width: 35.625%;
}
@media screen and (max-width: 767px) {
  #index .sct-performance .magnify {
    top: 240px;
    right: -30px;
  }
}
@media screen and (max-width: 620px) {
  #index .sct-performance .magnify {
    top: 240px;
    right: -10px;
  }
}
@media screen and (max-width: 480px) {
  #index .sct-performance .magnify {
    top: 185px;
    right: -10px;
  }
}
@media screen and (max-width: 420px) {
  #index .sct-performance .magnify {
    top: 170px;
    right: -10px;
  }
}
#index .sct-performance h2 {
  margin-bottom: 50px;
  padding-right: 9%;
}
@media screen and (max-width: 767px) {
  #index .sct-performance h2 {
    margin-bottom: 30px;
    padding-right: 0;
  }
}
#index .sct-performance .txt {
  margin-bottom: 28px;
  padding-right: 10%;
}
@media screen and (max-width: 767px) {
  #index .sct-performance .txt {
    margin-bottom: 20px;
    padding-right: 6%;
  }
}
#index .sct-performance .target {
  position: relative;
}
#index .sct-performance .target .l {
  width: 29.625%;
  position: absolute;
  top: 40px;
  left: -30px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  #index .sct-performance .target .l {
    top: 20px;
    left: -10px;
  }
  #index .sct-performance .target .l img {
    width: 110px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-performance .target .l {
    top: 40px;
    left: -20px;
  }
  #index .sct-performance .target .l img {
    width: 200px;
  }
}
#index .sct-performance .target .r {
  z-index: 1;
}
#index .sct-cost {
  overflow: hidden;
  background-image: url(../images/index/cost/bg.png);
  background-position: center top;
  background-repeat: repeat-x;
  margin-top: -1px;
}
@media screen and (max-width: 767px) {
  #index .sct-cost {
    background-image: url(../images/index/cost/bg_sp.png);
  }
}
#index .sct-cost .container {
  overflow: visible;
  padding-top: 165px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #index .sct-cost .container {
    padding-top: 80px;
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-cost .container {
    padding-top: 140px;
  }
}
#index .sct-cost h2 {
  width: 86.5%;
  position: absolute;
  top: 20px;
  left: -40px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #index .sct-cost h2 {
    top: 14px;
    left: 10px;
  }
  #index .sct-cost h2 img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-cost h2 {
    left: 0;
    width: 90%;
  }
}
#index .sct-cost .frame {
  position: relative;
  background-color: #e7edf7;
  padding: 30px 6.25%;
}
@media screen and (max-width: 767px) {
  #index .sct-cost .frame {
    padding: 24px 16px;
    margin-bottom: 0;
  }
}
#index .sct-cost .frame .cost {
  padding-right: 18%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #index .sct-cost .frame .cost {
    padding-right: 0;
    margin-bottom: 0;
  }
}
#index .sct-cost .frame .cost .inner {
  display: flex;
  align-items: flex-end;
}
#index .sct-cost .frame .cost .inner .box.price {
  text-align: left;
}
#index .sct-cost .frame .cost .inner .box.price p {
  margin: 0;
}
#index .sct-cost .frame .cost .inner .box.price p img {
  width: 66px;
}
@media screen and (max-width: 767px) {
  #index .sct-cost .frame .cost .inner .box.price p {
    width: 40px;
  }
}
#index .sct-cost .frame .cost .inner .box.price .num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 50px;
  font-weight: 900;
  color: #008ccf;
  line-height: 1.1;
}
#index .sct-cost .frame .cost .inner .box.price .num span {
  font-size: 90px;
  margin-right: 14px;
}
#index .sct-cost .frame .cost .inner .box.price .num span.counter {
  font-family: 'Changa One', cursive;
}
#index .sct-cost .frame .cost .inner .box.price .num span.counter--100 {
  display: inline-block;
  width: 1.7em;
}
@media screen and (max-width: 767px) {
  #index .sct-cost .frame .cost .inner .box.price .num {
    font-size: 20px;
  }
  #index .sct-cost .frame .cost .inner .box.price .num span {
    font-size: 48px;
    margin-right: 5px;
  }
  #index .sct-cost .frame .cost .inner .box.price .num span.counter--100 {
    width: 1.8em;
  }
}
@media screen and (max-width: 320px) {
  #index .sct-cost .frame .cost .inner .box.price .num {
    font-size: 18px;
  }
  #index .sct-cost .frame .cost .inner .box.price .num span {
    font-size: 40px;
  }
}
#index .sct-cost .frame .cost .inner .box.left {
  width: 50%;
}
@media screen and (max-width: 1219px) {
  #index .sct-cost .frame .cost .inner .box.left {
    width: 50%;
  }
}
#index .sct-cost .frame .cost .inner .box.right {
  width: 32%;
}
@media screen and (max-width: 1219px) {
  #index .sct-cost .frame .cost .inner .box.right {
    width: 32%;
  }
}
#index .sct-cost .frame .cost .inner .box.comparison {
  width: 18%;
}
#index .sct-cost .frame .cost .inner .box.comparison i {
  font-size: 160px;
  margin-bottom: -20px;
}
@media screen and (max-width: 767px) {
  #index .sct-cost .frame .cost .inner .box.comparison i {
    font-size: 80px;
  }
}
@media screen and (max-width: 320px) {
  #index .sct-cost .frame .cost .inner .box.comparison i {
    font-size: 68px;
  }
}
@media screen and (max-width: 767px) {
  #index .sct-cost .frame .cost .inner .box.comparison {
    text-align: left;
  }
}
#index .sct-cost .frame .cost .s {
  text-align: right;
  margin-top: -14px;
  margin-bottom: 30px;
}
#index .sct-cost .frame .cost .s img {
  width: 32%;
}
@media screen and (max-width: 767px) {
  #index .sct-cost .frame .cost .s {
    position: absolute;
    top: 8px;
    right: 8px;
    margin-bottom: 0;
  }
  #index .sct-cost .frame .cost .s img {
    width: 100px;
  }
}
#index .sct-cost .frame .m {
  text-align: center;
  padding: 0 18%;
}
@media screen and (max-width: 767px) {
  #index .sct-cost .frame .m {
    text-align: left;
    padding: 0;
  }
  #index .sct-cost .frame .m img {
    width: 80%;
  }
}
#index .sct-cost .arrow {
  margin: 28px 0 8px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #index .sct-cost .arrow {
    margin-bottom: 20px;
  }
  #index .sct-cost .arrow img {
    width: 24px;
  }
}
#index .sct-cost .education {
  text-align: center;
}
#index .sct-cost .education img {
  max-width: 670px;
}
@media screen and (max-width: 767px) {
  #index .sct-cost .education img {
    width: 82%;
    max-width: auto;
  }
}
#index .sct-cost .magnify {
  width: 35.625%;
  -moz-animation: animemagnify 3.5s infinite ease-in-out;
  -webkit-animation: animemagnify 3.5s infinite ease-in-out;
  animation: animemagnify 3.5s infinite ease-in-out;
  position: absolute;
  top: 140px;
  right: -100px;
}
@media screen and (max-width: 767px) {
  #index .sct-cost .magnify {
    top: 200px;
    right: -20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-cost .magnify {
    width: 28%;
    top: 140px;
    right: -20px;
  }
}
@media screen and (max-width: 320px) {
  #index .sct-cost .magnify {
    top: 190px;
    right: -10px;
    width: 33.625%;
  }
}
#index .sct-feature {
  padding-top: 150px;
  margin-top: -150px;
}
@media screen and (max-width: 1219px) {
  #index .sct-feature {
    padding-top: 60px;
    margin-top: -60px;
  }
}
#index .sct-feature .inn {
  background-color: #eeefef;
}
#index .sct-feature .container {
  padding-top: 40px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #index .sct-feature .container {
    padding-top: 24px;
    padding-bottom: 14px;
  }
}
#index .sct-feature h2 {
  margin-bottom: 40px;
  text-align: center;
}
#index .sct-feature h2 img {
  max-width: 340px;
}
@media screen and (max-width: 767px) {
  #index .sct-feature h2 {
    margin-bottom: 22px;
  }
  #index .sct-feature h2 img {
    width: 200px;
  }
}
#index .sct-feature h3 {
  text-align: left;
  margin-bottom: 10px;
}
#index .sct-feature h3 img {
  max-width: 430px;
}
@media screen and (max-width: 767px) {
  #index .sct-feature h3 {
    margin-bottom: 8px;
  }
  #index .sct-feature h3 img {
    width: 56%;
  }
}
#index .sct-feature ul {
  *zoom: 1;
  width: calc(100% + 3%);
  margin: 0 -1.5%;
}
#index .sct-feature ul:before, #index .sct-feature ul:after {
  content: "";
  display: table;
}
#index .sct-feature ul:after {
  clear: both;
}
#index .sct-feature ul li {
  width: 50%;
  float: left;
  padding: 0 1.5%;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  #index .sct-feature ul li {
    margin-bottom: 5px;
  }
}
#index .sct-feature ul li .inner {
  width: 100%;
  height: 100%;
  display: block;
}
#index .sct-feature ul li .inner h4 {
  padding: 0 2%;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-feature ul li .inner h4 {
    height: 50px;
  }
  #index .sct-feature ul li .inner h4 img {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  #index .sct-feature ul {
    width: calc(100% + 10px);
    margin: 0 -5px;
  }
  #index .sct-feature ul li {
    padding: 0 5px;
  }
}
#index .sct-feature .txt {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #index .sct-feature .txt {
    margin-bottom: 20px;
  }
}
#index .sct-feature .s {
  text-align: right;
}
@media screen and (max-width: 767px) {
  #index .sct-feature .s img {
    width: 280px;
  }
}
#index .sct-contents1 {
  overflow: hidden;
  padding-top: 150px;
  margin-top: -150px;
}
@media screen and (max-width: 1219px) {
  #index .sct-contents1 {
    padding-top: 60px;
    margin-top: -60px;
  }
}
#index .sct-contents1 .container {
  overflow: visible;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #index .sct-contents1 .container {
    padding-top: 14px;
    padding-bottom: 30px;
  }
}
#index .sct-contents1 .magnify {
  width: 27.625%;
  position: absolute;
  top: -40px;
  right: -60px;
}
@media screen and (max-width: 767px) {
  #index .sct-contents1 .magnify {
    top: -20px;
    right: -30px;
    width: 34%;
  }
}
@media screen and (max-width: 320px) {
  #index .sct-contents1 .magnify {
    top: 200px;
    right: -10px;
  }
  #index .sct-contents1 .magnify img {
    width: 100px;
  }
}
#index .sct-contents1 h2 {
  margin-bottom: 40px;
  text-align: center;
}
#index .sct-contents1 h2 img {
  max-width: 640px;
}
@media screen and (max-width: 767px) {
  #index .sct-contents1 h2 {
    margin-bottom: 10px;
  }
  #index .sct-contents1 h2 img {
    max-width: 90%;
  }
}
#index .sct-contents1 h3 {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  #index .sct-contents1 h3 {
    margin-bottom: 30px;
  }
}
#index .sct-contents1 .app {
  margin-bottom: 65px;
  position: relative;
}
#index .sct-contents1 .app h4 {
  text-align: center;
}
#index .sct-contents1 .app h4 img {
  max-width: 353px;
}
@media screen and (max-width: 767px) {
  #index .sct-contents1 .app {
    padding-left: 20px;
    margin-bottom: 30px;
  }
  #index .sct-contents1 .app h4 {
    text-align: left;
  }
  #index .sct-contents1 .app img {
    width: 200px;
  }
}
@media screen and (max-width: 320px) {
  #index .sct-contents1 .app {
    padding-left: 20px;
  }
  #index .sct-contents1 .app img {
    width: 150px;
  }
}
#index .sct-contents1 .txt {
  margin-bottom: 140px;
}
#index .sct-contents1 .txt img {
  max-width: 606px;
}
@media screen and (max-width: 767px) {
  #index .sct-contents1 .txt {
    margin-bottom: 70px;
  }
  #index .sct-contents1 .txt img {
    width: 100%;
    max-width: 100%;
  }
}
#index .sct-contents1 .graph {
  margin-bottom: 10px;
}
#index .sct-contents1 .graph canvas {
  display: none;
}
#index .sct-contents1 .graph .radar {
  position: relative;
  width: 480px;
  height: 396px;
  background-image: url(../images/index/contents1/contents1_graph_bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #index .sct-contents1 .graph .radar {
    width: 335px;
    height: 275px;
  }
}
@media screen and (max-width: 320px) {
  #index .sct-contents1 .graph .radar {
    width: 280px;
    height: 231px;
  }
}
#index .sct-contents1 .graph .radar .graph1_b {
  position: absolute;
  top: -80px;
  left: -14%;
  width: 58.3%;
}
@media screen and (max-width: 767px) {
  #index .sct-contents1 .graph .radar .graph1_b {
    top: -40px;
    left: 0;
    width: 44%;
  }
}
@media screen and (max-width: 320px) {
  #index .sct-contents1 .graph .radar .graph1_b img {
    width: 130px;
  }
}
#index .sct-contents1 .graph .radar .graph1 {
  position: absolute;
  top: 46%;
  left: 51.2%;
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}
#index .sct-contents1 .graph .radar .graph1 img {
  width: 204px;
}
@media screen and (max-width: 767px) {
  #index .sct-contents1 .graph .radar .graph1 img {
    width: 150px;
  }
}
#index .sct-contents1 .graph .radar .graph2_b {
  position: absolute;
  top: -80px;
  right: -14%;
  width: 58.3%;
}
@media screen and (max-width: 767px) {
  #index .sct-contents1 .graph .radar .graph2_b {
    top: -40px;
    right: 0;
    width: 44%;
  }
}
@media screen and (max-width: 320px) {
  #index .sct-contents1 .graph .radar .graph2_b img {
    width: 130px;
  }
}
#index .sct-contents1 .graph .radar .graph2 {
  position: absolute;
  top: 47.8%;
  left: 48.4%;
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}
#index .sct-contents1 .graph .radar .graph2 img {
  width: 204px;
  animation: flash .8s infinite;
}
@media screen and (max-width: 767px) {
  #index .sct-contents1 .graph .radar .graph2 img {
    width: 150px;
  }
}
#index .sct-contents1 .graph p {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #index .sct-contents1 .graph p {
    font-size: 14px;
    margin: 20px 0;
  }
}
#index .sct-contents1 .bt {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#index .sct-contents1 .bt .left {
  width: 36%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #index .sct-contents1 .bt .left {
    width: 42.58%;
  }
}
#index .sct-contents1 .bt .right {
  width: 24%;
  text-align: right;
}
#index .sct-contents1 .bt .right img {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #index .sct-contents1 .bt .right {
    width: 28.7%;
  }
  #index .sct-contents1 .bt .right img {
    margin-top: 6px;
  }
}
#index .sct-contents1 .bt a {
  display: block;
}
#index .sct-contents2 {
  overflow: hidden;
  background-color: #e7edf7;
}
#index .sct-contents2 .container {
  overflow: visible;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #index .sct-contents2 .container {
    padding-top: 16px;
    padding-bottom: 20px;
  }
}
#index .sct-contents2 h3 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #index .sct-contents2 h3 {
    margin-bottom: 24px;
  }
}
#index .sct-contents2 .txt {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  #index .sct-contents2 .txt {
    margin-bottom: 20px;
  }
  #index .sct-contents2 .txt img {
    width: 70%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-contents2 .txt {
    text-align: center;
  }
  #index .sct-contents2 .txt img {
    width: 80%;
  }
}
#index .sct-contents2 .seminar {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 68%;
}
#index .sct-contents2 .seminar .image {
  position: absolute;
  top: 32.9%;
  left: 0;
  z-index: 8;
  flex-basis: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #index .sct-contents2 .seminar {
    width: 100%;
    padding-top: 76.8%;
  }
  #index .sct-contents2 .seminar .image {
    top: 25.5%;
    left: 0;
  }
}
#index .sct-contents2 .balloon li {
  position: absolute;
  width: 35.5%;
  z-index: 10;
}
#index .sct-contents2 .balloon li img {
  width: 100%;
}
#index .sct-contents2 .balloon .b1 {
  top: 6.8%;
  left: -3%;
}
#index .sct-contents2 .balloon .b2 {
  top: 2%;
  left: 29.5%;
}
#index .sct-contents2 .balloon .b3 {
  top: 6%;
  right: -3%;
}
#index .sct-contents2 .balloon .b4 {
  bottom: 4%;
  left: -1%;
  z-index: 11;
}
#index .sct-contents2 .balloon .b5 {
  bottom: 7%;
  left: 31%;
  z-index: 10;
}
#index .sct-contents2 .balloon .b6 {
  bottom: 7.4%;
  right: -4.3%;
}
@media screen and (max-width: 767px) {
  #index .sct-contents2 .balloon li {
    width: 37%;
  }
  #index .sct-contents2 .balloon .b1 {
    top: 16.7%;
    left: 0;
  }
  #index .sct-contents2 .balloon .b2 {
    top: 0;
    left: 27%;
  }
  #index .sct-contents2 .balloon .b3 {
    top: 16.7%;
    right: 0;
  }
  #index .sct-contents2 .balloon .b4 {
    bottom: 0;
    left: 0;
  }
  #index .sct-contents2 .balloon .b5 {
    bottom: 18.7%;
    left: 34.5%;
  }
  #index .sct-contents2 .balloon .b6 {
    bottom: 2%;
    right: 0;
  }
}
#index .sct-contents2 .bt {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
#index .sct-contents2 .bt .bt1 {
  display: block;
  width: 36.19%;
}
@media screen and (max-width: 767px) {
  #index .sct-contents2 .bt .bt1 {
    width: 42.6%;
  }
}
#index .sct-contents2 .bt .bt2 {
  display: block;
  width: 47.5%;
}
@media screen and (max-width: 767px) {
  #index .sct-contents2 .bt .bt2 {
    width: 55.9%;
  }
}
#index .sct-contents3 {
  overflow: hidden;
}
#index .sct-contents3 .container {
  overflow: visible;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #index .sct-contents3 .container {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
#index .sct-contents3 h3 {
  margin-bottom: 40px;
}
@media screen and (max-width: 1219px) {
  #index .sct-contents3 h3 {
    margin-bottom: 20px;
  }
}
#index .sct-contents3 .frame {
  background-color: #eeefef;
  padding: 50px 6.25%;
}
@media screen and (max-width: 767px) {
  #index .sct-contents3 .frame {
    padding: 20px 2%;
  }
}
#index .sct-contents3 .frame h4 {
  margin-bottom: 40px;
}
#index .sct-contents3 .frame h4 img {
  width: 79%;
}
@media screen and (max-width: 767px) {
  #index .sct-contents3 .frame h4 {
    margin-bottom: 30px;
  }
}
#index .sct-contents3 .frame ul.graph {
  position: relative;
  display: flex;
  margin-bottom: 90px;
}
@media screen and (max-width: 1219px) {
  #index .sct-contents3 .frame ul.graph {
    margin-bottom: 30px;
  }
}
#index .sct-contents3 .frame ul.graph li {
  position: relative;
  width: 27%;
  display: block;
}
#index .sct-contents3 .frame ul.graph li h5 {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #index .sct-contents3 .frame ul.graph li h5 {
    margin-bottom: 5px;
  }
}
#index .sct-contents3 .frame ul.graph li .s {
  position: absolute;
  top: 48px;
  left: -27px;
  width: 46.5%;
}
@media screen and (max-width: 767px) {
  #index .sct-contents3 .frame ul.graph li .s {
    top: 16%;
    left: -16%;
    width: 46%;
  }
}
@media screen and (max-width: 320px) {
  #index .sct-contents3 .frame ul.graph li .s {
    top: 22%;
    left: -16%;
    width: 46%;
  }
}
#index .sct-contents3 .frame ul.graph .balloon {
  -moz-animation: animemagnify 3.5s infinite ease-in-out;
  -webkit-animation: animemagnify 3.5s infinite ease-in-out;
  animation: animemagnify 3.5s infinite ease-in-out;
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 40.4%;
}
@media screen and (max-width: 767px) {
  #index .sct-contents3 .frame ul.graph .balloon {
    right: -20px;
    bottom: -45px;
    width: 130px;
  }
}
#index .sct-contents3 .bar {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 1220px) {
  #index .sct-contents3 .bar {
    padding-right: 4%;
  }
}
@media screen and (max-width: 767px) {
  #index .sct-contents3 .bar {
    width: 100%;
    padding-right: 10%;
  }
}
#index .sct-contents3 .bar h5 {
  text-align: left;
  margin-bottom: 5px;
  padding-right: 20%;
}
#index .sct-contents3 .bar h5 img {
  width: 35%;
}
@media screen and (max-width: 767px) {
  #index .sct-contents3 .bar h5 {
    padding-left: 40px;
    margin-bottom: 5px;
  }
  #index .sct-contents3 .bar h5 img {
    height: 30px;
  }
}
@media screen and (min-width: 1220px) {
  #index .sct-contents3 .bar canvas {
    width: 100%;
  }
}
#index .sct-contents3 .bar .tips {
  position: absolute;
  left: 236px;
  bottom: 24px;
}
#index .sct-contents3 .bar .tips img {
  width: 322px;
}
#index .sct-contents3 .people {
  position: absolute;
  right: 75px;
  bottom: 240px;
}
@media screen and (min-width: 1220px) {
  #index .sct-contents3 .people {
    width: 15%;
  }
}
@media screen and (max-width: 767px) {
  #index .sct-contents3 .people {
    right: 50px;
    bottom: 116px;
    width: 15%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-contents3 .people {
    right: 60px;
    bottom: 300px;
  }
  #index .sct-contents3 .people img {
    width: 120px;
  }
}
@media screen and (max-width: 320px) {
  #index .sct-contents3 .people {
    right: 35px;
    bottom: 120px;
  }
}
#index .sct-matching {
  background-color: #e7edf7;
}
#index .sct-matching .container {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #index .sct-matching .container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 1220px) {
  #index .sct-matching h2 {
    padding-left: 6.25%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-matching h2 img {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  #index .sct-matching h2 {
    margin-bottom: 4px;
  }
}
#index .sct-matching ul.matching {
  position: relative;
  height: 1094px;
}
@media screen and (max-width: 767px) {
  #index .sct-matching ul.matching {
    height: 650px;
  }
}
#index .sct-matching ul.matching li {
  position: absolute;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
#index .sct-matching ul.matching .merit1 {
  top: 60px;
  left: 0;
  width: 266px;
  height: 220px;
  background-image: url(../images/index/matching/matching_merit1.png);
}
@media screen and (max-width: 767px) {
  #index .sct-matching ul.matching .merit1 {
    top: 50px;
    left: 0;
    width: 130px;
    height: 130px;
  }
}
#index .sct-matching ul.matching .merit2 {
  top: 0;
  left: 292px;
  width: 325px;
  height: 224px;
  background-image: url(../images/index/matching/matching_merit2.png);
}
@media screen and (max-width: 767px) {
  #index .sct-matching ul.matching .merit2 {
    top: 0;
    right: 20px;
    left: auto;
    width: 170px;
    height: 170px;
  }
}
#index .sct-matching ul.matching .merit3 {
  top: 162px;
  right: 0;
  width: 297px;
  height: 234px;
  background-image: url(../images/index/matching/matching_merit3.png);
}
@media screen and (max-width: 767px) {
  #index .sct-matching ul.matching .merit3 {
    top: 150px;
    right: 0;
    width: 160px;
    height: 160px;
  }
}
#index .sct-matching ul.matching .merit4 {
  top: 320px;
  left: 90px;
  width: 302px;
  height: 198px;
  background-image: url(../images/index/matching/matching_merit4.png);
}
@media screen and (max-width: 767px) {
  #index .sct-matching ul.matching .merit4 {
    top: 190px;
    left: 0;
    width: 160px;
    height: 160px;
  }
}
#index .sct-matching ul.matching .merit5 .inner, #index .sct-matching ul.matching .merit6 .inner, #index .sct-matching ul.matching .merit7 .inner {
  position: relative;
  width: 100%;
  height: 100%;
}
#index .sct-matching ul.matching .merit5 .inner a, #index .sct-matching ul.matching .merit6 .inner a, #index .sct-matching ul.matching .merit7 .inner a {
  position: absolute;
  left: 21px;
  bottom: 22px;
}
#index .sct-matching ul.matching .merit5 .inner a img, #index .sct-matching ul.matching .merit6 .inner a img, #index .sct-matching ul.matching .merit7 .inner a img {
  width: 224px;
}
@media screen and (max-width: 767px) {
  #index .sct-matching ul.matching .merit5 .inner a, #index .sct-matching ul.matching .merit6 .inner a, #index .sct-matching ul.matching .merit7 .inner a {
    left: 12px;
    bottom: 14px;
  }
  #index .sct-matching ul.matching .merit5 .inner a img, #index .sct-matching ul.matching .merit6 .inner a img, #index .sct-matching ul.matching .merit7 .inner a img {
    width: 100px;
  }
}
#index .sct-matching ul.matching .merit5 {
  top: 580px;
  left: 22px;
  width: 372px;
  height: 262px;
  background-image: url(../images/index/matching/matching_merit5.png);
}
@media screen and (max-width: 767px) {
  #index .sct-matching ul.matching .merit5 {
    bottom: 155px;
    left: 0;
    width: 180px;
    height: 134px;
  }
}
#index .sct-matching ul.matching .merit6 {
  top: 548px;
  right: 0;
  width: 372px;
  height: 288px;
  background-image: url(../images/index/matching/matching_merit6.png);
}
@media screen and (max-width: 767px) {
  #index .sct-matching ul.matching .merit6 {
    bottom: 130px;
    right: -10px;
    width: 170px;
    height: 126px;
  }
}
#index .sct-matching ul.matching .merit7 {
  bottom: 0;
  left: 155px;
  width: 376px;
  height: 213px;
  background-image: url(../images/index/matching/matching_merit7.png);
}
@media screen and (max-width: 767px) {
  #index .sct-matching ul.matching .merit7 {
    bottom: 10px;
    left: 30px;
    width: 190px;
    height: 110px;
  }
}
#index .sct-matching ul.matching .people {
  position: absolute;
  top: 417px;
  right: 185px;
  width: 122px;
}
@media screen and (max-width: 767px) {
  #index .sct-matching ul.matching .people {
    bottom: 280px;
    right: 60px;
    width: 60px;
  }
}
#index .sct-matching .matching_sp {
  position: relative;
}
#index .sct-matching .matching_sp ul {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 81.3%;
  margin-top: -5px;
}
#index .sct-matching .matching_sp ul li {
  position: absolute;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
#index .sct-matching .matching_sp ul .btn05 {
  width: 33.3%;
  position: absolute;
  left: 3%;
  top: 35.2%;
  z-index: 50;
}
#index .sct-matching .matching_sp ul .btn06 {
  width: 33.1%;
  position: absolute;
  left: 55%;
  top: 50.7%;
}
#index .sct-matching .matching_sp ul .btn07 {
  width: 35.8%;
  position: absolute;
  left: 15.3%;
  top: 85.9%;
}
#index .sct-matching .matching_sp ul .merit5 {
  top: 0;
  left: 0;
  width: 54.8%;
  height: 48.41%;
  background-image: url(../images/index/matching/matching_merit5.png);
}
#index .sct-matching .matching_sp ul .merit5 a {
  position: absolute;
}
#index .sct-matching .matching_sp ul .merit6 {
  top: 11%;
  right: 1.5%;
  width: 46.5%;
  height: 53%;
  background-image: url(../images/index/matching/matching_merit6_sp.png);
}
#index .sct-matching .matching_sp ul .merit7 {
  bottom: 0;
  left: 12.5%;
  width: 49.2%;
  height: 44.5%;
  background-image: url(../images/index/matching/matching_merit7_sp.png);
}
#index .sct-interview {
  overflow: hidden;
  padding-top: 150px;
  margin-top: -150px;
}
@media screen and (max-width: 1219px) {
  #index .sct-interview {
    padding-top: 60px;
    margin-top: -60px;
  }
}
#index .sct-interview .container {
  overflow: visible;
  padding-top: 50px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #index .sct-interview .container {
    padding-top: 14px;
    padding-bottom: 24px;
  }
}
#index .sct-interview h2 {
  margin-bottom: 60px;
}
@media screen and (min-width: 1220px) {
  #index .sct-interview h2 img {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  #index .sct-interview h2 {
    margin-bottom: 20px;
  }
  #index .sct-interview h2 img {
    width: 80%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-interview h2 img {
    width: 80%;
  }
}
#index .sct-interview .interview {
  position: relative;
}
@media screen and (max-width: 767px) {
  #index .sct-interview .interview {
    width: calc(100% + 10px);
    margin-left: -10px;
  }
}
#index .sct-interview .interview ul {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap:20px;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
#index .sct-interview .interview ul li {
  width: 31%;
  margin: 0 0 46px;
}
@media screen and (max-width: 767px) {
  #index .sct-interview .interview ul{
    width:90%;
  }
  #index .sct-interview .interview ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-interview .interview ul li {
    width: calc(33.333% - 20px);
    margin-bottom: 30px;
  }
}
#index .sct-interview .interview ul li a {
  display: block;
  width: 100%;
  height: 100%;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  color: #231815;
}
#index .sct-interview .interview ul li a:hover {
  opacity: .5;
}
#index .sct-interview .interview ul li a img {
  width: 100%;
}
#index .sct-interview .interview ul.top-interview li a img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
#index .sct-interview .interview ul li.hint {
  padding-top: 64px;
}
@media screen and (max-width: 767px) {
  #index .sct-interview .interview ul li.hint {
    display: none;
  }
}
#index .sct-interview .interview ul li .image {
  position: relative;
  width: 100%;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  #index .sct-interview .interview ul li .image {
    margin-bottom: 15px;
  }
}
#index .sct-interview .interview ul li .image .num {
  position: absolute;
  left: -15px;
  bottom: -15px;
  width: 80px;
  height: 80px;
  background-color: #008ccf;
  border-radius: 50%;
}
@media screen and (max-width: 1219px) {
  #index .sct-interview .interview ul li .image .num {
    width: 40px;
    height: 40px;
  }
}
#index .sct-interview .interview ul li .image .num p {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  font-family: 'Century Gothic', sans-serif;
  font-size: 20px;
  color: #FFF;
  display: block;
}
#index .sct-interview .interview ul li .image .num p span {
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  #index .sct-interview .interview ul li .image .num p {
    font-size: 12px;
  }
  #index .sct-interview .interview ul li .image .num p span {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-interview .interview ul li .image .num p {
    font-size: 14px;
  }
  #index .sct-interview .interview ul li .image .num p span {
    font-size: 20px;
  }
}
#index .sct-interview .interview ul li h3 {
  font-size: 22px;
  line-height: 30px;
  color: #231815;
  border-bottom: 3px solid #231815;
  padding-left: 15px;
  padding-bottom: 15px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #index .sct-interview .interview ul li h3 {
    font-size: 14px;
    line-height: 22px;
    border-bottom: 1px solid #231815;
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
}
#index .sct-interview .interview ul li .name {
  font-size: 20px;
  line-height: 30px;
  color: #595757;
  padding-left: 15px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #index .sct-interview .interview ul li .name {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 5px;
  }
}
#index .sct-interview .interview ul li .date {
  font-size: 18px;
  color: #898989;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  #index .sct-interview .interview ul li .date {
    font-size: 12px;
  }
}
#index .sct-interview .balloon {
  border-bottom: 1px solid #231815;
  margin-top: -60px;
  padding-bottom: 20px;
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #index .sct-interview .balloon img {
    width: 46.75%;
  }
}
@media screen and (max-width: 767px) {
  #index .sct-interview .balloon {
    margin-top: -25px;
  }
  #index .sct-interview .balloon img {
    width: 63%;
  }
}
#index .sct-step .container {
  padding-top: 30px;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  #index .sct-step .container {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  #index .sct-step h2 {
    margin-bottom: 20px;
    padding: 0 6%;
  }
}
#index .sct-step .step {
  position: relative;
}
#index .sct-step .step .contents1 {
  position: absolute;
  top: 23.24%;
  left: 5.6%;
  width: 19.28%;
  height: 42.05%;
  display: block;
  background-color: #F00;
  border-radius: 50%;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  #index .sct-step .step .contents1 {
    top: 10.23%;
    left: 7.72%;
    width: 23.97%;
    height: 38.87%;
  }
}
#index .sct-step .step .contents2 {
  position: absolute;
  top: 23.24%;
  left: 30.48%;
  width: 19.28%;
  height: 42.05%;
  display: block;
  background-color: #F00;
  border-radius: 50%;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  #index .sct-step .step .contents2 {
    top: 10.23%;
    left: 39.11%;
    width: 23.97%;
    height: 38.87%;
  }
}
#index .sct-step .step .contents3 {
  position: absolute;
  top: 23.24%;
  left: 55.64%;
  width: 19.28%;
  height: 42.05%;
  display: block;
  background-color: #F00;
  border-radius: 50%;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  #index .sct-step .step .contents3 {
    top: 10.23%;
    left: 70.66%;
    width: 23.97%;
    height: 38.87%;
  }
}
#index .sct-contact {
  background-color: #e7edf7;
}
#index .sct-contact .container {
  padding-top: 60px;
  padding-bottom: 60px;
}
#index .sct-contact .archive_contact{
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #index .sct-contact .container {
    padding-top: 16px;
    padding-bottom: 70px;
  }
  #index .sct-contact .archive_contact{
    padding-bottom: 20px;
  }
}
#index .sct-contact h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 30px;
}
#index .sct-contact h2 i {
  color: #23437e;
}
@media screen and (max-width: 767px) {
  #index .sct-contact h2 {
    font-size: 20px;
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 320px) {
  #index .sct-contact h2 {
    font-size: 16px;
  }
}
#index .sct-contact ul.bt {
  display: flex;
  margin-bottom: 40px;
}
#index .sct-contact ul.bt li {
  flex-basis: auto;
  /*@include pc-tab{
  	&:first-child{ padding-right: 10px; }
  	&:last-child{ padding-left: 10px; }
  }*/
}
#index .sct-contact ul.bt li a {
  width: 100%;
  height: 100%;
  display: block;
}
#index .sct-contact ul.bt li:first-child {
  width: 38.27575%;
}
#index .sct-contact ul.bt li:last-child {
  width: 59.125%;
}
@media screen and (max-width: 767px) {
  #index .sct-contact ul.bt {
    display: block;
    margin-bottom: 20px;
    padding: 0 10%;
  }
  #index .sct-contact ul.bt li {
    margin-bottom: 14px;
    width: auto !important;
  }
  #index .sct-contact ul.bt li:first-child img {
    width: 65%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-contact ul.bt {
    margin-bottom: 40px;
  }
}
#index .sct-contact .address {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-left: 2%;
}
@media screen and (max-width: 767px) {
  #index .sct-contact .address {
    display: none;
  }
}
#index .sct-contact .address .left {
  width: 35%;
  text-align: center;
}
#index .sct-contact .address .left img {
  width: 80%;
  margin-bottom: -3px;
}
@media screen and (max-width: 767px) {
  #index .sct-contact .address .left {
    width: 30%;
  }
  #index .sct-contact .address .left img {
    width: 80%;
    vertical-align: bottom;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-contact .address .left {
    width: 35%;
  }
  #index .sct-contact .address .left img {
    width: 200px;
  }
}
#index .sct-contact .address .right {
  width: 63%;
  padding-bottom: 5px;
}
#index .sct-contact .address .right p {
  font-weight: 700;
}
#index .sct-contact .address .right p.l {
  font-size: 25px;
}
#index .sct-contact .address .right p.m {
  font-size: 16px;
}
#index .sct-contact .address .right p.s {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  #index .sct-contact .address .right {
    width: 68%;
  }
  #index .sct-contact .address .right p.l {
    font-size: 13px;
  }
  #index .sct-contact .address .right p.m {
    font-size: 11px;
  }
  #index .sct-contact .address .right p.s {
    font-size: 9px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #index .sct-contact .address .right {
    width: 65%;
  }
  #index .sct-contact .address .right p.l {
    font-size: 20px;
  }
  #index .sct-contact .address .right p.m {
    font-size: 15px;
  }
  #index .sct-contact .address .right p.s {
    font-size: 13px;
  }
}
#index .sct-contact .address_sp {
  padding: 0 6%;
  margin-bottom: -1px;
}
#index .sct-contact .contact {
  background-color: #FFF;
  border-radius: 10px;
  padding: 15px 4%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}
#index .sct-contact .contact .open {
  font-size: 13px;
  font-weight: 700;
}
#index .sct-contact .contact .tel {
  width: 29%;
}
#index .sct-contact .contact .tel a {
  display: block;
}
#index .sct-contact .contact .mail {
  width: 18%;
}
#index .sct-contact .contact .mail a {
  display: block;
}
@media screen and (max-width: 767px) {
  #index .sct-contact .contact {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px 20px 15px;
    border-radius: 6px;
  }
  #index .sct-contact .contact .open {
    width: 100%;
    font-size: 10px;
    margin-bottom: 4px;
  }
  #index .sct-contact .contact .tel {
    position: static;
    width: 55%;
    float: left;
  }
  #index .sct-contact .contact .mail {
    position: static;
    width: 34%;
    float: left;
  }
}
#index .sct-aaa {
  display: none;
}

#interview .sct-photo .container {
  padding-top: 60px;
  padding-bottom: 30px;
  overflow: visible;
}
@media screen and (max-width: 1219px) {
  #interview .sct-photo .container {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
#interview .sct-photo img {
  width: 104.76%;
  max-width: 104.76%;
  margin-left: -4.76%;
}
#interview .sct-main {
  overflow: hidden;
}
#interview .sct-main .container {
  max-width: 800px;
  overflow: visible;
  padding-bottom: 80px;
}
@media screen and (max-width: 1219px) {
  #interview .sct-main .container {
    width: 100%;
    padding-bottom: 100px;
  }
}
#interview .sct-main .title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #interview .sct-main .title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #interview .sct-main .title {
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}
#interview .sct-main .result {
  margin-bottom: 40px;
  padding: 0 9.375%;
}
@media screen and (max-width: 1219px) {
  #interview .sct-main .result {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  #interview .sct-main .result {
    padding: 0;
    margin-bottom: 20px;
  }
}
#interview .sct-main .tag {
  border-bottom: 1px solid #595757;
  padding-bottom: 40px;
  margin-bottom: 36px;
}
@media screen and (max-width: 1219px) {
  #interview .sct-main .tag {
    padding-bottom: 25px;
    margin-bottom: 30px;
  }
}
#interview .sct-main .tag h2 {
  text-align: left;
  margin-bottom: 25px;
}
@media screen and (min-width: 1220px) {
  #interview .sct-main .tag h2 img {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  #interview .sct-main .tag h2 {
    margin-bottom: 15px;
  }
  #interview .sct-main .tag h2 img {
    width: 160px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #interview .sct-main .tag h2 {
    margin-bottom: 15px;
  }
}
#interview .sct-main .tag .image {
  text-align: left;
}
#interview .sct-main .company {
  text-align: left;
  color: #595757;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #interview .sct-main .company {
    margin-bottom: 30px;
  }
}
#interview .sct-main .company .name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  #interview .sct-main .company .name {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #interview .sct-main .company .name {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
#interview .sct-main .company .url {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  #interview .sct-main .company .url {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #interview .sct-main .company .url {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
#interview .sct-main .company .url a {
  word-break: break-all;
  text-decoration: none;
  color: #008ccf;
}
#interview .sct-main .company .info {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  #interview .sct-main .company .info {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #interview .sct-main .company .info {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
#interview .sct-main .desc {
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  color: #008ccf;
  background-color: #f4f4f4;
  padding: 14px 4% 12px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #interview .sct-main .desc {
    font-size: 16px;
    padding: 15px 20px;
    margin-bottom: 50px;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #interview .sct-main .desc {
    font-size: 22px;
    margin-bottom: 80px;
  }
}
#interview .sct-main .txt {
  font-size: 19px;
  line-height: 2;
}
#interview .sct-main .txt p {
  margin-bottom: 36px;
}
#interview .sct-main .txt .query {
  position: relative;
  font-weight: 700;
  text-indent: 60px;
}
#interview .sct-main .txt .query:before {
  position: absolute;
  top: 18px;
  left: 0;
  content: "";
  width: 50px;
  height: 1px;
  display: inline-block;
  background-color: #008ccf;
}
#interview .sct-main .txt .answer {
  font-weight: 300;
}
#interview .sct-main .txt .blue {
  color: #008ccf;
}
#interview .sct-main .txt .grey {
  display: block;
  font-size: 16px;
  text-align: left;
  color: #595757;
  margin-top: 10px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #interview .sct-main .txt .grey {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #interview .sct-main .txt .grey {
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 22px;
  }
}
#interview .sct-main .txt.txt2021 .query {
  color: #000;
}
#interview .sct-main .txt.txt2021 .answer {
  color: #333;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #interview .sct-main .txt {
    font-size: 16px;
    line-height: 34px;
  }
  #interview .sct-main .txt p {
    margin-bottom: 20px;
  }
  #interview .sct-main .txt .query {
    text-indent: 40px;
  }
  #interview .sct-main .txt .query:before {
    top: 16px;
    width: 30px;
    height: 1px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #interview .sct-main .txt {
    font-size: 20px;
    line-height: 32px;
  }
  #interview .sct-main .txt p {
    margin-bottom: 20px;
  }
  #interview .sct-main .txt .query {
    text-indent: 40px;
  }
  #interview .sct-main .txt .query:before {
    top: 10px;
    width: 30px;
    height: 2px;
  }
}
#interview .sct-main .person {
  display: flex;
  justify-content: space-between;
}
#interview .sct-main .person .left,
#interview .sct-main .person .right {
  width: 49%;
}
#interview .sct-main .date {
  font-size: 16px;
  text-align: left;
  color: #595757;
  margin-top: 50px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #interview .sct-main .date {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #interview .sct-main .date {
    font-size: 14px;
    margin-bottom: 22px;
  }
}
#interview .sct-main .coverage {
  font-size: 16px;
  text-align: left;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #interview .sct-main .coverage {
    font-size: 12px;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #interview .sct-main .coverage {
    font-size: 20px;
    margin-bottom: 50px;
  }
}
#interview .sct-main .sns {
  text-align: right;
  margin-bottom: 60px;
}
@media screen and (max-width: 1219px) {
  #interview .sct-main .sns {
    margin-bottom: 30px;
  }
}
#interview .sct-main .sns a {
  display: inline-block;
  margin-left: 6px;
}
@media screen and (min-width: 1220px) {
  #interview .sct-main .sns a img {
    width: 36px;
  }
}
@media screen and (max-width: 767px) {
  #interview .sct-main .sns a img {
    width: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #interview .sct-main .sns a img {
    width: 50px;
  }
}
#interview .sct-main .relation {
  margin-bottom: 8px;
}
#interview .sct-main .relation h2 {
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  color: #008ccf;
  border-bottom: 1px solid #231815;
  padding-bottom: 6px;
}
@media screen and (max-width: 767px) {
  #interview .sct-main .relation h2 {
    font-size: 15px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #interview .sct-main .relation h2 {
    font-size: 22px;
    padding-bottom: 20px;
  }
}
#interview .sct-main .relation ul li {
  border-bottom: 1px solid #231815;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  #interview .sct-main .relation ul li {
    font-size: 16px;
    padding: 20px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #interview .sct-main .relation ul li {
    font-size: 22px;
    padding: 25px 0;
  }
}
#interview .sct-main .relation ul li a {
  display: block;
  text-decoration: none;
  color: #231815;
  padding-left: 10px;
}
#interview .sct-main .relation ul li a .inner {
  display: flex;
  align-items: center;
}
#interview .sct-main .relation ul li a .inner .num {
  width: 66px;
  height: 66px;
  border-radius: 50%;
}
@media screen and (max-width: 1219px) {
  #interview .sct-main .relation ul li a .inner .num {
    width: 60px;
    height: 60px;
  }
}
#interview .sct-main .relation ul li a .inner .num p {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  font-family: 'Century Gothic', sans-serif;
  font-size: 22px;
  color: #FFF;
  display: block;
}
#interview .sct-main .relation ul li a .inner .num p span {
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  #interview .sct-main .relation ul li a .inner .num p {
    font-size: 12px;
  }
  #interview .sct-main .relation ul li a .inner .num p span {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #interview .sct-main .relation ul li a .inner .num p {
    font-size: 14px;
  }
  #interview .sct-main .relation ul li a .inner .num p span {
    font-size: 20px;
  }
}
#interview .sct-main .relation ul li a .inner .tit {
  width: calc(100% - 100px);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  #interview .sct-main .relation ul li a .inner .tit {
    width: calc(100% - 60px);
    font-size: 15px;
    line-height: 22px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1219px) {
  #interview .sct-main .relation ul li a .inner .tit {
    width: calc(100% - 60px);
    font-size: 22px;
    line-height: 30px;
    padding-left: 30px;
  }
}
#interview .sct-main .back {
  text-align: right;
  margin-bottom: 50px;
}
#interview .sct-main .back a {
  font-size: 20px;
  font-weight: 700;
  color: #008ccf;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  #interview .sct-main .back {
    margin-bottom: 30px;
  }
  #interview .sct-main .back a {
    font-size: 13px;
  }
}
#interview .sct-main .top {
  text-align: right;
}
#interview .sct-main .top a {
  font-size: 16px;
  color: #231815;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  #interview .sct-main .top a {
    font-size: 13px;
  }
}

#pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 30;
}
#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 {
  background: #008ccf;
  opacity: 1;
}
#pagetop a .svg-inline--fa.fa-w-14 {
  width: 100%;
}
/*2403追加分*/
.container{
  font-family: "Hiragino Sans", sans-serif;
  font-feature-settings:"palt";
}
.mb30{
margin-bottom: 30px;
}
.mb60{
margin-bottom: 60px;
}
.sct-lead{
  background:#EFEFEF;
  overflow: hidden;
}
.sct-lead .container{
  padding: 60px 0;
  overflow:visible;
}
.lead_title--02{
  font-size: clamp(18px, 2.2vw, 20px);
  font-weight: 800;
margin-top:20px;
margin-bottom:30px;
line-height:2;
}
.lead_text{
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 600;
line-height:2;
margin-bottom:30px;
}
.agenda_box{
  position:relative;
  background:#ffffff;
  padding:20px;
  border-radius:5px;
}
.agenda--kazari img{
  width:100%;
  max-width:100%;
  height:auto;
}
.agenda--kazari{
  width: 75px;
  min-width: 30px;
  height: auto;
  position: absolute;
  right: 0;
  top: -70px;
  z-index: -1;
}
.agenda_list{
  list-style: none;
  text-align: left;
  width: 520px;
  width: fit-content;
  line-height: 2;
letter-spacing:.1em;
}
.agenda_list li:before {
  content: "●";
  display: inline-block;
  color: #23437E;
  font-size: 18px;
  position: relative;
  top: -1px;
  margin-right: 6px;
}
.agenda_list--item{
padding-left: 1em;
  text-indent: -1em;
}
.agenda_list--item a{
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 700;
  color:#231815;
}
.agenda_title{
  width: 160px;
  height: auto;
  position: relative;
  left: -20px;
  top: 20px;
  z-index: 1;
}
.hint_text--01{
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 600;
line-height:2;
margin-top:20px;
}
.text--notes{
  font-size: 70%;
}
.hint_wrapper{
  margin-top:60px;
  margin-bottom:40px;
}
.hint_list--notes{
  font-size: clamp(12px, 2.2vw, 16px);
  font-weight: 600;
  text-align:left;
  line-height:2;
  color:#231815;
}
.hint_list--notes--item a{
  color:#231815;
}
.hint_title--02{
  max-width:500px;
}
.hint_text--02{
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 600;
line-height:2;
margin-top:20px;
margin-bottom:20px;
}
.text--blue{
  color:#23437E;
  font-weight:800;
}
.text--red{
  color:#CD4229;
  font-weight:800;
}
.priority_wrapper{
  margin-bottom:20px;
}
.view_title{
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  text-align:left;
  margin-bottom:10px;
}
.view_wrapper{
  margin-bottom:70px;
}
.perspective_wrapper{
  margin-bottom:30px;
}
.perspective{
  display:flex;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.perspective_button{
  margin-top:60px;
}
.perspective_title{
  width: 17%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  vertical-align: middle;
  height: 88px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
  background: #23437E;
  border-radius: 5px;
  margin-right: 4%;
}
.perspective_title::after{
  content: "";
  display: block;
  position: absolute;
  top: 34px;
  bottom: 0;
  right: -24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 14px;
  border-color: transparent transparent transparent #23437E;
}
.perspective_text{
  position: relative;
  width:79%;
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 600;
  text-align:left;
  vertical-align:middle;
  color:#231815;
  padding: 16px 30px;
  background:#EFEFEF;
  border-radius: 5px;
}
.perspective_text--inner{
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.sct-voice{
  background: rgb(240 234 12 / 15%);
}
.sct-voice .container{
  padding: 6% 0 1%;
}
.voice_wrapper--01{
  position: relative;
}
.voice_wrapper--02{
  padding-top:130px;
  padding-bottom:60px;
  position: relative;
  background:#E5EEF9;
}
.voice_wrapper--02::before{
  content:"";
  display:block;
  width:100%;
  height:233px;
  background:url("https://business.shigotofield.jp/companylabo/images/index/voice/voice_bg--bottom--pc.png") no-repeat;
  background-size:contain;
  position: absolute;
  top:0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.voice_arrow{
  width: 30px;
  height:auto;
  position: absolute;
  top:0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.voice_title{
  text-align:center;
  margin:0 auto;
  margin-bottom:30px;
}
.voice_title img{
  width: 100%;
  height:auto;
  max-width: 1000px;
}
.voice_text{
  font-size: clamp(16px, 2.2vw, 18px);
  text-align: left;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 30px;
}
.voice_text img{
  width: 100%;
  height: auto;
  max-width: 50px;
  vertical-align: bottom;
  margin: 0 5px;
}
.voice_table{
border-spacing: 0;
border-collapse: collapse;
}
.voice_table th,.voice_table td{
border-top: 1px solid #231815;
border-left: 1px solid #231815;
vertical-align: middle;
}
.voice_table th{
padding: 5px 10px;
background: #F0EA0C;
color: #231815;
font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
}
.voice_table--title--01{
width: 22%;
}
.voice_table--title--02{
width: 64%;
}
.voice_table--title--03{
width: 14%;
background:#23437E!important;
color:#F0EA0C!important;
font-size: clamp(14px, 2.2vw, 16px)!important;
position: relative;
}
.voice_table--title--03::before{
content:"";
  display:block;
  width:100%;
  height:24px;
  background:url("https://business.shigotofield.jp/companylabo/images/index/voice/voice_click--kazari.png") no-repeat;
  background-size:contain;
  position: absolute;
  top: -32px;
  left: 71%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.voice_table--click{
background:#F8F4A5!important;
}
.voice_table--click img{
display: block;
}
.voice_table td{
height:110px;
padding: 20px;
background: #E3F1F7;
color: #231815;
text-align:justify;
font-weight: 800;
font-size: clamp(16px, 2.2vw, 22px);
}
.voice_table td:nth-child(odd){
text-align:center;
}
.voice_table td a{
display: flex;
align-items:center;
font-size: clamp(15px, 2.2vw, 18px);
color: #23437E;
font-weight: 600;
width: 100%;
height:100%;
}
.voice_table tr:nth-child(even) td{
background: #FFFFFF;
}
.voice_table th:last-child,.voice_table td:last-child{
border-right: 1px solid #231815;
}
.voice_table tr:last-child th,.voice_table tr:last-child td{
border-bottom: 1px solid #231815;
}

@media screen and (max-width: 767px){
  .sct-lead .container{
  padding: 60px 6%;
}
.lead_text br{display:none;}
.perspective_title{
  width: 32%;
  height:44px;
  position: relative;
  left: -10px;
}
.perspective_text{
  width:100%;
}
.perspective_text--inner{
  position:unset;
  transform: none;
  -webkit-transform: none;
  -ms-transform: none;
}
.perspective_title::after{
  content: "";
  display: block;
  position: absolute;
  top: auto;
  bottom: -8px;
  right: 47px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12px 0 12px;
  border-color: #23437E transparent transparent transparent;
}
.agenda_list li:before {
  font-size: 14px;
}
.agenda_box{
padding: 20px 20px 20px 40px;
}
.sct-voice .container{
  padding: 12% 6% 1%;
}
.voice_wrapper--02{
  padding-top:50px;
}
.voice_table--title--03::before {
  height: 17px;
  top: -25px;
  left: 66%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.voice_table td{
  padding: 10px;
  height:auto;
}
.voice_table--title--01--sub{
  -ms-writing-mode: tb-rl;
white-space: pre;
              writing-mode: vertical-rl;
              display: inline-block;
}
.voice_table--title--01{
width: 4%;
}
.voice_table--title--02{
width: 76%;
}
.voice_table--title--03{
width: 20%;
}
.voice_arrow{
width: 15px;
top:-30px;
}
}
.voice_hukidashi {
	display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.voice_hukidashi--02{
	flex-direction: row-reverse;
}
.voice_hukidashi_arrow_box{
	display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 110px;
    text-align: center;
    background: #FFFFFF;
    padding: 20px;
    border-top: 4px solid #204078;
    border-bottom: 4px solid #204078;
    color: #204078;
    font-size: 14px;
    font-weight: bold;
    width: 65%;
    margin-right: 12%;
}
.voice_hukidashi--02 .voice_hukidashi_arrow_box{
	width: 65%;
	margin-right: 0;
    margin-left: 12%;
}
.voice_hukidashi_arrow_box:after,.voice_hukidashi_arrow_box:before{
content:"";
display:block;
}
.voice_hukidashi_arrow_box:after{
	background: url(https://business.shigotofield.jp/companylabo/images/index/voice/voice_hukidashi--right.png) no-repeat;
    width: 58px;
    height: inherit;
    background-size: contain;
    position: absolute;
    right: -50px;
    top: -4px;
}
.voice_hukidashi_arrow_box:before{
	background: url(https://business.shigotofield.jp/companylabo/images/index/voice/voice_hukidashi--left--arrow.png) no-repeat;
    width: 110px;
    height: inherit;
    background-size: contain;
    position: absolute;
    top: -4px;
    left: -36px;
}
.voice_hukidashi--02 .voice_hukidashi_arrow_box:after{
	background: url(https://business.shigotofield.jp/companylabo/images/index/voice/voice_hukidashi--right--arrow.png) no-repeat;
    width: 110px;
    height: inherit;
    background-size: contain;
    position: absolute;
    top: -4px;
    right: -110px;
}
.voice_hukidashi--02 .voice_hukidashi_arrow_box:before{
	background: url(https://business.shigotofield.jp/companylabo/images/index/voice/voice_hukidashi--left.png) no-repeat;
    width: 58px;
    height: inherit;
    background-size: contain;
    position: absolute;
    left: -12px;
    top: -4px;
}

.voice_hukidashi_image {
	width: 18%;
    max-width: 180px;
    height: auto;
}

.voice_hukidashi_arrow_box_text{
		text-align: center;
    font-size: 24px;
    font-weight: 800;
	}
.voice_eye_text{
    width: fit-content;
	margin-inline: auto;
	text-align: left;
    color: #204078;
    font-size: 22px;
    font-weight: 800;
}
.voice_eye_text__image{
	display: inline-block;
    vertical-align: middle;
    width: 36px;
	margin-right:4px;
}
.interview_message{
    width: fit-content;
	margin-inline: auto;
	text-align: center;
    color: #204078;
    font-size: clamp(40px, 10vw, 80px);
    font-weight: 800;
	margin-bottom:20px;
}
.old_interview_button{
	width: 100%;
    margin: 0 auto;
    margin-bottom: 60px;
    text-align: center;
    display: block;
}
@media screen and (max-width: 767px){
	.voice_hukidashi{
		align-items:end;
	}
	.voice_hukidashi_arrow_box{
    width: 100%;
    height:110px;
    padding: 10px 2px;
    width: 67%;
    margin-right: 0;
}
.voice_hukidashi--02 .voice_hukidashi_arrow_box{
	width: 67%;
	margin-right: 0;
    margin-left: 0;
}
.voice_hukidashi_arrow_box_text{
	font-size: 16px;
}
.voice_hukidashi_arrow_box_text br,.voice_eye_text br{
	display:none;
}
.voice_hukidashi_image {
	width: 24%;
    max-width: 180px;
    height: auto;
}
.voice_eye_text{
	font-size:16px;
}
.voice_eye_text__image{
    width: 30px;
}
}
.interview__item__image{
	position:relative;
}
.interview__item__image img{
  border-radius: 20px;
}
.interview__item__batch{
	position: absolute;
    bottom: -7px;
    left: -13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #008ccf;
    border-radius: 100%;
    width: 70px;
    height: 70px;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    font-weight: normal;
    font-size: 12px;
}
.interview__item__company{
	margin-top:15px;
	font-size:14px;
	line-height:1.2;
	padding-bottom:5px;
}
.interview__item__info{
	padding-top:5px;
	border-top:1px solid #999;
	color:gray;
	font-size:13px;
	line-height:1.3;
}