@charset "UTF-8";

/* ============================================
        ニュース一覧
============================================= */
#content {
	margin: 45px auto 60px;
	width: 89.33vw;
}
#content h1{
	font-size: 2.1rem;
	font-weight: bold;
	color: #3F2021;
	line-height: 1;
}
#content h1 div{
	width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-top: 10px;
}
#content h1 .subtitle_text{
	font-size: 1.3rem;
	font-weight: normal;
	margin-right: 12px;
	font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
#content h1 .subtitle_line{
	display: block;
	width: 100%;
	height: 1px;
	background-color: #3F2021;
}

/* --- タブのメニューエリア --- */
.tabAreaMenu {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    margin-top: 25px;
}
.tabAreaMenu li{
	font-size: 1.1rem;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	padding: 19px 0 15px;
	border-radius: 6px 6px 0 0;
	transition: 0.5s;
}
.tabAreaMenu li:hover{
	cursor: pointer;
}
.tabAreaMenu li.all{
	color: #3F2021;
	border-bottom: 3px solid #3F2021;
}
.tabAreaMenu li.newItem{
	color: #6AD1E3;
	border-bottom: 3px solid #6AD1E3;
}
.tabAreaMenu li.campaign{
	color: #F04E98;
	border-bottom: 3px solid #F04E98;
}
.tabAreaMenu li.information{
	color: #753BBD;
	border-bottom: 3px solid #753BBD;
}

/* --- タブのアクティブ時 --- */
.tabAreaMenu li.all.active{
	color: #FFF;
	background-color: #3F2021;
}
.tabAreaMenu li.newItem.active{
	color: #FFF;
	background-color: #6AD1E3;
}
.tabAreaMenu li.campaign.active{
	color: #FFF;
	background-color: #F04E98;
}
.tabAreaMenu li.information.active{
	color: #FFF;
	background-color: #753BBD;
}

/* --- 下部のタブのメニュー（上部の上書き） --- */
.tabAreaMenuAfter{
	margin-top: 33px;
}
.tabAreaMenuAfter li{
	padding: 15px 0 19px;
	border-radius: 0 0 6px 6px;
}
.tabAreaMenuAfter li.all{
	color: #3F2021;
	border-bottom: none;
	border-top: 3px solid #3F2021;
}
.tabAreaMenuAfter li.newItem{
	color: #6AD1E3;
	border-bottom: none;
	border-top: 3px solid #6AD1E3;
}
.tabAreaMenuAfter li.campaign{
	color: #F04E98;
	border-bottom: none;
	border-top: 3px solid #F04E98;
}
.tabAreaMenuAfter li.information{
	color: #753BBD;
	border-bottom: none;
	border-top: 3px solid #753BBD;
}

/* --- コンテンツ --- */
.tabContent {
    width: 100%;
    padding-top: 25px;
}
.tabContentItem {
    display: none;
}
.tabContentItem.active {
    display: block;
}

