@charset "UTF-8";
html, body {
  font-family: 'Noto Sans JP', sans-serif, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1rem;
  color: #111111;
  position: relative;
	overflow-x: hidden;
}
/* Header
----------------------------*/
.header-wrap {
  width: 100%;
  background: -moz-linear-gradient(90deg, rgb(46, 125, 199) 0%, rgb(45, 180, 236) 100%);
  background: -webkit-linear-gradient(90deg, rgb(46, 125, 199) 0%, rgb(45, 180, 236) 100%);
  background: -ms-linear-gradient(90deg, rgb(46, 125, 199) 0%, rgb(45, 180, 236) 100%);
  position: relative;
}
.sec .header-wrap {
  background: -moz-linear-gradient(90deg, rgb(46, 125, 199) 0%, rgb(51 185 241) 100%);
  background: -webkit-linear-gradient(90deg, rgb(46, 125, 199) 0%, rgb(51 185 241) 100%);
  background: -ms-linear-gradient(90deg, rgb(46, 125, 199) 0%, rgb(51 185 241) 100%);
}
header {
  display: flex;
  justify-content: space-between;
  height: 60px;
  background: -moz-linear-gradient(90deg, rgb(45, 172, 231) 0%, rgb(45, 172, 236) 100%);
  background: -webkit-linear-gradient(90deg, rgb(45, 172, 231) 0%, rgb(45, 180, 236) 100%);
  background: -ms-linear-gradient(90deg, rgb(45, 172, 231) 0%, rgb(45, 180, 236) 100%);
}
header .logo img {
  transition: all 0.5s 0s ease;
  margin: 1.75rem 1rem 0;
  height: 45%;
}
header.transform {
  transition: all 0.5s 0s ease;
  height: 60px;
}
/* Nav
----------------------------*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 99999;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  background: #006cb7;
}
.hamburger:hover {
  opacity: 0.8;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 26px;
  height: 1px;
  left: 18px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 13px;
}
.hamburger span:nth-child(2) {
  top: 22px;
}
.hamburger span:nth-child(3) {
  top: 31px;
}
.hamburger.active span:nth-child(1) {
  top: 22px;
  left: 18px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 22px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hamburger p {
  color: #fff;
  position: absolute;
  font-size: 1.2rem;
  bottom: 5px;
  left: 2px;
  right: 0;
  margin: 0;
}
.slide-menu {
  width: 100%;
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  color: #fff;
  background: rgb(11 94 165 / 85%);
  text-align: center;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
  padding: 7rem 1.5rem 2rem;
  height: 100vh;
  visibility: hidden;
}
.slide-menu.active {
  opacity: 100;
  z-index: 9999;
  visibility: visible;
  width: 100%;
}
.slide-menu > ul {
  margin: 0 auto;
  width: 100%;
  display: flex;
  font-size: 1.5rem;
  flex-wrap: wrap;
  padding: 0;
}
.slide-menu > ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 99999;
}
.slide-menu > ul li a {
  display: block;
  color: #fff;
  padding: 0.5em 1rem;
  text-decoration: none;
  text-align: left;
  border: solid 1px #fff;
  position: relative;
}
.slide-menu > ul li a:hover {
  background-color: #fff;
  color: #333;
}
/* MV
----------------------------*/
.mv {
  margin: 0;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
}
.mv .mv-text {
  position: absolute;
  text-shadow: 0px 1px 10px rgba(0, 0, 0, 0.4);
  bottom: 0;
  padding: 1.5rem;
}
.mv .color-layer::after {
  position: absolute;
  content: "";
  background: rgba(0, 108, 183, .2);
  height: 220px;
  right: 0;
  width: 100vw;
  top: 6rem;
}
.mv img {
  position: relative;
  height: 220px;
  right: 0;
  width: 100vw;
  object-fit: cover;
  top: 6rem;
  object-position: 0% 100%;
  margin-bottom: 6rem;
}
.company .mv img {
  object-position: 0% 45%;
}
.business .mv img {
  object-position: 0% 50%;
}
.recruit .mv img {
  object-position: 0% 55%;
}
.privacy .mv img {
  object-position: 0% 40%;
}
.mv .jp {
  color: #fff;
  font-size: 2rem;
  z-index: 1;
  position: relative;
  font-weight: 700;
  padding-bottom: 0;
}
.mv .jp::after {
  content: "";
  display: inline-block;
  width: 70vw;
  height: 0.1rem;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  bottom: -1rem;
}
.mv .en {
  color: #fff;
  font-size: 1.8rem;
  z-index: 1;
  position: relative;
  padding-top: 0.5rem;
  font-weight: 400;
}
.sec .mv .jp {
  font-size: 2.5rem;
}
.sec .mv .en {
  padding-top: 1.25rem;
}
/* Main
----------------------------*/
section {
  width: 100%;
  height: 100%;
  padding: 5rem 0;
  position: relative;
}
main a {
  color: #0880b9;
  text-decoration: none;
}
main a:hover {
  color: #025E8A;
  text-decoration: underline;
}
main .btn:hover {
  opacity: 0.8;
}
main h2 {
  margin: 0 auto 3rem;
}
.h2-en {
  font-family: din-2014, sans-serif;
  font-weight: 600;
  font-style: normal;
  display: block;
  color: #014B96;
  letter-spacing: 0.1rem;
  padding: 0;
  text-align: center;
  font-size: 4rem;
}
.h2-jp {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 300;
}
.h3-line {
  padding: 0;
  margin: 1rem 0 2rem;
  font-size: 2.2rem;
  padding-left: 6rem;
  position: relative;
}
.h3-line:before {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: black;
  left: 0;
}
.sec h3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
.sec .h3-vline {
  padding: 0.25rem 1rem 0.5rem;
  border-left: 4px solid #014b96;
  margin-bottom: 3rem;
  font-size: 2rem;
}
.dl-news {
  margin: 0;
  padding: 0 1rem;
  width: 100%;
}
.dl-news dt {
  float: none;
  padding: 1.5rem 0 0;
  font-weight: 300;
  position: relative;
  display: flex;
  align-items: center;
}
.dl-news dt:before {
  content: none;
}
.dl-news dd {
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.dl-news dt span {
  margin: 0 1rem 0 2rem;
  padding: 0.2rem 0;
  letter-spacing: 0.1rem;
  font-size: 1.2rem;
  position: relative;
  width: 11rem;
  display: inline-block;
  text-align: center;
  color: #fff;
}
.dl-news .label-important {
  background: #e01212;
}
.dl-news .label-security {
  background: #f6a133;
}
.dl-news .label-recruit {
  background: #2bcf83;
}
.dl-news .label-product {
  background: #3a8ac3;
}
.dl-news .label-news {
  background: #f24a6e;
}
.sct-emergency ul {
  display: flex;
  width: 100vw;
  border: solid 1px #e01212;
  margin: 0 1.5rem;
  padding: 0;
  flex-wrap: wrap;
}
.sct-emergency li:first-child {
  width: 100%;
  background: #e01212;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.sct-emergency li:last-child, .sct-news li:last-child {
  width: 100%;
  justify-content: center;
  align-items: center;
}
.sct-emergency .dl-news dt {
  color: #e01212;
}
.sct-emergency .dl-news dd a {
  color: #e01212;
}
.sct-emergency .dl-news dt:before {
  background: #e01212;
}
.top .sct-news h2 {
  margin-bottom: 1rem;
}
.sct-news ul {
  display: flex;
  width: 100vw;
  margin: 0 1.5rem;
  padding: 0;
  flex-wrap: wrap;
}
.sct-news li:first-child {
  visibility: hidden;
}
.sct-news .dl-news dd {
  padding: 1rem 0 1.5rem;
  border-bottom: solid 1px #ebebeb;
}
.sct-news .btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.sct-fluid-img img {
  position: relative;
  object-fit: cover;
  width: 100%;
  max-height: 360px;
  margin-bottom: 0;
}
.sct-fluid-img .row > div {
  margin-bottom: 3rem;
}
.sct-fluid-img .row > div:last-child {
  margin-bottom: 0;
}
.sct-fluid-img .row > div:nth-child(odd) .fluid-text {
  right: 0;
}
.sct-fluid-img .row > div:nth-child(even) .fluid-text {
  left: 0;
}
.fluid-text {
  padding: 2.5rem 1.5rem;
  background: #fff;
  position: relative;
  top: 0;
  font-size: 1.5rem;
  width: 100%;
  min-height: auto;
  box-shadow: 0px 0px 10px 0.1px rgb(0 0 0 / 8%);
}
.fluid-text .btn, .sct-box-img .btn {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0;
}
.sct-fluid-img a:hover, .sct-box-img a:hover {
  background: rgba(255, 255, 255, 0.2);
}
.sct-swiper .swiper-slide a {
  cursor: pointer;
  text-decoration: none;
  color: #111;
}
.sct-swiper .swiper-slide img {
  width: 100%;
  object-fit: cover;
  height: 260px;
}
.sct-swiper .swiper-slide div {
  background-color: #fff;
  padding: 2.5rem 2rem;
  min-height: 220px;
  position: relative;
}
.sct-swiper .swiper-slide div:hover {
  background-color: #E1F1FF;
}
.sct-swiper .swiper-slide h3 {
  color: #1672b2;
  text-align: center;
  font-size: 4.2rem;
  margin-bottom: 2rem;
}
.sct-swiper .swiper-slide h3 span {
  display: block;
  font-size: 1.6rem;
  color: #111;
}
.sct-swiper .swiper-slide p {
  margin: 0;
}
.swiper-button-prev, .swiper-button-next {
  width: 45px !important;
  height: 45px !important;
  margin-top: -30px; /* 縦中央配置用：ボタンの高さの半分のネガティブマージン（top:50%がすでに設定されている） */
}
.swiper-button-next {
  background: url("../images/swiper-btn-next-sp.png") !important;
  right: 0 !important;
}
.swiper-button-prev {
  background: url("../images/swiper-btn-prev-sp.png") !important;
  left: 0 !important;
}
.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: none !important;
}
.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: none !important;
}
.sct-box-img [class^="col"] {
  padding: 0;
  display: flex;
}
.sct-box-img h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.business .sct-box-img h3 {
  margin-bottom: 0;
}
.sct-box-img p {
  line-height: 2;
  margin: 0 0 1.5rem;
}
.sct-box-img p:last-of-type {
  margin-bottom: 0;
}
.sct-box-img [class^="col"]:nth-child(odd) img {
  object-fit: cover;
  width: 100%;
  max-height: 420px;
}
.sct-box-img [class^="col"]:nth-child(even) > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 2rem 4rem;
  background: #fff;
  box-shadow: 0px 0px 10px 0.1px rgb(0 0 0 / 8%);
  position: relative;
  width: 100%;
}
.business .sct-box-img [class^="col"]:nth-child(even) > div {
  padding: 2rem;
  justify-content: center;
}
.sct-cta [class^="col"] {
  padding: 0;
  font-size: 1.5rem;
}
.sct-cta [class^="col"] > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  height: 100%;
  padding: 6rem 2rem;
  color: #fff;
}
.sct-cta a {
  color: #fff;
}
.sct-cta .tel {
  background: url("../images/bg-tel.jpg");
  display: flex;
  background-position: center;
  background-size: cover;
}
.sct-cta .tel li:first-child {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.sct-cta .tel li:nth-child(2) {
  margin-bottom: 1.5rem;
}
.sct-cta .tel li:nth-child(3) {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0;
}
.sct-cta .tel .icon-before::before {
  font-size: 1.4rem;
  margin-right: 0.75rem;
  top: -0.1rem;
  position: relative;
}
.sct-cta .mail div {
  background: -moz-linear-gradient(90deg, rgb(46, 125, 199) 0%, rgb(45, 180, 236) 100%);
  background: -webkit-linear-gradient(90deg, rgb(46, 125, 199) 0%, rgb(45, 180, 236) 100%);
  background: -ms-linear-gradient(90deg, rgb(46, 125, 199) 0%, rgb(45, 180, 236) 100%);
}
.sct-cta .h2-en {
  width: 100%;
  color: #fff;
  font-size: 4.8rem;
  margin: 0 0 4rem;
}
.sct-cta .mail .btn-transparent {
  width: 70%;
  font-size: 1.5rem;
  padding: 1.5rem;
}
.breadcrumbs {
  display: none;
}
/* Footer
----------------------------*/
footer {
  padding: 3rem 1.5rem 2.8rem;
  background: #f3f3f3;
}
footer img {
  height: 25px;
}
footer ul {
  margin: 0;
}
footer li a {
  font-size: 1.3rem;
  color: inherit;
}
footer .footer-nav {
  text-align: center;
}
footer .footer-nav ul {
  margin-bottom: 0;
}
footer .footer-nav li:first-child {
  width: 100%;
  display: block;
  margin-bottom: 2rem;
}
footer .footer-sns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.copy {
  position: relative;
  top: 0;
  bottom: 0;
  right: 0;
  line-height: 5rem;
  -ms-writing-mode: tb-rl;
  writing-mode: horizontal-tb;
  letter-spacing: 0.1rem;
  color: #3c3c3c;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-weight: 500;
}
.page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: none;
}
.page-top i {
  margin-bottom: 1.5rem;
}
.page-top a {
  display: block;
  z-index: 999;
  width: 50px;
  background: #006cb7;
  color: #fff !important;
  text-decoration: none;
  text-align: center;
  line-height: 52px;
  font-size: 1.3rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.1rem;
  padding: 2rem 0;
}
.page-top a:hover {
  background: #1f81da;
}
/* Media Query
-----------------------------------*/
/* Small devices (landscape phones, 576px and over, .col-sm-*)*/
@media (min-width: 576px) {
  .top .mv img {
    height: 400px;
  }
  .sec .mv img, .mv .color-layer::after {
    height: 300px;
  }
}
/* Medium devices (767px and under)*/
@media (max-width: 767px) {}
/* Medium devices (tablets, 768px and over, .col-md-*)*/
@media (min-width: 768px) {}
/* Large devices (desktops, 992px and over, .col-lg-*)*/
@media (min-width: 992px) {
  .top .header-wrap {
    height: 670px;
    margin-bottom: 17rem;
  }
  .sec .header-wrap {
    height: 470px;
  }
  header {
    transition: all 0.5s 0s ease;
    height: 100px;
  }
  header .logo img {
    margin: 3.5rem 2rem 0;
    height: 35%;
  }
  header.transform .logo img {
    background: transparent;
    margin-top: 1.6rem;
    transition: all 0.5s 0s ease;
    height: 45%;
  }
  nav ul {
    margin: 0 1rem 0 0;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .pc-nav {
    display: flex;
  }
  /*.pc-nav .header-menu {
    margin: 1.5rem 0 0 0;
  }
  .pc-nav .header-menu li {
    display: inline;
    margin-right: 1.75rem;
    transition: all 0.5s 0s ease;
  }
  .pc-nav .header-menu li a {
    color: #fff;
    font-size: 1.3rem;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.5s 0s ease;
  }
  .pc-nav .header-menu li a:hover {
    color: #002c4a;
    text-decoration: none;
  }
  .pc-nav .header-menu li::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 1.5rem;
    background-color: #aae5ff;
    position: absolute;
    top: 0;
    right: -1rem;
  }
  .pc-nav .header-menu li:last-child::after {
    content: none;
  }*/
  .pc-nav .global-menu li {
    margin-right: 1.75rem;
    transition: all 0.5s 0s ease;
  }
  .pc-nav .global-menu li a {
    color: #fff;
    font-size: 1.5rem;
    position: relative;
    padding: 0.5rem 1rem;
  }
  .pc-nav .global-menu li a:hover {
    text-decoration: none;
  }
  .pc-nav .global-menu li a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #ffffff;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
    opacity: 0.7;
  }
  .pc-nav li:last-child {
    margin-right: 0;
  }
  .pc-nav .global-menu li a:hover::after {
    transform: scale(1, 1); /*ホバー後、x軸方向に1伸長*/
  }
  header.transform .pc-nav li a::after {
    background: #fff;
  }
  .pc-nav .btn-mail {
    width: auto;
    position: relative;
    right: 0;
    margin-left: 2rem;
  }
  .pc-nav .btn-mail a {
    color: #fff;
    margin: 0 0 0 auto;
    transition: all 0.5s 0s ease;
    background: #006cb7;
    width: 10rem;
    height: 10rem;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  .pc-nav .btn-mail i {
    font-size: 3rem;
    color: #fff;
  }
  .pc-nav .btn-mail a:hover {
    text-decoration: none;
    background: #fff;
    color: #1f81da;
  }
  .pc-nav .btn-mail a:hover i {
    color: #006cb7;
  }
  /*header.transform .pc-nav .btn-mail a {
    border: solid #1f81da 2px;
    color: #1f81da;
    transition: all 0.5s 0s ease;
  }
  header.transform .pc-nav .btn-mail a:hover {
    text-decoration: none;
    background: #1f81da;
    color: #fff;
  }
  header.transform .pc-nav .btn-mail a:hover i {
    color: #fff;
  }*/
  .mv .color-layer::after {
    right: 0;
    left: 100%;
    width: 90vw;
    height: 400px;
    top: 10rem;
    transform: translateX(-100%);
  }
  .mv img {
    right: 0;
    left: 100%;
    width: 90vw;
    top: 10rem;
    transform: translateX(-100%);
  }
  .mv .mv-text {
    bottom: 6rem;
    padding: 0 4rem;
  }
  .top .mv img {
    height: 650px;
  }
  .sec .mv img {
    height: 400px;
  }
  .top .mv .jp {
    font-size: 4.2rem;
    padding-bottom: 1rem;
  }
  .sec .mv .jp {
    font-size: 3.8rem;
  }
  .top .mv .en {
    font-size: 3rem;
    padding-top: 1.5rem;
  }
  .sec .mv .en {
    font-size: 2.6rem;
  }
  section {
    padding: 5rem 0;
  }
  main h2 {
    margin: 0 auto 7rem;
  }
  .h2-en {
    font-size: 6rem;
  }
  .h3-line {
    font-size: 3rem;
    margin: 0 0 2rem;
  }
  .sec .h3-vline {
    padding: 0.25rem 2rem 0.75rem;
    border-left: 4px solid #014b96;
    margin-bottom: 3rem;
    font-size: 2.5rem;
  }
  .dl-news {
    padding: 0 3rem;
  }
  .dl-news dt {
    float: left;
    padding: 1rem 2rem 1rem 6rem;
    display: block;
  }
  .dl-news dt:before {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 45px;
    height: 1px;
    background-color: black;
    left: 0;
  }
  .sct-emergency ul {
    width: 90vw;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
  }
  .sct-emergency li {
    padding: 1rem;
  }
  .sct-emergency li:first-child, .sct-news li:first-child {
    width: 15%;
  }
  .sct-emergency li:last-child, .sct-news li:last-child {
    width: 85%;
  }
  .sct-news {
    width: 90vw;
    padding: 7rem 0;
    margin-bottom: 3rem;
  }
  .top .sct-news h2 {
    position: absolute;
    left: 4rem;
    top: -4rem;
  }
  .sct-news .dl-news dd {
    padding: 1rem 0;
    border-bottom: none;
  }
  .sct-fluid-img {
    background-size: inherit;
  }
  .sct-fluid-img .col-12 {
    padding: 0;
  }
  .sct-fluid-img .row > div:nth-child(even) img {
    left: 100%;
    transform: translateX(-100%);
  }
  .sct-fluid-img .row > div:nth-child(odd) img {
    left: 0;
  }
  .sct-fluid-img .row > div:nth-child(odd) .fluid-text {
    right: 7rem;
  }
  .sct-fluid-img .row > div:nth-child(even) .fluid-text {
    left: 7rem;
  }
  .sct-fluid-img .row > div {
    margin-bottom: 5rem;
  }
  .sct-fluid-img img {
    width: 55%;
    margin-bottom: 8rem;
    max-height: 540px;
  }
  .fluid-text {
    padding: 4rem 3rem;
    position: absolute;
    width: 60%;
    min-height: 270px;
    align-items: center;
    right: 0;
    top: 10%;
  }
  .sct-swiper .swiper-slide div {
    min-height: 300px;
  }
  .swiper-button-prev, .swiper-button-next {
    width: 60px !important;
    height: 60px !important;
    margin-top: -30px; /* 縦中央配置用：ボタンの高さの半分のネガティブマージン（top:50%がすでに設定されている） */
  }
  .swiper-button-next {
    background: url("../images/swiper-btn-next.png") !important;
  }
  .swiper-button-prev {
    background: url("../images/swiper-btn-prev.png") !important;
  }
  .sct-box-img h3 {
    margin-bottom: 0;
  }
  .sct-box-img [class^="col"]:nth-child(even) > div {
    padding: 3rem 4rem 5rem;
  }
  .sct-cta [class^="col"] > div {
    padding: 10rem 3rem;
  }
  .sct-cta .h2-en {
    font-size: 4.8rem;
    margin: 0 0 4rem;
  }
  .sct-cta .mail .btn-transparent {
    width: 45%;
  }
  .breadcrumbs {
    font-size: 1.2rem;
    padding: 1.2rem 5rem;
    display: block;
    margin-top: 7rem;
  }
  .breadcrumbs span {
    margin: 0 0.75rem;
  }
  .breadcrumbs a {
    color: #111;
  }
  footer ul {
    margin: 0;
  }
  footer .footer-nav {
    text-align: left;
  }
  footer .footer-nav li:first-child {
    width: auto;
    display: inline;
    margin-bottom: 0;
  }
  footer .footer-sns {
    justify-content: end;
  }
  footer .footer-sns ul {
    padding-right: 6rem;
    text-align: right;
    margin: 0 0 0 auto;
  }
  .copy {
    position: fixed;
    line-height: 5rem;
    -ms-writing-mode: lr-tb;
    writing-mode: vertical-rl;
    height: 80vh;
  }
  .page-top a {
    height: 20vh;
    padding: 0;
  }
}
/* Extra large devices (large desktops, 1200px and over, .col-xl-*)*/
@media (min-width: 1200px) {
  .mv .color-layer::after, .mv img {
    width: 85vw;
  }
  .sct-fluid-img .row > div:nth-child(odd) .fluid-text {
    right: 15rem;
  }
  .sct-fluid-img .row > div:nth-child(even) .fluid-text {
    left: 15rem;
  }
  .sct-fluid-img img {
    width: 55%;
  }
  .fluid-text {
    width: 45%;
    top: 18%;
  }
  .sct-box-img p {
    margin-top: -5rem;
  }
}
/* Extra large devices (large desktops, 1400px and over)*/
@media (min-width: 1400px) {
  .sct-fluid-img .row > div:nth-child(odd) .fluid-text {
    right: 25rem;
  }
  .sct-fluid-img .row > div:nth-child(even) .fluid-text {
    left: 25rem;
  }
  .sct-fluid-img img {
    width: 50%;
  }
}