/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.banner_pc {
  display: block !important;
}
.banner_sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 767px) {
  .banner_pc {
    display: none !important;
  }
  .banner_sp {
    display: block !important;
    width: 100vw;
  }
}

/*2109*/

body.js-sp-menu-opened {
  height: 100vh;
  overflow: hidden;
}

.main-body>.main-body-inner {
  max-width: 100%;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  overflow: hidden;
}

#stage {
  padding-top: 0;
}

.anchor-target {
  border: none;
  margin: 0;
  margin-top: -120px;
  padding-top: 120px;
}

@media only screen and (max-width: 767px) {
  .anchor-target {
    margin-top: -60px;
    padding-top: 60px;
  }
}

.main-footer {
  margin-top: 0;
}

/* common */
.js-fadein {
  transform: translateY(20px);
  opacity: 0;
  transition-duration: 1.0s;
}

.js-fadein.is-fadein {
  transform: translateY(0);
  opacity: 1;
}

.js-fadeup .js-fadeup-item {
  transform: translateY(20px);
  opacity: 0;
  transition-duration: 1.0s;
}

.js-fadeup.is-fadeup .js-fadeup-item {
  transform: translateY(0);
  opacity: 1;
}

.mod-section+.mod-section, .mod-panel-articlelist+.mod-section {
  margin-top: 0;
}

.mod-heading h2 {
  position: relative;
}

.mod-heading h2:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 50px;
  height: 4px;
  background-color: #E60000;
}

.mod-heading>p {
  position: relative;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  margin-top: 40px;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-heading>p {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 767px) {
  .mod-heading>p {
    margin-top: 30px;
  }
}

.mod-panel {
  padding: 0 50px;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-panel {
    padding: 0 3%;
  }
}

@media only screen and (max-width: 767px) {
  .mod-panel {
    padding: 0 5%;
  }
}

/* header */
/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30000;
  box-sizing: border-box;
  width: 100%;
  height: 60px;/* 任意 */
  background-color: #fff;
  border-bottom: 4px solid #E60000;
  transition: 0.3s;
}

.is-fixed.header {
  border-bottom: none;
}

@media screen and (max-width: 767px) {
  .is-fixed.header {
    border-bottom: 4px solid #E60000;
  }
}

/*  header-container
--------------------------------------------- */
.header-container {
  display: flex;
  justify-content: space-between;
  padding-right: 20px;/* 任意 */
  padding-left: 20px;/* 任意 */
  max-width: 1040px;
  height: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .header-container {
    align-items: center;
  }
}

/*  header-logo
--------------------------------------------- */
.header-logo {
  position: relative;
  display: table;
  width: 100%
}

@media screen and (max-width: 767px) {
  .header-logo {
    width: auto;
  }
}

.header-logo>.col-left {
  display: table-cell;
  width: 275px;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

@media screen and (min-width: 768px) {
  .header-logo>.col-left {
    vertical-align: middle;
  }
}

@media screen and (max-width: 767px) {
  .header-logo>.col-left {
    width: auto;
    padding-right: 12px;
    padding-top: 10px;
  }
}

.header-logo>.col-left>.logo-mufg {
  display: inline-block;
  margin: 0;
  vertical-align: top;
  text-decoration: none
}

.header-logo>.col-left>.logo-mufg a {
  transition: 0.3s;
}

.header-logo>.col-left>.logo-mufg a:hover {
  opacity: 0.8;
}

.header-logo>.col-left>.logo-mufg img {
  height: 28px
}

.header-logo>.col-left>.logo-mufg>a+img {
  margin-left: 12px
}

@media screen and (max-width: 767px) {
  .header-logo>.col-left>.logo-mufg>a+img {
    display: none;
  }
}

.header-logo>.col-right {
  display: table-cell;
  width: auto;
  padding: 0 2px 0 0;
  text-align: right;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .header-logo>.col-right {
    padding-top: 17px;
  }
}

.header-logo>.col-right .logo-mufgjp {
  display: inline-block;
  vertical-align: top;
}

.header-logo>.col-right .logo-mufgjp a {
  display: block;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .header-logo>.col-right .logo-mufgjp a:hover {
    opacity: 0.8;
  }
}

.header-logo>.col-right .logo-mufgjp img {
  vertical-align: top;
  width: 168px;
  height: 16px;
  margin-top: 16px;
  display: block
}

@media screen and (max-width: 767px) {
  .header-logo>.col-right .logo-mufgjp img {
    margin-top: 0;
    width: 114px;
    height: 11px;
  }
}

.header-logo>.col-right .logo-mufgjp img+img {
  width: 146px;
  margin-top: 2px;
  margin-left: 22px
}

@media screen and (max-width: 767px) {
  .header-logo>.col-right .logo-mufgjp img+img {
    width: 102px;
    margin-top: 3px;
    margin-left: 12px;
  }
}

/*  header-nav
--------------------------------------------- */
.header-pc-nav {
  position: absolute;
  top: 60px;/* .headerのheightの数値 */
  right: 0;
  left: 0;
  z-index: 2000;
  box-sizing: border-box;
  transition: 0.3s;
}

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

.is-fixed .header-pc-nav {
  position: fixed;
  background-color: #fff;
  border-bottom: 4px solid #E60000;
}

.js-sp-menu-opened .header-nav {
  display: block;
}

.header-pc-nav .header-nav-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 20px;
  position: relative;

}

