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


/************ スライド表示 ************/

.slide-in {
	 opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
	transition-delay: 0.3s;
}
.slide-in1 {
	transform: translateX(400px);
}
.slide-in2 {
	transform: translateX(-400px);
}
.slide-in3 {
	transform: translateY(100px);
}

/* セクションタイトルスライド */

.slide-left {
	transform: translateX(80px);
}
.slide-right {
	transform: translateX(-80px);
}


/* 表示状態 */
.slide-in.show {
  opacity: 1;
  transform: translateX(0);
}

/* 時間差 */
.delay0 { transition-delay: 0; }
.delay { transition-delay: 0.3s; }
.delay1 { transition-delay: 0.5s; }
.delay2 { transition-delay: 0.7s; }
.delay3 { transition-delay: 0.9s; }
.delay4 { transition-delay: 1.1s; }



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

.slide-in1 {
	transform: translateX(150px);
}
.slide-in2 {
	transform: translateX(-150px);
}


/* セクションタイトルスライド */

.slide-left {
	transform: translateX(20px);
}
.slide-right {
	transform: translateX(-20px);
}

}


/************ 下からふわっと ************/

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 表示状態 */
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* 時間差 */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/************ パッと ************/

.fade-in {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fade-in.show {
  opacity: 1;
}


/************ スライドアップ ************/

.slide-up {
  overflow: hidden; /* はみ出しを隠す */
}

.slide-inner {
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
  transition-delay: 0.4s;
}

/* 表示時 */
.slide-up.show .slide-inner {
  transform: translateY(0);
}






/* h1エリア */

.heading_info {
}
.heading_info .section_info {
	background: #FFF;
	padding: 154px 0 46px;
}
.heading_info .section_info .inner {
		display: flex;
		justify-content: space-between;
}
.heading_info h1 {
		font-size: 5rem;
		letter-spacing: 0.2em;
		line-height: 1.75;
}
.heading_info h1 .sub_ttl {
		font-size: 3rem;
		display: block;
		font-family: "Cormorant Garamond", serif;
		font-weight: 400;
		letter-spacing: 0;
}
.heading_info .info_txt {
		width: 500px;
		font-size: 1.8rem;
}


/* セクション内コンテンツ */

.section_overview {
	color: #FFF;
	background: rgba(22, 49, 106, 1);
	padding: 80px 0;
}
.section_overview .inner {
		display: flex;
		justify-content: space-between;
}
.section_overview .ttl_box {
	width: 480px;
}
.section_overview .ttl_box h2 {
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 32px;
	line-height: 1;
}
.section_overview .ttl_box h2 span {
	font-size: 10rem;
	display: inline-block;
	margin-right: 24px;
}
.section_overview .ttl_box img {
	border-radius: 8px;
	width: 100%;
}
.section_overview .ttl_box .slide-up {
	background: #FFF;
	border-radius: 8px;
	overflow: hidden;
}
.section_overview .info_box {
	width: 500px;
	padding-top: 1em;
	font-size: 1.8rem;
}
.section_overview .info_box .work_details {
	margin-top: 16px;
}
.section_overview .info_box .work_details dt {
	height: 30px;
	line-height: 30px;
	background: #FFF;
	color: var(--navy);
	display: inline-block;
	padding: 0 8px;
	margin: 8px 0 8px 0;
}
.section_overview .info_box .work_details dd {
	font-size: 1.6rem;
}
.section_detail {
	background: rgba(255, 255, 255, 0.85);
	padding: 80px 0;
}



@media screen and (min-width:768px), print{
/*----------------------------------------------------------------------
PC Style
----------------------------------------------------------------------*/


}


@media screen and (max-width:767px){
/*----------------------------------------------------------------------
SP Style
----------------------------------------------------------------------*/

/* h1エリア */

.heading_info .section_info {
	padding: 106px 0 40px;
}
.heading_info .section_info .inner {
	display: block;
}
.heading_info h1 {
	font-size: 3.2rem;
	line-height: 1.5;
	margin-bottom: 16px;
}
.heading_info h1 .sub_ttl {
	font-size: 2rem;
	display: block;
}
.heading_info .info_txt {
	width: 100%;
	font-size: 1.6rem;
}


/* セクション内コンテンツ */

.section_overview {
	padding: 60px 0;
}
.section_overview .inner {
		display: block;
}
.section_overview .ttl_box {
	width: 100%;
}
.section_overview .ttl_box h2 {
	font-size: 2.8rem;
	margin-bottom: 24px;
}
.section_overview .ttl_box h2 span {
	font-size: 7rem;
	margin-right: 16px;
}
.section_overview .ttl_box img {
	border-radius: 8px;
	width: 100%;
}
.section_overview .info_box {
	width: 100%;
	font-size: 1.6rem;
}
.section_overview .info_box .work_details dt {
	height: 28px;
	line-height: 28px;
	margin: 6px 0;
}
.section_overview .info_box .work_details dd {
	font-size: 1.4rem;
	line-height: 1.5;
}
.section_detail {
	background: rgba(255, 255, 255, 0.9);
	padding: 40px 0;
}


}