@charset "utf-8";
.l-header{
	z-index: 12000;
}
.l-footer{
	position: relative;
	z-index: 10000;
}

.l-content {
    margin-bottom: -80rem;
    padding-bottom: 0;
}
.mvv {
  margin-bottom: 80rem;
}
.business{
	padding-top: 100rem;
}


/* mvv
-----------------------------------------------------------------*/
.mvv__item {
    display: flex;
		flex-direction: row;
		justify-content: space-between;
    align-items: center;
		grid-gap: 0;
    padding: 0;
		max-width: 1200rem;
		margin-inline: auto;
}
.mvv__item .mvv__item--title{
	flex-shrink: 0;
	width: 450rem;
}
.mvv__item .mvv__item--img{
	margin: 0;
}
.mvv__item .mvv__txt-area{
	width: calc(100% - 480rem);
}
.mvv__item .mvv__item--title--ja{
	margin-bottom: 30rem;
}

/* business_intro
-----------------------------------------------------------------*/
.main_ttl{
    display: grid;
    grid-gap: 30rem;
}
.main_ttl h2{
    font-size: clamp(24px, 36rem, 36rem);
    font-weight: 600;
    display: flex;
    gap: 0 10rem;
}
.main_ttl h2 .icon{
    max-width: 38rem;
    width: 4.1%;
}
.business_intro{
    font-size: 20rem;
    font-weight: 400;
    /* margin-bottom: 200rem; */
}
.main_ttl_txt{
    font-size: clamp(18px, 16rem, 20rem);
    font-weight: 400;
}
.business_intro .main_ttl_txt,
.equipment .main_ttl_txt,
.flow .main_ttl_txt{
    max-width: 800px;
}


.business_intro_img_wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 真ん中に配置 */
  width: 50%; /* 横幅の80% */
  aspect-ratio: 1 / 1; /* 正円を保つ */
  background: rgba(255, 102, 0, 0.1);
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 192, 0, .1) 100%);
  border-radius: 50%; /* 円形にする */
  z-index: 0; /* 画像の下に配置 */
}


.business_intro_img_wrap {
  position: relative;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10vw 0; 
  box-sizing: border-box;
  margin: 180rem auto 0;
}

/* 背景の円 */
.business_intro_img_wrap::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  aspect-ratio: 1 / 1;
  background-color: #fff4e0;
  border-radius: 50%;
  z-index: 0;
}

.business_intro_img_wrap ul {
  display: flex;
  align-items: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.business_intro_img_wrap li {
      width: 50%;
    flex-shrink: 0;
    position: relative;
    --offset: 11vw;
    margin-left: -21%;
    cursor: pointer;
}

/* 1番目 (03) : 一番左・一番【上】 */
.business_intro_img_wrap li:nth-child(1) {
  margin-left: 0;
  transform: translateY(0);
  z-index: 3; 
}

/* 2番目 (02) : 真ん中・中間の高さ */
.business_intro_img_wrap li:nth-child(2) {
  transform: translateY(calc(var(--offset) * -1));
  z-index: 2;
}

/* 3番目 (01) : 一番右・一番【下】 */
.business_intro_img_wrap li:nth-child(3) {
  transform: translateY(calc(var(--offset) * -2));
  z-index: 1;
}

/* 画像サイズ調整 */
.business_intro_img_wrap li img {
  width: 100%;
  height: auto;
  display: block;
}
.business_intro_img_wrap li p.img img {
  width: 100%;
  height: auto;
  display: block;
  /* 左上から影を下ろす設定（右に10px、下に10px、ぼかし15px、透明度のある黒） */
      filter: drop-shadow(23px 3px 9px rgba(98, 105, 145, 0.5));
}

/* 吹き出しの微調整 */
.business_intro_img_wrap li p.icon {
  position: absolute;
  top: unset;
  bottom: 60%;
  right: -5%;
  width: 55%;
}

.business_intro_img_wrap .icon{
    position: absolute;
    top: 0;
    left: 0;
    max-width: 28%;
}
.fukidashi {
    position: absolute;
    animation: fuwafuwa 2s ease-in-out infinite alternate;
}
@keyframes fuwafuwa {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px); 
    }
}


