@charset "utf-8";
/* CSS Document */

.faq_b .box .qbox {

    background-color: #F9F9F9;
}
.company_d {
  width: 100%;
    max-width: 1080px;
      margin: 0 auto;
}

.company_d .company-wrap {
  width: 100%;
  max-width: none;

}

.company_d .company-wrap .item {
  display: grid;
  grid-template-columns: 220px 1fr; /* ←左幅固定で揃える */
  align-items: center;
  column-gap: clamp(20px, 4vw, 60px);
  padding: clamp(18px, 2.2vw, 26px) clamp(18px, 2vw, 24px);
}
body.gjs-dashed .gallary .swiper-slide{
  display:inline-block;
  width: 300px;
}
/* 交互背景（行全体） */
.company_d .company-wrap .item:nth-child(odd) {
  background: #f2f2f2;
}
.company_d .company-wrap .item:nth-child(even) {
  background: #fff;
}

/* 左：項目名（中央寄せで見本っぽく） */
.company_d .company-wrap .item .label {
  margin: 0;
  text-align: center;
}

/* 右：内容 */
.company_d .company-wrap .item .content {
  text-align: left;
}

.company_d .company-wrap .item .content p {
  margin: 0;
  line-height: 1.9;
}

/* 複数行の間隔 */
.company_d .company-wrap .item .content p + p {
  margin-top: 6px;
}

/* 「・」の位置を揃える（文章に ・ が入ってる場合でもガタつきにくい） */
.company_d .company-wrap .item .content p {
  padding-left: 0.8em;
  text-indent: -0.8em;
}

/* スマホ：縦並び */
@media (max-width: 576px) {
  .company_d .company-wrap .item {
    grid-template-columns: 1fr;
    row-gap: 10px;
    align-items: start;
  }

  .company_d .company-wrap .item .label {
    text-align: left;
  }

  .company_d .company-wrap .item .content p {
    padding-left: 0;   /* スマホは普通でOK */
    text-indent: 0;
  }
}
.staffbox .swiper-container .boxitem {
  --gap: clamp(60px, 6vw, 80px);
  gap: var(--gap);
    max-width: 1000px;
}

.staffbox .swiper-container .boxitem .imgbox {
  width: calc(50% - (var(--gap) / 2));
  max-width: 400px;
}

.staffbox .swiper-container .boxitem .txtbox {
  width: calc(50% - (var(--gap) / 2));
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 768px) {

  .staffbox .swiper-container .boxitem {
    flex-direction: column;
    gap: 20px;
       max-width: 600px;
  }
.staffbox .swiper-container .boxitem .imgbox {
    width: 100%;
}
    .staffbox .swiper-container .boxitem .txtbox {
 width: 90%;
}
  .staffbox .swiper-container .boxitem .imgbox img {
    height: 450px; 
         
    object-fit: cover;
  }
}
@media (max-width: 576px) {

  .staffbox .swiper-container .boxitem {
    flex-direction: column;
    gap: 20px;
       max-width: 350px;
  }
}

.needs_i1{
  width: min(900px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3.5vw, 36px);
}

.needs_i1 .need_item{
  display: grid;
  grid-template-columns: clamp(90px, 14vw, 140px) 1fr;
  align-items: center;
}

