@charset "UTF-8";
/* ==============================
リセットcss
============================== */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  text-align: left;
}

/*
@font-face {
	font-family: 'notosans_jp';
	font-weight: 500;
	src: url(../font/NotoSansJP-Medium.otf) format('opentype');
	display: swap;
}
*/
@font-face {
  font-family: 'notosans_jp';
  font-weight: 500;
  src: url(../font/NotoSans-Medium.ttf) format("truetype");
  display: swap;
}

@font-face {
  font-family: 'notosans_jp';
  font-weight: 700;
  src: url(../font/NotoSans-Bold.ttf) format("truetype");
  display: swap;
}

@font-face {
  font-family: 'rubik';
  font-weight: 400;
  src: url(../font/Rubik-Regular.ttf) format("truetype");
  display: swap;
}

main {
  display: block;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol, dl {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

table {
  text-align: left;
  border-collapse: separate;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* 大枠 */
html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
}

body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  line-height: 1.8;
  word-wrap: break-word;
  font-family: 'rubik', sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #000;
  overflow: hidden;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  /* 色を変えたい場合はこちら */
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.1s ease;
  /* 変化させる時間はこちら */
}

body.fadeout::after {
  opacity: 1;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

body > #wrapper {
  height: auto;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  content: " ";
  clear: both;
  height: 0;
}

@media print {
  html {
    overflow: visible !important;
  }
  html body {
    overflow: visible !important;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  vertical-align: bottom;
  box-shadow: #000 0 0 0;
  /* ロールオーバー対応 */
  box-shadow: #000 0 0 0;
}

img {
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}

/* レスポンシブ対応 */
x:-moz-any-link, x:default {
  box-shadow: #000 0 0 0;
  /* IE7対応 */
}

/* リンク */
a:link, a:visited {
  color: #0066FF;
  text-decoration: none;
}

a:hover, a:active {
  color: #0066FF;
  text-decoration: underline;
}

.mincho {
  font-family: 游明朝, "Yu Mincho", YuMincho, Georgia, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  position: relative;
  font-weight: normal;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.flex {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@-webkit-keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.05;
  }
}

@-moz-keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.05;
  }
}

@-ms-keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.05;
  }
}

@-o-keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.05;
  }
}

@keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.05;
  }
}

@keyframes line {
  0% {
    width: 0;
  }
  100% {
    width: 1930px;
  }
}

@keyframes line2 {
  0% {
    width: 0;
  }
  100% {
    width: 1930px;
  }
}

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

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

#clock1 {
  position: fixed;
  right: 15px;
  top: 15px;
  color: #fff;
  font-size: 30px;
  font-family: 'rubik', sans-serif;
  line-height: 1;
}

#clock2 {
  position: fixed;
  left: 15px;
  bottom: 15px;
  color: #fff;
  font-size: 30px;
  font-family: 'rubik', sans-serif;
  line-height: 1;
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
=====================================*/
#main {
  width: 1920px;
  height: 1080px;
  background-color: #000;
  position: relative;
}

#main .title_line {
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 108px;
  left: -10px;
  width: 0;
  z-index: 10;
}

#main .title_line.on {
  width: 0;
  animation: line2 0.2s linear forwards;
}

#main .page {
  width: 1920px;
  height: 1080px;
  position: relative;
}

#main .contents_fade.fadeOut {
  opacity: 1;
  animation: fadeOut 0.4s ease forwards;
}

#main .contents_fade.onfade {
  opacity: 0;
  animation: fade 0.2s ease forwards;
  animation-delay: 0.3s;
}

#main .contents_fade.noline {
  animation-delay: 0s;
}

#main .btn_top {
  position: absolute;
  left: 15px;
  top: 15px;
  width: 82px;
  height: 82px;
}

#main .btn_back {
  position: absolute;
  bottom: 46px;
  right: 53px;
}

#main .tab-list {
  position: absolute;
  left: 50%;
  bottom: 46px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: center;
}

