@charset "utf-8";

/**********************************************************************/
/*	共通
/**********************************************************************/

body{
	background-color: var(--c_almostwhite);
}
header{
	background-color: rgba(249, 249, 249, .6);
}
.pages{
	padding-bottom: 0;
}

/**********************************************************************/
/*  主な事例
/**********************************************************************/

section.case{
  padding-bottom: 10em;
}
section.case .heading{
  margin-bottom: 3em;
}
section.case .heading .title .en{
  margin-bottom: .5em;
  color: var(--c_slightgray);
}
section.case .heading .title .ja{

}
@media screen and (max-width: 520px){
  section.case{
  	padding-bottom: 5em;
  }
}

/*--------------------------------------------------------------------*/

section.case .bodying .item{
  padding: 2em 4em;
	justify-content: space-around;
	margin-bottom: 4em;
}
section.case .bodying .item_box:nth-of-type(even) .item{
	flex-direction: row-reverse;
}
section.case .bodying .item .image .box{
  width: 430px;
  height: 740px;
  background-color: #fff;
}
section.case .bodying .item .image .box img{
  object-fit: contain;
}
section.case .bodying .item .info{
  width: 32em;
}
section.case .bodying .item .info .cats{
  font-size: 81.25%;
  margin-bottom: 2em;
  font-weight: 600;
}
section.case .bodying .item .info .cats span{
  margin-right: 2em;
}
section.case .bodying .item .info .company{
  font-size: 162.5%;
  margin-bottom: 1em;
}
section.case .bodying .item .info .title{
  font-size: 125%;
  margin-bottom: 1em;
}
section.case .bodying .item .info .description{
  font-weight: 600;
}
section.case .bodying .item .info .description p + p{
  margin-top: 1.75em;
}
section.case .bodying .item .info .details{
  font-weight: 600;
  margin-top: 2em;
}
section.case .bodying .item .info .details .table{
  display: grid;
  grid-template-columns: auto 1fr;
  border-top: 1px solid var(--border_gray);
}
section.case .bodying .item .info .details .row{
  
}
section.case .bodying .item .info .details .rh,
section.case .bodying .item .info .details .rd{
  font-size: 81.25%;
  padding: .75em 1em;
  border-bottom: 1px solid var(--border_gray);
}
section.case .bodying .item .info .details .rh{
  padding-left: 0;
  padding-right: 2em;
}
section.case .bodying .item .info .details .rd{
  flex: 1;
}
@media screen and (max-width: 520px){
  section.case .bodying .item{
    padding: 0 6vw;
    gap: 2em;
    flex-direction: column;
    font-feature-settings: "palt";
		margin-bottom: 6em;
  }
	section.case .bodying .item_box:nth-of-type(even) .item{
    flex-direction: column;
	}
  section.case .bodying .item .image .box{
    width: 100%;
    height: 50vw;
    background-color: #fff;
  }
  section.case .bodying .item .info{
    width: auto;
  }
  section.case .bodying .item .info .company{
    font-size: 150%;
  }
  section.case .bodying .item .info .details .rh,
  section.case .bodying .item .info .details .rd{
    font-size: clamp(1.2rem, 3.3vw, 1.6rem);
    padding: .75em 1em;
    border-bottom: 1px solid var(--border_gray);
  }
}

/*--------------------------------------------------------------------*/

section.case .bodying .link{
  margin-top: 3em;
}

/*--------------------------------------------------------------------*/

.the_content{
	font-size: 100%;
	line-height: 1.75;
}
.the_content h1,
.the_content h2,
.the_content h3,
.the_content h4{
	font-weight: bold !important;
	font-size: 120%;
}