@charset "utf-8";

/* -----------------------------------------------

	Type: 下層ユニーク 海外研修（page-overseas.php),クラブ活動(page-club.php)

----------------------------------------------- */


/* 海外研修
----------------------------------------------- */
/* ホームステイダイアリーの３つ横並び */
.diary_flex3 {
	display: flex;
	justify-content: center;
	margin-top: 70px; /* 80pxの余白（画像が下に10px分取っているため、ここで引いている） */
	margin-bottom: var(--space80);
}
.diary_flex3 .item {
	width: calc(33.3333% - 20px);
    max-width: 400px;
	border: 1px solid var(--color-skyblue);
	background: var(--color-white);
	padding: 20px;
}
.diary_flex3 .item:not(:nth-child(3n)) {
	margin-right: 40px;
}

.diary_flex3 .title {
	font-size: var(--fz20);
	font-weight: var(--fw700);
	margin-bottom: 10px;
}
.diary_flex3 .sub_title {
	font-size: var(--fz18);
	font-weight: var(--fw700);
	color: var(--color-skyblue);
	margin-bottom: 10px;
}
.diary_flex3 p:last-child {
	margin-bottom: 0!important;
}


/* クラブ活動
----------------------------------------------- */
/* リンクボタン画像 */
.m-w1100 {
	max-width: 1100px;
}
.club_link {
	display: flex;
	justify-content: space-between;
	margin: auto;
}
.club_link img {
	width: 100%;
	max-width: 400px;
}
.club_link a {
	border-bottom: none;
}
.club_link a:first-child {
	margin-right: var(--space80);
}


.pt80 {
	padding-top: var(--space80);
}
#sports img, #culture img {
	margin-bottom: var(--space40);
}

/* PC～タブレットは、リストは极速体育直播_极速体育app-官网左右交互に配置（偶数が右列にくる） */
.alternate-list ul {
	display: flex;
	flex-wrap: wrap;
}
.alternate-list li {
	box-sizing: border-box;
	width: calc(50% - 40px);
}
.alternate-list li:nth-child(even) {
	margin-left: var(--space80);
	margin-right: auto;
}  
/* リストここまで */


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

	/* 海外研修
	----------------------------------------------- */
	img.overseas_title_img_size {
		max-width: 350px;
		width: 100%;
	}


	/* ホームステイダイアリーの３つ横並び */
	.diary_flex3 {
		flex-wrap: wrap;
		justify-content: normal;
		margin-top: 50px; /* 60pxの余白 */
	}
	.diary_flex3 .item {
		width: calc(50% - 20px);
	}
	.diary_flex3 .item:nth-child(odd) { /* 奇数 */
		margin-right: 40px;
	}
	.diary_flex3 .item:nth-child(even) { /* 偶数 */
		margin-right: 0;
	}
	.diary_flex3 .item:nth-child(n+3) { /* 3つめ以降 */  
		margin-top: 40px;
	}

	.diary_flex3 .title {
		margin-bottom: 10px;
	}
	.diary_flex3 .sub_title {
		margin-bottom: 10px;
	}

	/* デザイナー */
	.designer img {
		width: 100%;
		max-width: 150px;
		max-height: 150px;
	}

	/* クラブ活動
	----------------------------------------------- */
	/* 運動部、文化部　タイトル画像 */
	#sports img, #culture img {
		max-width: 180px;
	}

}



/* スマホ */
@media screen and (max-width:480px) {

	/* 海外研修
	----------------------------------------------- */
	img.overseas_title_img_size {
		max-width: 250px;
	}


	/* ホームステイダイアリーの３つ横並び */
	.diary_flex3 {
		display: block;
		margin-top: 30px; /* 40pxの余白 */
	}
	.diary_flex3 .item {
		width: 100%;
		padding: 15px;
		margin-right: 0!important;
		max-width: none;
	}
	.diary_flex3 .item:nth-child(n+2) { /* 2つめ以降 */  
		margin-top: 20px;
	}

	.diary_flex3 .title, .diary_flex3 .sub_title {
		margin-top: 0!important;
		margin-bottom: 5px;
	}


	/* クラブ活動
	----------------------------------------------- */
	/* 運動部、文化部　タイトル画像 */
	#sports img, #culture img {
		max-width: 130px;
	}

	/* PC～タブレットは、リストは极速体育直播_极速体育app-官网左右交互に配置（偶数が右列にくる） */
	.alternate-list ul {
		display: block;
		grid-template-columns: 1fr var(--space80) 1fr;
	}

	.alternate-list li {
		width: 100%;
	}
	.alternate-list li:nth-child(even) {
		margin-left: 0;
	}
	/* リストここまで */

}



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

	/* 海外研修
	----------------------------------------------- */
	/* topの画像上にある左側の文字が見切れるのを防ぐため、若干右にズラす */
	.page_top_image.overseas_only img {
        object-position: 43% 50%;
	}

}