﻿@charset "utf-8";

* {
	margin: 0;
	padding: 0;
}


body {
	color:#3e3a39;
/*	font-family:  "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", '小塚ゴシック Pro','Kozuka Gothic Pro', sans-serif;*/
	font-family:"Hiragino Mincho ProN",	YuMincho, serif;
	font-size: 16px;
}

.max_width {
	max-width: 1260px;
	width: 100%;
	margin: auto;
}

/* *** トップの画像 *** */
.main .top_img {
	width: 100%;

	-moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.3);
    position: relative;
}
.main .top_img img {
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
}
.main .top_img p{
    position: absolute;
    bottom: 10px;
    color: #000000;
    font-size: 16px;
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro W6", sans-serif;
    font-weight: bold;
    right: 6vw;
    background-color: #fff;
    padding: 0 5px;
}
.main .top_img.kasou img {
    display: block;
    width: 100%;
    height: 600px;
    margin: auto;
    object-fit: cover;
}
.main .top_img.kasou .page_title {
    position: absolute;
    top: calc(50% - 30px);
    color: #fff;
    font-size: 60px;
    text-align: center;
    width: 100%;
    font-weight:bold;
    font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro W6", sans-serif;
    text-shadow: 2px 2px 2px black;
}

/* *** タイトル *** */
.title_label {
	max-width: 330px;
	width: 80%;
	padding: 6px;
	margin: auto;

	border: 2px solid #93755b;
	background: transparent;
}
.title_label p {
	padding: 10px;
	text-align: center;

	background-color: #fff;
	background-image: url("../img/common/title_back.png");
	background-repeat:  no-repeat;
	background-size: cover;
	background-position: left top;

	color: #3a2e18;
	font-family:"游明朝","Yu Mincho",YuMincho,"Hiragino Mincho Pro",serif;
	font-size: 20px;
	line-height: 24px;
	font-weight: 600;
}


/* *** お知らせ一覧 *** */
.notice_list_box {
	max-width: 920px;
	width: 85%;
	margin: auto;
}
.notice_list {
	width: 100%;
	max-height: 596px;
	margin: auto;
	border-top: 1px dashed #93755b;
	border-bottom: 1px dashed #93755b;
	
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;

	overflow: auto;
	list-style: none;
}
.notice_list a {
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	tap-highlight-color: rgba(0, 0, 0, 0);
}
.notice_list li {
	padding: 25px 0;
	border-top: 1px dashed #ddd;
	position: relative;
	
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
.notice_list li:first-child {
	border-top: none;
}

/*
.notice_list .notice_link {
	display: block;
	width: 100%;
	height: 100%;
}
*/
.notice_list .notice_box {
	width: calc(100% - (60px + 5%));;

	display:-webkit-box;
	display:-ms-flexbox;
	display: flex;

	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;

	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.notice_list .posted_date,
.notice_list .notice_text {
	color: #090103;
/*	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;*/
    font-family: 'Noto Serif JP',"游明朝","Yu Mincho",YuMincho,"Hiragino Mincho Pro", sans-serif;
	font-size: 14px;
	line-height: 16px;
	font-weight: 500;
}
.notice_list .posted_date {
	padding-left: 11px;
	position: relative;
}
.notice_list .posted_date::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-left: 5px solid #de551a;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;

	position: absolute;
    top: 50%;
	left: 0;

    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.notice_list .notice_text {
	margin-left: 30px;
}

.notice_list .notice_pdf {
	position: absolute;
	top: 50%;
	right: 5%;

    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.notice_list .notice_pdf_box {
	width: 40px;
	float: right;
}
.notice_list .notice_pdf_box img {
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
}

.notice_list::-webkit-scrollbar {
	width: 10px;
}
.notice_list::-webkit-scrollbar-track {
	background: #e0dddb;
}
.notice_list::-webkit-scrollbar-thumb {
	background: #544c47;
}

/* *** 拡大画像 *** */
.main .img_zoom {
	display: block;
	width: 40px;

	position: absolute;
	top: 10px;
	right: 10px;
}
.main .img_zoom img {
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
}
.main .img_zoom p {
	margin-top: 5px;
	text-align: center;
	color: #3e3a39;
	font-family:"游明朝","Yu Mincho",YuMincho,"Hiragino Mincho Pro",serif;
	font-size: 14px;
	line-height: 16px;
	font-weight: 300;
}

{
	color: #595758;
    font-size: 23px;
    line-height: 16px;
    position: absolute;
    left: 2px;
    top: 12px;
    font-weight: bold;
}


/* *** IE用 *** */
@media all and (-ms-high-contrast: none) {
	.notice_list .posted_date,
	.notice_list .notice_text {
		font-family: Meiryo, sans-serif;
	}
}


/* *** Edge用 *** */
@supports (-ms-ime-align:auto) {
	.notice_list .posted_date,
	.notice_list .notice_text {
		font-family: Meiryo, sans-serif;
	}
}


/* *** float解除 *** */
.clearfix::after {
   content: "";
   display: block;
   clear: both;
}

/* スマホレイアウトに切り替え */
@media screen and (max-width: 900px) {
}

/* iPad */
@media screen and (max-width: 768px) {
}

/* iPhone6/7/8 Plus */
@media screen and (max-width: 480px) {
	.main .top_img.kasou img {
		height: auto;
	}
	.main .top_img.kasou .page_title {
	    font-size: 2em;
	}
	.notice_list {
		max-height: 545px;
	}
	.notice_list li {
		padding: 15px 0;
	}
	.notice_list .notice_box {
		display: block;
	}

	.notice_list .notice_text {
		margin-top: 5px;
		margin-left: 5px;
	}

	.main .img_zoom {
		display: none;
	}
}

/* iPhone6/7/8/X */
@media screen and (max-width:375px) {
}

/* iPhone5 */
@media screen and (max-width:320px) {
}