#main .tab-list .tab {
  width: 307px;
  height: 100px;
}

#main .tab-list .tab:not(:last-child) {
  margin-right: 123px;
}

#main .tab-list .tab.is-active {
  opacity: 0.5;
}

#main .tab_side {
  width: 165px;
  position: absolute;
  left: 1702px;
  top: 207px;
}

#main .tab_side .s_tab {
  width: 165px;
  height: 100px;
}

#main .tab_side .s_tab:not(:last-child) {
  margin-bottom: 32px;
}

#main .tab_side .s_tab.side_active {
  opacity: 0.5;
}

#main .panel-group .panel {
  visibility: hidden;
  height: 0;
}

#main .panel-group .panel.is-show {
  visibility: visible;
  height: 1080px;
}

#main .panel-group .panel.sales_rate {
  background: url(../img/company/bg2.jpg) no-repeat scroll left top;
  background-size: 1920px 1080px;
}

#main .panel-group .panel.achievement {
  background-size: 1920px 1080px;
  background-position: left top;
}

#main .panel-group .panel.address {
  background: url(../img/company/bg4.jpg) no-repeat scroll left top;
  background-size: 1920px 1080px;
}

#main .panel-group.detail_image .panel {
  position: absolute;
  left: 0;
  top: 0;
  height: 1080px;
  transition: visibility;
  background-color: #000;
  opacity: 0;
  transition: opacity 1s linear;
}

#main .panel-group.detail_image .panel.is-show {
  opacity: 1;
}

#main .panel-group.detail_image .panel .d_img {
  width: 960px;
  height: 1080px;
}

#main .panel-group.detail_image .panel .d_img img {
  width: 100%;
  height: 1080px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

#main .panel-group.detail_image .panel video {
  width: 100%;
  height: 1080px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.page_top .top_movie {
  width: 1920px;
  height: 1080px;
}

.page_top .top_link {
  position: fixed;
  left: 0;
  top: 0;
  width: 1920px;
  height: 1080px;
  z-index: 10;
  display: block;
}

.page_top .btn_top {
  width: 293px;
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -webkit-animation: flash linear 3s infinite;
  -moz-animation: flash linear 3s infinite;
  -ms-animation: flash linear 3s infinite;
  -o-animation: flash linear 3s infinite;
  animation: flash linear 3s infinite;
  /*
		animation-name: flash;
		animation-duration: 3s;
		animation-timing-function: linear;
		animation-iteration-count: infinite;		
		pointer-events: none;
*/
}

.page_menu {
  background: url(../img/top/bg_menu.jpg) no-repeat scroll left top;
  background-size: 1920px 1080px;
}

.page_menu .menu_list {
  position: absolute;
  left: 320px;
  top: 155px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 1280px;
}

.page_menu .menu_list li {
  width: 342px;
  height: 342px;
}

.page_menu .menu_list li:nth-child(-n+3) {
  margin-bottom: 87px;
}

.page_company {
  color: #fff;
  font-size: 29px;
  line-height: 1.4;
  font-family: 'notosans_jp', sans-serif;
  font-weight: 500;
  font-style: normal;
}

.page_company .text1 {
  position: absolute;
  left: 1060px;
  top: 192px;
}

.page_company .text2 {
  position: absolute;
  left: 1060px;
  top: 310px;
}

.page_company .text3 {
  position: absolute;
  left: 1060px;
  top: 428px;
}

.page_company .text4 {
  position: absolute;
  left: 1060px;
  top: 546px;
}

.page_company .text5 {
  position: absolute;
  left: 1060px;
  top: 665px;
}

.page_company .text6 {
  position: absolute;
  left: 1060px;
  top: 783px;
}

.page_company .sales_rate .circle_wrap {
  position: absolute;
  left: 310px;
  top: 263px;
  width: 564px;
}

.page_company .sales_rate .circle_wrap2 {
  position: absolute;
  left: 1045px;
  top: 263px;
  width: 564px;
}

