@charset "UTF-8";
@import url(sanitize.css);
body {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1rem;
  line-height: 2rem;
  font-size: 16px;
}

.ellipsis {
  width: 300px; /* 省略せずに表示するサイズを指定 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.disp-sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .disp-sp {
    display: block;
  }
}

h1 {
  margin-top: 0;
}

.ttl-h2 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-top: 7px;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 480px) {
  .ttl-h2 {
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: -5px;
  }
}

.ttl-h2-w {
  text-align: left;
  color: #fff;
  letter-spacing: 0.3rem;
}

.ttl-dec-y {
  color: #C1C430;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  margin: 0;
  letter-spacing: 0.15rem;
}

.ttl-dec-w {
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.15rem;
}

.ttl-h3 {
  font-size: 26px;
  font-weight: bold;
  margin-top: 7px;
  line-height: 2.5rem;
}
@media screen and (max-width: 480px) {
  .ttl-h3 {
    font-size: 22px;
    text-align: center;
  }
}

.ttl-h4 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 7px;
  line-height: 2.5rem;
}
@media screen and (max-width: 480px) {
  .ttl-h4 {
    font-size: 20px;
    line-height: 2rem;
  }
}

.ttl-h5 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 7px;
  line-height: 2rem;
}
@media screen and (max-width: 480px) {
  .ttl-h5 {
    font-size: 18px;
  }
}

a {
  text-decoration: none;
}

.p-w {
  color: #fff;
}

.ta-c {
  text-align: center;
}

.fw-b {
  font-weight: bold;
}

.fc-b {
  color: #0A206E;
}

.hover-op:hover {
  opacity: 0.5;
  transition: 0.3;
}

.btn-blue {
  font-weight: bold;
  width: 100%;
  display: inline-block;
  padding: 13px;
  background: rgb(17, 20, 30);
  background: linear-gradient(90deg, rgb(17, 20, 30) 0%, rgb(5, 20, 74) 100%);
  text-align: center;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.2rem;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .btn-blue {
    font-size: 16px;
  }
}

.btn-blue:visited {
  color: #fff;
}

.btn-white {
  font-weight: bold;
  width: 100%;
  display: inline-block;
  padding: 8px;
  background: rgb(17, 20, 30);
  background: #fff;
  text-align: center;
  text-decoration: none;
  color: #333;
  letter-spacing: 0.2rem;
  font-size: 14px;
}

.btn-white:visited {
  color: #333 !important;
}

.btn-center {
  width: 290px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .btn-center {
    width: 100%;
  }
}

.btn-shadow {
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.4);
}

.btn-trans {
  transition: 0.3s;
}

.btn-trans:hover {
  box-shadow: unset;
  transform: translate(4px, 4px);
}

.btn-next {
  text-align: center;
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #fff;
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  padding: 13px 0px;
  width: 290px;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .btn-next {
    width: 100%;
  }
}

.btn-effect-1 {
  transition: all 0.2s linear 0s;
  background: linear-gradient(90deg, rgb(17, 20, 30) 0%, rgb(5, 20, 74) 100%);
}
.btn-effect-1:before {
  content: "";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 15px;
  top: 17px;
  opacity: 0;
  background-image: url(../images/icon-arrowround-white-r.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  transition: all 0.2s linear 0s;
}
.btn-effect-1:hover {
  text-indent: -20px;
}
.btn-effect-1:hover:before {
  opacity: 1;
  text-indent: 0px;
}
@media screen and (max-width: 480px) {
  .btn-effect-1 {
    font-size: 16px;
  }
}

img {
  width: 100%;
}

.ta-c {
  text-align: center;
}

.ta-l {
  -moz-text-align-last: left;
       text-align-last: left;
}

.mb-0 {
  margin-bottom: 0;
}

.fw-b {
  font-weight: bold;
}

.container {
  margin: 100px 0;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .container {
    padding: 0 20px;
  }
}

.bg-container {
  margin: 0 calc(50% - 50vw);
  padding: 4px calc(50vw - 50% + 8px);
  width: 100vw;
}

.breadcrumb ul {
  display: flex;
  color: #9E9E9E;
  font-size: 12px;
}
.breadcrumb ul li {
  display: block;
}
.breadcrumb ul li a {
  color: #9E9E9E;
}
.breadcrumb ul li a:visited {
  color: #9E9E9E;
}
.breadcrumb ul li .dli-chevron-right {
  display: inline-block;
  vertical-align: middle;
  color: #9E9E9E;
  line-height: 1;
  width: 10px;
  height: 10px;
  margin: 0px 10px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}

img, video {
  width: 100%;
}

.kv-lower {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 350px;
  width: 100%;
}
.kv-lower h1 {
  padding-top: 185px;
  color: #fff;
  margin-bottom: 15px;
}
@media screen and (max-width: 1120px) {
  .kv-lower {
    height: 230px;
  }
  .kv-lower h1 {
    padding-top: 100px !important;
  }
}
@media screen and (max-width: 480px) {
  .kv-lower h1 {
    padding-top: 105px;
  }
  .kv-lower h1 .ttl-dec-y {
    margin-bottom: 7px;
  }
}

@media screen and (max-width: 480px) {
  .ttl-dec-y-top {
    margin-bottom: 11px;
  }
}
.hover-brightness {
  width: 250px;
  transition: 0.3s;
}

.hover-brightness:hover {
  filter: brightness(0.1);
}
.hover-brightness:hover .top-company-con {
  color: #fff !important;
}

.btn-trans-x:hover .btn-trans-x-icon {
  transform: translateX(5px);
  transition: all 0.2s ease-out;
}

.btn-shadow-2 {
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.btn-shadow-2:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5) !important;
}

.btn-gray {
  text-align: center;
  text-decoration: none;
  color: #fff;
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  padding: 13px 0px;
  width: 290px;
  background-color: #9E9E9E;
  border: none;
}
@media screen and (max-width: 480px) {
  .btn-gray {
    font-size: 16px;
  }
}

.btn-blue-nomal {
  text-align: center;
  text-decoration: none;
  color: #fff;
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  padding: 13px 0px;
  width: 290px;
  background-color: #05144A;
  border: none;
}
@media screen and (max-width: 480px) {
  .btn-blue-nomal {
    font-size: 16px;
  }
}

/*jsで動くcss====================================*/
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(40px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

/*----------------------------
load-fade ｜フワっと出現
----------------------------*/
.load-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}

.load-fade.is-show {
  opacity: 1;
  visibility: visible;
}

/* kv */
.kv {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.kv .main-copy {
  position: absolute;
  left: 5%;
  bottom: 5%;
  color: #fff;
  font-size: 50px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.62);
  font-family: "Noto Serif JP", serif;
  font-weight: 400 !important;
  line-height: 1.3;
  letter-spacing: 0.6rem;
}
.kv .main-copy .sub-copy {
  color: #fff;
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .kv .main-copy {
    font-size: 35px;
    line-height: 1.5;
    letter-spacing: 0.2rem;
  }
}

/* video */
.video {
  width: 100%;
  height: 100vh;
  background: url(/images/kv.png) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.video::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.video video {
  min-width: 100%;
  min-height: 100%;
  width: 100vh;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.top-news .news-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}
.top-news .news-body .news-body-l {
  display: flex;
  align-items: center;
  color: #000;
}
.top-news .news-body .news-body-l .news-body-up {
  display: flex;
  align-items: center;
}
.top-news .news-body .news-body-l .date {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #DADADA;
}
.top-news .news-body .news-body-l .date .day {
  font-size: 20px;
}
.top-news .news-body .news-body-l:visited {
  color: #000;
}
.top-news .news-body label {
  display: inline-block;
  background-color: #DADADA;
  padding: 2px 10px;
  font-size: 12px;
  border-radius: 50px;
  padding: 5px 20px;
  margin-right: 20px;
}
.top-news .news-body .news-body-r {
  display: flex;
  align-items: center;
}
.top-news .news-body .news-body-r a {
  text-decoration: none;
  color: #000;
}
.top-news .news-body .news-body-r a span {
  display: inline-block;
  width: 38px;
  margin-left: 10px;
}
.top-news .news-body .news-body-r a:visited {
  color: #000;
}
@media screen and (max-width: 768px) {
  .top-news .news-body {
    padding-top: 10px;
    font-size: 12px;
  }
  .top-news .news-body .news-body-l {
    flex-direction: column;
    align-items: flex-start;
    width: 75%;
  }
  .top-news .news-body .news-body-l .news-body-up .date {
    flex-direction: row;
    justify-content: flex-start !important;
    font-size: 12px;
    border: none;
  }
  .top-news .news-body .news-body-l .news-body-up .date .day {
    font-size: 12px;
    margin-left: 10px;
  }
  .top-news .news-body .news-body-l .news-body-up label {
    padding: 1px 20px;
  }
  .top-news .news-body .news-body-l p {
    margin: 8px 0 5px;
  }
  .top-news .news-body .news-body-r a {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}

.top-product {
  padding: 80px 0;
  background-color: #F6F6F6;
}

.pro-box-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pro-box-flex .pro-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding-right: 20px;
  width: 48%;
  margin-bottom: 20px;
  box-shadow: 3px 3px 20px 0px #e8e8e8;
  color: #000;
}
.pro-box-flex .pro-box .pro-box-p {
  align-items: center;
  display: flex;
}
.pro-box-flex .pro-box .pro-box-p .pro-img {
  width: 165px;
  margin-right: 10px;
}
.pro-box-flex .pro-box .pro-box-p p {
  font-weight: bold;
}
.pro-box-flex .pro-box .arrow-sm {
  display: inline-block;
  width: 8px;
}
.pro-box-flex a:visited {
  color: #000;
}

@media screen and (max-width: 768px) {
  .pro-img {
    width: 130px !important;
  }
}
@media screen and (max-width: 700px) {
  .pro-box-flex {
    flex-direction: column;
  }
  .pro-box-flex .pro-box {
    width: 100%;
  }
}
.btn-pro {
  position: relative;
}
.btn-pro:before, .btn-pro:after,
.btn-pro .btn--inner:before,
.btn-pro .btn--inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background-color: currentColor;
  transition: 0.3s ease-in-out;
}

.btn--tlbr:before, .btn--tlbr:after {
  width: 0;
  height: 1px;
}
.btn--tlbr:after,
.btn--tlbr .btn--inner:after {
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
}
.btn--tlbr .btn--inner:before,
.btn--tlbr .btn--inner:after {
  width: 1px;
  height: 0;
}
.btn--tlbr:hover:before, .btn--tlbr:hover:after {
  width: 100%;
}
.btn--tlbr:hover .btn--inner:before,
.btn--tlbr:hover .btn--inner:after {
  height: 100%;
}

.bnr-ever {
  margin-top: 30px;
  margin-bottom: 100px;
  transition: 0.2s ease-in-out;
}

.top-voice {
  margin-top: 80px;
  margin-bottom: 100px;
}

.swiper-top {
  /*スライダーの幅と高さを調整*/
  width: 90%;
  height: 200px;
  margin: 0.5rem auto 2rem;
  overflow: hidden;
}
.swiper-top .swiper-slide {
  /*スライド要素の幅と高さを調整*/
  width: 100%;
  height: 100%;
  /*テキストの位置調整*/
  display: flex;
  justify-content: center;
  align-items: center;
  /*テキストの色と太さを指定*/
  color: #333;
  font-weight: bold;
  background-color: #f5f5f5;
  padding: 50px 40px;
}
.swiper-top .swiper-slide .p-voice-bold {
  font-weight: bold;
  color: #BC1111;
}
.swiper-top .p-voice-right {
  margin: 0 0 0 auto;
  font-size: 12px;
  color: #DADADA;
}
.swiper-top .p-voice-right .p-voice-line {
  display: inline-block;
  width: 100px;
  border: #9E9E9E 1px solid;
  margin-bottom: 5px;
  margin-right: 10px;
}
@media screen and (max-width: 480px) {
  .swiper-top {
    margin-bottom: 0;
    height: 320px;
  }
}

@media screen and (max-width: 480px) {
  .scroll-infinity__list {
    margin-bottom: 50px;
  }
  .scroll-infinity__item {
    width: 15vw !important;
    margin: 10px !important;
  }
}
.swiper-wrap-top {
  position: relative;
  /* 前へ次への矢印カスタマイズ */
  /* 前へ次への矢印カスタマイズ */
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
}
.swiper-wrap-top .swiper-slide {
  flex-direction: column;
}
.swiper-wrap-top .swiper-button-next, .swiper-wrap-top .swiper-button-prev {
  top: 240px;
}
.swiper-wrap-top .swiper-button-next {
  right: 45%;
}
.swiper-wrap-top .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 45%);
}
.swiper-wrap-top .swiper-button-prev,
.swiper-wrap-top .swiper-button-next {
  display: inline-block;
  height: 35px;
  width: 35px;
}
.swiper-wrap-top .swiper-button-prev::after,
.swiper-wrap-top .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 35px;
  margin: auto;
  width: 35px;
}
.swiper-wrap-top .swiper-button-prev::after {
  display: inline-block;
  height: 35px;
  width: 35px;
  background-image: url("https://shoko-international.com/images/icon-arrowround-blue-l.svg");
}
.swiper-wrap-top .swiper-button-next::after {
  display: inline-block;
  height: 35px;
  width: 35px;
  background-image: url("https://shoko-international.com/images/icon-arrowround-blue-r.svg");
}