/* --- ニュースの各アイテム --- */
.newsList{
}
.newsItem{
	width: 100%;
	margin-top: 33px;
	transition: .5s;
}
.newsItem:nth-of-type(1){
	margin-top: 0px;
}
.newsItem a{
	width: 100%;
	display: block;
}
.newsItem a img{
	width: 100%;
	border-radius: 6px;
}
.newsInfo{
	margin-top: 11px;
}
.newsCategory{
	display: inline-block;
	width: 78px;
	font-size: 1.1rem;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	color: #FFF;
	border-radius: 11px;
	margin-right: 8px;
	padding: 6px 0;
}
.newsCategory.information{
	background-color: #753BBD;
}
.newsCategory.campaign{
	background-color: #F04E98;
}
.newsCategory.newItem{
	background-color: #6AD1E3;
}
.newsDate{
	color: #000;
}
.newsTitleContainer{
	width: 100%;
	position: relative;
}
.newsTitle{
	width: 94.03%;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.286;
	color: #000;
	margin-top: 8px;
}
.newsTitleContainer .fa-chevron-right{
	font-size: 1.2rem;
	color: #000;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

/* タブクリック時の挙動 */
.newsItem.close_again{
	opacity:0;
}
.newsItem.open_again{
	opacity:1;
}


@media print, screen and (min-width: 768px) {
	#content {
		margin: -12px auto 100px;
		width: 1024px;
	}
	#content h1{
		font-size: 3.0rem;
	}
	#content h1 div{
		width: 100%;
	    margin-top: 22px;
	}
	#content h1 .subtitle_text{
		font-size: 1.6rem;
		margin-right: 13px;
	}

	/* --- タブのメニューエリア --- */
	.tabAreaMenu {
	    margin-top: 50px;
	}
	.newsDetailContainer .tabAreaMenu {
	    margin-top: 24px;
	}
	.tabAreaMenu li{
		font-size: 1.6rem;
		padding: 22px 0 19px;
		border-radius: 8px 8px 0 0;
	}

	/* --- タブのホバー時 --- */
	.tabAreaMenu li.all:hover{
		color: #FFF;
		background-color: #3F2021;
	}
	.tabAreaMenu li.newItem:hover{
		color: #FFF;
		background-color: #6AD1E3;
	}
	.tabAreaMenu li.campaign:hover{
		color: #FFF;
		background-color: #F04E98;
	}
	.tabAreaMenu li.information:hover{
		color: #FFF;
		background-color: #753BBD;
	}

	/* --- 下部のタブのメニュー（上部の上書き） --- */
	.tabAreaMenuAfter{
		margin-top: 47px;
	}
	.tabAreaMenuAfter li{
		padding: 19px 0 22px;
		border-radius: 0 0 8px 8px;
	}

	/* --- コンテンツ --- */
	.tabContent {
	    padding-top: 50px;
	}
	.newsDetailContainer .tabContent {
	    padding-top: 30px;
	}

	/* --- ニュースの各アイテム --- */
	.newsList{
		width: 1024px;
		display: flex;
		flex-wrap: wrap;
	}
	.newsItem{
		width: 324px;
		margin: 47px 26px 0 0;
	}
	.newsItem a:hover{
		opacity: 0.4;
		text-decoration: none;
	}
	.newsItem:nth-of-type(3n){
		margin-right: 0;
	}
	.newsItem:nth-of-type(1),
	.newsItem:nth-of-type(2),
	.newsItem:nth-of-type(3){
		margin-top: 0px;
	}
	.newsInfo{
		margin-top: 18px;
	}
	.newsCategory{
		width: 97px;
		font-size: 1.2rem;
		border-radius: 13px;
		margin-right: 9px;
		padding: 6px 0;
	}
	.newsTitle{
		width: 296px;
		font-size: 1.8rem;
		line-height: 1.333;
		margin-top: 10px;
	}
	.newsTitleContainer .fa-chevron-right{
		font-size: 1.8rem;
	}
}



