@charset "UTF-8";
/* # ============================================================
   # Reset
   # ============================================================ */
html {
  box-sizing: border-box;
  /*  -webkit-text-size-adjust: 100%;  Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
}
*, ::before, ::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}
::before, ::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}
* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}
hr {
  overflow: visible; /* Show the overflow in Edge and IE */
  height: 0; /* Add the correct box sizing in Firefox */
}
details, main {
  display: block; /* Render the `main` element consistently in IE. */
}
summary {
  display: list-item; /* Add the correct display in all browsers */
}
small {
  font-size: .8rem;
}
[hidden] {
  display: none; /* Add the correct display in IE */
}
abbr[title] {
  border-bottom: none; /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  text-decoration: underline dotted;
}
a {
  background-color: transparent; /* Remove the gray background on active links in IE 10 */
}
a:active, a:hover {
  outline-width: 0; /* Remove the outline when hovering in all browsers */
}
code, kbd, pre, samp {
  font-family: monospace, monospace; /* Specify the font family of code elements */
}
pre {
  font-size: 1em; /* Correct the odd `em` font sizing in all browsers */
}
b, strong {
  font-weight: bolder; /* Add the correct font weight in Chrome, Edge, and Safari */
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
sub, sup {
  font-size: .75rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
}
/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}
svg:not([fill]) {
  fill: currentColor;
}
ol, ul {
  list-style: none;
}
address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}
/* Forms
------------------------------------------------- */
input, button, select, textarea {
  margin: 0;
  padding: 0;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
input[type="checkbox"] {
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 2px;
  position: relative;
  margin-top: 4px;
}
input[type="password"], input[type="text"], input[type="email"], input[type="tel"], input[type="search"], textarea, select {
  padding: 8px 10px;
  border: 1px solid #aaa;
  background: #fff;
}
input[type="password"], input[type="text"], input[type="email"], input[type="tel"], input[type="search"], textarea {
  width: 100%;
  outline: none;
  transition: all .3s;
}
input[type="checkbox"]:checked {
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 2px;
}
input[type="checkbox"]:checked::after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: 5px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #00a0e9;
  border-right: 3px solid #00a0e9;
}
input[type="password"]:focus, input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="search"]:focus, textarea:focus {
  box-shadow: 0 0 7px #08b4cb;
  border: 1px solid #08b4cb;
}
textarea {
  width: 100%;
  height: 200px;
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical;
}
select {
  padding-right: 40px;
  padding-left: 10px;
  background-image: url(../img/ico_select_arrow.png);
  background-repeat: no-repeat;
  background-size: 12px 10px;
  background-position: right 10px center;
}
@media only screen and (max-width: 767px) {
  textarea {
    height: 150px;
  }
}
input::placeholder, textarea::placeholder {
  color: #ccc;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
}
/* password */
input::-ms-reveal {
  visibility: hidden;
}
/* select */
select::-ms-expand {
  display: none;
}
/* checkbox radio */
.checkbox-input, .radio-input {
  display: none;
}
.checkbox-text {
  padding-left: 20px;
  position: relative;
  margin-right: 20px;
}
.checkbox-text::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 2px;
}
.checkbox-input:checked + .checkbox-text::after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: 5px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #00a0e9;
  border-right: 3px solid #00a0e9;
}
.radio-input + label {
  padding-left: 20px;
  position: relative;
  margin-right: 20px;
}
.radio-input + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 50%;
}
.radio-input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background: #00a0e9;
  border-radius: 50%;
}
/* # ============================================================
   # util
   # ============================================================ */
