@charset "utf-8";
/* 
html5doctor.com Reset Stylesheet v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-style: normal;
  background: transparent;
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, th {
  font-weight: normal;
}
body {
  line-height: 1;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
html {
  overflow-y: scroll;
}
img {
  line-height: 0;
  vertical-align: bottom;
  font-size: 0;
  font-family: "ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
}
/***************/
html {
  font-size: 62.5%;
}
body {
  color: #000;
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  background: url("../images/background.jpg") 50% 0 fixed;
}
main {
  display: block;
}
header {
  height: 110px;
  margin-bottom: 10px;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url("../images/header.png") 0 50% no-repeat var(--base-color);
}
header > ul {
  display: flex;
}
header > ul > li {
  margin-left: 10px;
}
header > ul > li > a {
  padding: 7px 12px;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: var(--font-serif);
  text-decoration: none;
  color: #fff;
  background: none;
  display: block;
  transition: var(--hover-transition);
  border: #fff 1px solid;
}
header > ul > li.focus > a,
header > ul > li > a:hover {
  color: #000;
  background: #fff;
}
footer {
  margin-top: 10px;
  padding: 30px;
  background: rgba(48,66,71,0.6);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer > dl {
  display: table;
}
footer > dl dt {
  width: 100px;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: var(--font-serif);
  color: #fff;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  border: #fff 1px solid;
}
footer > dl dd {
  padding-left: 20px;
  font-size: 1.3rem;
  font-family: var(--font-serif);
  color: #fff;
  display: table-cell;
}
footer > dl dd a {
  color: #fff;
}
#wrap {
  width: 1100px;
  margin: 10px auto 0;
}
#wrap > main > div {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
#wrap > main > div > section:nth-child(1) {
  flex: 1;
}
#wrap > main > div > section:nth-child(2) {
  width: 260px;
  margin-right: 10px;
  background: rgba(48,66,71,0.6);
}
#copy {
  font-size: 1.2rem;
  font-family: var(--font-serif);
  color: #fff;
}

/***** メニュー *****/
nav li {
  border-bottom: rgba(255,255,255,0.5) 1px solid;
}
nav li a {
  padding: 12px;
  font-weight: 500;
  font-family: var(--font-serif);
  text-decoration: none;
  color: #fff;
  display: block;
  transition: var(--hover-transition);
}
nav li a:hover {
  padding-left: 17px;
  color: #fff;
  background: var(--base-color);
}
nav .focus a {
  background: rgba(167,144,105,0.5);
}

/***** bnr *****/
#bnr {
  margin: 20px 10px;
}
#bnr li {
  margin-bottom: 10px;
  transition: 0.5s;
}
#bnr li:hover {
  opacity: 0.8;
}
/*
#bnr li:nth-child(1) a {
  padding: 20px 10px;
  font-weight: 500;
  font-family: var(--font-serif);
  text-align: center;
  text-decoration: none;
  color: #fff;
  display: block;
  background: var(--sub-color3);
  border: var(--sub-color3) 1px solid;
  transition: 0.5s;
}
#bnr li:nth-child(1) a:hover {
  color: var(--sub-color3);
  background: #fff;
}
*/

