@charset "UTF-8";

/* News一覧ページ用 */
section.news-page-list ul.news-list li a {
	word-break: break-word;
	word-wrap: break-word;
}
section.news-page-list ul.news-list li a.no-link {
	pointer-events: none;
}

/* News詳細ページ用 TODO 今回イベントに合わせて調整 */
section.news-page-detail .block-section {
	word-break: break-word;
	word-wrap: break-word;
}

section.news-page-detail .block-section .block {
	margin: 0 auto;
}

section.news-page-detail .block-section .full-block {
	width: 100%;
	max-width: 100%;
}

/* 表示幅 */
section.news-page-detail .block-section .w-50  {
	width: 50%;
}
section.news-page-detail .block-section .w-60 {
	width: 60%;
}
section.news-page-detail .block-section .w-70 {
	width: 70%;
}
section.news-page-detail .block-section .w-80 {
	width: 80%;
}
section.news-page-detail .block-section .w-90 {
	width: 90%;
}

/* 文字揃え */
section.news-page-detail .block-section .align-left {
	text-align: left;
}
section.news-page-detail .block-section .align-center {
	text-align: center;
}
section.news-page-detail .block-section .align-right {
	text-align: right;
}

/* 大見出し */
section.news-page-detail .block-section .section-ttl {
	letter-spacing: 0.03em;
	font-size: 34px;
	font-weight: bold;
	margin-bottom: 30px;
}
section.news-page-detail .block-section .section-ttl:first-letter {
	color: var(--clr-red);
}
@media screen and (max-width: 767px) {
	section.news-page-detail .block-section .section-ttl {
		font-size: 22px;
		margin-bottom: 20px;
	}
}

/* 中見出し */
section.news-page-detail .block-section .section-sub-ttl {
	font-weight: bold;
	font-size: 18px;
	margin: 30px 0 10px;
}
@media screen and (max-width: 767px) {
	section.news-page-detail .block-section .section-sub-ttl {
		font-size: 16px;
	}
}

/* 本文 */
section.news-page-detail .block-section .section-txt {
    font-size: 16px;
	line-height: 1.8;
}
section.news-page-detail .block-section .section-txt a {
	display: inline-block;
    color: var(--clr-blue);
}
@media screen and (max-width: 767px) {
	section.news-page-detail .block-section .section-txt {
		font-size: 15px;
	}
}

/* 見出し＋テキスト */
section.news-page-detail .block-section dl dt {
	font-weight: bold;
	font-size: 18px;
	margin: 30px 0 10px;
}
section.news-page-detail .block-section dl dd {
    font-size: 16px;
	line-height: 1.8;
}
section.news-page-detail .block-section dl dd a {
	display: inline-block;
    color: var(--clr-blue);
}
@media screen and (max-width: 767px) {
	section.news-page-detail .block-section dl dt {
		font-size: 16px;
	}
	section.news-page-detail .block-section dl dd {
		font-size: 15px;
	}
}

/* リンク */
section.news-page-detail .block-section .section-txt .txt-link {
	display: inline-block;
}

/* ボタン */
section.news-page-detail .block-section .btns {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
section.news-page-detail .block-section .left .btns {
	justify-content: flex-start;
}
section.news-page-detail .block-section .center .btns {
	justify-content: center;
}
section.news-page-detail .block-section .right .btns {
	justify-content: flex-end;
}
@media screen and (max-width: 767px) {
	section.news-page-detail .block-section .btns {
		flex-direction: column;
		gap: 15px;
	}
	section.news-page-detail .block-section .left .btns {
		align-items: flex-start;
	}
	section.news-page-detail .block-section .center .btns {
		align-items: center;
	}
	section.news-page-detail .block-section .right .btns {
		align-items: flex-end;
	}
}

section.news-page-detail .block-section .btns .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    max-width: 260px;
    width: 100%;
    height: 70px;
    //border: 2px solid var(--clr-blue);
    //background: var(--clr-blue);
	background: linear-gradient(to right, var(--clr-blue), #00c0f8);
    color: var(--clr-white);
    font-size: 16px;
    border-radius: 500px;
    cursor: pointer;
    transition: 0.4s;
	position: relative;
}
section.news-page-detail .block-section .btns .btn .arrow {
	display: inline-block;
	margin: auto 0;
	width: 10px;
	height: 10px;
	border-top: 2px solid var(--clr-white);
	border-right: 2px solid var(--clr-white);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	transform: rotate(45deg);
}
@media (hover) {
	section.news-page-detail .block-section .btns .btn:hover {
		opacity: 0.6;
	}
}
@media screen and (max-width: 767px) {
	section.news-page-detail .block-section .btns .btn {
		width: 80%;
		height: 60px;
		font-size: 14px;		
	}
}

/* 画像 */
section.news-page-detail .block-section .img-wrap {
	margin: 0 auto;
	width: fit-content;
}
section.news-page-detail .block-section .grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	justify-items: center;
	align-items: center;
	margin: 0 auto;
	width: fit-content;
}
@media screen and (max-width: 767px) {
	section.news-page-detail .block-section .grid {
		grid-template-columns: 1fr;
	}
}