/* ============================================
        ニュース詳細
============================================= */
.newsDetailContainer{
	padding-bottom: 60px;
}
.newsDetail {
	width: 100%;
}
.newsDetailImage{
	width: 100%;
}
.newsDetailImage img{
	width: 100%;
}
.newsDetailInfo{
	width: 89.33%;
    margin: 35px auto 0;
}
.newsDetailCategory{
	display: inline-block;
    width: 105px;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    color: #FFF;
    border-radius: 17px;
    margin-right: 10px;
    padding: 11px 0;
}
.newsDetailDate{
	font-size: 1.1rem;
	color: #000;
}
.newsDetailCategory.newItem{
	background-color: #6AD1E3;
}
.newsDetailCategory.campaign{
	background-color: #F04E98;
}
.newsDetailCategory.information{
	background-color: #753BBD;
}
.newsDetailCategory .newsDetailDate{
	position: absolute;
	right: 7px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.1rem;
	font-weight: normal;
}
.newsDetailText{
	width: 89.33%;
	margin: 15px auto 0;
}
.newsDetaiTitle{
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.286;
	width: 100%;
}
.newsDetailText > p{
	font-size: 1.3rem;
	line-height: 1.538;
	margin-top: 10px;
}
.newsDetailBtn{
	margin-top: 22px;
	width: 100%;
    display: block;
    background-color: #F04E98;
    border-radius: 7px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
    color: #FFF;
    position: relative;
    border: 1px solid #F04E98;
}
.newsDetailBtn p{
	font-size: 1.4rem;
	line-height: 1;
}
.newsDetailBtn:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f054";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    font-weight: 400;
}
.newsDetailBtn:link, .newsDetailBtn:visited {
    color: #FFF;
    text-decoration: none;
}
.newsDetailBtn:hover {
	background-color: #FFF;
    color: #F04E98;
    text-decoration: none;
    opacity: 0.7;
}
.newsDetailBtn_white{
	margin-top: 22px;
	width: 100%;
    display: block;
    background-color: #FFF;
    border-radius: 7px;
    padding: 15px 30px;
    box-sizing: border-box;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
    color: #F04E98;
    position: relative;
    border: 1px solid #F04E98;
}
.newsDetailBtn_white:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f053";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    font-weight: 400;
}
.newsDetailBtn_white:link, .newsDetailBtn_white:visited {
    color: #F04E98;
    text-decoration: none;
}
.newsDetailBtn_white:hover {
	background-color: #F04E98;
    color: #FFF;
    text-decoration: none;
}
.newsDetailMovieContainer{
	width: 89.33%;
	margin: 22px auto 0;
}
.newsDetailTitle_sub{
	font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
}
.newsDetailMovieWrap {
    width: 100%;
    margin: 10px auto 0;
}
.newsDetailMovie iframe{
	width: 100%;
}
.newsDetailText .newsDetailCaution{
	font-size: 1.1rem;
	margin-top: 20px;
}

/* --- ニュース詳細内のニュース一覧 ---- */
.newsDetail_newsListContainer{
	width: 89.33%;
	margin: 60px auto 0;
}
.newsDetailTitle_other{
	font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
    color: #3F2021;
}
.newsDetail_newsListContainer .tabArea{
	margin: 25px auto 0;
}
.newsDetail_newsListContainer .tabAreaMenuAfter{
	display: none;
}
.newsDetail_btnBox{
	margin-top: 58px;
}
.newsDetail_btnBox .newsDetailBtn_white{
	margin-top: 0px;
}
.newsDetail_btnBox .newsDetailBtn{
	margin-top: 35px;
}

/* --- CMS用のニュース詳細 ---- */
#newsDetailContent h2{
	font-size: 1.4rem;
    line-height: 1.538;
    margin-top: 10px;
}
#newsDetailContent p{
	font-size: 1.3rem;
    line-height: 1.538;
    margin-top: 10px;
}
#newsDetailContent ul{
	margin-left: 1.3rem;
	margin-top: 10px;
}
#newsDetailContent ul li{
	font-size: 1.3rem;
    line-height: 1.538;
    list-style-type: disc;
}
#newsDetailContent ol{
	margin-left: 1.3rem;
	margin-top: 10px;
}
#newsDetailContent ol li{
	font-size: 1.3rem;
    line-height: 1.538;
    list-style-type: nunber;
}

