@charset "utf-8";
.first-view {
    height: calc(100vh - 80px); /* ヘッダー分を引いた高さ */
    display: flex;
    flex-direction: column;
    margin-top: 80px; /* ヘッダー分の余白 */
}

.main-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.newsbox {
    width: 100%;
    margin: 120px auto;
    padding: 0 0 450px;
}

.newsbox02{
    width: 100%;
    margin: 120px auto;
}


.newsarea{
	width: 900px;
	margin: 0 auto;
}

.newsline{
	width: 900px;
	display: inline-block;
	margin: 0 0 25px;
}

.newsday{
	width: 130px;
	font-size: 16px;
	float: left;
	color: #0e416b;
}

.newstit{
	width: calc( 100% - 130px );
	font-size: 16px;
	float: left;
	color: #0e416b;
}
.newstit a{
	color: #0e416b;
}
.newstit a:hover{
	text-decoration: underline;
	color: #0e416b;
}

/***個別ページ***/
.data_box{
	width: 900px;
	margin: 0 auto 200px;
}

.data_day{
	width: 100%;
    font-size: 16px;
    margin: 0 0 10px;
    color: #0e416b;
}
.data_tit h2{
	width: 100%;
    font-size: 21px;
    font-weight: 500;
    color: #0e416b;
    border-bottom: solid 1px #abd0e9;
    margin: 0 0 30px;
    padding: 0 0 15px;
}
.data_txt {
    width: 100%;
    font-size: 18px;
    line-height: 1.85;
    position: relative;
}
.data_txt img {
    max-width: 400px;
    height: auto;
    margin: 20px auto 40px;
    display: block;
}

.btn02 {
	margin: 0 auto 150px;
	text-align: center;
}
.btn02 a {
	background-color: #fff;
	border: 2px solid #0e416b;
	border-radius: 5px;
	color: #0e416b;
	display: inline-block;
	font-size: 16px;
	padding: 10px 0;
	position: relative;
	text-decoration: none;
	width: 180px;
	font-weight: 700;
	line-height: 1.2;
}
/* 通常の矢印(hoverで反転) */
.btn02 a {
	transition: all .5s;
}
.btn02 a::before {
	border-right: 3px solid #0e416b;
	border-top: 3px solid #0e416b;
	bottom: 0;
	content: "";
	height: 10px;
	margin: auto;
	position: absolute;
	left: 20px;
	top: 0;
	transform: rotate(-135deg);
	transition: all .5s; 
	width: 10px;
}
.btn02 a:hover {
	background-color: #0e416b;
	color: #fff;
	border: 2px solid #0e416b;
}
.btn02 a:hover::before {
	border-right: 3px solid #fff;
	border-top: 3px solid #fff;
}


@media screen and (max-width: 768px) {
.first-view {
    height: 100vh; /* ヘッダー分を引いた高さ */
    display: flex;
    flex-direction: column;
    margin-top: 0px; /* ヘッダー分の余白 */
}

.main-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.newsbox {
    width: 95%;
    margin: 40px auto 0;
    padding: 0 0 450px;
}
.newsbox02 {
    width: 95%;
    margin: 40px auto 0;
}

.newsarea{
	width: 100%;
	margin: 0 auto;
}

.newsline{
	width: 100%;
	display: inline-block;
	margin: 0 0 25px;
}

.newsday{
	width: 100%;
	font-size: 16px;
	float: left;
	color: #0e416b;
	margin: 0 0 10px;
}

.newstit{
	width: 100%;
	font-size: 16px;
	float: left;
	color: #0e416b;
}
.newstit a{
	color: #0e416b;
}
.newstit a:hover{
	text-decoration: underline;
	color: #0e416b;
}



/***個別ページ***/
.data_box{
	width: 100%;
	margin: 0 auto 200px;
}

.data_day{
	width: 100%;
    font-size: 16px;
    margin: 0 0 10px;
    color: #0e416b;
}
.data_tit h2{
	width: 100%;
    font-size: 18px;
    font-weight: 700;
    color: #0e416b;
    border-bottom: solid 1px #abd0e9;
    margin: 0 0 30px;
    padding: 0 0 15px;
}
.data_txt {
    width: 100%;
    font-size: 18px;
    line-height: 1.85;
    position: relative;
}


.data_txt img {
	width: 100%;
	height: auto;
	margin: 20px auto 40px;
	display: block;
}

.btn02 {
	margin: 0 auto 150px;
	text-align: center;
}
.btn02 a {
	background-color: #fff;
	border: 2px solid #0e416b;
	border-radius: 5px;
	color: #0e416b;
	display: inline-block;
	font-size: 16px;
	padding: 10px 0;
	position: relative;
	text-decoration: none;
	width: 180px;
	font-weight: 700;
	line-height: 1.2;
}
/* 通常の矢印(hoverで反転) */
.btn02 a {
	transition: all .5s;
}
.btn02 a::before {
	border-right: 3px solid #0e416b;
	border-top: 3px solid #0e416b;
	bottom: 0;
	content: "";
	height: 10px;
	margin: auto;
	position: absolute;
	left: 20px;
	top: 0;
	transform: rotate(-135deg);
	transition: all .5s; 
	width: 10px;
}
.btn02 a:hover {
	background-color: #0e416b;
	color: #fff;
	border: 2px solid #0e416b;
}
.btn02 a:hover::before {
	border-right: 3px solid #fff;
	border-top: 3px solid #fff;
}



}

@media screen and (max-width: 480px) {
    .form-container {
        padding: 20px;
    }

    .time-item {
        flex-basis: 100%;
    }

    .radio-group {
        flex-direction: column;
        gap: 12px;
    }
}


@media screen and (min-width: 769px) {
/*　画面サイズが769pxからはここを読み込む　*/

}
