/*====================================================================================*/
/* Common
/*====================================================================================*/

@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ===========================================
* MAIN
* ======================================== */
#wpadminbar{
	display:none;
}
#colophon{
	display:none;
}
.sbi_header_img_hover{
	display:none;
}
#sbi_load{
	display:none;
}
/*====================================================================================*/
/* PC 
/*====================================================================================*/
html,body {
    text-align:center;
}
/*__ Common   ____________________________*/
.PageWrapper{
	padding-left: 270px;
    padding-right: 50px;
    padding-top: 40px;
}

.PageWrapper > .title{
	font-size: 400%;
	margin-bottom: 30px;
}
#highlight{
	margin-bottom: 30px;
}
#highlight > .link{
}
#highlight > .link > .parts{
	margin-bottom: 45px;
}
#highlight > .link > .left{
	padding-right: 20%;
}
#highlight > .link > .right{
	padding-left: 20%;
}	
#highlight > .link > .parts > .image{
    overflow: hidden;
    margin-bottom: 5px;
}
#highlight > .link > .parts > .caption{
    text-align: left;
}
#normal{
	text-align:left;
}
#normal > .link > .parts{
	width: calc((100% / 3) - 15px);
	display: inline-block;
    margin-bottom: 10px;
    vertical-align: top;
}
#normal > .link > .parts > .caption{
	margin-bottom: 5px;
}


.container2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* 左揃えに変更 */
  width: 100%; /* 親要素の幅に合わせて調整 */
}

.link {
	width: calc((100% - 40px) / 3);
	/* height: 200px; */
	margin-bottom: 20px;
  text-decoration: none; /* リンクのアンダーラインを消す */
  position: relative; /* 画像の上に要素を重ねるために使用 */
	text-align:left;
}
.centralParts{
	margin: 0 20px;
}

.link > .box2 {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.link > .box2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.link > .centralParts{
	margin:0 20px;
}


/*====================================================================================*/
/* スマフォ　横表示
/*====================================================================================*/
@media only screen and (max-width: 1024px) and (orientation:portrait){
	.PageWrapper{    
		padding-left: 30px;
		padding-right: 30px;
		padding-top: 40px;
	}
	#highlight > .link > .parts > .image {
		height: auto;
	}
	#highlight > .link > .left {
		padding-right: 0%;
	}
	#highlight > .link > .right {
		padding-left: 0%;
	}
	#highlight > .link > .parts {
		margin-bottom:15px;
	}
	#normal > .link > .parts {
		width: calc(50% - 5px);
		font-size:88%;
	}
	#normal > .link > .centralParts {
		margin: 0;
	}
	#normal > .link > .leftParts {
		margin-right:10px;
	}
	
	.container2 {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start; /* 左揃えに変更 */
		width: 100%; /* 親要素の幅に合わせて調整 */
	}
	
	.link {
		width: calc((100% - 20px) / 2);
		/* height: 200px; */
		margin-bottom: 20px;
		text-decoration: none; /* リンクのアンダーラインを消す */
		position: relative; /* 画像の上に要素を重ねるために使用 */
		text-align:left;
	}
    .centralParts {
		margin: 0;
	}
	.leftParts{
		margin-right:20px;
	}
	.link > .box2 {
		width: 100%;
		height: 100%;
		position: relative;
		overflow: hidden;
        font-size: 80%;
	}
	
	.link > .box2 img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	#highlight > .link > .parts > .caption{
		font-size: 80%;
	}
}