@media print, screen and (min-width: 768px) {
	.newsDetailContainer{
		padding-bottom: 100px;
	}
	.newsDetail {
		width: 1024px;
		margin: -12px auto 0;
	}
	.newsDetailCategory{
		width: 128px;
		font-size: 1.6rem;
		border-radius: 20px;
		padding: 12px 0;
	}
	.newsDetailDate{
		font-size: 1.2rem;
	}
	.newsDetailInner{
		display: flex;
		flex-wrap: wrap;
	}
	.newsDetailImage{
		width: 674px;
		margin-top: 30px;
		order: 2;
	}
	.newsDetailImage img{
		border-radius: 8px;
	}
	.newsDetailInfo {
	    width: 100%;
	    margin: 0 auto;
	}
	.newsDetailText{
		order: 3;
		width: 320px;
		margin: 27px 0 0 30px;
	}
	.newsDetail_noImage .newsDetailText{
		width: 100%;
    	margin: 27px 0 0 0;
	}
	.newsDetaiTitle {
		font-size: 2.2rem;
		line-height: 1.273;
		margin-top: -3px;
	}
	.newsDetailText > p{
		font-size: 1.6rem;
		line-height: 1.625;
		margin-top: 15px;
	}
	.newsDetailBtn{
		font-size: 1.8rem;
		margin-top: 37px;
		border-radius: 8px;
    	padding: 23px 18px;
	}
	.newsDetailBtn:after {
	    font-size: 1.8rem;
	    right: 18px;
	}
	.newsDetail_noImage .newsDetailBtn{
		width: 320px;
	}
	.newsDetailMovieContainer{
		width: 700px;
		margin: 70px auto 0;
	}
	.newsDetailTitle_sub{
		font-size: 2.4rem;
	}
	.newsDetailMovieWrap {
	    margin: 15px auto 0;
	}
	.newsDetailMovie {
	    width: 700px;
	    height: 394px;
	}
	.newsDetailMovie iframe {
	    width: 700px;
	    height: 394px;
	}

	/* --- ニュース詳細内のニュース一覧 ---- */
	.newsDetail_newsListContainer{
		width: 1024px;
		margin: 70px auto 0;
	}
	.newsDetailTitle_other{
		font-size: 1.8rem;
	}
	.newsDetail_newsListContainer .tabArea{
		margin: 30px auto 0;
	}
	.newsDetail_btnBox{
		margin-top: 66px;
		display: flex;
	}
	.newsDetail_btnBox .newsDetailBtn_white{
		width: 324px;
		margin-top: 0px;
		margin-right: 28px;
		font-size: 1.8rem;
		border-radius: 8px;
    	padding: 23px 46px;
	}
	.newsDetailBtn_white:after {
	    left: 18px;
	    font-size: 1.8rem;
	}
	.newsDetail_btnBox .newsDetailBtn{
		width: 324px;
		margin-top: 0px;
	}
	.newsDetailText .newsDetailCaution{
		font-size: 1.2rem;
	}

	/* --- CMS用のニュース詳細 ---- */
	#newsDetailContent h2{
		font-size: 1.9rem;
	    line-height: 1.625;
	    margin-top: 15px;
	}
	#newsDetailContent p{
		font-size: 1.6rem;
	    line-height: 1.625;
	    margin-top: 15px;
	}
	#newsDetailContent ul{
		margin-left: 1.6rem;
		margin-top: 15px;
	}
	#newsDetailContent ul li{
		font-size: 1.6rem;
	    line-height: 1.625;
	}
	#newsDetailContent ol{
		margin-left: 1.6rem;
		margin-top: 15px;
	}
	#newsDetailContent ol li{
		font-size: 1.6rem;
	    line-height: 1.625;
	}
}


/* ============================================
        ニュース詳細のイレギュラー対応
============================================= */

/* --- 230714_01.html ---- */
.newsDetailMovieWrap_230714_01{
	margin: 0 auto;
}
.newsDetailBtn_230714_01{
	line-height:1.3;
}

@media print, screen and (min-width: 768px) {
	.newsDetailMovieWrap_230714_01 .newsDetailMovie,
	.newsDetailMovieWrap_230714_01 .newsDetailMovie iframe{
		width: 674px;
		height: 379px;
		border-radius: 8px;
	}
	.newsDetailBtn_230714_01{
		font-size: 1.5rem;
	}
}

/* --- 240719_01.html ---- */
.newsDetailMovieWrap_240719_01{
	margin: 0 auto;
}
.newsDetailBtn_240719_01{
	font-size: 1.3rem;
	line-height:1.3;
}

@media print, screen and (min-width: 768px) {
	.newsDetailMovieWrap_240719_01 .newsDetailMovie,
	.newsDetailMovieWrap_240719_01 .newsDetailMovie iframe{
		width: 674px;
		height: 379px;
		border-radius: 8px;
	}
	.newsDetailBtn_240719_01{
		font-size: 1.6rem;
	}
}