/***** clearfix *****/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  min-height: 1px;
}
* html .clearfix {
  height: 1px;
  /*\*/ /*/
  height: auto;
  overflow: hidden;
  /**/
}
/***** margin *****/
.mt3 {
  margin-top: 3px;
}
.mt5 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mt30 {
  margin-top: 30px;
}
.mt35 {
  margin-top: 35px;
}
.mt40 {
  margin-top: 40px;
}
.mb3 {
  margin-top: 3px;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb35 {
  margin-bottom: 35px;
}
.mb40 {
  margin-bottom: 40px;
}
/***** リスト *****/
.disc {
  margin-left: 20px;
  list-style-type: disc;
}
.deci {
  margin-left: 20px;
  list-style-type: decimal;
}
.li_mb5 li {
  margin-bottom: 5px;
}
.li_mb5 li:last-child {
  margin-bottom: 0;
}
.li_mb10 li {
  margin-bottom: 10px;
}
.li_mb10 li:last-child {
  margin-bottom: 0;
}
/***** 文字サイズ *****/
.ft_s {
  font-size: 1.4rem;
}
.ft_l {
  font-size: 1.8rem;
}
.ft_ll {
  font-size: 2.2rem;
}
/***** フォント太さ *****/
.bold {
  font-weight: bold;
}
.normal {
  font-weight: normal;
}
/***** ※ *****/
.note {
  margin-left: 1em;
  font-size: 1.4rem;
  text-indent: -1em;
}
.note::before {
  content: "※";
}
.note_m {
  margin-left: 1em;
  text-indent: -1em;
}
.note_m::before {
  content: "※";
}
.note_dl dt {
  width: 2.5em;
  float: left;
  clear: left;
}
.note_dl dd {
  padding-left: 2.5em;
}
/***** 位置 *****/
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.top {
  vertical-align: top;
}
/***** 取り消し *****/
.cancel {
  text-decoration: line-through;
}
/***** 矢印 *****/
.arr {
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  display: inline-block;
  vertical-align: middle;
}
/***** アイコン *****/
.win_icon {
  margin-right: 5px;
  padding-right: 18px;
  background: url(../images/win_icon.svg) 100% 50% no-repeat;
  background-size: 13px 11px;
}
.pdf_icon {
  margin-right: 5px;
  padding-right: 22px;
  background: url(../images/pdf_icon.svg) 100% 50% no-repeat;
  background-size: 15px 15px;
}
.xls_icon {
  margin-right: 5px;
  padding-right: 22px;
  background: url(../images/xls_icon.svg) 100% 50% no-repeat;
  background-size: 15px 15px;
}
.doc_icon {
  margin-right: 5px;
  padding-right: 22px;
  background: url(../images/doc_icon.svg) 100% 50% no-repeat;
  background-size: 15px 15px;
}
.ppt_icon {
  margin-right: 5px;
  padding-right: 22px;
  background: url(../images/ppt_icon.svg) 100% 50% no-repeat;
  background-size: 15px 15px;
}
/***** ボタン *****/
.btn a {
  padding: 20px 0;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  letter-spacing: normal;
  color: #000;
  background-color: #fff;
  border: var(--base-color) 3px solid; /*色はサイトによる*/
  border-radius: 5px;
  display: block;
  transition: all 0.4s;
}
.btn a:hover {
  color: #fff;
  background: var(--base-color); /*色はサイトによる*/
  border: var(--base-color) 3px solid; /*色はサイトによる*/
  display: block;
}
.btn .no_link {
  padding: 20px 0;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  letter-spacing: normal;
  color: #999;
  background-color: #f3f3f3;
  border: #ccc 3px solid;
  border-radius: 5px;
  display: block;
}
.btn2 {
  display: flex;
}
.btn2 li {
  width: 48%;
  display: flex;
  justify-content: center;
}
.btn2 li:first-child {
  margin-right: 4%;
}
.btn2 a {
  width: 100%;
  padding: 20px 0;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  letter-spacing: normal;
  color: #000;
  background-color: #fff;
  border: #c6002f 3px solid; /*色はサイトによる*/
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}
.btn2 a:hover {
  color: #fff;
  background-color: #c6002f; /*色はサイトによる*/
  border: #c6002f 3px solid; /*色はサイトによる*/
}
.btn_s {
  width: 50%;
  margin-right: auto;
  margin-left: auto;
}
.btn_m {
  width: 70%;
  margin-right: auto;
  margin-left: auto;
}
.btn_l {
  width: 85%;
  margin-right: auto;
  margin-left: auto;
}
/***** 色 *****/
:root {
  --base-color: #304247;
  --sub-color1: #2989a5;
  --sub-color2: #A79069;
  --sub-color3: #b369ab;
  --point-color: #cfebf7;
}
.red {
  color: #cc0000;
}
.black {
  color: #000;
}

/*****  *****/
:root {
  --hover-transition: 0.5s;
  --font-serif: 'Noto Serif JP', serif;
}

/* ページトップ */
/*********************/
#pagetop {
  position: fixed;
  bottom: -110px;
  right: 10px;
  z-index: 999;
  transition: 0.5s;
  cursor: pointer;
}
#pagetop:hover {
  opacity: 0.7;
}
/***** 印刷用 *****/
@media print {
  main > div {
    display: block;
  }
  main > div::after {
    content: "";
    clear: both;
    display: block;
  }
  #wrap_r {
    float: right;
    background-color: #fff;
  }
  #wrap_l {
    float: left;
  }
  #pagetop {
    display: none;
  }
}