@media screen and (max-width: 768px) {
  .swiper-button-next, .swiper-button-prev {
    top: 110px !important;
  }
  .swiper-button-next {
    right: 3% !important;
  }
  .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 3%) !important;
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 60s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: 10vw;
  margin: 20px;
}

.scroll-infinity__item > img {
  width: 100%;
}

.top-sdgs {
  margin: 80px 0;
  background-image: url(../images/bg-sdgs.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.top-sdgs .sdgs-con {
  padding: 50px;
  color: #fff;
  -moz-text-align-last: left;
       text-align-last: left;
}
.top-sdgs .sdgs-con .label-sdgs {
  display: flex;
}
.top-sdgs .sdgs-con .label-sdgs img {
  width: 62px;
  height: auto;
  margin-right: 20px;
}
@media screen and (max-width: 480px) {
  .top-sdgs .sdgs-con {
    padding: 25px;
  }
}

.header {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  position: fixed;
  transition: color 0.4s ease-out;
  width: 100%;
  z-index: 999;
  padding: 0 15px 10px 0;
}
.header ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding-top: 10px;
}
.header ul li {
  margin-left: 20px;
  list-style: none;
}
.header ul li a {
  color: #333;
}
.header ul li a:visited {
  color: #333;
}
.header ul li .btn-blue, .header ul li .btn-white {
  font-size: 16px;
  letter-spacing: 0.1rem;
  padding: 10px;
  color: #fff !important;
}
.header ul li .btn-white {
  color: #05144A !important;
}
.header ul li a {
  position: relative;
}
.header ul li .hover-line::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #05144A;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.header ul li a:hover::after {
  transform: scale(1, 1);
}
@media screen and (max-width: 1120px) {
  .header {
    display: none !important;
  }
}