/* --- 基本設定 --- */
.business_intro_img_wrap li .fukidashi {
  opacity: 0; /* 通常時は非表示 */
  transform: translateY(10px);
  transition: all 0.5s ease; /* ふわっと出す */
  pointer-events: none;
}

/* --- active時の挙動 --- */

/* 1. 吹き出しを表示 */
.business_intro_img_wrap li.active .fukidashi {
  opacity: 1;
  transform: translateY(0);
}

/* 2. 画像にオレンジの濃い影を追加 */
.business_intro_img_wrap li.active p.img img {
  /* 今の青い影(::after)とは別に、本体に直接オレンジの影を当てる */
  filter: drop-shadow(23px 3px 9px rgba(255, 140, 0, 0.5));
  /* 少し浮き上がらせる演出を入れるとよりactive感が出ます */
  transform: scale(1.05);
  transition: all 0.5s ease;
}

/* 影(::after)も画像と一緒に動くように調整 */
.business_intro_img_wrap li.active p.img::after {
  transform: scale(1.05);
  transition: all 0.5s ease;
}


/* equipment
-----------------------------------------------------------------*/
.equipment{
	margin-top: 80rem;
  padding-top: 100rem;
}
.main_txt_wrap{
    margin: 100rem auto;
}
.main_txt_wrap p{
    text-align: center;
    font-size: 8.2svw;
    line-height: 1;
    white-space: nowrap;
}

.service_wrap{
    margin: 100rem auto 50rem;
    display: grid;
    grid-gap: 100rem 0;
}
.service_tab_wrap{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0 20rem;
}
.service_tab_wrap li{
    flex: 1;
}
.service_tab_wrap li a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15rem 0;
		height: 100%;
    border: 1px solid #bdbdbd;
    padding: 40rem 20rem;
    border-radius: 30rem;
    transition: .3s;
    pointer-events: none;
}
.service_tab_wrap li a .icon{
   height: 120rem;
   margin-bottom: 10rem;
}
.service_tab_wrap li a .icon img{
    height: 100%;  /* 親要素（.icon）の高さに合わせる */
    width: auto;   /* 横幅は自動計算でアスペクト比を維持 */
}
.service_tab_wrap li a .en_ttl{
    text-align: center;
    color: #ff6600;
    font-size: 14rem;
}
.service_tab_wrap li a .ja_ttl{
    text-align: center;
    font-size: 24rem;
    font-weight: 600;
    line-height: 1;
}

/*
.service_tab_arrow {
    position: relative;
    width: 20px;
    height: 10px;
    margin: 30rem auto 0;
}
.service_tab_arrow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    transition: .3s;
}
*/

@media (hover: hover) {
    .service_tab_wrap li a:hover{
        border: 1px solid #fff;
        box-shadow:2rem 2rem 10rem rgba(255,102,0,0.3);
    }
    .service_tab_wrap li a:hover .service_tab_arrow::after{
        border-right: 2px solid #ff6600;
    border-bottom: 2px solid #ff6600;
    }
}


/* strength_intro
-----------------------------------------------------------------*/
.strength_intro{
		padding-top: 50rem;
    font-size: 20rem;
    font-weight: 400;
    margin-bottom: 50rem;
    overflow: hidden;
    position: relative;
}
.strength_intro::before{
    position: absolute;
    top: 12rem;
    left: 50%;
    transform: translateX(-55%);
    z-index: 1;
    display: block;
    content: "";
    background: url(../img/strength/strength_intro_bg_pc.png) no-repeat;
    width: 80%;
    height: 100%;
    background-size: contain;
}
.main_ttl_txt{
    font-size: clamp(18px, 16rem, 20rem);
    font-weight: 400;
}
.strength_intro .main_ttl_txt{
    max-width: 800px;
}

.strength_intro_img {
    margin: 120rem auto 160rem;
    overflow: hidden; /* これで外側を隠す */
    width: 100%;      /* 画面幅いっぱいに指定（重要） */
    position: relative;
    z-index: 2;
}

.strength_intro_img ul {
    display: flex;
    gap: 80rem;
    width: max-content; /* 中身の合計幅を維持する（重要） */
    list-style: none;
    padding: 0;
    margin: 0;
    
    /* アニメーション（前回の内容） */
    animation: loop-scroll 40s linear infinite;
}

