@charset "UTF-8";


.hero {
	position: relative;
	width: 100%;
	min-height: 95vh;

	/* 背景画像 */
	background-image:
		linear-gradient(
			rgba(255, 255, 255, 0.45),
			rgba(255, 255, 255, 0.45)
		),
		url("../../images/service/artemis-volume/mainvisual.jpg");

	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;

	/* titleを上下中央に */
	display: flex;
	align-items: center;
	
}

/* タイトルエリア */
.hero .title {
	width: min(1200px, 90%);
	margin: 0 auto;
	text-align: left;
	position: relative;
	z-index: 2;
	margin-top: -100px;
}



.hero .logo img {
	display: block;
	width: 100%;
	height: auto;
}

/* メインコピー */
.hero h2 {
	margin: 0 0 25px;
	font-size: clamp(3rem, 5vw, 6rem);
	line-height: 1.3;
  font-family: "Noto Serif JP", serif;
	font-weight: 400;
	color:#000;
	letter-spacing: 0.5rem;
}

.hero h2 span {
  display: block;
	font-size: clamp(1.8rem, 3.4vw, 3.4rem);
}



/* 説明 */
.hero h3 {
	margin: 0;
	font-size: clamp(1.4rem, 1.5vw, 1.8rem);
	line-height: 2;
	font-weight: 400;
	width: 50%;
  font-family: "Noto Serif JP", serif;
	color:#000;
}


#section-01 .text .eng {
  font-family: "Noto Serif JP", serif;
	color:#716caa;
	font-size: clamp(1.4rem, 1.6vw, 2rem);
	letter-spacing: 0.08em;

}

#section-01 .content h2 {
  margin: 0 auto;
  text-align: center;
	font-size: clamp(2.4rem, 3vw,4rem);
  font-family: "Noto Serif JP", serif;
	font-weight: 400;
	margin-bottom: 48px;
}

#section-01 .catch-column {
	display: grid;
  grid-template-columns: 1fr 40%;
  align-items: end;
  max-width: 80%;
  gap: 24px;
  margin: 0 auto;
 	margin-bottom: 80px; 
}

#section-01 .catch-column .textarea h3{
	font-family: "Google Sans", sans-serif;
	color:#000;
	font-size: clamp(1.8rem, 1.8vw, 2.4rem);
	letter-spacing: 0.08em;  
  display: block;
  margin-bottom: 24px;
}

#section-01 .catch-column .textarea h3 span{
  font-family: "Noto Serif JP", serif;
	color:#716caa;
	font-size: clamp(1.4rem, 1.6vw, 2rem);
	letter-spacing: 0.08em;  
  display: block;
  margin-bottom: 8px;
}
#section-01 .catch-column .textarea p {
	font-size: clamp(1.3rem, 1.5vw,1.8rem);
}
#section-01 .catch-column .textarea p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

#section-01 .content .ph img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

#section-01 .column-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
}

#section-01 .column-content .column-item {
  padding: 4%;
	box-sizing: border-box;
	border-radius: 10px;
	box-shadow: 0 0 30px rgba(113,110,170,0.1);
  text-align: center; 
}

#section-01 .column-content .column-item-head {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid #716caa;
  margin-bottom: 16px;
  padding-bottom: 8px;
}
#section-01 .column-content .column-item-head-icon {
  border: 1px solid #999;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  padding: 8px;
}

#section-01 .column-content .column-item-head-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#section-01 .column-content .column-item-head-title{
  font-family: "Noto Serif JP", serif;
	color:#000;
	font-size: clamp(1.6rem, 1.6vw, 2.2rem);
	letter-spacing: 0.08em;  
  display: block;
  text-align: left;
  margin-bottom: 24px; 

}
#section-01 .column-content .column-item-head-text {
  font-family: "Noto Serif JP", serif;
	color:#716caa;
	font-size: clamp(1.4rem, 1.6vw, 2rem);
	letter-spacing: 0.08em;  
  display: block;
  text-align: left;
  margin-bottom: 0; 
  padding-bottom: 0;
}