.icon-dl, .icon-cv {
  width: 14px;
  margin-right: 5px;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  box-shadow: 0px 8px 16px -12px #d6d6d6;
}
.header-flex .header-logo {
  width: 320px !important;
  padding: 17px 20px 10px 20px;
}

/* スクロールしたらヘッダーメニューのフォントカラー変更 */
.header.headerColorScroll {
  transition: color 0.4s ease-out;
  background-color: #fff;
  box-shadow: 0px 6px 15px -5px #dedede;
}
.header.headerColorScroll ul li .hover-line::after {
  background: linear-gradient(90deg, rgb(17, 20, 30) 0%, rgb(5, 20, 74) 100%);
}
.header.headerColorScroll ul li a {
  color: #333;
}
.header.headerColorScroll ul li a:visited {
  color: #333 !important;
}
.header.headerColorScroll ul li .btn-blue {
  color: #fff;
}
.header.headerColorScroll ul li .btn-blue:visited {
  color: #fff;
}

/*ヘッダー----------------------------*/
.h-navi {
  display: none;
  align-items: center;
  padding: 20px;
}
@media screen and (max-width: 1120px) {
  .h-navi {
    display: flex;
    justify-content: space-between;
    height: 60px;
    width: 100%;
    background-color: #fff;
    position: fixed;
    z-index: 999;
  }
}
.h-navi .h_logo {
  width: 130px;
}

/*ハンバーガーメニュー=======================*/
.open-btn {
  cursor: pointer;
  z-index: 999999;
}

.open-btn span {
  display: block;
  position: relative;
  width: 2.5rem;
  height: 1.5rem;
}

.open-btn i {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #05144A;
  position: absolute;
  transition: transform 0.5s, opacity 0.5s;
}

.open-btn i:nth-child(1) {
  top: 0;
}

.open-btn i:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.open-btn i:nth-child(3) {
  bottom: 0;
}

/*クリック後--------------*/
.open-btn.active i:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
}

.open-btn.active i:nth-child(2) {
  opacity: 0;
}

.open-btn.active i:nth-child(3) {
  transform: translateY(-12px) rotate(45deg);
}

/*リスト====================================*/
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*メニューリスト*/
#g-nav {
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 55px;
  right: -120%;
  width: 100%;
  height: 100vh;
  opacity: 0.95;
  padding-right: 0;
  background: linear-gradient(90deg, rgb(17, 20, 30) 0%, rgb(5, 20, 74) 100%);
  /*動き*/
  transition: all 0.6s;
  padding: 20px;
}

.gnav ul {
  text-align: left;
  display: block;
}

.gnav li {
  margin: 0;
  border-bottom: 1px solid #bcbcbc;
}
.gnav li a {
  padding: 3% 7%;
  color: #fff;
  display: flex;
  flex-direction: column-reverse;
}

.gnav ul li a:hover {
  opacity: 0.5;
}

.gnav ul li a.nav-solid::after, .f_right ul li a::after {
  content: none;
}

.gnav ul li.con_btn a {
  background: none;
  width: auto;
  height: auto;
  padding: 3% 7%;
  text-align: left;
}

.gnav ul li.con_btn a:hover {
  color: white;
}

.gnav ul li.con_btn a span {
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}

.gnav ul li.con_btn a span:first-child::before {
  margin-left: 0;
}

.gnav ul li a span.p-list {
  color: #05144A;
  font-family: "Outfit";
  font-weight: 500;
  font-size: 10px;
  color: #C1C430;
}

footer {
  margin-top: 50px;
  background: linear-gradient(90deg, rgb(17, 20, 30) 0%, rgb(5, 20, 74) 100%);
  color: #fff;
  padding: 50px 0 20px 0;
}
footer h6 {
  font-size: 18px;
  margin: 25px 0 10px 0;
}
footer h6 a {
  color: #fff;
}
footer h6 a:visited {
  color: #fff;
}
footer .footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .footer-flex .footer-left {
  width: 29%;
}
footer .footer-flex .footer-left p {
  margin-bottom: 0;
}
footer .footer-flex .footer-left a {
  color: #fff !important;
}
footer .footer-flex .footer-left a:visited {
  color: #fff !important;
}
footer .footer-flex .footer-right {
  width: 69%;
}
footer .footer-flex .footer-right ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
footer .footer-flex .footer-right ul li {
  display: inline-block;
  margin-bottom: 10px;
  min-width: 130px;
}
footer .footer-flex .footer-right ul li a {
  color: #fff !important;
}
footer .footer-flex .footer-right ul li a:visited {
  color: #fff !important;
}
footer .copyright-s {
  font-size: 12px;
  text-align: center;
  color: #9E9E9E;
  margin-top: 45px;
}
@media screen and (max-width: 480px) {
  footer .footer-flex {
    flex-direction: column-reverse;
  }
  footer .footer-flex .footer-left {
    width: 100%;
  }
  footer .footer-flex .footer-right {
    width: 100%;
  }
  footer .footer-flex .footer-right ul {
    justify-content: flex-start;
    padding-left: 0;
  }
  footer .copyright-s {
    line-height: 1rem;
  }
}

.s-colum-2 {
  display: flex;
  margin-top: 80px;
}
.s-colum-2 .top-company, .s-colum-2 .top-contact {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .s-colum-2 {
    flex-direction: column;
  }
  .s-colum-2 .top-company, .s-colum-2 .top-contact {
    width: 100%;
  }
}