.strength_intro_img ul li {
    width: 300px;
    flex-shrink: 0; /* 画像が縮まないように固定する（重要） */
}
.strength_intro_img ul li:nth-of-type(even) {
    margin-top: 100rem;
}

.strength_intro_img ul li img {
    width: 100%;
    display: block;
}

@keyframes loop-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* リストを2倍に並べた場合 */
}


/* company_outline
-----------------------------------------------------------------*/
.company_outline{
  padding: 120rem 0 100rem;
}
.c-subpage__content--block{
    background: url(../img/privacypolicy/mv.webp);
    background-color: #F3F4F6;
    background-size: 43%;
    background-position: right -200px top -30px;
    background-repeat: no-repeat;
}
.c-subpage__content--block h2{
  margin-bottom: 80rem;  
}
.content_wrap{
    display: grid;
    grid-gap: 40rem 0;
}
.contents_txt{
    font-size: 18rem;
    font-weight: 500;
}
.white_bg{
    background: #fff;
    padding: 80rem;
    border-radius: 50rem;
    display: grid;
    grid-gap: 50rem 0;
}
.white_bg dl{
    display: flex;
    align-items: flex-start;
    gap: 0 40rem;
    padding: 0;
}
.white_bg dl:not(:last-child){
    border-bottom: 1px solid #BDBDBD;
    padding: 0 0 50rem;
}
.white_bg dl dt{
    font-size: 18rem;
    font-weight: 600;
    flex-basis: 28%;
    display: flex;
    flex-wrap: wrap;
    gap: 0 6rem;
}
.white_bg dl dt small{
    flex-basis: 100%;
    padding-top: 5rem;
    font-size: 18rem;
}
.white_bg dl dd{
    flex-basis: 70%;
}
.white_bg dl dd span{
    display: flex;
    font-size: 18rem;
    font-weight: 500;
}
.white_bg dl dd span small{
    display: block;
    padding-top: 5rem;
    padding-right: 5rem;
}
.white_bg dl dd span.margint40{
    margin-top: 40rem;
}
.white_bg dl dd .flex{
	display: grid;
	gap: 20rem;
}
.white_bg dl dd span {
    font-size: 18rem;
    font-weight: 500;
}
.white_bg dl dd ul{
    display: grid;
    grid-gap: 5rem 0;
}
.white_bg dl dd ul li,
.white_bg li{
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0 6rem;
    font-size: 18rem;
    font-weight: 500;
}
.white_bg dl dd ul li::before,
.white_bg li::before{
    content: '●';
    display: block;
    color: #FF6600;
    font-size: 60%;
    line-height: 1;
        padding-top: 11rem;
}
.white_bg dl dd span.ttl{
    font-size: 18rem;
    font-weight: 600;
    margin-top: 30rem;
    margin-bottom: 15rem;
}
.date p{
    text-align: right;
    font-size: 18rem;
    font-weight: 500;
}


/* company_success
-----------------------------------------------------------------*/
.company_success{
  padding: 100rem 0 280rem;
}












/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media (max-width: 920px) {

/* mvv
-----------------------------------------------------------------*/
	.mvv__item {
			display: block;
			padding: 0;
	}
	.mvv__item .mvv__item--title{
		flex-shrink: 0;
		width: auto;
	}
	.mvv__item .mvv__item--img{
		margin: 0 auto;
	}
	.mvv__item .mvv__txt-area{
		width: auto;
	}
	.mvv__item .mvv__item--title--ja{
		margin-bottom: 20rem;
	}


}


