@charset "utf-8";
/*——————————————————————
base
——————————————————————*/
html{
  font-size: 10px;
}

body {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    font-style: normal;
    font-family: 'Noto Sans JP', sans-serif;
    color: #3E3E3E;
    /*全体バックに画像を配した場合以下を記載*/
/*     background-image: url("../img/common/23728699_s.jpg"); */
    background-repeat: repeat;
    background-attachment: fixed;
    background-position:center center;
    background-size: 20% 20%;
    margin: auto;
    
  }
  *
  {
    margin: 0;
    padding: 0;
  }

  a,
  a:link,
  a:visited,
  a:active {
    text-decoration: none;
    color: #3E3E3E;
  }

  * {
  box-sizing: border-box;
  }

.body_wrapper{
  overflow: hidden;
}


/*——————————————————————
————————————————————————
全体設定
————————————————————————
——————————————————————*/


.display_flex{
  display: flex;
}

.space-between{
  justify-content: space-between;
}

.display_flex-s{
  display: flex;
}

.flort_left{
  float: left;
}

.space._00{
  height: 0.4rem;
}

.space._01{
  height: 1rem;
}

.space._02{
  height: 2rem;
}

.space._03{
  height: 3rem;
}

.space._04{
  height: 4rem;
}

.space._06{
  height: 6rem;
}

.space._08{
  height: 8rem;
}

.space._16{
  height: 16rem;
}



/*——————————————————————
hタグフォント指定
hタグは基本そのままで使うこと
hタグの前にclass名をつけない
——————————————————————*/

h1{
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 0.3rem;
    line-height: 6rem;
}

h1 span{
  font-size: 2.6rem;
  font-weight: bold;
}

h2{
  font-family: '源ノ角ゴシック JP', sans-serif;
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 6rem;
  color: rgba(0,88,166,1.0);
  text-align: center;
}

h2 span{
  color: rgba(5,17,35,1.0);
}

h3{
  font-family: '源ノ角ゴシック JP', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  
}

h4{
  font-family: '源ノ角ゴシック JP', sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  
}



/*——————————————————————
メインBOX指定
——————————————————————*/


/*-----------------------------
fieldはセンター配置指示のみ
field基本幅指定のみで使用する
幅等の支持は._00〜を付与し指定すること
-----------------------------*/

.field{
  margin: 0 auto;
}

.field._01._a{
  height: 1rem;
}


/*-------------------------------------------
.entry,.innerは.field._01等で指示した幅(高)に対し
色・写真等の配置、paddingの指定をする
-------------------------------------------*/
.entry{
  margin: 0 auto;
}

.entry._01{
  position: relative;
  width: 98rem;
  margin: 0 auto;
}

.entry._02{
  margin: 0 auto;
  position: relative;
  width: 98rem;
}

.entry._03{
  margin: 0 auto;
  width: 62rem;
}

.entry._04{
  width: 82rem;
}

.inner._02{
  /*空箱設定*/
}

.inner._03{
  padding: 6rem 4rem;
  background: #fff;
}

.inner._04{
  padding: 6rem 4rem;
  background: #fff;
}

.inner._05{
  justify-content: space-between;
}

.inner._06{
  background: #fff;
}

/*————————————————————————————————
border設定 ※基本的にmarginは入れない
————————————————————————————————*/


.border._01{
  margin: 0 auto;
  width: 54rem;
  margin-top: 1.25rem;
  /*線の高さスペース*/
  height: 0.25rem;
  /*線の太さ*/
  background-size: 0.25rem 0.25rem;
  /*ドット線の色・間隔・丸み*/
  background-image : radial-gradient(rgba(62,62,62,1.0), transparent 50%);
  /*線の位置*/
  background-position: center; 
  }
  


.border._01._a{
  background: #3E3E3E;
}

.border._01._b{
  width: 100%;
}

.border._02{
  border: solid #3E3E3E 0.5px;
  margin: 2rem;
  width: 100vw;
  margin-left: -2rem;
}