section.news-page-detail .block-section .img-wrap .caption {
	margin-top: 5px;
	font-size: 15px;
	line-height: 1.5;
}
@media screen and (max-width: 767px) {
	section.news-page-detail .block-section .img-wrap .caption {
		font-size: 14px
	}
}

/* QR */
section.news-page-detail .block-section .c_qr ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
section.news-page-detail .block-section .qr {
	max-width: 200px;
}

/* 罫線 */
section.news-page-detail .block-section .c_horizontalLine hr {
	height: 0;
	border-top: solid 1px #ccc;
}

/* 箇条書き */
section.news-page-detail .block-section .point-list ul {
	margin-top: 20px;
}
section.news-page-detail .block-section .point-list ul li {
	margin-bottom: 10px;
	padding-left: 1em;
	font-size: 16px;
	line-height: 1.8;
	position: relative;
}
section.news-page-detail .block-section .point-list ul li::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 7px;
	background-color: var(--clr-black);
	position: absolute;
	top: 12px;
	left: 0;
}
@media screen and (max-width: 767px) {
	section.news-page-detail .block-section .point-list ul li {
		font-size: 15px;
	}
}

/* 箇条書き（注記） */
section.news-page-detail .block-section .note-list ul {
	margin-top: 15px;
}
section.news-page-detail .block-section .note-list ul li {
	margin-bottom: 5px;
	font-size: 15px;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
}
@media screen and (max-width: 767px) {
	section.news-page-detail .block-section .note-list ul li {
		font-size: 14px;
	}
}

/* 表組 */
section.news-page-detail .block-section .table table {
	border: 1px solid #ccc;
}
section.news-page-detail .block-section .table table tr th {
	padding: 10px;
	border: 1px solid #ccc;
	background: #eceeef;
	font-weight: bold;
	font-size: 16px;
	line-height: 1.8;
	vertical-align: middle;
}
section.news-page-detail .block-section .table table tr td {
	padding: 10px;
	border: 1px solid #ccc;
	font-size: 16px;
	line-height: 1.8;
}
section.news-page-detail .block-section .table caption {
	caption-side: bottom;
	margin-top: 5px;
	font-size: 15px;
	line-height: 1.5;
}
@media screen and (max-width: 768px) {
	section.news-page-detail .block-section .table table tr th {
		font-size: 15px;
	}
	section.news-page-detail .block-section .table table tr td {
		font-size: 15px;
	}
	section.news-page-detail .block-section .table caption {
		font-size: 14px;
	}
}

section.news-page-detail .block-section .table.evenly table {
	table-layout: fixed;
	width: 100%;
}
section.news-page-detail .block-section .table.th-20 table th {
	width: 20%;
}
section.news-page-detail .block-section .table.th-30 table th {
	width: 30%;
}
section.news-page-detail .block-section .table.th-40 table th {
	width: 40%;
}

/* 要素間の余白 */
section.news-page-detail .block-section .mb-10 {
	margin-bottom: 10px;
}
section.news-page-detail .block-section .mb-20 {
	margin-bottom: 20px;
}
section.news-page-detail .block-section .mb-30 {
	margin-bottom: 30px;
}
section.news-page-detail .block-section .mb-40 {
	margin-bottom: 40px;
}
section.news-page-detail .block-section .mb-50 {
	margin-bottom: 50px;
}
section.news-page-detail .block-section .mb-60 {
	margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
	section.news-page-detail .block-section .mb-10 {
		margin-bottom: 5px;
	}
	section.news-page-detail .block-section .mb-20 {
		margin-bottom: 10px;
	}
	section.news-page-detail .block-section .mb-30 {
		margin-bottom: 15px;
	}
	section.news-page-detail .block-section .mb-40 {
		margin-bottom: 20px;
	}
	section.news-page-detail .block-section .mb-50 {
		margin-bottom: 25px;
	}
	section.news-page-detail .block-section .mb-60 {
		margin-bottom: 30px;
	}
}