#section-01 .column-content .column-item-head-text span {
  font-family: "Noto Serif JP", serif;
	color:#716caa;
	font-size: clamp(1.4rem, 1.6vw, 2rem);
	letter-spacing: 0.08em;  
  display: block;
}

#section-01 .column-content .column-item-body-text {
  font-size: clamp(1.4rem, 1.4vw,1.6rem);
  text-align: left;

}


#section-02 .box-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
  
}

#section-02 .box-list .box-item {
  background: #fff;
  padding: 12% 4% 8% 4%;
	box-sizing: border-box;
	border-radius: 10px;
	box-shadow: 0 0 30px rgba(113,110,170,0.1);
  text-align: center;
  position: relative;
}

#section-02 .box-list .box-item:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid #999;
  border-right: 0;
  position: absolute;
  top: 50%;
  right: -48px;
  transform: translateY(-50%);  
}

#section-02 .box-list .box-item:last-child:after {
  display: none;
}
#section-02 .box-list .box-item-head {
  font-family: "Noto Serif JP", serif;
	color:#000;
	font-size: clamp(1.6rem, 1.8vw, 2.2rem);
	letter-spacing: 0.08em;
  border-bottom: 1px solid #000;
  margin-bottom: 14px;
  padding-bottom: 8px;
  text-align: left;
}


#section-02 .box-list figure {
  margin: 0 auto;
  width: 100%;
}

#section-02 .box-list p {
	font-size: clamp(1.2rem, 1.2vw,1.6rem);
	margin: 0;
	padding: 0;
	text-align: left;  
  margin-bottom: 16px;
}


#section-02 .content .text .eng {
	font-family: "Google Sans", sans-serif;
	color:#716caa;
	font-size: clamp(1.4rem, 1.6vw, 2rem);
	letter-spacing: 0.08em;

}

#section-02 .content .content-head {
	margin: 0 0 25px;
	font-size: clamp(2.4rem, 3vw,4rem);
  font-family: "Noto Serif JP", serif;
	font-weight: 400;
	margin-bottom: 8px;
}


#section-02 .content .content-text {
  color: #999;
	margin: 0 0 25px;
	font-size: clamp(2rem, 2vw,3rem);
	font-weight: 400;
	margin-bottom: 20px;
}



#section-03  .head-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 80%;
  margin: 0 auto;
  margin-bottom: 48px;
}

#section-03 .head-column h2 {
	font-size: clamp(2.4rem, 3vw,4rem);
  font-family: "Noto Serif JP", serif;
	font-weight: 400;
	margin-bottom: 8px;
  text-align: left;
}

#section-03 .head-column h2 span {
	font-family: "Google Sans", sans-serif;
	color:#716caa;
	font-size: clamp(1.4rem, 1.6vw, 2rem);
	letter-spacing: 0.08em;
  display: block;
}

#section-03 .head-column .head-column-text {
	font-size: clamp(1.2rem, 1.2vw,1.6rem);
	margin: 0;
	padding: 0;
	text-align: left;  
}

#section-03 .photo {
  margin: 0 auto;
  max-width: 80%;
  margin-bottom: 48px;
}


#section-03 .content-list {
  max-width: 80%;
  margin: 0 auto;
  margin-bottom: 64px;
}

#section-03 .content-list-item {
  padding: 4%;
	box-sizing: border-box;
	border-radius: 10px;
  margin-bottom: 24px;
	box-shadow: 0 0 30px rgba(113,110,170,0.16);
}

#section-03 .content-list-item:last-child {
  margin-bottom: 0;
}

#section-03 .content-list-head {
  border-bottom: 1px solid #000;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

#section-03 .content-list-head-title {
  margin-bottom: 0;
  text-align: left;
  margin-bottom: 8px;
}
#section-03 .content-list-head-text {
	font-size: clamp(1.2rem, 1.2vw,1.6rem);
	margin: 0;
	padding: 0;
	text-align: left;    
}
#section-03 .content-list-body {
  
}

#section-03 .content-list-body-caption {
	font-family: "Google Sans", sans-serif;
	color:#716caa;
	font-size: clamp(1.4rem, 1.6vw, 2rem);

  
}