/*———————————————————————————————————————
fadeInアクションの一例
translateの()内で縦軸・横軸の
移動量を指示する(.is-showのclass付与)でJQ発動
.inBoxはjQ発動前の位置
————————————————————————————————————————*/


.fadeIn_up{
  opacity: 0;
  transform: translate(0, 20%);
  transition: 1s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.inBox {
  margin: 50px 0;
}


/*——————————————————————
scroll_down 設定の一例
——————————————————————*/
.scroll_down{
    position: absolute;
    display: inline-block;
    width: 1px;
    height: 8rem;
    background-color: #FFFFFF;
    left: 50%;
    bottom: 0;
  }
  
  .scroll_down p{
    margin: 0 auto;
    margin-left: -18px;
    margin-top: -16px;
    color: #FFFFFF;
  }
  
  .scroll_down span {
    position: absolute;
    top: 8px;
    left: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    /*-webkit-animation: sdb 2s infinite;*/
    animation: sdb 2s infinite;
    border: 1px solid #FFFFFF;
  }
  
  
  @keyframes sdb {
    0% {
      transform: rotate(-45deg) translate(0, 0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: rotate(-45deg) translate(-68px, 68px);
      opacity: 0;
    }
  }
  /*scroll_down一例 ここまで*/

/*——————————————————————
トップロゴ
——————————————————————*/

.fs-logo{
  width: 100%;
  height: auto;
}
.logo{
  position: relative;
  top: 3rem;
  left: 3.4rem;
}

.logo img{
  position: absolute;
  width: 15rem;
  height: auto;
}

.logo_02{
  display: none;
}

.logo_01.invert{
  display: none;
}

.logo_02.invert{
  display: block;
}

/*——————————————————————
グローバルナビメニュー
——————————————————————*/

.header_inner{
  position: fixed;
  width: 100%;
  z-index: 999; 
}

.header_inner.open .global_menu{
  margin-top: 0rem;
  transition: .4s ease-out;
}

.global_nav.is-hidden{
  visibility: hidden;
  opacity: 0;
}

.global_nav{
  /*position: relative;
  max-width: 130rem;*/
  margin: 0 auto;
  justify-content: space-between;
}

.global_menu{
  /*position: relative;*/
  width: 36rem;
  height: 30rem;
  background: #FFFFFF;
  /*margin-right: 3rem;*/
  overflow-y: hidden;
  margin-top: -19rem;
  filter: drop-shadow(0px 0px 10px rgba(62,62,62,0.2));
  transition: .4s;
}

.header_nav{  
  align-items: center;
}

.navArea,.header_nav{
  justify-content: space-between;
}

.header_nav li{
  padding: 1.8rem 3rem;
}

.header_nav li:first-child{
  padding-top: 8rem;
}

.global_menu a{
  font-size: 1.6em;
  font-weight:500;
  color: rgba(62, 62, 62, 1.0);
  cursor: pointer;
  transition: .3s;
}

.header_inner .menu._a{
  display: block;
  position: absolute;
  bottom: 3rem;
  margin-left: 3rem;
}

.header_inner .menu{
  display: none;
}

.header_inner.open .menu{
  display: block;
}

.header_inner.open .menu._a{
  display: none;
}

.global_menu a span{
  display: inline-block;
  margin-right: 0.4rem;
  transition: .3s;
}


.global_menu a:hover{
  color: rgba(62, 62, 62, 0.5);
}

.global_menu a:hover span{
  transform: rotateZ(90deg);
}


/*——————————————————————
ハンバーガーメニュー
——————————————————————*/

.toggle_btn {
  position: absolute;
  width: 8rem;
  height: 11rem;
  display: block;
  top: 0;
  right: 0;
  transition: .3s;
  z-index: 9999;
  background: #3D3D3D;
  cursor: pointer;
  outline: none;
}

.btn01{
  width: 100%;
  height: 2.8rem;
  margin-top: 4rem;
  padding: 0 2em;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

.toggle_btn span {
  display: block;
  /*position: absolute;*/
  left: 0;
  width: 4rem;
  height: 2px;
  background-color: #FFFFFF;
  transition: .4s;
  cursor: pointer;
  z-index: 9999;
}

/*
.toggle_btn span:nth-child(1) {
  top: 57px;
  left: 20px;
}
.toggle_btn span:nth-child(2) {
  top: 70px;
  left: 20px;
}
.toggle_btn span:nth-child(3) {
  top: 83px;
  left: 20px;
}
*/

.toggle_btn.open span {
  background-color: #FFFFFF;
}
.toggle_btn.open span:nth-child(1) {
  -webkit-transform: rotate(30deg);
  transform: translateY(13px) rotate(30deg);
}
.toggle_btn.open span:nth-child(2) {
  opacity: 0;
}
.toggle_btn.open span:nth-child(3) {
  -webkit-transform: translateY-(13px) rotate(-30deg);
  transform: translateY(-13px) rotate(-30deg);
}


/*——————————————————————
Side Menu
——————————————————————*/
.scss_icon{
  position: fixed;
  z-index: 999;
  right: 0rem;
  line-height: 2.8rem;
}

.scss_icon.pc-only{
  bottom: 0rem;
}

.scss_icon_in{
  position: absolute;
  display: block;
  width: 8rem;
  height: 16rem;
  right: -4.4rem;
  border-radius: 1rem 0 0 1rem;
}

.scss_icon_in._a{
  background: rgba(255, 255, 255, 0.9);
  border: 0.2rem solid rgba(0, 40, 127, 1.0);
  bottom: 4rem;
  transition: .3s;
}

.scss_icon_in._b{
  background: rgba(0, 40, 127, 0.9);
  border: 0.2rem solid rgba(255, 255, 255, 1.0);
  bottom: 2rem;
  transition: .3s;
}

.scss_icon_in:hover{
  right: -0.6rem;
}


.scss_icon_in a{
  display: flex;
  width: 80%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl ;
  font-size: 1.6rem;
  font-weight: 500;
  padding-left: 0.4rem;
}


.scss_icon_in._a a{
  color: rgba(0, 40, 127, 1.0);
}

.scss_icon_in._b a{
  color: rgba(355, 355, 355, 1.0);
}

/*———————————————————————————
詳細ボタン---BeProHPで使用した物
———————————————————————————*/

.btn_base{
  margin: 0 auto;
  text-align: center;
  width: 17rem;
  height: 6rem;
}


.btn_base a{
  position: relative;
  display: flex;
  justify-content: space-between;
}

.circles{
  /*--------------------------------
  指定エリア内でポジショニングしたい場合は
  親要素にposition: relativeを入れる事
  親枠外でポジショニングしたい場合は
  指定のposition: relative幅枠の直下に
  div箱を作りその子要素として以下を入れる
  --------------------------------*/
  position: absolute;
  right: 0;
  width: 56px;
  height: 56px;
  border:solid #3E3E3E 1px;
  border-radius: 28px;
}

.san-button{
  position: absolute;
  padding: 1rem 7rem 1rem 5rem;
  border: solid rgba(47,47,47,0.4)1px;
  border-left: 0px;
  bottom: 3rem;
  right: 3rem;
  font-size: 1.3rem;
  font-weight: 500;
  transition: .4s;
}

.arrow{
  position: absolute;
  display: flex;
  transition: .4s;
  right: 3rem;
  bottom: 1.5rem;
  color: #3E3E3E;
}


.lines{
  position: relative;
  width: 32px;
  height: 1px;
  background: #3E3E3E;
  transition: .4s;
}

.lines::after {
  position: absolute;
  content: '';
  width: 9px;
  height: 1px;
  transform: rotate(42deg);
  background: #3E3E3E;
  transition: .4s;
  bottom: 3px;
  right: 0;
}

button:hover .arrow{
  right: 2rem;
}

.san-button:hover{
  opacity: 0.5;
}



/*——————————————————————
————————————————————————
下層ファーストビュー エリア
————————————————————————
——————————————————————*/
#first-view_bg._a{
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position:center center;
  background-size: 100% 100%;
  background-size: cover;
  height: 36rem;
  position: relative;
}

.h1_class{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.under-h1-title{
  position: relative;
  text-align: center;
  background: linear-gradient(90deg,rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.9) 20%, rgba(255, 255, 255, 0.9) 80%, rgba(255, 255, 255, 0.00) 100%);
  padding: 0rem 10rem;
  letter-spacing: 1rem;
  color: rgba(0, 40, 127);
}

.under-h1-title._01{
  position: absolute;
  width: 100%;
  left: 0;
  background: linear-gradient(90deg,rgba(0, 40, 127, 0.00) 0%, rgba(0, 40, 127, 0.9) 20%, rgba(0, 40, 127, 0.9) 80%, rgba(0, 40, 127, 0.00) 100%);
  height: 0.6rem;
}

.under-h1-title._a{
  letter-spacing: 0.4rem;
}

#first-view_bg._a._01{
  background-image: url(../img/introduction/under-first-view-01-pc.jpg);
}

#first-view_bg._a._02{
  background-image: url(../img/overview/under-first-view-02-pc.jpg);
}