.top-company {
  background-image: url(../images/go-company.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 350px;
}
.top-company .top-company-con {
  position: absolute;
  width: 480px;
  top: 30px;
  right: 30px;
}
.top-company .top-company-con .p-w {
  color: #fff;
}
.top-company .top-company-con .arrow-w {
  width: 40px;
  height: 40px;
}
.top-company .top-company-con .arrow-w img {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 1080px) {
  .top-company .top-company-con {
    text-align: center;
    width: 80%;
    right: 50%;
    transform: translateX(50%);
  }
  .top-company .top-company-con .ttl-dec-w, .top-company .top-company-con .ttl-h2 {
    text-align: center;
  }
  .top-company .top-company-con .arrow-w {
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .top-company {
    height: 350px;
  }
  .top-company .top-company-con {
    width: 100%;
    padding: 0 20px;
  }
}

.top-contact {
  background-image: url(../images/go-contact.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 350px;
}
.top-contact .top-contact-con {
  position: absolute;
  width: 480px;
  top: 30px;
  left: 30px;
}
.top-contact .top-contact-con .btn-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top-contact .top-contact-con .btn-flex a {
  display: inline-block;
  width: 49%;
  font-size: 18px !important;
  padding: 13px !important;
}
.top-contact .top-contact-con .top-contact-tell {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-contact .top-contact-con .top-contact-tell .top-contact-tell-up {
  display: flex;
  align-items: center;
}
.top-contact .top-contact-con .top-contact-tell .top-contact-tell-up .icon-tell {
  width: 25px;
  height: auto;
}
.top-contact .top-contact-con .top-contact-tell .top-contact-tell-up .tell-num {
  font-size: 30px;
  font-weight: bold;
}
.top-contact .top-contact-con .top-contact-tell .top-contact-tell-up .tell-num a {
  color: #fff;
}
.top-contact .top-contact-con .top-contact-tell .top-contact-tell-up .tell-num a:visited {
  color: #fff;
}
.top-contact .top-contact-con .top-contact-tell .tell-time {
  color: #fff;
}
@media screen and (max-width: 1080px) {
  .top-contact .top-contact-con {
    text-align: center;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
  }
  .top-contact .top-contact-con .ttl-dec-w, .top-contact .top-contact-con .ttl-h2 {
    text-align: center;
  }
  .top-contact .top-contact-con .top-contact-tell {
    justify-content: center;
  }
}
@media screen and (max-width: 555px) {
  .top-contact {
    height: 380px;
  }
  .top-contact .top-contact-con {
    padding: 0 20px;
    width: 100%;
  }
  .top-contact .top-contact-con .btn-flex {
    flex-direction: column;
  }
  .top-contact .top-contact-con .btn-flex a {
    font-size: 16px;
    width: 100%;
    margin-bottom: 10px;
  }
  .top-contact .top-contact-con .top-contact-tell {
    flex-direction: column;
  }
  .top-contact .top-contact-con .top-contact-tell .tell-num a {
    font-size: 25px;
  }
}

.go-doc {
  margin-top: 100px;
}

.go-doc-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.go-doc-flex .go-doc-box {
  width: 49%;
  background-image: url(https://shoko-international.com/product/images/bg-go-doc.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 30px;
  box-shadow: 3px 3px 7px 0px #000;
}
.go-doc-flex .go-doc-box .box-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.go-doc-flex .go-doc-box .box-flex .box-l {
  width: 55%;
  color: #fff;
  font-weight: bold;
}
.go-doc-flex .go-doc-box .box-flex .box-l p {
  font-size: 17px;
  line-height: 1.8rem;
  padding: 20px;
}
.go-doc-flex .go-doc-box .box-flex .box-r {
  width: 44%;
}
.go-doc-flex .go-doc-box a {
  background-color: #C1C430;
  color: #fff;
  font-weight: bold;
  position: relative;
  padding: 12px;
  width: 100%;
  display: block;
  text-align: center;
}
.go-doc-flex .go-doc-box a:visited {
  color: #fff;
}
.go-doc-flex .go-doc-box .icon-doc::after {
  content: url("https://shoko-international.com/images/icon-download-white.svg");
  display: block;
  width: 20px;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 13px;
  right: 20px;
}
.go-doc-flex .go-doc-box .icon-web::after {
  content: url("https://shoko-international.com/images/icon-web-white.svg");
  display: block;
  width: 20px;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 13px;
  right: 20px;
}

@media screen and (max-width: 990px) {
  .go-doc-flex .go-doc-box {
    padding: 0 15px 10px 15px;
  }
  .go-doc-flex .go-doc-box .box-l p {
    font-size: 14px !important;
    line-height: 1.4 !important;
    margin: 0;
    padding: 10px 0 10px 10px !important;
  }
  .go-doc-flex .go-doc-box .box-r {
    width: 38%;
  }
  .go-doc-flex .go-doc-box a {
    padding: 9px !important;
  }
}
@media screen and (max-width: 768px) {
  .go-doc-flex {
    flex-direction: column;
    gap: 20px;
  }
  .go-doc-flex .go-doc-box {
    width: 100%;
  }
  .go-doc-flex .go-doc-box .box-l p {
    font-size: 16px !important;
  }
  .go-doc-flex .go-doc-box .box-r {
    width: 30% !important;
  }
}
@media screen and (max-width: 480px) {
  .go-doc-flex {
    margin-bottom: 90px;
  }
  .go-doc-flex .go-doc-box {
    padding: 15px;
  }
  .go-doc-flex .go-doc-box .box-l p {
    font-size: 14px !important;
  }
}

.kv-lower-product {
  background-image: url(../product/images/kv_product.png);
}
.kv-lower-product h1 {
  padding-top: 175px !important;
}
.kv-lower-product .label-func-div p {
  margin: 0;
}
@media screen and (max-width: 1120px) {
  .kv-lower-product {
    height: 280px;
  }
  .kv-lower-product h1 {
    padding-top: 80px !important;
  }
}
@media screen and (max-width: 600px) {
  .kv-lower-product .label-func-div {
    margin-top: 25px;
  }
}
@media screen and (max-width: 480px) {
  .kv-lower-product {
    height: 260px;
  }
  .kv-lower-product .label-func-div {
    margin-top: 0px;
  }
}
@media screen and (max-width: 370px) {
  .kv-lower-product {
    height: 290px;
  }
  .kv-lower-product .label-func-div {
    margin-top: 0px;
  }
}

.kv-lower-product-n {
  background-image: url(../product/images/kv_product.png);
}
.kv-lower-product-n h1 {
  padding-top: 185px !important;
}
@media screen and (max-width: 1120px) {
  .kv-lower-product-n {
    height: 230px;
  }
  .kv-lower-product-n h1 {
    padding-top: 100px !important;
  }
}
@media screen and (max-width: 600px) {
  .kv-lower-product-n {
    height: 265px;
  }
  .kv-lower-product-n .label-func-div {
    margin-top: 25px;
  }
}
@media screen and (max-width: 480px) {
  .kv-lower-product-n {
    height: 230px;
  }
  .kv-lower-product-n .label-func-div {
    margin-top: 0px;
  }
}
@media screen and (max-width: 480px) {
  .kv-lower-product-n {
    height: 230px;
  }
  .kv-lower-product-n .label-func-div {
    margin-top: 0px;
  }
}

.pro-intro {
  margin-bottom: 120px;
}
.pro-intro .pro-intro-p {
  width: 85%;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .pro-intro {
    margin-top: 50px;
  }
  .pro-intro .pro-intro-p {
    width: 100%;
    text-align: left;
  }
}

.pro-p-img {
  width: 260px;
}

.tab-label p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.tab-label .icon-belt::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url(../images/icon-belt-b.svg);
  background-position: center;
  background-size: contain;
  margin-right: 10px;
}
.tab-label .icon-stop::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url(../images/icon-stop-b.svg);
  background-position: center;
  background-size: contain;
  margin-right: 10px;
}

.tab-box {
  position: relative;
  height: 777px;
}
.tab-box .tab-label-heading-l {
  position: absolute;
  top: 0;
  left: 0;
  width: 49.6%;
  margin: 0;
  z-index: 1;
}
.tab-box .tab-label-heading-r {
  position: absolute;
  top: 0;
  right: 0;
  width: 49.6%;
  margin: 0;
  z-index: 1;
}
.tab-box .tab-label {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .tab-box {
    height: 860px;
  }
}
@media screen and (max-width: 460px) {
  .tab-box {
    height: 1000px;
  }
}

.tab-panel {
  position: absolute;
  top: 56px;
  left: 0;
  width: 100%;
}

/*タブを横並びに*/
.tab-label {
  display: block;
  float: left;
}

.tab-label-heading:not(:last-of-type) .tab-label {
  margin-right: 2px !important;
}

/*ラジオボタンを全て非表示に*/
input[name=tab-radio] {
  display: none;
}

.tab-label {
  background-color: #DADADA;
  color: #05144A !important;
  cursor: pointer !important;
  font-size: 16px !important;
  padding: 10px 20px !important;
  transition: 0.3s;
  text-align: center;
  border-top: 4px solid #DADADA;
}

/* 選択されたタブの見た目 */
input:checked + h4 > .tab-label {
  background-color: #fff;
  transition: 0.3s;
  border-top: 5px solid #05144A;
  border-right: 2px solid #05144A;
  border-left: 2px solid #05144A;
  border-bottom: 2px solid #fff;
}

.tab-panel {
  clear: both;
  display: none; /*パネルを非表示*/
}

/* 選択されているチェックボックスに応じてパネルを表示 */
#tab-a:checked ~ .panel-a,
#tab-b:checked ~ .panel-b,
#tab-c:checked ~ .panel-c {
  display: block;
  padding: 35px 30px;
}
@media screen and (max-width: 480px) {
  #tab-a:checked ~ .panel-a,
  #tab-b:checked ~ .panel-b,
  #tab-c:checked ~ .panel-c {
    padding: 25px 20px;
  }
}

.panel-a {
  border: #05144A 2px solid;
}

.panel-b {
  border: #05144A 2px solid;
}

.tub-panel-flex {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}
.tub-panel-flex .go-pro {
  color: #000;
  width: 23%;
  margin-right: 2%;
}
.tub-panel-flex .go-pro img {
  height: auto;
}
.tub-panel-flex .go-pro h5 {
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0;
}
.tub-panel-flex .go-pro p {
  margin: 0;
}
.tub-panel-flex .go-pro:visited {
  color: #000;
}
@media screen and (max-width: 768px) {
  .tub-panel-flex {
    gap: 20px 0;
  }
  .tub-panel-flex .go-pro {
    width: 30%;
  }
}
@media screen and (max-width: 480px) {
  .tub-panel-flex {
    justify-content: space-between;
  }
  .tub-panel-flex .go-pro {
    width: 48%;
    margin-right: 0;
  }
}

.label-func-div {
  display: flex;
  justify-content: center;
}

.label-func-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.label-func {
  font-size: 14px;
  color: #C1C430;
  padding: 3px 5px;
  border: 1px solid #C1C430;
  line-height: normal;
}
@media screen and (max-width: 480px) {
  .label-func {
    font-size: 12px;
  }
}

.keyword {
  margin-top: 100px;
  margin-bottom: 80px;
}

.label-filter {
  border-top: #000 1px solid;
  border-bottom: #000 1px solid;
}

ol {
  list-style: none;
}
ol a {
  text-decoration: none;
  color: inherit;
}
ol a h5 {
  margin: 6px 0 12px 0;
  font-size: 16px;
}

.targets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  padding-left: 0;
  gap: 40px 20px;
}
@media screen and (max-width: 768px) {
  .targets {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .targets {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

[value=All]:checked ~ .targets [data-category] {
  display: block;
}

[value=eisei]:checked ~ .targets .target:not([data-category~=eisei]),
[value=cost]:checked ~ .targets .target:not([data-category~=cost]),
[value=kami]:checked ~ .targets .target:not([data-category~=kami]),
[value=toumei]:checked ~ .targets .target:not([data-category~=toumei]),
[value=sagyou]:checked ~ .targets .target:not([data-category~=sagyou]),
[value=bousui]:checked ~ .targets .target:not([data-category~=bousui]),
[value=jishin]:checked ~ .targets .target:not([data-category~=jishin]),
[value=anzen]:checked ~ .targets .target:not([data-category~=anzen]),
[value=yusou]:checked ~ .targets .target:not([data-category~=yusou]),
[value=kankyo]:checked ~ .targets .target:not([data-category~=kankyo]),
[value=kouritu]:checked ~ .targets .target:not([data-category~=kouritu]),
[value=nikuzure]:checked ~ .targets .target:not([data-category~=nikuzure]) {
  display: none;
}

/*  ラジオボタンを非表示に */
input[type=radio] {
  position: absolute;
  left: -9999px;
}

/*  以下はラベルのスタイル */
.filters {
  margin-bottom: 2rem;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.filters label {
  text-align: center;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.25rem;
  min-width: 50px;
  line-height: normal;
  cursor: pointer;
  transition: all 0.2s;
}
.filters .filters label:hover {
  background: #C1C430;
  color: #fff;
}

[value=All]:checked ~ .filters [for=All],
[value=kami]:checked ~ .filters [for=kami],
[value=toumei]:checked ~ .filters [for=toumei],
[value=cost]:checked ~ .filters [for=cost],
[value=eisei]:checked ~ .filters [for=eisei],
[value=sagyou]:checked ~ .filters [for=sagyou],
[value=kankyo]:checked ~ .filters [for=kankyo],
[value=jishin]:checked ~ .filters [for=jishin],
[value=bousui]:checked ~ .filters [for=bousui],
[value=anzen]:checked ~ .filters [for=anzen],
[value=yusou]:checked ~ .filters [for=yusou],
[value=kouritu]:checked ~ .filters [for=kouritu],
[value=nikuzure]:checked ~ .filters [for=nikuzure] {
  background: #C1C430;
  color: #fff;
}

.pro-summary {
  border: 2px solid #05144A;
  padding: 30px 50px;
  border-radius: 30px;
  margin: 80px 0;
  background-color: #F9F9F9;
}
.pro-summary .sum-felx {
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
.pro-summary .sum-felx .movie-box {
  width: 55%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .pro-summary {
    padding: 20px 25px;
  }
  .pro-summary .sum-felx {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .pro-summary .sum-felx .movie-box {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .pro-summary .sum-felx {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 480px) {
  .pro-summary {
    padding: 20px;
    margin-bottom: 80px;
  }
  .pro-summary h2 {
    margin-top: 0;
  }
  .pro-summary p {
    margin-bottom: 0;
  }
}

.fea-h3 {
  -moz-text-align-last: left;
       text-align-last: left;
  margin-bottom: 30px;
}

.pro-innerlink {
  background-color: #fff;
  box-shadow: 3px 3px 20px 0px #e8e8e8;
  padding: 20px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 60px;
}
.pro-innerlink li a {
  color: #0A206E;
}
.pro-innerlink li a:visited {
  color: #0A206E;
}
.pro-innerlink li a:before {
  content: url("../images/icon-arrow-down.svg");
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 7px;
}
.pro-innerlink li a {
  position: relative;
}
.pro-innerlink li .hover-line::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #05144A;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.pro-innerlink li a:hover::after {
  transform: scale(1, 1);
}
@media screen and (max-width: 570px) {
  .pro-innerlink {
    justify-content: flex-start;
  }
  .pro-innerlink li {
    width: 49%;
  }
}

.feature {
  background-image: url(../product/images/bg-feature.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 32px;
  padding: 0px 0 80px 5px;
  margin-bottom: 80px;
}

.fea-box-flex {
  display: flex;
  justify-content: space-between;
  row-gap: 20px;
  flex-wrap: wrap;
}
.fea-box-flex .fea-box {
  background-color: #fff;
  padding: 5px 15px 10px 24px;
  width: 49%;
}
.fea-box-flex .fea-box h3 {
  color: #0A206E;
  font-size: 18px;
  position: relative;
  margin-bottom: 0;
}
.fea-box-flex .fea-box .h3-01:before {
  content: "01";
  display: block;
  color: #C1C430;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.15rem;
  font-weight: 500;
  font-size: 24px;
  width: 60px;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -40px;
  left: 0;
}
.fea-box-flex .fea-box .h3-02:before {
  content: "02";
  display: block;
  color: #C1C430;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.15rem;
  font-weight: 500;
  font-size: 24px;
  width: 60px;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -40px;
  left: 0;
}
.fea-box-flex .fea-box .h3-03:before {
  content: "03";
  display: block;
  color: #C1C430;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.15rem;
  font-weight: 500;
  font-size: 24px;
  width: 60px;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -40px;
  left: 0;
}
.fea-box-flex .fea-box .h3-04:before {
  content: "04";
  display: block;
  color: #C1C430;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.15rem;
  font-weight: 500;
  font-size: 24px;
  width: 60px;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -40px;
  left: 0;
}
.fea-box-flex .fea-box .h3-05:before {
  content: "05";
  display: block;
  color: #C1C430;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.15rem;
  font-weight: 500;
  font-size: 24px;
  width: 60px;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -40px;
  left: 0;
}
.fea-box-flex .fea-box .h3-06:before {
  content: "06";
  display: block;
  color: #C1C430;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.15rem;
  font-weight: 500;
  font-size: 24px;
  width: 60px;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -40px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .fea-box-flex .fea-box {
    width: 100%;
  }
}

.table-wrap {
  overflow-x: scroll;
}

.table {
  width: 100%;
  min-width: 600px;
}
.table th {
  padding: 15px;
  -moz-text-align-last: left;
       text-align-last: left;
}
.table td {
  padding: 15px;
}

.table-td-bg {
  background-color: #f2f2f2;
}

.table-lup {
  border-top: 1px solid #9E9E9E;
}

.table-ldw {
  border-bottom: 1px solid #9E9E9E;
}

.table-ll {
  border-left: 1px solid #9E9E9E;
}

.table-lr {
  border-right: 1px solid #9E9E9E;
}

#example {
  margin-top: 100px;
}

.swiperThumbnail .swiper-slide-thumb-active {
  border: 3px solid #05144A;
}

.exa-flex {
  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.exa-flex .swiperMain {
  width: 40%;
}
.exa-flex .swiperThumbnail {
  width: 55%;
}
.exa-flex .swiperThumbnail .swiper-wrapper {
  height: auto;
  flex-wrap: wrap;
  gap: 10px;
}
.exa-flex .swiperThumbnail .swiper-wrapper .swiper-slide {
  margin: 0 !important;
  width: 18% !important;
}
@media screen and (max-width: 768px) {
  .exa-flex {
    flex-direction: column;
    margin-top: 20px;
  }
  .exa-flex .swiperMain {
    width: 100%;
    margin-bottom: 10px;
  }
  .exa-flex .swiperThumbnail {
    width: 100%;
  }
  .exa-flex .swiperThumbnail .swiper-wrapper {
    gap: unset;
    row-gap: 5px;
    justify-content: space-between;
  }
  .exa-flex .swiperThumbnail .swiper-wrapper .swiper-slide {
    width: 19% !important;
  }
}

.swiper {
  height: auto;
  margin: 0;
}
.swiper .swiper-slide {
  padding: 0;
}

.swiper-button-next:after {
  content: url("../images/icon-arrowround-white-r.svg");
  display: inline-block;
  width: 50px;
  height: 50px;
}

.swiper-button-prev:after {
  content: url("../images/icon-arrowround-white-l.svg");
  display: inline-block;
  width: 50px;
  height: 50px;
}

#grayDisplay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* コンテンツ全てに対して固定的に 1160pxとか指定されているときの対応で、
  ダサいが!importantつける */
  max-width: 100% !important;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
}

#grayDisplay img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}

.kanren {
  background-image: url("../product/images/bg-dot.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
  margin: 100px 0;
}

.kanren-flex {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}
.kanren-flex .kanren-box {
  width: 31%;
  margin-right: 2%;
}
.kanren-flex .kanren-box h5 {
  font-size: 16px;
  margin-bottom: 10px;
}
.kanren-flex .kanren-box p {
  margin: 0;
  line-height: 1.8rem;
}
@media screen and (max-width: 768px) {
  .kanren-flex {
    justify-content: space-between;
  }
  .kanren-flex .kanren-box {
    width: 48%;
  }
}

.kv-everlash-bg {
  position: absolute;
  left: 80px;
  height: 380px;
  width: 100%;
  z-index: -10;
  background-color: #05144A;
}
@media screen and (max-width: 1080px) {
  .kv-everlash-bg {
    left: 0;
    width: 95%;
  }
}
@media screen and (max-width: 900px) {
  .kv-everlash-bg {
    height: 300px;
  }
}
@media screen and (max-width: 480px) {
  .kv-everlash-bg {
    left: 0;
  }
}

.kv-everlash {
  background-image: url("../product/everlash/images/bg-everlash-kv.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 440px;
  background-position: -180px 75px;
}
@media screen and (max-width: 1080px) {
  .kv-everlash {
    margin-left: 50px;
  }
  .kv-everlash .container {
    margin-left: -50px;
  }
}
@media screen and (max-width: 900px) {
  .kv-everlash {
    height: 330px;
  }
}
@media screen and (max-width: 580px) {
  .kv-everlash {
    height: 380px;
  }
}
@media screen and (max-width: 495px) {
  .kv-everlash {
    height: 425px;
  }
}
@media screen and (max-width: 480px) {
  .kv-everlash {
    background-position: 0 50px;
  }
}

.ttl-h1-everlash {
  position: relative;
}
.ttl-h1-everlash .ttl-everlash-p {
  color: #fff;
  font-weight: bold;
  padding-top: 175px;
  margin-top: 0;
  font-size: 25px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.ttl-h1-everlash h1 {
  line-height: 1.4;
}
.ttl-h1-everlash h1 span {
  font-size: 40px;
  color: #05144A;
  background-color: #fff;
  display: inline-block;
  padding: 0 12px 5px 12px;
}
.ttl-h1-everlash .kv-everlash-img {
  position: absolute;
  right: 0;
  bottom: 0px;
  width: 365px;
}
@media screen and (max-width: 900px) {
  .ttl-h1-everlash .ttl-everlash-p {
    font-size: 20px;
    padding-top: 130px;
  }
  .ttl-h1-everlash h1 span {
    font-size: 34px;
  }
  .ttl-h1-everlash .kv-everlash-img {
    width: 310px;
  }
}
@media screen and (max-width: 880px) {
  .ttl-h1-everlash .ttl-everlash-p {
    font-size: 17px;
  }
  .ttl-h1-everlash h1 span {
    font-size: 28px !important;
  }
  .ttl-h1-everlash .kv-everlash-img {
    width: 250px;
  }
}
@media screen and (max-width: 740px) {
  .ttl-h1-everlash .kv-everlash-img {
    width: 250px;
    top: -30px;
  }
}
@media screen and (max-width: 580px) {
  .ttl-h1-everlash .ttl-everlash-p {
    padding-top: 180px;
  }
}
@media screen and (max-width: 505px) {
  .ttl-h1-everlash .ttl-everlash-p {
    padding-top: 150px;
  }
}

.everlash-intro-p {
  font-size: 29px;
  color: #0A206E;
}
.everlash-intro-p img {
  height: 80px;
  margin-right: 13px;
  width: auto;
}
@media screen and (max-width: 480px) {
  .everlash-intro-p {
    font-size: 24px;
  }
  .everlash-intro-p img {
    height: 65px;
  }
}

.everlash-point {
  margin: 80px 0 100px 0;
}

.point-h2-1 {
  background-image: url("../product/everlash/images/bg-point-1.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 215px;
  width: 100%;
  margin-bottom: 152px;
}
@media screen and (max-width: 480px) {
  .point-h2-1 {
    height: 110px;
    background-position: 55px 0;
    margin-bottom: 95px;
  }
}

.point-h2-2 {
  background-image: url("../product/everlash/images/bg-point-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 215px;
  width: 100%;
  margin-bottom: 152px;
}
@media screen and (max-width: 480px) {
  .point-h2-2 {
    height: 110px;
    background-position: 55px 0;
    margin-bottom: 95px;
  }
}

.point-h2-box {
  background-color: #fff;
  box-shadow: 3px 3px 20px 0px #e8e8e8;
  padding: 50px;
  display: inline-block;
  line-height: 1.5;
  margin-top: 65px;
  position: relative;
}
.point-h2-box h2 {
  margin: 0;
  color: #05144A;
  font-weight: black;
}
.point-h2-box .point-svg {
  position: absolute;
  height: 108px;
  width: auto;
  top: -25px;
  left: -55px;
}
@media screen and (max-width: 480px) {
  .point-h2-box {
    padding: 23px 25px;
    margin-top: 55px;
  }
  .point-h2-box h2 {
    font-size: 19px;
  }
  .point-h2-box .point-svg {
    height: auto;
    width: 140px;
    top: -30px;
    left: -20px;
  }
}

.ever-point {
  justify-content: flex-start;
}
.ever-point .fea-box {
  width: 32% !important;
}
@media screen and (max-width: 1040px) {
  .ever-point {
    gap: unset;
  }
  .ever-point .fea-box {
    width: 49% !important;
  }
}
@media screen and (max-width: 480px) {
  .ever-point {
    flex-direction: column;
  }
  .ever-point .fea-box {
    width: 100% !important;
    padding: 0 0 20px 0;
  }
}

.kv-lower-document {
  background-image: url(../document/images/kv_product.png);
}

.doc-inner {
  margin: 80px 0 150px 0;
}

.doc-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 55px;
}
.doc-flex .doc-box {
  width: 20%;
}
.doc-flex .doc-box img {
  margin-bottom: 10px;
}
.doc-flex .doc-box h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 5px 0;
}
.doc-flex .doc-box .btn-web {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: #DADADA;
  color: #05144A;
  padding: 0 15px;
  font-weight: bold;
  margin-bottom: 10px;
}
.doc-flex .doc-box .btn-web p {
  margin: 5px 0px;
}
.doc-flex .doc-box .btn-web span img {
  width: 17px;
  height: auto;
  margin: 0;
}
.doc-flex .doc-box .btn-dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #05144A;
  color: #fff;
  padding: 0 15px;
  font-weight: bold;
}
.doc-flex .doc-box .btn-dl p {
  margin: 5px 0px;
}
.doc-flex .doc-box .btn-dl span img {
  width: 17px;
  height: auto;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .doc-flex {
    justify-content: space-between;
    gap: inherit;
    row-gap: 50px;
  }
  .doc-flex .doc-box {
    width: 30%;
  }
}
@media screen and (max-width: 580px) {
  .doc-flex .doc-box {
    width: 48%;
  }
}

.movie-inner {
  margin-bottom: 100px;
}
.movie-inner .movie-flex {
  display: flex;
  gap: 30px;
}
.movie-inner .movie-flex .movie-box {
  width: 30%;
}
.movie-inner .movie-flex .movie-box video {
  width: 100%;
}
.movie-inner .movie-flex .movie-box h5 {
  margin-top: 5px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .movie-inner .movie-box {
    width: 50% !important;
  }
}
@media screen and (max-width: 480px) {
  .movie-inner .movie-flex {
    flex-direction: column;
    gap: 0;
  }
  .movie-inner .movie-flex .movie-box {
    width: 100% !important;
  }
}

.kv-lower-news {
  background-image: url(../images/kv_news.png);
}

.news-label {
  display: inline-block;
  background-color: #DADADA;
  padding: 2px 10px;
  font-size: 12px;
  border-radius: 50px;
  padding: 5px 20px;
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  .news-label {
    padding: 1px 20px;
  }
}

.news-line {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #DADADA;
  padding: 20px 0;
}
.news-line .news-line-left {
  display: flex;
  align-items: center;
}
.news-line .news-line-left .news-line-up {
  display: flex;
  align-items: center;
}
.news-line .news-line-left .news-line-up .date {
  color: #9E9E9E;
}
.news-line .news-line-left .news-ttl a {
  color: #000 !important;
}
.news-line .news-line-left .news-ttl a:visited {
  color: #000 !important;
}
.news-line .news-line-left .news-ttl :visited {
  color: #000 !important;
}
.news-line .news-line-r {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .news-line .news-line-left {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-line .news-line-left .news-ttl {
    margin-top: 10px;
  }
}

@media screen and (max-width: 480px) {
  .news_wrap {
    margin: 45px 0 90px 0;
  }
}
.news-detail-inner {
  margin: 80px 0 100px 0;
}
.news-detail-inner .news-detail-body {
  margin-top: 50px;
}

.w-50-100 {
  width: 50%;
}
@media screen and (max-width: 480px) {
  .w-50-100 {
    width: 100%;
  }
}

.pNav {
  color: #9E9E9E;
  font-size: 12px;
  margin-top: 10px;
}

.pNav a {
  color: #9E9E9E;
}
.pNav a:visited {
  color: #9E9E9E;
}

.detail-inner {
  margin: 100px 0;
}

.detail-date {
  color: #9E9E9E;
}

.detailText {
  margin: 50px 0;
}

.detailUpfile {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .detailUpfile {
    width: 100%;
  }
}

.copyright {
  position: fixed;
  bottom: -50;
  right: 0;
  z-index: -100;
}

.kv-lower-company {
  background-image: url(../company/images/kv_company.png);
}

.com-h2 {
  -moz-text-align-last: left !important;
       text-align-last: left !important;
  margin-top: 120px;
}
@media screen and (max-width: 480px) {
  .com-h2 {
    margin-top: 80px;
  }
}

.com-underline {
  padding-bottom: 1px;
  position: relative;
  border-bottom: 1px solid #DADADA;
  margin: 30px 0;
}

.com-underline::before {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 150px;
  height: 1px;
  background: #05144A;
}
@media screen and (max-width: 480px) {
  .com-underline::before {
    width: 75px;
  }
}

.com-dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.com-dl dt {
  width: 15%;
  font-weight: bold;
}
.com-dl dd {
  width: 80%;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .com-dl dt {
    width: 20%;
  }
  .com-dl dd {
    width: 75%;
    margin: 0;
  }
}

.com-acces {
  position: relative;
  padding-left: 35px;
}

.com-acces:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../company/images/icon-acces.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.g-map {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .g-map {
    margin-bottom: 50px;
  }
}

.kv-lower-voice {
  background-image: url(../voice/images/kv_voice.png);
}

.voi-h2 {
  -moz-text-align-last: left;
       text-align-last: left;
  position: relative;
  text-indent: 38px;
  margin-top: 80px;
  margin-bottom: 40px;
}

.voi-h2:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../voice/images/icon-fukidashi.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 3px;
  left: 0;
}

.p-voice-bold {
  font-weight: bold;
  color: #BC1111;
}

.voice-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 30px;
}
.voice-flex .voice-box {
  background-color: #F5F5F5;
  width: 48%;
  padding: 25px 30px;
  position: relative;
}
.voice-flex .voice-box .p-voice-right {
  margin: 0 0 0 auto;
  font-size: 12px;
  color: #9E9E9E;
}
.voice-flex .voice-box .p-voice-right .p-voice-line {
  display: inline-block;
  width: 100px;
  border: #9E9E9E 1px solid;
  margin-bottom: 5px;
  margin-right: 10px;
}
.voice-flex .voice-box:before {
  content: "";
  display: block;
  width: 15px;
  height: 100%;
  background-image: url(../voice/images/img-voiceline.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -13px;
  left: 0;
}
@media screen and (max-width: 600px) {
  .voice-flex {
    flex-direction: column;
    row-gap: 20px;
  }
  .voice-flex .voice-box {
    width: 100%;
  }
}

.kv-lower-privacy {
  background-image: url(../privacy/images/kv_contact.png);
}

.pri-inner .p-intro {
  margin-bottom: 50px;
}
.pri-inner h2 {
  margin-top: 40px;
}
.pri-inner h3 {
  margin-top: 30px;
  margin-bottom: 0px;
  font-size: 14px;
}
.pri-inner .btn-center {
  margin-top: 100px;
}

.contact-con .ttl-h4 {
  margin-top: 50px !important;
}
.contact-con h4 {
  margin-top: 50px !important;
}
.contact-con .doui-div {
  margin: 50px 0 !important;
}

table.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}
table.formTable tr {
  display: flex;
  flex-direction: column;
}
table.formTable tr th {
  width: 100%;
  font-weight: normal;
  text-align: left;
  padding-bottom: 0;
  padding-left: 0;
}
table.formTable tr td {
  width: 100%;
}
table.formTable tr td select, table.formTable tr td input, table.formTable tr td textarea {
  border: none;
  background-color: #efefef;
  padding: 10px 20px;
}
table.formTable tr td input, table.formTable tr td textarea {
  width: 100%;
}

table.formTable td, table.formTable th {
  padding: 10px 10px 10px 0;
}

p.error_messe {
  margin: 5px 0;
  color: red;
}

.span-hissu {
  color: #BC1111;
}

.span-small {
  font-size: 10px;
  color: #ccc;
  padding-left: 10px;
}

/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width: 624px) {
  form input[type=submit], form input[type=reset], form input[type=button] {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
}
.kakunin {
  width: 80%;
  margin: 0 auto;
}
.kakunin h4 {
  margin-top: 50px;
}
@media screen and (max-width: 480px) {
  .kakunin {
    width: 100%;
  }
}

.formTable-kakunin {
  margin-top: 50px;
  margin-bottom: 60px !important;
}
.formTable-kakunin tr {
  display: flex;
  flex-direction: row !important;
  border-top: 1px solid #ccc;
}
.formTable-kakunin tr th, .formTable-kakunin tr td {
  padding: 20px 0;
}
.formTable-kakunin tr th {
  font-weight: bold !important;
  padding-bottom: 20px !important;
}
@media screen and (max-width: 480px) {
  .formTable-kakunin {
    width: 100%;
  }
  .formTable-kakunin tr {
    flex-direction: column !important;
  }
  .formTable-kakunin tr th {
    padding-bottom: 0px !important;
  }
  .formTable-kakunin tr td {
    padding: 10px 0 20px 0;
  }
}

.formTable-kakunin input[name=doui] {
  display: none !important;
}
.formTable-kakunin tbody tr:last-child {
  display: none !important;
}/*# sourceMappingURL=style.css.map */