#section-03 .content-list-body-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  
}

#section-03 .content-list-body-list li {
  display: inline-flex;
  align-items: center;
	font-size: clamp(1.4rem, 1.4vw,1.8rem);  
}
#section-03 .content-list-body-list li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #716caa;
  margin-right: 4px;  
}




#section-03 h2 {
	font-family: "Google Sans", sans-serif;
	font-weight: 400;
	color:#716caa;
	text-align: center;
	font-size: clamp(3rem, 5vw, 5rem);
	line-height: 1.3;
	margin-bottom: 30px;
}
#section-03 h3 {
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
	text-align: center;
	font-size: clamp(1.8rem, 1.8vw, 2.8rem);
	line-height: 1.3;
  margin-bottom: 48px;
}
#section-03 h4 {
	font-family: "Google Sans", sans-serif;
	font-size: clamp(1.8rem, 1.8vw, 2.4rem);
  margin: 0 auto;
  text-align: center;
	margin-bottom: 100px;
}

#section-03 .list li p {
  font-size: clamp(1.2rem, 1.2vw, 1.6rem);
  text-align: left;
}




#section-04 .text .eng {
	font-family: "Google Sans", sans-serif;
	color:#716caa;
	font-size: clamp(1.4rem, 1.6vw, 2rem);
	letter-spacing: 0.08em;

}

#section-04 .text h2 {
	margin: 0 0 25px;
	font-size: clamp(2.4rem, 3vw,4rem);
     font-family: "Noto Serif JP", serif;
	font-weight: 400;
	margin-bottom: 20px;
}
#section-04 .text p {
	font-size: clamp(1.3rem, 1.5vw,1.8rem);
}


#section-04 .content {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}
#section-04 .content .text {
	width: 30%;
	display: flex;
	flex-direction: column;
  justify-content: center;
}
#section-04 .content .photo-content {
    width: 60%;
    display: grid;
    grid-template-columns: 70% 1fr;
    gap: 24px;
    /* fix a uniform height for the image block so all imgs line up */
    height: 420px;
}

/* make the main image fill the left column */
#section-04 .content .photo-content > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* stack thumbnails and split the height evenly */
.photo-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.photo-list li {
  flex: 1 1 0;
  list-style: none;
}
.photo-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



@media screen and (max-width: 834px){


  .hero {
    position: relative;
    width: 100%;
    min-height: auto;
    margin-top: 50px;


    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    /* titleを上下中央に */
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
    
    
  }

  /* タイトルエリア */
  .hero .title {
    width: min(1200px, 90%);
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 2;
    margin-top: 50px;
  }



  .hero .logo img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* メインコピー */
  .hero h2 {
    margin: 0 0 15px;
    font-size: clamp(3rem, 5vw, 6rem);
    line-height: 1.3;
    font-weight: 400;
    color:#000;
    letter-spacing: 0.5rem;
  }

  /* 説明 */
  .hero h3 {
    margin: 0;
    font-size: clamp(1.4rem, 1.5vw, 1.8rem);
    line-height: 1.7;
    font-weight: 400;
    width: auto;
    color: #000;
    margin-bottom: 20px;
  }

#section-01 .catch-column {
  grid-template-columns: 1fr;
  max-width: 100%;
}

#section-01 .column-content .column-item-head {
  grid-template-columns: 50px 1fr;
  gap: 14px;
}

#section-01 .column-content .column-item-head-icon {
  width: 50px;
  height: 50px;
}

#section-01 .column-content {
  grid-template-columns: 1fr;
}

#section-02 .box-list {
  grid-template-columns: 1fr;
}

#section-02 .box-list .box-item {
  padding: 4%;
}


#section-02 .box-list .box-item:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #999;
  border-right: 0;
  position: absolute;
  top: auto;
  bottom: -49px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}
  
#section-03 .head-column {
  grid-template-columns: 1fr;
  margin-bottom: 24px;
  max-width: 100%;
}

#section-03 .photo {
  max-width: 100%;
}

#section-03 .content-list {
  max-width: 100%;
}




}