#first-view_bg._a._03{
  background-image: url(../img/privacypolicy/under-first-view-03-pc.jpg);
}


/*——————————————————————
————————————————————————
ファーストビュー エリア
————————————————————————
——————————————————————*/

#first-view_bg{
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #051123;
  display: flex;
  justify-content: center;
  align-items: center;
}


.h1_title{
  position: absolute;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.h1_title._01 h1{
  /*position: absolute;*/
  text-align: center;
  color: #FFFFFF;
  margin-left: 18%;
  filter: drop-shadow(0px 0px 4px rgba(62,62,62,0.4));
  z-index: 2;
}

.right_side{
  width: 100%;
  /*height: 100vh;*/
}

.right-item{
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  padding: 8%;
}

.right-item-pho{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80%;
  /*
  width: 100%;
  height: auto;
  margin-left: 8%;
  margin-top:20%;
  */
}

.right-item-pho img{
  width: 80%;
  height: auto;
}

.right_moj{
  color: #FFFFFF;
  /*font-family: Oswald;*/
  font-size: 1.8rem;
  line-height: 4.6rem;
  opacity: .5;
}


.first-view{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.left_side{
  position: relative;
}

.overlay{
  position: absolute;
  width: 50%;
  height: auto;
  right:0;
  bottom: 0;
  /*乗算等のブレンドモードは以下の文*/
  mix-blend-mode: screen;
  /*ここまで*/
  opacity: 0.4;
  z-index: 2;
}

.overlay img{
  width: 36rem;
  height: auto;
}

/*————————————————————————
swiper-スライドフェードエリア
————————————————————————*/
.swiper{
  width: 100%;
  height: 100%;
}

.l-inner {
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10rem;
}

.l-section .l-inner {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

[class*=swiper]:focus {
  outline: none;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}
.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}


.swiper-button-prev, .swiper-button-next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.swiper-button-prev::before, .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}
.swiper-button-prev::after, .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}
.swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.mv02 {
  margin-bottom: 16rem;
  height: 100%;
}
.mv02 .l-inner {
  padding-bottom: 0;
}
.mv02 .swiper-pagination {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin: auto;
}
.mv02 .swiper-pagination-bullet {
  display: block;
  width: 1.6rem;
  height: 2px;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: #fff;
}
.mv02 .swiper-pagination-bullet:not(:first-child) {
  margin-top: 1.6rem;
}
.mv02 .swiper-pagination-bullet-active {
  width: 4rem;
  background-color: var(--color-theme);
}
.mv02 .swiper-fade .swiper-slide {
  -webkit-transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, transform !important;
  transition-property: opacity, transform, -webkit-transform !important;
  pointer-events: none;
}
.mv02 .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.mv02 .slide {
  display: grid;
  place-content: center;
  /*height: 800px;*/
  padding: 0 8rem;
  text-align: center;
}