.page_product {
  background: url(../img/product/bg_product.jpg) no-repeat scroll left top;
  background-size: 1920px 1080px;
}

.page_introduction .view1 {
  background: url(../img/product/introduction/bg_1.jpg) no-repeat scroll left top;
  background-size: 1920px 1080px;
}

.page_introduction .view2 {
  background: url(../img/product/introduction/bg_2.jpg) no-repeat scroll left top;
  background-size: 1920px 1080px;
}

.page_product_map {
  background: url(../img/product_map/bg.jpg) no-repeat scroll left top;
  background-size: 1920px 1080px;
}

.page_product_map > p {
  width: 118px;
  position: absolute;
}

.page_product_map .map_btn1 {
  left: 371px;
  top: 398px;
}

.page_product_map .map_btn2 {
  left: 875px;
  top: 336px;
}

.page_product_map .map_btn3 {
  left: 1100px;
  top: 196px;
}

.page_product_map .map_btn4 {
  left: 1380px;
  top: 228px;
}

.page_product_map .map_btn5 {
  left: 590px;
  top: 704px;
}

.page_product_map .map_btn6 {
  left: 908px;
  top: 713px;
}

.page_product_map .map_btn7 {
  left: 1172px;
  top: 748px;
}

.page_product_map .map_btn8 {
  left: 1436px;
  top: 723px;
}

.page_product_detail {
  background-color: #000;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.page_product_detail .main_area {
  width: 960px;
  height: 1080px;
  background-color: #eee;
}

.page_product_detail .main_area .slider .swiper-slide {
  width: 960px;
  height: 1080px;
}

