﻿@charset "UTF-8";

/* IMPORT RESET ====================== */
@import url("sanitize.css");

/* サイト全般のレイアウト（基本） ======================= */
/*文字サイズの基準、ヘッダー・フッターなどの共通部*/
/*トップページ用はtop.css、第2階層以下用はsec.cssで設定*/
/* ルートのフォントサイズを10pxに設定 */

html {
  font-size: 62.5%;
}

/* bodyのフォントサイズを16pxに設定 */
body {
  font-size: 1.6em;
}

/* 上記指定で1rem＝10pxになる。
   以降、フォントサイズはremで指定すること
   例）1.2remは12px*/

body {
  background-color: #fff;
  color: #333;
  overflow-x: hidden; /*横スクロール回避*/
  font-family: "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
}

header{
  width: 100%;
  padding: 2em 0;
  border-bottom: 2px solid #9F2376;
}

main {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 1em;
}

footer {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
}

/*見出し*/
h1 {
  text-align: center;
}

h1 img {
  width: 80%;
  max-width: 320px;
}

h2 {
  font-size: 1.6rem;
  color: #9F2376;
  border-left: 10px solid #9F2376;
  padding-left: 0.5em;
}
/* テキスト装飾=================================== */
/*リンク色*/
a {
  color: #9F2376;
  text-decoration: none;
}

/*赤文字*/
.red {
  color: #c00;
}

/* リンクボタン（2分割）----*/
.btn2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.btn2 > p {
  width: 48%;
  margin: 2em 1%;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 4em;
  background-color: #9F2376;
  padding: 0;
}

.btn2 > p a {
  display: block;
  width: 100%;
  padding: 10px 25px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.btn2 > p a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}
/*表組み*/
table.border {
  width: 100%;
  margin: 2em 0;
  border-collapse: collapse;
  border-top: 1px solid #ccc;
}
table.border tr {
  border-bottom: 1px solid #ccc;
  height: 2em;
}
table.border th {
  width: 6em;
  height: 3em;
}
table.border th div.icon {
  background-color: #c00;
  color: #fff;
  text-align: center;
  width: 100%;
  border-radius: 5px;
}
table.border td.date {
  width: 8em;
  padding: 0 1em;
  height: 3em;
}
table.border td.title {
  width: auto;
  height: 3em;
}