.header-pc-nav .header-nav-list li {
  margin-right: 55px;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .header-pc-nav .header-nav-list li {
    margin-right: 35px;
  }
}

.header-pc-nav .header-nav-list li:last-of-type {
  margin-right: 0;
}

.header-pc-nav .header-nav-list li a {
  position: relative;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: 0.3s;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .header-pc-nav .header-nav-list li a {
    font-size: 0.8rem;
  }
}

.header-pc-nav .header-nav-list li a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.is-fixed .header-pc-nav .header-nav-list li a {
  color: #444444;
}

.header-pc-nav .header-nav-list li a:after {
  content: "";
  position: absolute;
  top: 35%;
  transform: translateX(-50%);
  right: -25px;
  width: 8px;
  height: 6px;
  background: url(/assets/img/cs/s/business/icon_arrow_white.svg) 0 0 no-repeat;
  background-size: 100% auto;
  transition: 0.3s;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .header-pc-nav .header-nav-list li a:after {
    right: -15px;
  }
}

.is-fixed .header-pc-nav .header-nav-list li a:after {
  background-image: url(/assets/img/cs/s/business/icon_arrow_black.svg);
}

.header-sp-nav {
  position: fixed;
  top: 0;/* .headerのheightの数値 */
  right: 0;
  left: auto;
  z-index: 2000;
  width: 330px;
  max-height: 100vh;
  overflow: scroll;
  padding-bottom: 25px;
  background-color: #F7F2E1;
  display: none;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .header-sp-nav {
    display: none !important;
  }
}

.header-sp-nav>.logo-mufg {
  display: inline-block;
  margin: 0;
  vertical-align: top;
  text-decoration: none;
  margin-top: 10px;
  margin-left: 20px;
  margin-right: 12px;
}

.header-sp-nav>.logo-mufg img {
  height: 28px;
}

.header-sp-nav>.logo-mufg>a+img {
  margin-left: 12px
}

.header-sp-nav .logo-mufgjp {
  display: inline-block;
  vertical-align: top;
  margin-top: 18px;
}

.header-sp-nav .logo-mufgjp a {
  display: block;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .header-sp-nav .logo-mufgjp a:hover {
    opacity: 0.8;
  }
}

.header-sp-nav .logo-mufgjp img {
  vertical-align: top;
  width: 168px;
  height: 16px;
  margin-top: 5px;
  display: block
}

@media screen and (max-width: 767px) {
  .header-sp-nav .logo-mufgjp img {
    margin-top: 0;
    width: 114px;
    height: 11px;
  }
}

.header-sp-nav .logo-mufgjp img+img {
  width: 146px;
  margin-top: 3px;
  margin-left: 22px
}

@media screen and (max-width: 767px) {
  .header-sp-nav .logo-mufgjp img+img {
    width: 102px;
    margin-top: 3px;
    margin-left: 12px;
  }
}

.header-sp-nav .header-nav-list {
  width: calc(280%/330 * 100);
  margin: 20px auto 10px;
}

.header-sp-nav .header-nav-list li {
  border-bottom: 1px solid #DDDDDD;
}

.header-sp-nav .header-nav-list li a {
  display: block;
  position: relative;
  color: #444444;
  font-size: 1.125rem;
  font-weight: bold;
  text-decoration: none;
  padding: 15px 0;
  letter-spacing: 0.05em;
}

.header-sp-nav span {
  color: #E60000;
  font-size: 1rem;
  display: block;
  text-align: center;
  margin-top: 15px;
}