.mv02 .slide-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
}

.mv02 .slide-media img {
  -webkit-transition: 7s 1s linear;
  transition: 7s 1s linear;
  -webkit-transform: translateX(-1.5%) scale(1.1);
          transform: translateX(-1.5%) scale(1.1);
}
.mv02 .slide-title, .mv02 .slide-text, .mv02 .slide-link {
  -webkit-animation: 2s var(--easing) both;
          animation: 2s var(--easing) both;
  opacity: 0;
}
.mv02 .slide-title {
  font-size: 6rem;
  line-height: 1.1;
  color: var(--color-theme);
}
.mv02 .slide-text {
  font-size: 1.8rem;
  margin: 4rem 0;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  color: #fff;
}
.mv02 .slide-link {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.mv02 .slide-button {
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-block;
  color: var(--color-theme);
}
.mv02 .slide-button::before {
  display: inline-block;
  width: 6rem;
  height: 1px;
  margin: -2px 1.6rem 0 0;
  content: "";
  vertical-align: middle;
  background-color: currentColor;
}
.mv02 .swiper-slide[class*=-active] .slide-media img {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transform: translateX(1.5%) scale(1.05);
          transform: translateX(1.5%) scale(1.05);
}
.mv02 .swiper-slide.anm-started .slide-title,
.mv02 .swiper-slide.anm-started .slide-text,
.mv02 .swiper-slide.anm-started .slide-link {
  -webkit-animation-name: mv02-fadeIn;
          animation-name: mv02-fadeIn;
}
.mv02 .swiper-slide.anm-finished .slide-title,
.mv02 .swiper-slide.anm-finished .slide-text,
.mv02 .swiper-slide.anm-finished .slide-link {
  -webkit-animation-name: mv02-fadeOut;
          animation-name: mv02-fadeOut;
}

@-webkit-keyframes mv02-fadeIn {
  0% {
    -webkit-transform: translateY(6rem);
            transform: translateY(6rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes mv02-fadeIn {
  0% {
    -webkit-transform: translateY(6rem);
            transform: translateY(6rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes mv02-fadeOut {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-6rem);
            transform: translateY(-6rem);
    opacity: 0;
  }
}
@keyframes mv02-fadeOut {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-6rem);
            transform: translateY(-6rem);
    opacity: 0;
  }
}

@media only screen and (max-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
  .l-inner {
    padding: 0 4rem;
  }
  .pc {
    display: none !important;
  }
  .mv02 {
    margin-bottom: 8rem;
  }
  .mv02 .slide {
    height: max(70vh, 70vw);
  }
  .mv02 .slide-title {
    font-size: 4rem;
  }
  .mv02 .slide-text {
    font-size: 1.6rem;
    margin: 3.2rem 0;
  }
}

@media only screen and (min-width: 1025px) {
  .tab-sp {
    display: none !important;
  }
  .swiper-button-prev::before, .swiper-button-next::before {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .swiper-button-prev:hover::before, .swiper-button-next:hover::before {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media only screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
/*——————————————————————
トップ項目エリア 
——————————————————————*/

.h1_title._02 h1{
  position: absolute;
  text-align: center;
}

.right_back{
  width: 31rem;
  margin-left: -10rem;
}

.right_back img{
  width: 100%;
  opacity: 0.6;
}

/*——————————————————————
当社の3つの力エリア
——————————————————————*/

.h2_title{
  font-family: '源ノ角ゴシック JP', sans-serif;
  font-weight: bold;
  text-align: center;
  font-size: 2rem;
  color: rgba(5,17,35,1.0);
}

.h2_title span{
  color: rgba(224,34,15,1.0);
}

.sub-word{
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: rgba(47,47,47,1.0);
}

.sub-word._01{
  width: 54rem;
}

.pic._01{
  position: relative;
  width: 28rem;
  height: 39.8rem;
  overflow: hidden;
  /*object-fit: cover;*/
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(4px 4px 10px rgba(62,62,62,0.6));
}

.img-fluid_a{
  width: 69rem;
  height: auto;
}

.moji._01{
  position: absolute;
  width: 15rem;
  height: 20rem;
}

.moji._01 img{
  width: 100%;
  height: auto;
}

.lines-line{
  position: absolute;
  width: 69rem;
  bottom: 16rem;
  margin: auto;
  left: 0;
  right: 0;
  z-index: -1;
}


.lines-line img,.lines-line_02 img,.busi-left_01 img,.busi-right_01 img{
  width: 100%;
  height: auto;
}


/*——————————————————————
————————————————————————
事業紹介エリア
————————————————————————
——————————————————————*/

.busi-left{
  position: relative;
  width: 52rem;
  height: 41rem;
  top: 6.8rem;
  transition: .4s;
}

.lines-line_02{
  position: absolute;
  width: 5.7rem;
  height: 33rem;
  top: 4rem;
}

.busi-left_01{
  position: absolute;
    flex-flow: column;
    justify-content: space-between;
    width: 49rem;
    height: 41rem;
    /* top: 6rem; */
    right: 0;
    filter: drop-shadow(2px 2px 4px rgba(62,62,62,0.2));
}

.busi-right{
  width: 46rem;
}

.busi-right_01{
  width: 35.6rem;
  margin: 0 auto;
}

.busi-title{
  /*position: absolute;*/
  width: 48rem;
  height: 46.2rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 1.0);
  filter: drop-shadow(4px 4px 10px rgba(62,62,62,0.6));
  margin-left: -3rem;
}

.solution{
  position: relative;
  transition: .4s;
}

.busi-box{
  position: absolute;
  top: -1.4rem;
  bottom: -1.4rem;
  right: 4rem;
  /*width: 100%;*/
}

.Busi-illust{
  position: absolute;
  /*top: -1.2rem;
  bottom: -1.2rem;*/
  right: 5.6rem;
}

.Busi-illust img{
  width: 18rem;
  height: auto;
}

.arrows{
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  right: 0;
}

.arrows img{
  width: 4.4rem;
}

.busi{
  transform: translate(0,0);
  transition: .4s;
}

.busi:hover{
  transform: translate(2rem,0);
}

.consultation{
  position: relative;
  width: 100%;
  height: 5rem;
  background: rgba(224, 34, 15, 1.0);
  /*bottom: 3rem;
  right: 3rem;*/
  text-align: center;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 1.0);
  font-weight: bold;
  transition: .4s;
}

.consultation:hover{
  background: rgba(142, 142, 142, 1.0);
}


.arrow._a{
  bottom: 2.2rem;
}

.lines._a,.lines._a::after{
  background:rgba(255, 255, 255, 1.0);
}


/*——————————————————————
————————————————————————
企業案内エリア
————————————————————————
——————————————————————*/

.pickup_page{
  position: relative;
  background:url("../img/common/background-m.jpg") no-repeat center center;
  /*background-attachment: fixed;*/
  background-size: cover;
  height: 40rem;
  margin-bottom: 28rem;
}



.guidance{
  position: absolute;
  width: 100%;
  height: 100%;
}

.busi-title._02{
  position: absolute;
  bottom: 0;
}

.busi-right._a{
  position: absolute;
  bottom: 0;
  right: 0;
}

/*——————————————————————
————————————————————————
Group Companyエリア
————————————————————————
——————————————————————*/

.sanden-group{
  height: 60rem;
  justify-content: space-between;
}

.sanden-photo{
  width: 48%;
  height: 40.8rem;
  overflow: hidden;
}

.img-fluid_b{
  width: 115%;
  height: auto;
}

.right-side{
  width: 48rem;
  padding: 0 3rem;
}

.group-company{
  color: rgba(0, 88, 166, 1.0);
}

.group-company-s{
  font-size: 1.3rem;
  line-height: 2.6rem;
}

.group-company-m{
  justify-content: space-between;
}



/*——————————————————————————————————
footerベーシック
——————————————————————————————————*/

.f_field{
  width: 100%;
  background: rgba(47, 47, 47, 0.2);
}

.f_nav{
  justify-content: space-between;
  width: 98rem;
  padding: 10rem 0;
  margin: 0 auto;
}

.f_nav_left{
  flex-flow: column;
  justify-content: space-between;
  height: 22.8rem;
}

.f_nav_left p{
  font-size: 1.8rem;
  line-height: 3rem;
}

.scss-add{
  justify-content: space-between;
  width: 63.8rem;
  height: 22.8rem;
}


.f_nav_center iframe{
  width: 29.4rem;
  height: 22.6rem;
}

.f_nav_right{
  width: 18rem;
  position: relative;
}

.footer_nav{
  position: absolute;
  font-size: 1.8rem;
  line-height: 5rem;
  bottom: -1rem;
}

.footer_nav li a:hover{
  border-bottom: dotted #000 1px;
}

.f_field-s{
  background:rgba(255, 255, 255, 1.0);
  padding: 2rem;
}

.f_info_wrap{
  margin: 0 auto;
  width: 98rem;
  justify-content: space-between;
  font-size: 1.6rem;
}

.privacypolicy li{
  border-right: solid;
  padding-right: 1.6rem;
}

.privacypolicy li:last-child{
  border-right: 0px;
  /*padding-left: 1.6rem;*/
}

.copyright{
  bottom: 0.8rem;
  right: 0;
}

.copyright{
  font-family: oswald;
  font-size: 1.3rem;
}

/*——————————————————————————————————
page_topアイコン指示
——————————————————————————————————*/

.page_top{
  position: fixed;
  font-size: 1.6rem;
  color: #000;
  writing-mode: vertical-rl;
  letter-spacing: 0.1rem;
  bottom: 30rem;
  right: 0.8rem;
  z-index: 2;
  opacity: 1;
  cursor: pointer;

  /*filter: drop-shadow(0 0 6px rgba(80,80,80,0.9));
  transform: translateY(100px);*/
}


/*-----------矢印指定------------*/
.page_top.pc-only span::before{
  content: '';
    position: absolute;
    top: -14rem;
    bottom: 0;
    right: 1rem;
    margin: auto;
    width: 0.1rem;
    height: 4.8rem;
    background: #3E3E3E;
    transition: .4s;
}

.page_top.pc-only span::after{
  content: '';
    position: absolute;
    top: -5.6rem;
    right: 0.7rem;
    width: 1.2rem;
    height: 1px;
    transform: rotate(-65deg);
    background: #3E3E3E;
    transition: .4s;
}


/*-----------jQのclass付与指示------------*/
.change{
  color: #fff;
  background: #fff;;
}

.page_top.change{
  background: none;
}

.page_top.pc-only.change span::before,
.page_top.pc-only.change span::after {
  background: #fff;
}



/*——————————————————————————————————————————————
————————————————————————————————————————————————
ここから下層指示へ
————————————————————————————————————————————————
——————————————————————————————————————————————*/

/*——————————————————————
————————————————————————
事業紹介ページ
————————————————————————
——————————————————————*/
.h1_title._03{
  height: 9rem;
  background: rgba(0, 40, 127, 1.0);
  position: initial;
}

.sub-title{
  color: #FFFFFF;
  font-size: 5.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.sub-title span{
  font-size: 3.2rem;
  font-weight: 500;
}

.solutions{
  text-align: center;
  /*padding: 0 30%;*/
}

.h2-title{
  margin: 0 auto;
  font-size: 4.2rem;
  font-weight: bold;
  letter-spacing: 0.03rem;
  border-bottom: dotted rgba(5, 17 , 35, 1.0);
  padding: 1rem;
}

.solutions p{
  padding-top: 1rem;
  font-size: 2rem;
  font-weight: bold;
  color: rgba(0, 88 , 166, 1.0);
}

.room img{
  width: 100%;
}

.mirumo img{
  width: 68%;
}

.a-side{
  width: 48rem;
}

.b-side{
  width: 31rem;
}

.words-01{
  font-size: 2.6rem;
  line-height: 3.6rem;
  letter-spacing: 0.03rem;
  font-weight: bold;
}

.words-02{
  width: 100%;
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-right: 0;
}

.h2-title._a{
  width: 32rem;
}
.h2-title._a,.flort_left._a{
  color: rgba(150, 190, 51, 1.0);
}

.h2-title._b{
  width: 20rem;
}

.h2-title._b,.flort_left._b{
  color: rgba(189, 174, 0, 1.0);
}

.h2-title._c{
  width: 42rem;
}

.h2-title._c,.flort_left._c{
  color: rgba(232, 111, 115, 1.0);
}

.h2-title._d{
  width: 50rem;
}

.h2-title._d,.flort_left._d{
  color: rgba(0, 58, 141, 1.0);
}

.san-button._a{
  position: relative;
  bottom: 0;
  right: 0;
  width: 100%;
}

.arrow._a{
  bottom: 2.2rem;
}

/*———————————モーダル ウィンドウ設定———————————*/

.modalArea_01{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal_Bg {
  width: 100%;
  height: 100%;
  background: rgba(30,30,30,0.9);
}

.modal_Wrapper{
  position: fixed;
  top: 0%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  display: flex;
  width: 80%;
  height: auto;
  overflow: auto;
  /*max-width: 50rem;
  height: 62rem;*/
  padding: 12rem 3rem 0;
  /*background-color: #fff;*/
}

.modalContents{
  position: relative;
  overflow: auto;
  padding: 8rem 4rem;
  background: rgba(255,255,255,1.0);
}

.openModal{
  text-align: center;
}

.closeModal{
  position: absolute;
  top: 3%;
  right: 3%;
  cursor: pointer;
}

.closeModal p{
  font-size: 1.4rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}

.modalCloss01,.modalCloss02{
  display: inline-block;
  position: absolute;
  top: 2rem;
  right: 0;
  width: 2.8rem;
  height: 0.1rem;
  background-color: #3E3E3E;
}

.modalCloss01{
  transform: rotate(30deg);
}
.modalCloss02{
  transform: rotate(-30deg);
}


/*——————————————————————
————————————————————————
会社概要ページ
————————————————————————
——————————————————————*/

.first_copy,.left-title,.sub_text{
  font-size: 2rem;
  font-weight: 600;
}

.first_copy{
  line-height: 4.6rem;
  letter-spacing: 0.2rem;
}

/*——————————————————————
tableの基礎設定
——————————————————————*/

.tables_item td{
  font-size: 1.8rem;
  font-weight: 300;
  padding: 1.6rem;
}

.table-items{
  border-bottom: solid #B7B7B7 1px;
}
/*表組の一番上に線 (複数下線をborder-bottomで指定している場合 border-topの場合はすべて逆指示+last-childに)*/
.table-items:first-child{
  border-top: solid #B7B7B7 2.6px;
}

.table-items:last-child{
  border-bottom: solid #B7B7B7 2.6px;
}

.tables_item._01 tr{
  width: 100%;
}
/*下2行を消すと天地左右中央設定解除*/
.tables_item._01 .item_left{
  width: 20%;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}

.tables_item._01 .item_right{
  table-layout: fixed;
  line-height: 150%;
}

.tables_item._02 .item_center{
  width: 84rem;
  text-align: center;
}

/*——————————————————————
————————————————————————
プライバシーポリシーページ
————————————————————————
——————————————————————*/

.title_copy,.sub_text{
  width: 100%;
}

.title_copy{
  background: rgba(124, 124, 124, 1.0);
  padding: 1rem;
  text-align: center;
  font-size: 2rem;
  color: rgba(255, 255, 255, 1.0);
}

.sub_text{
  font-weight: lighter;
  line-height: 4.6rem;
}

/*——————————————————————
display: none
——————————————————————*/
/* 
<br class>などに対して
基本的に (max-width:767px)は sp-only
(max-width:767px)以下 sp-only_02で使用すること
*/
.abc_icon._02,.form3,.leads._02,.sp-only_01,.sp-only_02,.sp_arrow{
  display: none;
}