.page_product_detail .main_area .slider .swiper-slide video,
.page_product_detail .main_area .slider .swiper-slide img {
  width: 100%;
  height: 1080px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.page_product_detail .detail_wrap {
  width: 960px;
  height: 1080px;
  position: relative;
  color: #fff;
}

.page_product_detail .detail_wrap .text_wrap {
  position: absolute;
  left: 133px;
  top: 220px;
  width: 717px;
  height: 393px;
  overflow: hidden;
}

.page_product_detail .detail_wrap .text_wrap .feature {
  font-weight: bold;
  font-size: 33px;
  line-height: 1.2;
  margin: 0 0 8px;
  font-family: 'notosans_jp';
  font-weight: 700;
}

.page_product_detail .detail_wrap .text_wrap .feature::before {
  margin: -8px 10px 0 0;
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 3px;
  vertical-align: middle;
}

.page_product_detail .detail_wrap .text_wrap .title {
  font-size: 65px;
  font-weight: bold;
  line-height: 1.2;
  padding: 0 0 12px;
  margin: 0 0 27px;
  border-bottom: 3px solid #fff;
  font-family: 'notosans_jp';
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page_product_detail .detail_wrap .text_wrap .title::after {
  margin: 0 0 6px 20px;
  content: "分野";
  font-size: 40px;
  display: inline-block;
  vertical-align: bottom;
}

.page_product_detail .detail_wrap .text_wrap .text {
  font-size: 22px;
  line-height: 1.55;
  font-family: 'notosans_jp';
  font-weight: 700;
  letter-spacing: 0.01em;
}

.page_product_detail .detail_wrap .thumbnail_wrap {
  position: absolute;
  left: 0;
  top: 628px;
  width: 960px;
  height: 262px;
  background-image: url(../img/activity/bg_detail.jpg);
  background-size: cover;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.page_product_detail .detail_wrap .thumbnail_wrap .slider-thumbnail {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: center;
}

.page_product_detail .detail_wrap .thumbnail_wrap .slider-thumbnail .swiper-slide {
  width: 161px !important;
  height: 121px !important;
  position: relative;
}

.page_product_detail .detail_wrap .thumbnail_wrap .slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  pointer-events: none;
}

.page_product_detail .detail_wrap .thumbnail_wrap .slider-thumbnail .swiper-slide.swiper-slide-thumb-active::after {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  display: inline-block;
  width: 161px;
  height: 121px;
  background-color: rgba(0, 0, 0, 0.6);
}

.page_product_detail .detail_wrap .thumbnail_wrap .slider-thumbnail .swiper-slide:not(:last-child) {
  margin-right: 22px;
}

.page_product_detail .detail_wrap .thumbnail_wrap .slider-thumbnail .swiper-slide img {
  width: 100%;
  height: 121px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.page_product_detail .detail_wrap .thumbnail_wrap .thumbnail {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: center;
}

.page_product_detail .detail_wrap .thumbnail_wrap .thumbnail .tab {
  width: 161px !important;
  height: 121px !important;
  position: relative;
}

.page_product_detail .detail_wrap .thumbnail_wrap .thumbnail .tab.is-active {
  pointer-events: none;
}

.page_product_detail .detail_wrap .thumbnail_wrap .thumbnail .tab.is-active::after {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  display: inline-block;
  width: 161px;
  height: 121px;
  background-color: rgba(0, 0, 0, 0.6);
}

.page_product_detail .detail_wrap .thumbnail_wrap .thumbnail .tab:not(:last-child) {
  margin-right: 22px;
}

.page_product_detail .detail_wrap .thumbnail_wrap .thumbnail .tab img {
  width: 100%;
  height: 121px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.page_stainless_steel {
  background: url(../img/stainless_steel/bg.jpg) no-repeat scroll left top;
  background-size: 1920px 1080px;
}

.page_detail_stainless_steel .stainless1 {
  background: url(../img/stainless_steel/bg1.jpg) no-repeat scroll left top;
  background-size: 1920px 1080px;
}

.page_detail_stainless_steel .stainless1 .btn1 {
  position: absolute;
  left: 580px;
  top: 603px;
  width: 314px;
}

.page_detail_stainless_steel .stainless1 .btn2 {
  position: absolute;
  left: 1023px;
  top: 603px;
  width: 314px;
}

.page_detail_stainless_steel .stainless1 .btn3 {
  position: absolute;
  left: 1433px;
  top: 270px;
  width: 314px;
}

.page_detail_stainless_steel .stainless2 {
  background: url(../img/stainless_steel/bg2.jpg) no-repeat scroll left top;
  background-size: 1920px 1080px;
}

.page_detail_stainless_steel .stainless2 .btn_rust1 {
  width: 186px;
  height: 458px;
  position: absolute;
  left: 1683px;
  top: 366px;
}

.page_detail_stainless_steel .stainless3 {
  background: url(../img/stainless_steel/bg3.jpg) no-repeat scroll left top;
  background-size: 1920px 1080px;
}

.page_detail_stainless_steel .stainless3 .btn_chromium {
  width: 324px;
  position: absolute;
  left: 955px;
  top: 431px;
}

.page_detail_stainless_steel .stainless3 .btn_nickel {
  width: 324px;
  position: absolute;
  left: 1328px;
  top: 431px;
}

.page_process .button-open {
  width: 60px;
  position: absolute;
}

.page_process .view1 {
  background: url(../img/stainless_steel/process/bg1.jpg) no-repeat scroll left top;
  background-size: 1920px 1080px;
}

.page_process .view1 .s1 {
  left: 407px;
  top: 231px;
}

.page_process .view1 .s2 {
  left: 617px;
  top: 231px;
}

.page_process .view1 .s3 {
  left: 1021px;
  top: 231px;
}

.page_process .view1 .s4 {
  left: 937px;
  top: 129px;
}

.page_process .view1 .s5 {
  left: 441px;
  top: 536px;
}

.page_process .view1 .s6 {
  left: 623px;
  top: 536px;
}

.page_process .view1 .s7 {
  left: 1222px;
  top: 536px;
}

.page_process .view1 .s8 {
  left: 1577px;
  top: 520px;
}

.page_process .view1 .s9 {
  left: 1159px;
  top: 838px;
}

.page_process .view1 .s10 {
  left: 1302px;
  top: 838px;
}

.page_process .view2 {
  background: url(../img/stainless_steel/process/bg2.jpg) no-repeat scroll left top;
  background-size: 1920px 1080px;
}

.page_process .view2 .s11 {
  left: 330px;
  top: 217px;
}

.page_process .view2 .s12 {
  left: 529px;
  top: 217px;
}

.page_process .view2 .s13 {
  left: 870px;
  top: 217px;
}

.page_process .view2 .s14 {
  left: 1542px;
  top: 217px;
}

.page_process .view2 .s15 {
  left: 1496px;
  top: 540px;
}

.page_process .view3 {
  background: url(../img/stainless_steel/process/bg3.jpg) no-repeat scroll left top;
  background-size: 1920px 1080px;
}

.page_rust {
  background: url(../img/stainless_steel/rust/bg.jpg) no-repeat scroll left top;
  background-size: 1920px 1080px;
}

.page_stainless .view1 {
  background: url(../img/stainless_steel/stainless/bg1.jpg) no-repeat scroll left top;
  background-size: 1920px 1080px;
}

.page_stainless .view1 .btn {
  width: 246px;
  position: absolute;
  left: 1652px;
  top: 126px;
}

.page_stainless .view2 {
  background: url(../img/stainless_steel/stainless/bg2.jpg) no-repeat scroll left top;
  background-size: 1920px 1080px;
}

.page_stainless .view2 .btn {
  width: 246px;
  position: absolute;
  left: 1652px;
  top: 126px;
}

.page_promotion {
  background-color: #000;
}

#main #js_video_area .video {
  width: 1526px;
  height: 857px;
  position: relative;
  position: absolute;
  left: 197px;
  top: 36px;
}

#main #js_video_area .video .panel-group {
  width: 1526px;
  height: 857px;
}

#main #js_video_area .video .panel-group .panel {
  display: none;
  height: 857px;
}

#main #js_video_area .video .panel-group .panel.is-show {
  height: 857px;
  display: block;
}