.header-sp-nav p {
  font-size: 1.125rem;
  font-weight: bold;
  background-color: #fff;
  width: calc(240%/330 * 100);
  margin: 5px auto 0;
  padding: 10px 0;
  text-align: center;
}

.header-sp-nav p a {
  text-decoration: none;
  color: #444444;
  width: 100%;
  height: 100%;
}

/*  header-menu-overlay
--------------------------------------------- */
.header-menu-overlay {
  position: fixed;
  top: 60px;/* .headerのheightの数値 */
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  box-sizing: border-box;
  display: none;
  width: 100%;
  height: calc(100% - 50px);/* 100% - .headerのheightの数値 */
  background-color: rgba(0, 0, 0, 0.5);/* 任意 */
}
.is-sp-menu-opened .header-menu-overlay {
  display: block;
}

@media screen and (min-width: 768px) {
  .header-menu-overlay {
    display: none;
  }
}

/*  header-menu-button
--------------------------------------------- */
.header-menu-button {
  position: relative;
  display: block;
  padding: 15px 0;/* クリック範囲（任意） */
  border: 0;
  border-radius: 0;
  background: none;
  margin: 0;
  box-shadow: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  z-index: 10000;
}
.header-menu-button_lines {
  position: relative;
  display: block;
  width: 24px;/* アイコンの横幅 */
  height: 16px;/* アイコンの縦幅 */
}
.header-menu-button_line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 0;
  padding-top: 2px;/* lineの高さ（線の幅） */
  background-color: #3A3A3A;/* lineの色 */
  transition: 500ms;/* アニメーションの秒数 */
}
.header-menu-button_line-top {
  top: 0;
}
.header-menu-button_line-center {
  top: 50%;
  margin-top: -1px;/* lineの高さによって微調整 */
}
.header-menu-button_line-bottom {
  bottom: 0;
}
.js-sp-menu-opened .header-menu-button_line-top {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.js-sp-menu-opened .header-menu-button_line-center {
  background-color: transparent;
}
.js-sp-menu-opened .header-menu-button_line-bottom {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* mv */
.mv {
  position: relative;
  z-index: 2000;
  width: 100%;
  line-height: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .mv {
    height: calc(490vw/375 * 100);
  }
}

.mv video {
  width: 100%;
}

.mv-pc {
  display: none;
}

@keyframes bgAnime {
  0% { opacity: 0; transform:scale(1)}
  5% { opacity: 1; }
 25% { opacity: 1; }
 30% { opacity: 1; }
 33%{ transform: scale(1.1);}

 40%{ opacity: 0;}
100% { opacity: 0; }
}

@media screen and (min-width: 768px) {
  .mv-pc {
    display: block;
    width: 100%;
    height: 800px;
    position: relative;
    overflow: hidden;
  }
  .mv-pc-img {
    position   : absolute;
    top        : 0;
    left       : 0;
    bottom     : 0;
    right      : 0;
    opacity    : 0;
    width: 100%;
    height: 100%;
    animation  : bgAnime 24s infinite;
  }
  .mv-pc-img {
    background : url('/assets/img/cs/s/business/pc_tokyo.jpg') center / 100% 100% no-repeat;
  }
  .mv-pc-img:nth-of-type(2){
    background : url('/assets/img/cs/s/business/pc_nagoya.jpg') center / 100% 100% no-repeat;
    animation-delay  : 8s;
  }
  .mv-pc-img:nth-of-type(3) {
    background : url('/assets/img/cs/s/business/pc_osaka.jpg') center / 100% 100% no-repeat; 
    animation-delay  : 16s;
  }
}

.mv-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .mv-sp {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .mv-sp-img {
    position   : absolute;
    top        : 0;
    left       : 0;
    bottom     : 0;
    right      : 0;
    opacity    : 0;
    width: 100%;
    height: 100%;
    animation  : bgAnime 24s infinite;
  }
  .mv-sp-img {
    background: url('/assets/img/cs/s/business/sp/sp_tokyo.jpg') center / 100% 100% no-repeat; 
  }
  .mv-sp-img:nth-of-type(2){
    background: url('/assets/img/cs/s/business/sp/sp_nagoya.jpg') center / 100% 100% no-repeat; 
    animation-delay  : 8s;
  }
  .mv-sp-img:nth-of-type(3) {
    background: url('/assets/img/cs/s/business/sp/sp_osaka.jpg') center / 100% 100% no-repeat; 
    animation-delay  : 16s;
  }
}

.mv .mv-inner {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  max-width: 1000px;
  width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mv .mv-inner {
    padding: 0 3%;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 767px) {
  .mv .mv-inner {
    padding: 0 5%;
    box-sizing: border-box;
    display: block;
    top: 60px;
    left: 0;
    transform: translateX(0);
  }
}

.mv .mv-txt {
  line-height: 0;
  width: 82.9%;
}

@media screen and (max-width: 767px) {
  .mv .mv-txt {
    width: 100%;
    margin-top: calc(20vw/375 * 100);
    margin-bottom: calc(10vw/375 * 100);
  }
}

.mv .mv-txt img {
  width: 100%;
}

.mv .mv-icon {
  margin-left: 1.5%;
  width: 15.6%;
}

@media screen and (max-width: 767px) {
  .mv .mv-icon {
    width: calc(155vw/375 * 100);
    margin-left: auto;
    margin-right: 0;
  }
}

.mv .mv-icon img {
  width: 100%;
}

/* group */
.mod-section.group .mod-heading {
  background: url(/assets/img/cs/s/business/bg_group.jpg) center center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .mod-section.group .mod-heading {
    background-image: url(/assets/img/cs/s/business/sp/bg_group.jpg);
  }
}

.mod-section.group .mod-heading {
  padding: 55px 3% 65px;
}

@media screen and (max-width: 767px) {
  .mod-section.group .mod-heading {
    padding: 25px 5% 50px;
  }
}

.mod-section.group .mod-heading-inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .mod-section.group .mod-heading-inner {
    display: block;
  }
}

.mod-section.group .mod-heading figure {
  width: calc(234%/1110 * 100);
  max-width: 234px;
  margin: 0;
  flex-shrink: 0;
  transition-delay: 1s;
}

@media screen and (max-width: 767px) {
  .mod-section.group .mod-heading figure {
    width: calc(148%/337.5 * 100);
    transition-delay: 0s;
  }
}

.mod-section.group .mod-heading-txt {
  width: calc(736%/1110 * 100);
  margin-left: calc(140%/1110 * 100);
}

@media screen and (max-width: 767px) {
  .mod-section.group .mod-heading-txt {
    width: 100%;
    margin-left: 0;
    transition-delay: 1s;
  }
}

.mod-section.group .mod-heading h2 {
  font-size: 3.125rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-section.group .mod-heading h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .mod-section.group .mod-heading h2 {
    position: absolute;
    top: calc(65vw/375 * 100);
    left: calc(150%/375 * 100);
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .mod-section.group .mod-heading-txt h2 {
    display: none;
  }
}

.mod-section.group .mod-heading h2:after {
  background-color: #fff;
  left: 0;
  transform: translateX(0);
}

.mod-section.group .mod-heading .sentence-l {
  color: #fff;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: left;
  margin-top: 60px;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-section.group .mod-heading .sentence-l {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .mod-section.group .mod-heading .sentence-l {
    margin-top: 30px;
    font-weight: bold;
  }
}

.mod-section.group .mod-heading .sentence {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: left;
  margin-top: 25px;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-section.group .mod-heading .sentence {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mod-section.group .mod-heading .sentence {
    line-height: 1.8;
  }
}

.mod-panel.mod-panel-group {
  max-width: 1200px;
  margin: 0 auto;
}

.mod-panel.mod-panel-group .col-12 {
  text-align: center;
  padding-top: 75px;
  padding-bottom: 85px;
}

.mod-panel.mod-panel-group .col-12 h3 {
  display: inline-block;
  color: #E60000;
  font-size: 2.1875rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-panel.mod-panel-group .col-12 h3 {
    font-size: 1.75rem;
  }
}

.mod-panel.mod-panel-group .col-12 h3 span {
  border-bottom: 1px solid #E60000;
  padding-bottom: 7px;
  display: inline-block;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-group .col-12 h3 span {
    padding-bottom: 0;
  }
}

.mod-panel.mod-panel-group .col-12 p {
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-panel.mod-panel-group .col-12 p {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-group .col-12 p {
    text-align: left;
  }
}

.mod-panel.mod-panel-group .col-12 figure {
  max-width: 690px;
  margin: 60px auto 0;
}

.mod-panel.mod-panel-consulting {
  background: url(/assets/img/cs/s/business/bg_consul.jpg) center center no-repeat;
  background-size: cover;
  padding-top: 55px;
  padding-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-consulting {
    background-image: url(/assets/img/cs/s/business/sp/bg_consul.jpg);
  }
}

.mod-panel.mod-panel-consulting .col3 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-consulting .col3 {
    display: block;
    padding: 0 10%;
    margin-top: 50px;
  }
}

.mod-panel.mod-panel-consulting .col3 li {
  width: calc(290%/1000 * 100);
}

@media screen and (max-width: 975px) {
  .mod-panel.mod-panel-consulting .col3 li {
    width: 30%;
  }
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-consulting .col3 li {
    width: 100%;
    margin-bottom: 30px;
  }
}

.mod-panel.mod-panel-consulting .col3 figure {
  width: calc(270%/290 * 100);
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-consulting .col3 figure {
    width: 100%;
  }
}

.mod-panel.mod-panel-consulting .mod-panel-head h3 {
  font-size: 1.625rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-panel.mod-panel-consulting .mod-panel-head h3 {
    font-size: 1.3rem;
  }
}

.mod-panel.mod-panel-consulting .item h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  margin-top: 20px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
  white-space: nowrap;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-panel.mod-panel-consulting .item h4 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-consulting .item h4 {
    width: 110%;
    margin-left: -5%;
  }
}

.mod-panel.mod-panel-consulting .item p {
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.8;
  font-feature-settings: "palt";
  width: 90%;
  margin: 15px auto 0;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-panel.mod-panel-consulting .item p {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-consulting .item p {
    width: 100%;
  }
}

/* service */
.mod-section.service {
  padding-top: 50px;
  padding-bottom: 65px;
}

.mod-section.service {
  position: relative;
}

.mod-section.service .bg-gray {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50vw - 360px);
  min-width: 150px;
  height: 100%;
  background-color: #DDDDDD;
}

@media screen and (max-width: 767px) {
  .mod-section.service .bg-gray {
    width: calc(80%/375 * 100);
    min-width: 80px;
    height: calc(100% - 25px);
  }
}

.mod-section.service:before {
  content: '';
  position: absolute;
  z-index: 100;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -640px;
  height: 100%;
  width: 1px;
  background-color: #fff;
}

@media screen and (max-width: 975px) {
  .mod-section.service:before {
    left: 10px;
    transform: translateX(0);
    margin-left: 0;
  }
}

.mod-section.service:after {
  content: '';
  position: absolute;
  z-index: 100;
  top: 0;
  right: 50%;
  transform: translateX(-50%);
  margin-right: -640px;
  height: 100%;
  width: 1px;
  background-color: #DDDDDD;
}

@media screen and (max-width: 975px) {
  .mod-section.service:after {
    right: 10px;
    transform: translateX(0);
    margin-right: 0;
  }
}

.mod-section.service .mod-heading>h2 {
  position: relative;
  font-size: 3.125rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-section.service .mod-heading>h2 {
    font-size: 2.5rem;
  }
}

.mod-panel.mod-panel-service {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.mod-panel.mod-panel-service .inner .sentence {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-top: 50px;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-panel.mod-panel-service .inner .sentence {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-service .inner .sentence {
    line-height: 1.8;
  }
}

.mod-panel.mod-panel-service .col3 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-service .col3 {
    display: block;
  }
}

.mod-panel.mod-panel-service .col3 li {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  width: 33.33333%;
  height: 290px;
  margin-bottom: 30px;
  border-right: 1px solid #fff;
  box-sizing: border-box;
  overflow: hidden;
}

.mod-panel.mod-panel-service .col3 li .item{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mod-panel.mod-panel-service .col3 li .item::before{
  background: rgba(255, 255, 255, .3); 
  bottom: 0;
  content: '';
  height: auto;
  left: 0;
  opacity: 0; 
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.5s ease; 
  width: 100%;
  z-index: 1;
  cursor: pointer;
  pointer-events: none;
}
.mod-panel.mod-panel-service .col3 li .item:hover::before{
  opacity: 1;
}


@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-service .col3 li {
    width: 100%;
    height: 145px;
    margin-bottom: 10px;
  }
}

.mod-panel.mod-panel-service .col3 li .item figure{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
  margin-top: 0;
  transition: all 0.5s;
}
.mod-panel.mod-panel-service .col3 li .item:hover figure{
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1.05);
}
.mod-panel.mod-panel-service .col3 li .item figure img{
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mod-panel.mod-panel-service .item {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .mod-panel.mod-panel-service .item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-service .item {
    text-align: center;
  }
  .mod-panel.mod-panel-service .col3 li .item a{
    position: relative;
  }
  .mod-panel.mod-panel-service .col3 li .item a::before{
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: url(../../../../assets/img/cs/s/business/icn_arw-box.png) no-repeat center / contain;
    transition: all 0.3s;
  }
}

.mod-panel.mod-panel-service .item .sentence-l {
  font-size: 2.25rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #fff;
  text-align: center;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-panel.mod-panel-service .item .sentence-l {
    font-size: 1.5rem;
  }
}

.mod-panel.mod-panel-service .item .sentence {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin: 0;
  padding: 0 20px;
  box-sizing: border-box;
  color: #fff;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
}

.mod-panel.mod-panel-service .item a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-service .item .sentence {
    position: static;
    opacity: 1;
    height: auto;
    padding-top: 20px;
    text-align: left;
  }
  .mod-panel.mod-panel-service .item .sentence-l{
    font-size: 2.25rem;
  }
}

/* task */
.mod-section.task {
  background: url(/assets/img/cs/s/business/bg_task.jpg) center center no-repeat;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 90px;
}

@media screen and (max-width: 767px) {
  .mod-section.task {
    background-image: url(/assets/img/cs/s/business/sp/bg_task.jpg);
    padding-bottom: 40px;
  }
}

.mod-section.task .mod-heading>h2 {
  font-size: 1.625rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-section.task .mod-heading>h2 {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .mod-section.task .mod-heading>h2 {
    line-height: 1.5;
  }
}

.mod-section.task .mod-heading>h2:after {
  content: none;
}

.mod-section.task .mod-heading>p {
  color: #fff;
}

.mod-section.task .mod-heading>p:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 50px;
  height: 4px;
  background-color: #E60000;
}

.mod-panel.mod-panel-task .mod-panel-inner {
  max-width: 1000px;
  margin: 0 auto;
  background-color: rgba(221,221,221,0.8);
  padding: 50px 4%;
  margin-top: 50px;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-task .mod-panel-inner {
    padding: 20px;
  }
}

.mod-panel.mod-panel-task .col2 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-task .col2 {
    display: block;
  }
}

.mod-panel.mod-panel-task .col2 li {
  margin-right: calc(40%/880 * 100);
  margin-bottom: 20px;
  width: calc(420%/880 * 100);
  padding: 10px 0;
  background-color: #fff;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-task .col2 li {
    width: 100%;
    margin-right: 0;
    padding: 18px 15px 18px 0;
    box-sizing: border-box;
  }
}

.mod-panel.mod-panel-task .col2 li:nth-of-type(2n) {
  margin-right: 0;
}

.mod-panel.mod-panel-task .col2 li:nth-of-type(5) {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-task .col2 li:nth-of-type(5) {
    margin-bottom: 20px;
  }
}

.mod-panel.mod-panel-task .col2 li:nth-of-type(6) {
  margin-bottom: 0;
}

.mod-panel.mod-panel-task .col2 span {
  width: calc(70%/420 * 100);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-task .col2 span {
    width: calc(65%/295 * 100);
  }
}

.mod-panel.mod-panel-task .col2 p {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  padding-left: calc(30%/420 * 100);
  width: calc(350%/420 * 100);
  height: 40px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  border-left: 1px solid;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-panel.mod-panel-task .col2 p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-task .col2 p {
    border-left: none;
    padding-left: 0;
    height: auto;
    width: calc(230%/295 * 100);
  }
}

/* property */
.mod-section.property {
  padding-top: 60px;
  padding-bottom: 110px;
}

@media screen and (max-width: 767px) {
  .mod-section.property {
    padding-top: 45px;
    padding-bottom: 30px;
  }
}

.mod-section.property .mod-heading>h2 {
  font-size: 1.875rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-section.property .mod-heading>h2 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .mod-section.property .mod-heading>h2 {
    line-height: 1.8;
  }
}

.mod-section.property .mod-heading>p {
  margin-top: 45px;
}

.mod-panel.mod-panel-property {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-property {
    max-width: 100%;
    margin-top: 60px;
  }
}

.mod-panel.mod-panel-property .col2 {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-property .col2 {
    display: block;
  }
}

.mod-panel.mod-panel-property .col2:after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #E60000;
  width: calc(720%/1000 * 100);
  height: 342px;
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-property .col2:after {
    width: calc(295%/337.5 * 100);
    height: 416px;
  }
}

.mod-panel.mod-panel-property .col2 li {
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  width: calc(460%/1000 * 100);
  height: 230px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .mod-panel.mod-panel-property .col2 li:hover {

  }
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-property .col2 li {
    width: 100%;
    height: calc(168vw/375 * 100);
  }
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-property .col2 li:nth-of-type(1) {
    margin-bottom: 20px;
  }
}

.mod-panel.mod-panel-property .col2 li a {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  text-decoration: none !important;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.mod-panel.mod-panel-property .col2 li:nth-of-type(1) a {
  background-image: url(/assets/img/cs/s/business/property_01.jpg);
}

.mod-panel.mod-panel-property .col2 li:nth-of-type(2) a {
  background-image: url(/assets/img/cs/s/business/property_02.jpg);
}

.mod-panel.mod-panel-property .col2 li:hover a {
  transform: scale(1.1);
}

.mod-panel.mod-panel-property .col2 p {
  font-size: 1.875rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-panel.mod-panel-property .col2 p {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-property .col2 p {
    font-size: 1.625rem;
  }
}

/* contact */
.mod-section.contact {
  padding-top: 60px;
}

.mod-section.contact .mod-heading>h2 {
  font-size: 3.125rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-section.contact .mod-heading>h2 {
    font-size: 2.5rem;
  }
}

.mod-panel.mod-panel-contact {
  background: url(/assets/img/cs/s/business/bg_contact.jpg) center center no-repeat;
  background-size: cover;
  margin-top: 45px;
  padding-top: 60px;
  padding-bottom: 70px;
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-contact {
    background-image: url(/assets/img/cs/s/business/sp/bg_contact.jpg);
    padding-top: 30px;
  }
}

.mod-panel.mod-panel-contact .col2 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-contact .col2 {
    display: block;
  }
}

.mod-panel.mod-panel-contact .col2 li {
  width: calc(480%/1000 * 100);
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-contact .col2 li {
    width: 100%;
  }

  .mod-panel.mod-panel-contact .col2 li:nth-of-type(1) {
    margin-bottom: 45px;
  }
}

.mod-panel.mod-panel-contact .col2 li .item {
  background-color: rgba(255,255,255,0.8);
  padding: 40px 0;
  height: 360px;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-panel.mod-panel-contact .col2 li .item {
    height: 335px;
  }
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-contact .col2 li .item {
    height: auto;
  }
}

.mod-panel.mod-panel-contact .col2 span {
  font-size: 1.25rem;
  color: #E60000;
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-panel.mod-panel-contact .col2 span {
    font-size: 1rem;
    margin-bottom: 5px;
  }
}

.mod-panel.mod-panel-contact .col2 h3 {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-panel.mod-panel-contact .col2 h3 {
    font-size: 1.2rem;
  }
}

.mod-panel.mod-panel-contact .col2 p {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  background-color: #fff;
  width: calc(337%/480 * 100);
  margin: 0 auto;
}

.mod-panel.mod-panel-contact .col2 p a {
  color: #444444 !important;
  text-decoration: none !important;
  display: block;
  width: 100%;
  padding: 25px 0;
}

@media screen and (min-width: 768px) {
  .mod-panel.mod-panel-contact .col2 p:hover a {
    color: #fff !important;
    background-color: #E60000;
  }
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .mod-panel.mod-panel-contact .col2 p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .mod-panel.mod-panel-contact .col2 p {
    width: calc(295%/337.5 * 100);
  }
}

.mod-panel.mod-panel-contact .col2 p:first-of-type {
  margin-bottom: 17px;
}

.is-fixed .header-pc-nav .header-glonav-li{
  color: #444444;
}

.header-pc-nav .header-glonav-wrap{
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.header-pc-nav .header-glonav-li {
  position: relative;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: 0.3s;
  cursor: pointer;

}

.header-pc-nav .header-glonav-li::after{
  content: "";
  position: absolute;
  top: 35%;
  transform: translateX(-50%);
  right: -25px;
  width: 8px;
  height: 6px;
  background: url(/assets/img/cs/s/business/icon_arrow_white.svg) 0 0 no-repeat;
  background-size: 100% auto;
  transition: 0.3s;
}

.is-fixed .header-pc-nav .header-glonav-li::after{
  background: url(/assets/img/cs/s/business/icon_arrow_black.svg) 0 0 no-repeat;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
  .header-pc-nav .header-glonav-li {
    font-size: 0.8rem;
  }

  .header-pc-nav .header-glonav-li::after{
    right: -15px;
  }
}

.header-pc-nav .header-glonav-li:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.header-pc-nav .header-glonav-box{
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 95%;
  max-width: 1000px;
  white-space: nowrap;
  padding: 23px 3vw 27px;
  background-color: rgba(0, 0, 0, 0.4);
  border-top: 1px solid #E60000;
  box-sizing: border-box;
}

.header-pc-nav .header-glonav-cover{
  position: absolute;
  content: "";
  width: 100%;
  height: 20px;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.is-fixed .header-pc-nav .header-glonav-box{
  border-top: 4px solid #E60000;
}

.header-pc-nav .header-glonav-box::before{
  position: absolute;
  content: "";
  top: 0;
  left: 29.5%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 6px 0 6px;
  border-color: #E60000 transparent transparent transparent;
}

.header-pc-nav .header-glonav-box-inner{
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-pc-nav .header-nav-list .header-glonav-box li{
  margin: 0;
}

.header-pc-nav .header-nav-list .header-glonav-box li a{
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  margin-right: 0;
}

.header-pc-nav .header-nav-list .header-glonav-box li a:after{
  background: none;
}

.header-pc-nav .header-glonav-parent{
  display: flex;
  align-items: center;
  height: 60px;
  padding-right: 30px;
  position: relative;
}

.header-pc-nav .header-glonav-parent::before{
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: #E6E6E6;
}

.header-pc-nav .header-glonav-child{
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  padding-left: 60px;
  max-width: 510px;
}
/* 
.header-pc-nav .header-nav-list .header-glonav-child li:nth-child(1),
.header-pc-nav .header-nav-list .header-glonav-child li:nth-child(4){
  width: 209px;
}

.header-pc-nav .header-nav-list .header-glonav-child li:nth-child(2),
.header-pc-nav .header-nav-list .header-glonav-child li:nth-child(5){
  width: 152px;
} */

.header-pc-nav .header-nav-list .header-glonav-child li a{
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1;
  padding-left: 14px;
}
.header-pc-nav .header-nav-list .header-glonav-child li a::after{
  content: "";
  position: absolute;
  top: 49%;
  left:0;
  width: 5px;
  height: 5px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: translateY(-50%) rotate(45deg);
  background: none;
  transition: all 0.3s;
}

.header-pc-nav .header-nav-list .header-glonav-child li a:hover::after{
  opacity: 0.7;
}

@media screen and (max-width: 975px) {
  .header-pc-nav .header-glonav-box::before{
    left: 31%;
  }

  .header-pc-nav .header-glonav-child{
    gap: 16px 5%;
  }
/* 
  .header-pc-nav .header-nav-list .header-glonav-child li:nth-child(odd){
    width: 200px;
  }

  .header-pc-nav .header-nav-list .header-glonav-child li:nth-child(even){
    width: 200px;
  } */
}

@media screen and (max-width: 767px) {
  .header-sp-nav .header-glonav-parent{
    font-size: 1.125rem;
    font-weight: 700;
    padding: 16px 0;
    /* position: relative; */
  }
/* 
  .header-sp-nav .header-glonav-parent::before,
  .header-sp-nav .header-glonav-parent::after{
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 27px;
    height: 3px;
    background-color: #E60000;
    transition: all 0.3s;
    -webkit-transition: -webkit-transform all 0.3s;
  }

  .header-sp-nav .header-glonav-parent::after{
    transform: translateY(-50%) rotate(90deg);
  }

  .header-sp-nav .header-glonav-parent.is-open::before{
    transform: translateY(-50%) rotate(180deg);
  }

  .header-sp-nav .header-glonav-parent.is-open::after{
    transform: translateY(-50%) rotate(0deg);
  }

  .header-sp-nav .header-glonav-child{
    display: none;
  } */

  .header-sp-nav .header-glonav-child li{
    border: none;
  }
  
  .header-sp-nav .header-glonav-child li a{
    font-size: 1rem;
    font-weight: 400;
    margin-left: 20px;
    position: relative;
  }
  
  .header-sp-nav .header-glonav-child li:not(:last-child) a{
    border-bottom: 1px solid #fff;
  }

  .header-sp-nav .header-glonav-child li a::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    width: 8px;
    height: 8px;
    border-top: solid 2px #E60000;
    border-right: solid 2px #E60000;
    transform: translateY(-50%) rotate(45deg);
  }
}

.header-pc-cover{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
}

.header-pc-cover.is-open{
  display: block;
}