@charset "UTF-8";

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

   お知らせ

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

/*========== 共通 ==========*/
.page_title {
    background-image: url('../../images/info/title_bg.jpg');
    background-position: center;
}

/*========== 一覧ページ ==========*/
.common_content {
    margin: auto;
    width: var(--basic-sp-width);
    max-width: var(--basic-width);
}

/*========== ページャー ==========*/
.pager {
	text-align:right;
	padding:10px;
	clear:both;
    margin-top: 100px;
}
/*ページャーボタン*/
.pager a {
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  color: var(--primary-color);
  font-size: 12px;
  padding: 3px 7px 2px;
  text-decoration: none;
	margin:0 1px;
}
/*現在のページのボタン*/
.pager a.current {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  padding: 3px 7px 2px;
	margin: 0 1px;
  text-decoration: none;
}
.pager a:hover {
  background: var(--primary-color);
  color: #fff;
}
.overPagerPattern {
	padding: 0 2px;	
}

@media print, screen and (min-width: 768px) {
  .pager a, 
  .pager a.current {
    padding: 0.5em 1em;
    font-size: 1.4rem;
    margin:0 3px;
  }
}

/*========== 詳細ページ ==========*/
.news-detail_title.title {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0.75em 2em;
    letter-spacing: 0;
    font-weight: 700;
    font-size: 1.6rem;
    background-color: var(--primary-color);
    color: #fff;
}
.news-detail_date {
    text-align: right;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 2rem;
    font-style: normal;
    color: var(--primary-color);
    margin: 20px 0;
}
.news-detail_item {
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
}
.detailText {
    margin: 20px 0;
}
.backORcloseBtn {
    text-align:center;
    line-height: 100%;
    margin-top: 30px;
}
.backORcloseBtn a {
    display: inline-block;
    padding: 0.75em 1.5em 0.75em 2.5em;
    color: #fff;
    background-color: var(--primary-color);
    border-radius:6px;
    text-decoration:none;
    font-size: 1.4rem;
    position: relative;
}
.backORcloseBtn a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 1em;
    transform: translateY(-50%) rotate(-45deg);
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}
.backORcloseBtn a:hover {
    opacity: .8;
}

@media screen and (min-width: 768px) {
  .news-detail_item {
    padding-bottom: 40px;
  }
}

@media screen and (min-width: 1161px) {
  .news-detail_title.title {
    font-size: 2.2rem;
  }
  .news-detail_date {
    font-size: 2rem;
  }
}

/*========== リスト ==========*/
.detailText ul, 
.detailText ol {
    margin: 1em 0;
}
.detailText ul {
    margin-left: 1em;
}
.detailText ol {
    margin-left: 0.5em;
    counter-reset: li_count;
}
.detailText font, 
.detailText ul li, 
.detailText ol li {
    padding: 0.25em 0;
    line-height: 1.5em;
}
.detailText ul li {
    display: flex;
    align-items: center;
    gap: 0 10px;
    position: relative;
    padding: .3em .3em .3em 1em;
}
.detailText ul li::before {
    position: absolute;
    content: '';
}
.detailText ul li::before {
    left: 0;
    width: 0.6em;
    height: 0.6em;
    border-radius: 50%;
    background-color: var(--primary-color);
}
.detailText ol li {
    text-indent: -1.3em;
    padding-left: 2em;
    counter-increment: count;
}
.detailText ol li::before {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    content: counter(count)".";
    margin-right: 0.25em;
    color: var(--primary-color);
}
.detailText a {
    border-bottom: 1px solid #333;
}
.detailText a:hover {
    opacity: .8;
}

/*========== 掲載写真 ==========*/
.detailUpfile {
    margin: 30px auto 50px;
    width: 100%;
    max-width: 600px;
}
.detailUpfile img {
    border: 20px solid #fff;
    box-shadow: 10px 10px 10px rgb(0, 0, 0, .2);
}