#main #js_video_area .video .panel-group .panel.is-show::before {
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  content: " ";
  display: inline-block;
  width: 124px;
  height: 124px;
  background: url(../img/promotion/icon_play.svg) no-repeat;
  background-size: contain;
  z-index: 1;
}

#main #js_video_area .video .panel-group .panel.is-show.play::before {
  position: static;
  content: none;
  display: none;
}

#main #js_video_area .video .panel-group .panel.is-show.ended::before {
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  content: " ";
  display: inline-block;
  width: 126px;
  height: 142px;
  background: url(../img/promotion/icon_ended.svg) no-repeat;
  background-size: contain;
  z-index: 1;
}

#main #js_video_area .video .panel-group .panel video {
  width: 1526px;
}

#main #js_video_area .video .panel-group .panel.detail_image {
  width: 960px;
  height: 1080px;
  display: none;
}

#main #js_video_area .video .panel-group .panel.detail_image .d_img {
  width: 960px;
  height: 1080px;
}

#main #js_video_area .video .panel-group .panel.detail_image .d_img img {
  width: 100%;
  height: 1080px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

#main #js_video_area .video .panel-group .panel.detail_image video {
  width: 100%;
  height: 1080px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

#touch_control {
  width: 1526px;
  height: 857px;
  position: relative;
  position: absolute;
  left: 197px;
  top: 36px;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
}

#touch_control.play {
  background-color: transparent;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 100;
}

.modal-window {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  z-index: 200;
  width: 1267px;
}

.modal-window .button-close {
  width: 52px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.switch .spot {
  display: none;
  position: relative;
}

.switch .spot.on {
  display: block;
}

.switch .spot .btn_s4 {
  position: absolute;
  right: 78px;
  top: 303px;
}

.switch .spot .btn_s6 {
  position: absolute;
  left: 50%;
  top: 568px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