@media (max-width: 768px) {


/* mvv
-----------------------------------------------------------------*/
.mvv{
	margin-bottom: 0;
}
.mvv__body{
	height: auto;
}
.mvv__body--sticky {
    position: relative;
		display: block;
}
.mvv__item{
	display: block;
	opacity: 1;
	visibility: visible;
	height: auto;
	padding: 60rem 0 40rem;
}
  
/* business_intro
-----------------------------------------------------------------*/
  .main_ttl{
      display: grid;
      grid-gap: 30rem;
  }
  .main_ttl h2{
      font-size: 24rem;
      line-height: 1.8;
      font-weight: 600;
      display: flex;
      gap: 0 10rem;
  }
  .main_ttl h2 .icon{
      max-width: 38rem;
      width: 10%;
  }
  .business_intro{
      font-size: 14rem;
      line-height: 1.8;
      font-weight: 400;
      /* margin-bottom: 100rem; */
  }
  .main_ttl_txt{
      font-size: 14rem;
      font-weight: 400;
  }
  .business_intro .main_ttl_txt,
  .equipment .main_ttl_txt,
  .flow .main_ttl_txt{
      max-width: 465px;
  }
  .business_intro_img_wrap{
      position: relative;
      width: 100%;
      margin: 60rem auto 0;
  }
  .business_intro_img_wrap ul {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 80rem 0;
      list-style: none;
      padding: 0;
      margin: 0;
      width: 100%;
      justify-content: center;
      position: relative;
      z-index: 1;
  }
  .business_intro_img_wrap li {
      --offset: 0;
      width: 80%;
      margin: auto;
      position: relative;
  }
  .business_intro_img_wrap li::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      aspect-ratio: 1 / 1;
      background-color: #fff4e0;
      border-radius: 50%;
      z-index: 0;
  }
  .business_intro_img_wrap li:nth-child(1) {
      margin: auto;
  }
  .business_intro_img_wrap li:nth-child(2) {
      transform: translateY(0);
      z-index: 2;
      margin-top: 60rem;
  }
  .business_intro_img_wrap li:nth-child(3) {
      transform: translateY(0);
      z-index: 1;
      margin-top: 30rem;
  }
  .business_intro_img_wrap::before {
      width: 100%;
      display: none;
  }
  .business_intro_img_wrap li p.img img {
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(5px 3px 9px rgba(98, 105, 145, 0.5));
  }
  .business_intro_img_wrap li.active p.img img {
    filter: drop-shadow(5px 3px 9px rgba(255, 140, 0, 0.5));
    transform: scale(1.05);
    transition: all 0.5s ease;
  }
  
  .business_intro_img_wrap li p.icon img{width: 150%;}
  .business_intro_img_wrap li p.icon {
      bottom: 75%;
  }
  
      .fukidashi {
          position: absolute;
          left: 0%;
          top: 11%;
          width: 20%;
          animation: fuwafuwa 2s ease-in-out infinite alternate;
      }

  .business_intro_img_wrap li .fukidashi{
      opacity: 1;
  }
  
  .business_intro_img_wrap .js-fade {
    opacity: 0;
    transform: scale(0.1) !important;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  
  /* 発火時：不透明にして元の大きさに */
  .business_intro_img_wrap .js-fade.js-fade-on {
    opacity: 1;
    transform: scale(1) !important;
  }
  

/* equipment
-----------------------------------------------------------------*/
.equipment{
    padding-top: 40rem;
}
.main_txt_wrap{
    margin: 50rem auto 0;
}
.main_txt_wrap p{
    text-align: center;
    font-size: 12.5svw;
    line-height: 1;
    white-space: nowrap;
}

.service_wrap{
    margin: 50rem auto;
    display: grid;
    grid-gap: 50rem 0;
}
.service_tab_wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10rem;
}
.service_tab_wrap li{
    flex-basis: 45%;
}
.service_tab_wrap li a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15rem 0;
    border: 1px solid #bdbdbd;
    padding: 30rem 5rem;
    border-radius: 30rem;
    transition: .3s;
}
.service_tab_wrap li a .icon{
   height: 60rem;
   margin-bottom: 10rem;
}
.service_tab_wrap li a .icon img{
    height: 100%;  /* 親要素（.icon）の高さに合わせる */
    width: auto;   /* 横幅は自動計算でアスペクト比を維持 */
}
.service_tab_wrap li a .en_ttl{
    text-align: center;
    color: #ff6600;
    font-size: 15rem;
}
.service_tab_wrap li a .ja_ttl{
    text-align: center;
    font-size: 20rem;
    font-weight: 600;
    line-height: 1;
}
/*.service_tab_arrow {
    position: relative;
    width: 20px;
    height: 10px;
    margin: 0 auto 0;
}

.service_tab_arrow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    transition: .3s;
}
*/


