@charset "UTF-8";

/* ***********************************
 *    Ire's CSS Reset & Base
 * *********************************** */

/* Reset margin, padding, border
 * *********************************** */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
}

/* Typography
 * *********************************** */
html {
    font-size: 62.5%;
}

body {
    font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #222;
}
@media (max-width: 767px) {
  body {
      font-size: 1.3rem;
  }
}

* {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a,
a:visited {
    color: inherit;
}

/* Layout
 * *********************************** */
article,
aside,
footer,
header,
nav,
section,
main {
    display: block;
}

* {
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: inherit;
}

/* Elements
 * *********************************** */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

ol,
ul {
    list-style: none;
}

img,
video {
    max-width: 100%;
}

img {
    border-style: none;
    vertical-align: top;
}

blockquote,
q {
    quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none;
}

/* Attributes & states
 * *********************************** */
[hidden] {
    display: none !important;
}

[disabled] {
    cursor: not-allowed;
}

:focus:not(:focus-visible) {
    outline: none;
}


/* ----------------------------------------------
 common
---------------------------------------------- */
/* show & hide pc/sp */
@media (min-width: 768px) {
  .hide-pc {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hide-sp {
    display: none !important;
  }
}

.cont-width {
  width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .cont-width {
    width: auto;
    margin: 0 3%;
  }
}

.wrap img {
  width: 100%;
  height: auto;
}

/* lightcase icon */
[class*='lightcase-icon-']:before {
  height: 1em;
  background-repeat: no-repeat;
}

.lightcase-icon-play:before {
  content: '' !important;
  background-image: url(../img/2019/common/lightcase/lightcase_play.svg);
}

.lightcase-icon-pause:before {
  content: '' !important;
  background-image: url(../img/2019/common/lightcase/lightcase_pause.svg);
}

.lightcase-icon-close:before {
  content: '' !important;
  background-image: url(../img/2019/common/lightcase/lightcase_close.svg);
}

.lightcase-icon-prev:before {
  content: '' !important;
  background-image: url(../img/2019/common/lightcase/lightcase_prev.svg);
}

.lightcase-icon-next:before {
  content: '' !important;
  background-image: url(../img/2019/common/lightcase/lightcase_next.svg);
}

.lightcase-icon-spin:before {
  content: '' !important;
  background-image: url(../img/2019/common/lightcase/lightcase_spin.svg);
}




/* lower-level contents
---------------------------------------------*/
.lower-level article .main-hd-area {
  background-color: #393939;
  color: #fff;
  padding: 40px 0;
}
.lower-level article .main-hd-area h1 {
  font-size: 2.8rem;
}
.lower-level article .main-hd-area .anchor-nav {
  display: flex;
  flex-flow: row wrap;
  margin: 30px 0 0;
}
.lower-level article .main-hd-area .anchor-nav li {
  padding-right: 10px;
  border-right: solid 1px #fff;
  margin: 0 10px 10px 0;
  line-height: 1;
  color: #7d7d7d;
}
.lower-level article .main-hd-area .anchor-nav li:last-of-type {
  padding-right: 10px;
  border-right: none;
  margin-right: 0;
}
.lower-level article .main-hd-area .anchor-nav a {
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .lower-level article .main-hd-area .anchor-nav a:hover {
    text-decoration: underline;
  }
}
/* sp */
@media (max-width: 767px) {
  .lower-level article .main-hd-area {
    padding: 20px 0;
  }
  .lower-level article .main-hd-area h1 {
    font-size: 1.6rem;
  }
  .lower-level article .main-hd-area .anchor-nav {
    margin-top: 20px;
  }
  .lower-level article .main-hd-area .anchor-nav li {
    font-size: 1.2rem;
  }
}

.lower-level article section {
  padding: 40px 0;
}
.lower-level article section.paragraph {
  padding: 0;
  margin-bottom: 60px;
}
.lower-level article section h2 {
  font-size: 2.6rem;
  padding-left: 18px;
  position: relative;
  margin-bottom: 40px;
}
.lower-level article section h2::before {
  content: '';
  width: 12px;
  height: 54px;
  background: url(../img/2019/common/ico_prize.png) no-repeat;
  position: absolute;
  left: 0;
  top: -14px;
}
.lower-level article section h3 {
  color: #af9a49;
  font-size: 2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: #af9a49 solid 2px;
  border-image: linear-gradient(to right, rgba(175, 154, 73, 1) 50%, rgba(175, 154, 73, 0) 100%);
  border-image-slice: 1;
}
.lower-level article section h4 {
  margin-bottom: 10px;
}

/* sp */
@media (max-width: 767px) {
  .lower-level article section {
    padding: 30px 0;
  }
  .lower-level article section h2 {
    font-size: 1.8rem;
    padding-left: 12px;
    margin-bottom: 20px;
  }
  .lower-level article section h2::before {
    width: 8px;
    height: 34px;
    background-size: 8px 34px;
    top: -6px;
  }
  .lower-level article section h3 {
    font-size: 1.5rem;
  }
}

/* button */
.lower-level article .btn {
  display: inline-block;
  background-color: #af9a49;
  padding: 15px 40px 15px 15px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  margin: 10px 0;
}
@media screen and (min-width: 1020px) {
  .lower-level article .btn:hover {
    background-color: #ccb758;
  }
}
.lower-level article .btn .arrow {
  position: relative;
}
.lower-level article .btn .arrow::after {
    content: '';
    width: 12px;
    height: 12px;
    display:  block;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    transform: rotate(45deg);
    position:  absolute;
    right: -15px;
    top: calc(50% - 6px);
    margin:  auto;
}
.lower-level article .btn .arrow-bottom {
  display: block;
  position: relative;
  padding-right: 10px;
}
.lower-level article .btn .arrow-bottom::after {
  content: '';
  width: 12px;
  height: 12px;
  display: block;
  border-bottom: solid 2px #000;
  border-right: solid 2px #000;
  transform: rotate(45deg);
  position:  absolute;
  right: -15px;
  top: calc(50% - 8px);
  margin: auto;
}
.lower-level article .btn .ico-pdf {
  display: inline-block;
  position: relative;
  margin-left: 30px;
}
.lower-level article .btn .ico-pdf::after {
    content: url('../img/2019/common/ico_pdf.svg');
    width: 21px;
    height: 28px;
    display:  block;
    position:  absolute;
    left: -30px;
    top: calc(50% - 14px);
    margin:  auto;
}

@media screen and (max-width: 767px) {
  .lower-level article .btn {
    display: block;
    width: 100%;
    font-size: 1.6rem;
    padding: 15px;
  }
}

/* text */
.lower-level article .red {
  color: #d6000f;
}
.lower-level article .del {
  text-decoration: line-through;
}

/* list */
.lower-level article .disc-list {
  margin-left: 1.5em;
  text-indent: 0;
}
.lower-level article .disc-list li {
  list-style-type: disc;
}

/* sp x-scroll */
@media screen and (max-width: 767px) {
  .lower-level article .scroll {
    overflow-x: auto;
    margin-bottom: 30px;
  }
  .lower-level article .scroll::-webkit-scrollbar{
   height: 5px;
  }
  .lower-level article .scroll::-webkit-scrollbar-track{
   background: #F1F1F1;
  }
  .lower-level article .scroll::-webkit-scrollbar-thumb {
   background: #BCBCBC;
  }
}



/*Popup message
--------------------------------------*/
.bottom_optout_announce {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 99999;
  padding: 10px 0;
  background-color: #000;
  opacity: 0.9;
  color: #fff;
  font-family: "BIZ UDPGothic", "Hiragino Sans", "Meiryo", sans-serif;
}

.bottom_optout_container {
margin: 10px auto;
position: relative;
max-width: 960px;
}

.bottom_optout_announce--content {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}

.bottom_optout_announce--content--label {
margin-left: 10px;
font-size: 14px;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
line-height: 1.4;
word-break: keep-all;
}

.bottom_optout_announce--content--label>a {
text-decoration: underline;
color: #26b7e2;
word-break: keep-all;
}

.bottom_optout_announce--content--close {
width: 16px;
height: 16px;
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
cursor: pointer;
margin: auto 20px;
padding: 0;
border: none;
box-sizing: border-box;
font-size: inherit;
background: none;
}

.bottom_optout_announce--content--close>svg {
height: 16px;
width: 16px;
}

@media screen and (max-width: 480px) {
.bottom_optout_container {
  margin: auto;
}

.bottom_optout_announce--content--label {
  font-size: 12px;
}
}

@media print {
.bottom_optout_announce {
  display: none;
}
}