/* text link
------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}
.txt_red {
  color: red;
}
.txt_blue {
  color: #0068b7;
}
.txt_underline {
  text-decoration: underline;
  font-weight: 500;
}
.bold {
  font-weight: bold;
}
.title-blue {
  color: var(--winered);
  font-weight: bold;
}
a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}
a.underline:hover {
  text-decoration: underline;
}
a.color:hover {
  color: #08b4cb;
}
a.hover_img:hover img, .hover_img a:hover img {
  opacity: .8;
}
a[href*="tel:"] {
  cursor: default;
  pointer-events: none;
}
.under-line {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  a[href*="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
}
/*clearfix
------------------------------------------------- */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
/*img
------------------------------------------------- */
img {
  line-height: 1;
  vertical-align: top;
  width: 100%;
  height: auto;
  transition: all 0.3s ease-in-out 0s;
}
figure a:hover {
  opacity: 0.8;
  transition: all 0.3s ease-in-out 0s;
}
.img-w80 {
  width: 80%;
  margin: auto;
  display: block;
}
@media only screen and (max-width: 980px) {
  .sp-img_w-60 {
    width: 60% !important;
    margin: auto;
  }
}
/* font
------------------------------------------------- */
.font_gothic {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
}
.font_mincho {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.font_marugo {
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
}
.font_gothic_yakuhan {
  font-family: YakuHanJPs, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
}
.font_mincho_yakuhan {
  font-family: YakuHanMPs, "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.font_awesome {
  font-family: "Font Awesome 5 Free";
}
.font_awesome_brand {
  font-family: "Font Awesome 5 Brands";
}
.font_poppins {
  font-family: 'Poppins', sans-serif;
}
/* br
------------------------------------------------- */
.sp_only {
  display: none;
}
.tab_show {
  display: none;
}
@media only screen and (max-width: 980px) {
  .tab_none {
    display: none;
  }
  .tab_show {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .sp_only {
    display: inline-block;
  }
  .pc_only {
    display: none;
  }
}
/* align
------------------------------------------------- */
.align_l {
  text-align: left !important;
}
.align_r {
  text-align: right !important;
}
.align_c {
  text-align: center !important;
}
/* Safari,Edge用のハック
------------------------------------------------- */
/* Edge */
_:-ms-lang(x)::backdrop, .css_hack {
  margin: 0;
}
/* Safari */
_::-webkit-full-page-media, _:future, :root .css_hack {
  margin: 0;
}
/* # ============================================================
   # layout
   # ============================================================ */
/* html
------------------------------------------------- */
html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%;
  /*  -webkit-text-size-adjust: 100%;  iOS 8+ */
}
/* body layout
------------------------------------------------- */
body {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  background-color: var(--winered-light);
  color: #333;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  /*  -webkit-text-size-adjust: 100%;*/
  font-size: 1.5rem;
  line-height: 1.8;
}
body *, body *::before, body *::after {
  box-sizing: border-box;
}
/* ieで游font使用時、文字が上に行くので他の書体を使用する */
_:lang(x)::-ms-backdrop, body {
  font-family: "メイリオ", Meiryo, sans-serif;
}
/*  text style
------------------------------------------------- */
a.text-link, a.text-link-blank {
  color: #0068b7;
  text-decoration: underline;
}
a.text-link:hover, a.text-link-blank:hover {
  color: #00a0e9;
}
a.text-link-blank {
  padding-right: 3px;
}
.text-link-more a {
  color: var(--winered);
  background: url(../img/back_arrow.png) no-repeat 50% 50%;
  background-position: right;
  padding-right: 44px;
}
.text-link-more a:hover {
  color: #00a0e9;
  background: url("../img/back_arrow_hover.png") no-repeat 50% 50%;
  background-position: right;
}
.txt-note_list {
  display: flex;
  font-size: 1.2rem;
}
.txt-note_list span {
  display: inline-block;
  padding-right: .2em;
}
.list-circle-heading {
  position: relative;
  margin-left: 2rem;
  margin-top: 30px;
}
.list-circle-heading:first-child {
  margin-top: 0;
}
.list-circle-heading::before {
  position: absolute;
  top: 2px;
  left: -1.8rem;
  content: "●";
  font-size: 1.4rem;
  color: #999;
}
.list-circle {
  margin-bottom: calc(30px - (((1.6rem * 1.8) - 1.6rem) / 2));
}
.list-circle li {
  position: relative;
  margin-left: 2rem;
}
.list-circle > li::before {
  position: absolute;
  top: 4px;
  left: -1.6rem;
  content: "●";
  font-size: 1.1rem;
  color: var(--winered);
}
.list-circle li.txt_red::before {
  color: red;
}
.list-number {
  list-style: decimal;
  margin: 0 0 calc(30px - (((1.6rem * 1.8) - 1.6rem) / 2)) 2rem;
}
p em, .text-b-blue {
  color: var(--winered);
  font-weight: bold;
}
.font-l {
  font-size: 1.7rem;
}
.font-s {
  font-size: 1.4rem;
}
.font-ss {
  font-size: 1.2rem;
}
/*リンクボタン*/
.btn-link {
  display: inline-block;
  position: relative;
  font-weight: bold;
  z-index: 1;
}
.btn-link a, .btn-link a:link, .btn-link a:visited {
  background: #fff;
  border: 1px solid var(--winered);
  display: inline-block;
  position: relative;
  color: var(--winered);
  vertical-align: text-top;
  text-align: center;
  text-decoration: none;
  margin-top: -4px;
  margin-bottom: 0;
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 5px 30px 4px 30px;
}
.btn-link a::after {
  content: "";
  background: var(--winered);
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.btn-link a:hover {
  background: var(--winered);
  color: #fff;
  text-decoration: none;
}
.btn-link a:hover::after {
  background: var(--winered);
  top: 0;
  left: 0;
}

@media screen and (max-width: 959px) {
  .btn-link {
    display: block;
  }
  .btn-link a, .btn-link a:link, .btn-link a:visited {
    width: 100%;
  }
}
.icon-mail a::before {
  content: "";
  display: inline-block;
  background: url(../img/ico_mail.png) no-repeat;
  width: 21px;
  height: 15px;
  margin: 0 8px 0 0;
}
.icon-mail a:hover::before {
  background: url(../img/ico_mail_hover.png) no-repeat;
}
a[target="_blank"]::after, .icon-blank::after {
  content: "";
  display: inline-block;
  background: url(../img/ico_external_txt.png) no-repeat center center / contain;
  width: 1em;
  height: .75em;
  margin: 0 0 0 8px;
}
a[target="_blank"]:hover::after, a:hover .icon-blank::after {
  background: url(../img/ico_external_txt_hover.png) no-repeat center center / contain;
}
/*アイコン ファイル、カテゴリー*/
a[href*="pdf"]::after, a[href*="xlsx"]::after, a[href*="doc"]::after {
  content: 'PDF';
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  width: 60px;
  height: 20px;
  margin: 0 3px;
  color: #fff;
  background: #d42e30 !important;
  text-align: center;
  font-size: 1.2rem;
  padding: 0.4rem;
  text-decoration: none;
  line-height: 1;
  transition: all 0.3s ease;
  font-weight: normal;
}
a[href*="doc"]::after {
  content: 'Word';
  background: #2b579a !important;
}
a[href*="xlsx"]::after {
  content: 'Excel';
  background: #217346 !important;
}
a[href*="pdf"]:hover, a[href*="xlsx"]:hover, a[href*="doc"]:hover {}
table.table-item {
  width: 100%;
  border-collapse: collapse;
}
table.table-auto {
  border-collapse: collapse;
}
table.table-item th, table.table-item td, table.table-auto th, table.table-auto td {
  border: #999999 1px solid;
  text-align: left;
  vertical-align: top;
  padding: 8px 1%;
}
table.table-item th, table.table-auto th {
  background-color: #f1f2f6;
}
table.table-auto th, table.table-auto td {
  padding-left: 1em;
  padding-right: 1em;
}
table.table-item-small {
  width: 100%;
}
table.table-item-small th, table.table-item-small td {
  border: #999999 1px solid;
  text-align: center;
  vertical-align: top;
  padding: 8px 1%;
}
table.table-item-small th {
  background-color: #f1f2f6;
}
table.table-item-big {
  width: 100%;
  table-layout: fixed;
}
table.table-item-big th, table.table-item-big td {
  border: #999999 1px solid;
  text-align: center;
  vertical-align: top;
  padding: 8px 1%;
}
table.table-item-big th {
  background-color: #f1f2f6;
}
table.table-item.th-color th, table.table-auto.th-color th, table.table-item-small.th-color th, table.table-performance.th-color th, table.table-item-big.th-color th {
  background-color: var(--winered);
  color: #fff;
}
/* ヘッダ */
/* ============================================ */
.title-site {
  display: inline-block;
  z-index: 110;
}
.title-site a:hover {
  background: #333;
}
header {
  background: #fff;
  position: sticky;
  top: 0;
}
/* PC-header */
/* ============================================ */
@media print, screen and (min-width: 1200px) {
  body > header {
    height: 100px;
    z-index: 1000;
    transition: all 0.3s ease;
  }
  body > header.active {
    height: 60px;
  }
  header .title-site a {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1;
    padding: .5em;
    background: var(--winered);
    color: #fff;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
  }
  header .logo img {
    width: 100px;
  }
  header .logo span {}
  body > header.active .logo img {
    width: 85px;
  }
  body > header.active .logo span {
    font-size: 1.8rem;
  }
  .title-site a span {
	font-size: .6em;
	margin-left: 1em;
}
.header-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    height: 100%;
    width: calc(100% - 1em - 1em);
    max-width: 1920px;
  }
  .btn-g-nav {
    display: none;
  }
  /* PC-メニュー表示 
----------------------------------------*/
  .wrap-g-nav {
    width: calc(100% - 220px);
    transition: all 0.3s ease;
  }
  body > header.active .wrap-g-nav {
    /*  width: calc(100% - 280px);*/
  }
  .wrap-g-nav nav {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .wrap-g-nav nav.active {
    width: 100%;
    right: 0;
  }
  .g-nav {
    display: flex;
    transition: all 0.3s ease;
    width: 100%;
    line-height: 1;
  }
  .g-nav .logout {
    margin-left: auto;
  }
  .g-nav .logout a {
    border: 1px solid var(--winered);
    color: var(--winered);
  }
  body > header.active .g-nav > li > a, body > header.active .g-nav button {
    line-height: 1;
    position: relative;
    z-index: 2;
  }
	.g-nav > li:not(:first-child):not(.logout):not(.link-jcaa) {
		border-left: 1px solid #ccc;
	}
  .g-nav > li > a, .g-nav > li > button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .5em 1vw .5em 1vw;
    position: relative;
    height: 100%;
		text-align: center;
		line-height: 1.3;
  }
  .g-nav > li.logout > a, .g-nav > li.link-jcaa > a {
    padding: .5em 0;
    min-width: 7em;
    justify-content: center;
  }
  body > header.active .g-nav > li.link-jcaa > a {
    padding: .25em .5em;
  }
  .g-nav > li > a.line2 {
   
  }
  .g-nav > li > a .nav-s {
    font-size: .75em;
    margin-top: .25em;
  }
  .g-nav > li > a:hover {
    background: var(--winered);
    color: #fff;
  }
  .g-nav > li.link-jcaa > a {
    /*border: 1px solid #ccc;*/
    background: none;
    margin-left: 1em;
  }
/*
  .g-nav > li.link-jcaa > a:hover {
    background: var(--winered-light);
    border: 1px solid var(--winered);
  }
*/
}
@media (min-width: 1200px) and (max-width: 1366px) {
  .g-nav > li > a, .g-nav button {
    font-size: calc(1.3rem + ((1vw - (1200 / 100 * 0.1rem)) * 100 * (15 - 13) / (1366 - 1200)));
  }
}
/* SP-header */
/* ============================================ */
@media screen and (max-width: 1199px) {
  body > header {
    height: 50px;
    z-index: 10000;
    position: relative;
  }
  body > header .pc-only {
    display: none;
  }
  header .logo {
    /*
  display: flex;
  align-items: center;
*/
  }
  header .logo img {
    width: 80px;
  }
  header .title-site a {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
    padding: .5em;
    background: var(--winered);
    color: #fff;
    margin-left: .5em;
  }
  .header-inner {
    align-items: center;
    display: flex;
    margin: 0 auto;
    height: 100%;
    width: calc(100% - .5em - .5em);
  }
  .sitename {
    max-width: 120px;
  }
  /* SP-ハンバーガーメニュー 
----------------------------------------*/
  .btn-g-nav {
    background: #333;
    width: 50px;
    height: 50px;
    display: block;
    margin-left: auto;
    position: fixed;
    right: 0;
    top: 0;
    padding: 12px;
    cursor: pointer;
    z-index: 200;
  }
  .btn-g-nav.active .btn-g-nav_line {
    background-color: transparent;
  }
  .btn-g-nav.active .btn-g-nav_line::before {
    top: 0;
    transform: rotate(45deg);
  }
  .btn-g-nav.active .btn-g-nav_line::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .btn-g-nav_line {
    display: block;
    height: 1px;
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .btn-g-nav_line:before, .btn-g-nav_line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #fff;
    transition: inherit;
  }
  .btn-g-nav_line:before {
    top: -8px;
  }
  .btn-g-nav_line:after {
    top: 8px;
  }
  .btn-g-nav_text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .btn-g-nav_text::before {
    content: 'メニュー';
    color: #fff;
    position: absolute;
    width: 50px;
    right: 0;
    bottom: .25em;
    font-size: 1rem;
    text-align: center;
  }
  .btn-g-nav.active .btn-g-nav_text::before {
    content: '閉じる';
    color: #fff;
    position: absolute;
    width: 50px;
    right: 0;
    bottom: .25em;
    font-size: 1rem;
    text-align: center;
  }
  /* SP-メニュー表示 
----------------------------------------*/
  .wrap-g-nav nav {
    background: #fff;
    position: fixed;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    width: 0;
    height: 100%;
    top: 0;
    right: -100%;
    transition: all 0.3s ease;
    z-index: 150;
    opacity: 0;
  }
  .wrap-g-nav nav.active {
    width: 100%;
    height: 100%;
    right: 0;
    overflow-y: auto;
    opacity: 1;
  }
  .g-nav {
    max-width: 300px;
    width: calc(100% - 4em);
    margin: 0 auto;
    text-align: center;
  }
  .g-nav > li:not(.logout):not(.link-jcaa) {
    padding: .75em 0;
    border-bottom: 1px solid #ccc;
  }
  .g-nav > li a {
    display: block;
    line-height: 1;
    padding: .75em 0;
    position: relative;
  }
  .g-nav > li.logout a {
    border: 1px solid var(--winered);
    color: var(--winered);
    margin-top: 3em;
    padding: 1em;
  }
  .g-nav > li.link-jcaa a {
    margin-top: 1em;
  }
}
/* footer
------------------------------------------------- */
.breadcrumbs, .breadcrumbs a {
  background: var(--winered);
  color: #fff;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs ul {
  width: calc(100% - 2em - 2em);
  max-width: 1500px;
  margin: auto;
  padding: 1em 0;
  line-height: 1.3;
}
.breadcrumbs ul li {
  position: relative;
  display: inline;
  font-size: 1.2rem;
}
.breadcrumbs ul li:not(:last-child)::after {
  content: '/';
  padding: 0 .75em 0 1em;
}

.copyright {
  background-color: #430817;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}
.copyright small {
  font-size: 1.1rem;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.mb-80 {
  margin-bottom: 80px !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-10 {
  margin-top: 10px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.mt-80 {
  margin-top: 80px !important;
}
.ml-mr-auto {
  margin-left: auto;
  margin-right: auto;
}
.pl-0 {
  padding-left: 0 !important;
}
/* 共通
------------------------------------------------- */ :root {
  --beige: #865a0d;
  --beige-light: #ece6db;
  --winered: #932e44;
  --winered-light: #ebd9dd;
}
main {
  position: relative;
  padding-top: 160px;
}
main::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 360px;
  display: block;
  z-index: -1;
}
main.contract::after {
  background: url(/membership/common/img/img_pageback_contract.jpg) no-repeat center center/cover;
}
main.journal::after {
  background: url(/membership/common/img/img_pageback_journal.jpg) no-repeat center center/cover;
}
main.video::after {
  background: url(/membership/common/img/img_pageback_video.jpg) no-repeat center center/cover;
}
.wrap-inner {
  background: #fff;
  width: calc(100% - 2em - 2em);
  max-width: 1500px;
  margin: auto auto 100px;
  padding: 3em;
  position: relative;
}
.wrap-inner:last-child {
  margin-bottom: 100px !important;
}
.heading-page + .wrap-inner::after {
  content: '';
  background: #fff;
  position: absolute;
  width: 100%;
  height: 2em;
  top: -2em;
  left: 0;
}
.wrap-inner p:not(:last-child) {
  margin-bottom: 1em;
}
.heading-page {
  text-align: center;
  background: var(--winered);
  font-size: 3.0rem;
  color: #fff;
  font-weight: bold;
  margin: auto;
  max-width: 1000px;
  width: 80%;
  position: relative;
  padding: .25em .5em;
  line-height: 1.4;
  z-index: 1;
}
@media only screen and (max-width: 979px) {
  .wrap-inner {
    width: calc(100% - 1em - 1em);
    padding: 2em;
  }
  main.contract::after {
    background: url(/membership/common/img/img_pageback_contract_sp.jpg) no-repeat center center/cover;
  }
  main.journal::after {
    background: url(/membership/common/img/img_pageback_journal_sp.jpg) no-repeat center center/cover;
  }
  main.video::after {
    background: url(/membership/common/img/img_pageback_video_sp.jpg) no-repeat center center/cover;
  }
}
@media only screen and (max-width: 767px) {
  .wrap-inner {
    padding: 1em;
    margin-bottom: 60px;
  }
  .wrap-inner.news {
    padding-top: 2em;
  }
  .wrap-inner:last-child {
    margin-bottom: 80px !important;
  }
  .heading-page {
    font-size: 2rem;
    text-align: left;
    width: calc(100% - 3rem);
  }
}
/* ログイン
------------------------------------------------- */
body.login {
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: space-between;
}
body.login .wrap-g-nav {
  display: none;
}
main.login {
  padding: 80px 0;
  max-width: 800px;
  width: calc(100% - 1em - 1em);
  margin: auto;
}
.wrap-login > div {
  background: #fff;
  padding: 4em 2em;
}
.alert {
  background: #fff;
}
.alert ul {
  padding-top: 4em;
}
.alert ul, .wrap-login > div > * {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.item-login {
  background: var(--winered);
  color: #fff;
  font-weight: bold;
  padding: .5em 1em;
}
.g-recaptcha > * {
  margin: 3em auto 0;
}
main.login .btn-link {
  display: inline-block;
  position: relative;
  font-weight: bold;
  z-index: 1;
  width: 100%;
}
main.login .btn-link *, main.login .btn-link *:link, main.login .btn-link *:visited {
  background: #fff;
  border: 1px solid var(--winered);
  display: inline-block;
  position: relative;
  color: var(--winered);
  vertical-align: text-top;
  text-align: center;
  text-decoration: none;
  margin: -1.5em auto 0;
  width: 100%;
  max-width: 240px;
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 5px 30px 4px 30px;
  transition: all 0.3s ease;
}
main.login .btn-link *::after {
  content: "";
  background: var(--winered);
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  height: 100%;
  width: 100%;
  z-index: -1;
}
main.login .btn-link *:hover {
  background: var(--winered);
  color: #fff;
  text-decoration: none;
}
main.login .btn-link *:hover::after {
  background: var(--winered);
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .wrap-login > div {
    padding: 2em 1em 3em;
  }
}
/* トップページ
------------------------------------------------- */
.top main {
  padding-top: 100px;
}
.top .wrap-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 4em;
}
.top .wrap-inner:not(.journal) .wrap-heading {
  margin-left: -3em;
  margin-top: -6em;
  width: 30%;
  height: 100%;
  position: sticky;
  top: 60px;
}
.top .wrap-inner.journal .wrap-heading {
  margin-left: -3em;
  margin-top: -6em;
  width: 30%;
  height: 100%;
  position: relative;
}
.top .wrap-inner:not(.news) .heading-1 {
  background: var(--winered);
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  min-width: 240px;
  width: 85%;
  margin: auto;
  padding: 1em 0;
  line-height: 1.3;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.top .wrap-inner:not(.news) .heading-1 span {
  font-size: 1.8rem;
  font-weight: normal;
  display: block;
}
/*
.top .wrap-inner.news .heading-1 {
  color: var(--winered);
  text-align: center;
  font-weight: bold;
  font-size: 3rem;
  margin-top: -2.25em;
}
*/
@media only screen and (min-width: 980px) {
  .top .wrap-inner .wrap-heading::before {
    content: '';
    width: 100%;
    height: 360px;
    display: block;
    position: relative;
    top: 3em;
  }
  .top .wrap-inner.contract .wrap-heading::before {
    background: url(/membership/common/img/img_pageback_top_contract_sp.jpg) no-repeat center center/cover;
  }
  .top .wrap-inner.journal .wrap-heading::before {
    background: url(/membership/common/img/img_pageback_journal_sp.jpg) no-repeat center center/cover;
  }
  .top .wrap-inner.video .wrap-heading::before {
    background: url(/membership/common/img/img_pageback_video_sp.jpg) no-repeat center center/cover;
  }
}
.top .wrap-inner > .wrap-heading + * {
  width: 70%;
}
.top .wrap-inner > .btn-link {
  margin: auto auto 0 !important;
  position: absolute;
  bottom: -1em;
  left: 0;
  right: 0;
  text-align: center;
}
.top .wrap-inner > .btn-link a {
  max-width: 360px;
  width: 85%;
}
@media only screen and (min-width: 980px) {
  /*
.top .wrap-inner.news {
  max-width: 1200px;
  margin-bottom: 140px;
}
.top .wrap-inner.news > * {
  flex-basis: 100%;
}
*/
}
.top .item-journal {
  flex-wrap: nowrap;
}
.top .list-journal-img {
  max-width: 260px;
  margin-right: 1.5em;
}
.top .item-journal p:not(.heading-3) {
  margin-bottom: 0 !important;
}
.top .item-journal-detail {
  margin-top: 1em;
}
.top .wrap-col-video .heading-3 span {
  background: var(--winered);
  color: #fff;
  padding: .25em .5em;
  margin-bottom: .5em;
  font-size: .8em;
  font-weight: normal;
  width: 9em;
  text-align: center;
  display: block;
}
.top .col-video:not(:last-child) {
  margin-bottom: 1.5em;
}
.top .wrap-col-contract {
  display: flex;
  flex-wrap: wrap;
}
.top .col-video {
  display: flex;
  flex-direction: column;
  flex-basis: calc((100% - 2em) / 2);
}
.top .item-contract {
  display: flex;
  flex-direction: row-reverse;
}
.top .item-contract:not(:last-child) {
  margin-bottom: 2em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1.5em;
}
.top .item-contract .heading-3 {
  color: var(--winered);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}
.top .item-contract .heading-3 span:first-child {
  color: #fff;
  font-size: .7em;
  font-weight: normal;
  background: var(--winered);
  padding: .25em .5em;
}
.top .item-contract .heading-3 span:last-child {
  display: block;
  margin: .25em 0;
}
.top .item-contract-lead {
  font-size: 1em;
}
.top .item-journal > *:last-child, .top .item-contract-text, .top .item-contract-img > *:first-child {
  width: 100%;
}
.top .item-contract-img {
  width: 30%;
  max-width: 200px;
  margin-right: 1.5em;
}
.top .item-contract-img > *:last-child {
  margin-top: auto;
}
@media only screen and (max-width: 979px) {
  .top main {
    padding-top: 160px;
  }
  .top .wrap-inner {
    display: block;
    margin-bottom: 220px;
    position: relative;
    padding-bottom: 3em;
  }
  /*
  .top .wrap-inner.journal {
    margin-bottom: 80px;
  }
*/
  .top .wrap-inner > .wrap-heading + * {
    width: 100%;
  }
  .top .wrap-inner .wrap-heading {
    margin: -3em auto 2.5em !important;
    position: relative !important;
    top: 0 !important;
    max-width: 400px;
    width: 100% !important;
  }
  .top .wrap-inner::before {
    content: '';
    position: absolute;
    width: calc(100vw - 1em);
    top: -160px;
    left: -1em;
    z-index: -1;
    height: 320px;
    display: block;
  }
  .top .wrap-inner.contract::before {
    background: url(/membership/common/img/img_pageback_top_contract_sp.jpg) no-repeat center center/cover;
  }
  .top .wrap-inner.journal::before {
    background: url(/membership/common/img/img_pageback_journal_sp.jpg) no-repeat center center/cover;
  }
  .top .wrap-inner.video::before {
    background: url(/membership/common/img/img_pageback_video_sp.jpg) no-repeat center center/cover;
  }
  @media (min-width: 768px) and (max-width: 979px) {
    .top .wrap-inner.contract::before {
      background: url(/membership/common/img/img_pageback_contract.jpg) no-repeat center center/cover;
    }
    .top .wrap-inner.journal::before {
      background: url(/membership/common/img/img_pageback_journal.jpg) no-repeat center center/cover;
    }
    .top .wrap-inner.video::before {
      background: url(/membership/common/img/img_pageback_video.jpg) no-repeat center center/cover;
    }
  }
  .top .wrap-inner:not(.news) .heading-1 {
    position: relative;
    font-size: 2.2rem;
  }
  .top .wrap-inner:not(.news) .heading-1 span {
    font-size: 1.6rem;
  }
  /*
  .top .wrap-inner.news .heading-1 {
  font-size: 2.2rem;
  }
*/
}
@media only screen and (max-width: 767px) {
  .top .wrap-inner > .wrap-heading + * {
    display: block;
  }
  .top .wrap-inner > div > .item-journal {
    display: block;
  }
  .top .list-journal-img {
    margin: 0 auto 1em;
    width: 60%;
  }
  .top .item-contract {
    flex-direction: column-reverse;
  }
  .top .item-contract-img {
    width: 60%;
    /*    display: flex;*/
    max-width: 100%;
    margin: auto auto 1em;
  }
  /*
  .top .item-contract-img > *:first-child {
    width: 40%;
    max-width: 200px;
    margin-right: 1em;
  }
*/
}
/* JCAジャーナル
------------------------------------------------- */
.list-journal > *, .item-journal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.list-journal > * > h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 2em;
  font-size: 1.2em;
  font-weight: bold;
  background: var(--winered);
  color: #fff;
  line-height: 1;
  padding: .5em;
}
.list-journal .item-journal:not(:nth-of-type(3n)) {
  margin-right: 2em;
}
.list-journal .item-journal {
  width: calc((100% - 4em) / 3);
  margin-bottom: 4em !important;
  overflow: hidden;
}
.list-journal .item-journal-notes p:not(.heading-3), .list-journal .item-journal-detail p {
  margin-bottom: 0 !important;
}
.list-journal .item-journal-detail {
  margin-top: 1em;
  padding: 1em;
  background: #f1f2f6;
  height: 100%;
  width: 100%;
}
.list-journal .list-journal-img {
  flex-basis: 32%;
  margin-right: 5%;
}
.list-journal-img img {
  object-fit: contain;
  object-position: left top;
  width: 100%;
}
.list-journal .item-journal-notes {
  flex-basis: 63%;
}
.item-journal-notes p:first-child {
  font-size: .9em;
}
.item-journal-notes .heading-3 {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: .5em !important;
}
.journal-add dl {
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10px;
}
.journal-add dl p {
  margin-bottom: 0 !important;
  margin-left: 1em;
}
.journal-add dl dt {
  border-bottom: 1px solid #ddd;
  font-weight: bold;
  display: flex;
  align-items: center;
  width: 25%;
  padding: 0 2%;
  background: #f1f2f6;
}
.journal-add dl dd {
  border-bottom: 1px solid #ddd;
  padding: 10px 0 12px 0;
  width: 75%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
/*バックナンバー*/
.back-select {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
}
.back-select p {
  background: #d7e4f1;
  padding: 8px 20px 7px 20px;
  font-size: 1.7rem;
  margin-bottom: 0 !important;
}
.back-select select {
  padding-right: 60px;
  padding-left: 20px;
  height: 45px;
}
/*モーダル*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 80%;
  padding: 1em;
}
.modal__content img {
  border: 1px solid #ccc;
  width: auto;
  height: 100%;
}
a.js-modal-close {
  position: absolute;
  right: -6px;
  top: -36px;
  color: #ccc;
  font-size: 2.2rem;
}
@media only screen and (max-width: 979px) {
  .journal-top {
    display: block;
  }
  .contract-wrap ul {
    width: 100%;
  }
  .contract-wrap ul:nth-child(1) {
    min-width: 100%;
  }
  .list-journal > div {
    flex-basis: 100%;
  }
  .list-journal > div:nth-child(2) {
    border-top: none;
  }
  .journal-add dl {
    border-top: none;
    display: block;
  }
  .journal-add dl dt {
    border-bottom: none;
    width: 100%;
    padding: 4px 1em;
  }
  .journal-add dl dd {
    border-bottom: none;
    padding: 10px 0 30px 0;
    width: 100%;
    display: block;
  }
  .journal-add dl dd:last-child {
    padding: 10px 0 0 0;
    width: 100%;
    display: block;
  }
  .list-journal .item-journal {
    width: 100%;
    margin-right: 0 !important;
  }
  .list-journal .list-journal-img {
    max-width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .back-select {
    margin-top: 1em;
  }
  .journal .btn-link:last-child {
    margin-bottom: 1em;
  }
  a.js-modal-close {
    position: absolute;
    right: -2%;
    top: -8%;
  }
  .modal__content {
    padding: 2%;
    width: 80%;
    height: auto;
  }
  .modal__content img {
    width: 100%;
  }
}
/* 英文契約書雛形
------------------------------------------------- */
.contract .list-contract .heading-2 {
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  background: #f1f2f6;
  margin-bottom: 1.5em;
  padding: .5em;
}
.contract .list-contract .heading-3 {
  color: var(--winered);
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: bold;
  padding-bottom: .25em;
  border-bottom: 1px solid var(--winered);
  margin-bottom: .75em;
}
.list-video > section:not(:last-child),
main.sample section:not(:last-child),
.list-contract > section:not(:last-child) {
  margin-bottom: 80px;
}
.list-contract > section .item-contract:not(:last-child) {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
.list-contract .item-contract {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list-contract .item-contract-img {
  flex-basis: 240px;
  order: 1;
}
.item-contract-img img {
  border: 1px solid #ddd;
  object-fit: contain;
  object-position: left top;
  width: 100%;
}
.item-contract-img .js-modal-open {
  margin-bottom: .5em;
  display: block;
}
.list-contract .item-contract-text {
  margin-bottom: 1em;
  flex-basis: calc(100% - 280px);
  order: 2;
}
.item-contract-text p > span:first-child {
  display: block;
}
.item-contract-detail {
  margin-bottom: 1em;
}
.item-contract-lead {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 1em;
}
.wrap-file {
  display: flex;
  flex-wrap: wrap;
}
.wrap-file > *:not(:last-child) {
  margin-right: 1.5em;
}
/*
.contract-contact {
	display: flex;
	align-items: flex-end;
}
.contract-contact p:first-child {
	margin-right: 2em;
  margin-bottom: 0 !important;
  font-weight: bold;
}
*/
table.table-item-small.contract-table th.th-left, table.table-item-small.contract-table td {
  text-align: left;
  vertical-align: middle;
}
table.table-item-small.contract-table th.th-left {
  width: 11em;
}
@media only screen and (max-width: 979px) {
  .sp_scroll {
    overflow: auto;
  }
  .sp_scroll table {
    width: 760px;
  }
  .sp_scroll table th, .sp_scroll table td {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 767px) {
  .contract .list-contract .heading-2 {
    font-size: 2rem;
  }
  .contract .list-contract .heading-3 {
    font-size: 1.8rem;
  }
  .list-video > section:not(:last-child),
	main.sample section:not(:last-child),
	.list-contract > section:not(:last-child) {
    margin-bottom: 60px;
  }
  .list-contract > section .item-contract:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  .item-contract-lead {
    font-size: 1em;
  }
  .list-contract .item-contract-img {
    flex-basis: 70%;
    margin: auto;
    margin-bottom: 0;
  }
  .list-contract .item-contract-text {
    flex-basis: 100%;
    margin-top: 1em;
  }
  .wrap-file > * {
    width: 100%;
  }
  /*
.contract-contact p:first-child {
	margin-right: 0;
	margin-bottom: .5em !important;
}
*/
  .item-contract-text .btn-link a, .item-contract-text .btn-link a:link, .item-contract-text .btn-link a:visited {
    padding: 5px 10px 4px 10px;
  }
  /*
.contract-contact {
	margin-right: 0;
	display: block;
}
*/
}
/* 仲裁事件サンプル書式
------------------------------------------------- */
main.sample section h2 span {
	background: #fff;
	border-top: 4px solid var(--winered);
	position: sticky;
	width: 240px;
	top: 60px;
	display: table-caption;
	text-align: center;
	padding: 1em 0 0;
	font-weight: bold;
	font-size: 2.2rem;
	line-height: 1.3;
}
.list-sample {
	border-top: 1px solid #ccc;
	width: calc(100% - 280px);
}
.list-sample > li {
	border-bottom: 1px solid #ccc;
	padding: 1em;
}
.list-sample li,
.list-sample li > ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.list-sample li > ul {
	width: 260px;
}
.list-sample p {
	font-weight: bold;
	width: calc(100% - 280px);
	min-width: 400px;
	margin-bottom: 0 !important;
}
.list-sample .en {
	margin-left: auto;
}
@media only screen and (max-width: 767px) {
.list-sample li > ul,
.list-sample p {
	min-width: 100%;
	width: 100%;
}
	.list-sample > li {
	padding: 1em 0;
	}
}

/* 国際仲裁e-learning教材
------------------------------------------------- */
.list-learning {
	display: flex;
	gap: 60px 60px;
		flex-wrap: wrap;
}
.list-learning li {
	width: calc(50% - 30px);
}
.list-learning .title {
	color: var(--winered);
	font-size: 2rem;
	line-height: 1.6;
	font-weight: bold;
	padding: .25em 0;
	border-top: 1px solid var(--winered);
	border-bottom: 1px solid var(--winered);
	margin-bottom: .75em !important;
}
.list-learning .wrap-movie {
	width: 100%;
  aspect-ratio: 16 / 9;
	border: 1px solid #ccc;
	margin-top: 1.5em;
}
.list-learning .wrap-movie iframe {
	width: 100%;
  height: 100%;
}
@media only screen and (max-width: 959px) {
	.list-learning {
		max-width: 600px;
		margin: auto;
	}
	.list-learning li {
	width: 100%;
}
.list-learning .title {
	font-size: 1.8rem;
	}
}

/* 動画
------------------------------------------------- */
.list-video > section,
main.sample section {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.list-video .heading-2 span {
  background: #fff;
  border-top: 4px solid var(--winered);
  position: sticky;
  width: 240px;
  height: 100%;
  top: 60px;
  display: table-caption;
  text-align: center;
  padding: 1em 0 0;
  font-weight: bold;
  font-size: 2.2rem;
}
.video .heading-3 {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: .5em;
}
.list-video .wrap-info {
  background: #f1f2f6;
  padding: 2em;
}
.list-video .wrap-col-video {
  width: calc(100% - 280px);
}
.list-video .wrap-col-video > *:not(:last-child) {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .list-video .heading-2,
	.list-video .heading-2 span,
	.list-video .wrap-col-video,
	main.sample section h2,
	main.sample section h2 span,
	.list-sample {
    width: 100%;
    display: block;
  }
  .list-video .heading-2 span,
	main.sample section h2 span {
    font-size: 2rem;
    padding: 1em 0;
  }
  .list-video .wrap-info {
    padding: 1em;
  }
}
/* お知らせ/仲裁・調停に関する最新動向（コラム）
------------------------------------------------- */
main.news,
main.column,
main.sample,
main.learning {
  padding-top: 60px;
}
.list-column li,
.list-news li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding: 1em;
}
.list-column li span:first-child,
.list-news li span:first-child {
  flex-basis: 8em;
}
.list-column li span:last-child,
.list-news li span:last-child {
  flex-basis: calc(100% - 8em);
  font-weight: bold;
}
.news .heading-2 {
  color: var(--winered);
  font-size: 2.4rem;
  font-weight: bold;
}
.text-news {
  margin-bottom: 2em;
}
.news-file {
  background: #f1f2f6;
  padding: 1.5em 2em;
  margin-bottom: 2em;
}
.news-file ul li {
  position: relative;
  padding-left: 1.5em;
  margin: .25em 0;
}
.news-file ul li::before {
  position: absolute;
  top: 4px;
  left: 0;
  content: "●";
  font-size: 1.1rem;
  color: var(--winered);
}
.news .back-list {
  width: 100%;
  text-align: center;
}
main.news .heading-page-s {
  font-size: .8em;
}
@media only screen and (max-width: 767px) {
  .news .heading-2 {
    font-size: 2rem;
  }
  .news-file {
    padding: 1em;
  }
  .list-news li span {
    flex-basis: 100% !important;
  }
}
/* pagination
------------------------------------------------- */
.pagination.wrap {
  margin: 30px auto 20px;
}
.pager-pc {
  display: block;
}
.pager-sp {
  display: none;
}
.pagination ul {
  display: flex;
  justify-content: center;
}
.pagination ul li {
  background: #fff;
  line-height: 36px;
  text-align: center;
  text-decoration: none;
}
.pagination ul li.prev a, .pagination ul li.next a, .pagination ul li a {
  background-color: #fff;
  color: #333;
  display: block;
  border: 1px solid #999;
}
.pagination ul li.prev a:hover, .pagination ul li.next a:hover, .pagination ul li a:hover {
  background-color: var(--winered);
  color: #fff;
  border: 1px solid var(--winered);
}
.pagination ul li ul li {
  margin: 0 5px;
  width: 36px;
}
.pagination ul li.prev, .pagination ul li.next {
  margin: 0;
  width: 60px;
  /*  border: 1px solid #233b6c;*/
}
.pagination ul li.prev {
  margin-right: 5px;
}
.pagination ul li.next {
  margin-left: 5px;
}
.pagination > div > ul > li > ul > li.active {
  background-color: var(--winered);
  border: 1px solid var(--winered);
  font-weight: bold;
  color: #fff;
}
.pagination > div > ul > li > ul > li.active {}
.pagination > div > ul > li > ul > li.dot-box {
  border: none;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  /* pagination
------------------------------------------------- */
  .pagination.wrap {
    margin: 30px auto 10px;
  }
  .pager-pc {
    display: none;
  }
  .pager-sp {
    display: block;
  }
  .pagination ul li ul li {
    margin: 0;
  }
  .pagination > div > ul > li > ul > li.dot-box {
    font-size: 1.2rem;
    line-height: 3;
    width: 26px;
  }
}

	
	
	
	