/* strength_intro
-----------------------------------------------------------------*/
  .strength_intro{
			padding-top: 30rem;
      font-size: 14rem;
      line-height: 1.8;
      font-weight: 400;
      margin-bottom: 0;
  }
  .strength_intro .main_ttl_txt{
      max-width: 465px;
  }
  .main_txt_wrap{
      margin: 50rem auto 0;
  }
  .main_txt_wrap p{
      text-align: center;
      font-size: 12.5svw;
      line-height: 1;
      white-space: nowrap;
  }
  .strength_intro::before{
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      z-index: 1;
      display: block;
      content: "";
      background: url(../img/strength/strength_intro_bg_sp.png) no-repeat;
      width: 100%;
      height: 100%;
      background-size: cover;
  }
  
  .strength_intro_img {
      margin: 50rem auto 100rem;
      overflow: hidden; /* これで外側を隠す */
      width: 100%;      /* 画面幅いっぱいに指定（重要） */
      position: relative;
      z-index: 2;
  }
  
  .strength_intro_img ul {
      display: flex;
      gap: 20rem;
      width: max-content; /* 中身の合計幅を維持する（重要） */
      list-style: none;
      padding: 0;
      margin: 0;
      
      /* アニメーション（前回の内容） */
      animation: loop-scroll 30s linear infinite;
  }
  
  .strength_intro_img ul li {
      width: 150px;
      flex-shrink: 0; /* 画像が縮まないように固定する（重要） */
  }
  .strength_intro_img ul li:nth-of-type(even) {
      margin-top: 50rem;
  }
  
  .strength_intro_img ul li img {
      width: 100%;
      display: block;
  }

/* company_outline
-----------------------------------------------------------------*/
  .company_outline{
    padding: 60rem 0 80rem;
  }
  .c-subpage__content--block{
      background: url(../img/privacypolicy/mv.webp);
      background-color: #F3F4F6;
      background-size: 43%;
      background-position: right -200px top -30px;
      background-repeat: no-repeat;
  }
  .c-subpage__content--block h2{
    margin-bottom: 40rem;  
  }
  .content_wrap{
      grid-gap: 30rem 0;
  }
  .contents_txt{
      font-size: 14rem;
      font-weight: 500;
  }
  .white_bg{
      padding: 40rem 20rem;
      border-radius: 30rem;
      display: grid;
      grid-gap: 30rem 0;
  }
  .white_bg dl{
      display: flex;
      flex-direction: column;
      gap: 20rem 0 ;
      padding: 0;
  }
  .white_bg dl:not(:last-child){
      border-bottom: 1px solid #BDBDBD;
      padding: 0 0 30rem;
  }
  .white_bg dl dt{
      font-size: 14rem;
      font-weight: 600;
      flex-basis: 28%;
      display: flex;
      gap: 0 6rem;
  }
  .white_bg dl dd{
      flex-basis: 70%;
  }
  .white_bg dl dd span{
      display: flex;
      font-size: 14rem;
      font-weight: 500;
  }
  .white_bg dl dd span small{
      display: block;
      padding-top: 2rem;
      padding-right: 5rem;
  }
  .white_bg dl dd span.margint40{
      margin-top: 40rem;
  }
  .white_bg dl dd ul{
      display: grid;
      grid-gap: 5rem 0;
  }
  .white_bg dl dd ul li,
  .white_bg li{
      position: relative;
      display: flex;
      align-items: flex-start;
      gap: 0 6rem;
      font-size: 13rem;
      font-weight: 500;
  }
  .white_bg dl dd ul li::before,
  .white_bg li::before{
      content: '●';
      display: block;
      color: #FF6600;
      font-size: 60%;
      line-height: 1;
      padding-top: 7rem;
  }
  .white_bg dl dd span.ttl{
      font-size: 14rem;
      font-weight: 600;
      margin-top: 30rem;
      margin-bottom: 15rem;
  }
  .date p{
      text-align: right;
      font-size: 13rem;
      font-weight: 500;
  }

/* company_success
-----------------------------------------------------------------*/
  .company_success{
    padding: 40rem 0 110rem;
  }  

}