/* ✅ 画像：正円（imgbox） */
.needs_i1 .imgbox{
  width: clamp(100px, 14vw, 140px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
       z-index: 2;
    position: relative;
}

.needs_i1 .imgbox img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ✅ 青いバー（txtbox） */
.needs_i1 .txtbox{

  background: linear-gradient(90deg, #1667b8, #6bb9e2);

  display: flex;
  align-items: center;
  padding: clamp(16px, 2.2vw, 22px) clamp(16px, 2.2vw, 22px) clamp(16px, 2.2vw, 22px) clamp(30px, 4vw, 60px);

    margin-left: -20px;
  color: #fff;
    z-index: 0;
}

/* 番号（pで作る） */
.needs_i1 .txtbox .num{
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  margin-right: 14px;
}

/* 文 */
.needs_i1 .txtbox .txt{
  margin: 0;
  font-weight: 500;
  line-height: 1.2;
}

/* ✅ 段差（画像っぽく交互にずらす） */
.needs_i1 .need_item:nth-child(even){
  transform: translateX(60px);
}

/* SPは段差やめる */
@media (max-width: 768px){
  .needs_i1 .need_item{
    grid-template-columns: 90px 1fr;
    transform: none !important;
  }

.needs_i1 .txtbox {
    margin-left: -10px;}
 
}
@media (max-width: 576px){
.needs_i1 .txtbox .txt {
font-size: 16px;
}
}



.timeline_i1{
  width: min(1100px, 100%);
  margin: 0 auto;
  position: relative;
}

/* 中央の縦ライン */
.timeline_i1::before{
  content:"";
  position:absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #222;
  transform: translateX(-50%);
}

/* 1アイテム（左右2カラム） */
.timeline_i1 .titem{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  margin: clamp(22px, 4vw, 60px) 0;
}

/* 左右配置（中央線に寄せる） */
.timeline_i1 .titem.left .txtbox{
  grid-column: 1;
  justify-self: end; /* 中央線側へ */
  text-align: left;
}

.timeline_i1 .titem.right .txtbox{
  grid-column: 2;
  justify-self: start; /* 中央線側へ */
  text-align: left;
}

/* ✅ txtbox幅：2つ並んでもはみ出さない */
.timeline_i1 .titem .txtbox{
  width: min(440px, 100%);
}

/* ✅ 余計なmarginズラしはやめる */
.timeline_i1 .titem.right .txtbox p,
.timeline_i1 .titem.right .txtbox h3{
  margin-left: 0;
}
.timeline_i1 .titem.left .txtbox p,
.timeline_i1 .titem.left .txtbox h3{
  margin-right: 0;
}

/* ✅ 中央線との距離は padding で作る（はみ出さない） */
/*
.timeline_i1 .titem.left .txtbox{
  padding-right: clamp(14px, 2vw, 28px);
}
.timeline_i1 .titem.right .txtbox{
  padding-left: clamp(14px, 2vw, 28px);
}
*/
/* time */
.timeline_i1 .titem.left .txtbox p,
.timeline_i1 .titem.left .txtbox h3{
  padding-right: clamp(14px, 2vw, 28px);
}
.timeline_i1 .titem.right .txtbox p,
.timeline_i1 .titem.right .txtbox h3{
  padding-left: clamp(14px, 2vw, 28px);
}
.timeline_i1 .time{
  margin: 0 0 6px;
  font-weight: 700;
}

/* タイトル */
.timeline_i1 h3.default_title2{
  margin: 0;
}

/* 下線 */
.timeline_i1 .line{
  height: 2px;
  background: #222;
  margin: 12px 0 14px;
  width: 100%;
}

/* 本文 */
.timeline_i1 p.default_txt2{
  margin: 0;
  line-height: 1.9;
}

/* ✅ アイコン（大きいけど暴れない） */
.timeline_i1 .icon{
  position: absolute;
  top: 8px;
  width: clamp(90px, 12vw, 160px);
  height: clamp(90px, 12vw, 160px);
}

.timeline_i1 .icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ✅ 左右アイコン：飛び出し過ぎない */
.timeline_i1 .titem.left .icon{
  left: 0;
  transform: translateX(-60%);
}

.timeline_i1 .titem.right .icon{
  right: 0;
  transform: translateX(60%);
}

@media (max-width: 1280px){

.timeline_i1 .icon {
top: clamp(-45px, -3vw, 30px);
}
  
.timeline_i1 .titem.left .icon{
  left: 50%;
  transform: translateX(-100%);
}
    .timeline_i1 .titem.right .icon {
    right: 0;
    transform: translateX(40%);
}
}
/*
@media (max-width: 768px){
  .timeline_i1::before{
    display:none;
  }

  .timeline_i1 .titem{
    grid-template-columns: 1fr;
    margin: 40px 0;
  }

  .timeline_i1 .titem.left .txtbox,
  .timeline_i1 .titem.right .txtbox{
    grid-column: 1;
    width: 100%;
    padding: 0;
  }

  .timeline_i1 .icon{
    position: static;

    transform: none !important;
    width: 120px;
    height: 120px;
}
      
  .timeline_i1 .line{
    width: 100%;
  }
}
*/
.titlebox1{
    margin-bottom: 50px;
}
/* 全体：画像の上にテキストを重ねる */
.onlineshop_i{
  position: relative;
  overflow: hidden;
    width: 100%;
       height: auto;
}


.onlineshop_i::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(202, 222, 242, 1) 0%,
    rgba(76, 199, 215, 1) 35%,
    rgba(47, 139, 230, 1) 70%,
    rgba(10, 28, 90, 1) 100%
  );
  mix-blend-mode: overlay;
  opacity: 0.7;
  z-index: 1;
}
.onlineshop_i::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
/* テキストボックスを上に重ねる */
.onlineshop_i .txtbox{
position: relative;
  z-index: 5;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

 padding: clamp(50px, 6vw, 130px) clamp(20px, 4vw, 60px) clamp(70px, 8vw, 180px);

  color: #fff;
}

/* タイトル */
.onlineshop_i .txtbox .ttl{
  margin: 0 0 18px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* 本文 */
.onlineshop_i .txtbox p{
  margin: 0;
  line-height: 2;
  opacity: 0.95;
  max-width: 900px;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
  .timeline_i1::before{
    display:none;
  }

  .timeline_i1 .titem{
	  width: 70%;
    grid-template-columns: 1fr;
    margin: 40px 0;
  }
	.timeline_i1 .titem.left{
		margin-left: 5%;
	}
	.timeline_i1 .titem.right{
		margin-left: 25%;
	}
  .timeline_i1 .titem.left .txtbox,
  .timeline_i1 .titem.right .txtbox{
    grid-column: 1;
    width: 100%;
    padding: 0;
  }

  .timeline_i1 .icon{
    position: static;
margin: 0 auto;
    transform: none !important;
    width: 120px;
    height: 120px;
}
      
  .timeline_i1 .line{
    width: 100%;
  }
.timeline_i1 .titem.left .txtbox p,
.timeline_i1 .titem.left .txtbox h3{
  padding-right: 0;
}
.timeline_i1 .titem.right .txtbox p,
.timeline_i1 .titem.right .txtbox h3{
  padding-left: 0;
}
	.timeline_i1 .titem .txtbox p.time,
.timeline_i1 .titem .txtbox h3{
  text-align: center;
}

}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

