@charset "utf-8";
@import url("http://fonts.googleapis.com/earlyaccess/sawarabimincho.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  font-family: YuGothic, "游ゴシック", Hiragino Kaku Gothic ProN,
    "ヒラギノ角ゴ ProN W3", serif;
  font-size: 15px;
  background: #000;
  color: #1e1e1e;
}

del {
  text-decoration: line-through;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

pre {
  white-space: -moz-pre-wrap;
  /* Mozilla */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  white-space: pre-wrap;
  /* CSS3 */
  word-wrap: break-word;
  /* IE 5.5+ */
  display: inline-block;
  border: 2px solid #bbb;
  margin: 1em 0;
  padding: 1em;
}

strong {
  color: #870000;
  background: #ffe9ec;
}

em {
  background: #ffe9ec;
}

strong,
b {
  font-size: 100%;
}

ins {
  display: inline-block;
  background: #ffe9ec;
}

/*--- table*/
table {
  border-collapse: collapse;
  line-height: 1.5;
  margin-bottom: 20px;
  background: #fff;
}

table th {
  width: 150px;
  padding: 10px;
  text-align: left;
  vertical-align: top;
  border: solid 1px #000;
  background: #870000;
  color: #fff;
}

table td {
  width: 350px;
  padding: 10px;
  vertical-align: top;
  border: solid 1px #000;
  font-size: 80%;
}

/*--- blockquote*/
blockquote {
  margin-bottom: 30px;
  padding: 2em;
  text-align: center;

  background: #fff;
  color: #544b20;
  font-family: "Sawarabi Mincho";
  position: relative;
  z-index: 1;
}

blockquote:before,
blockquote:after {
  font-size: 50px;
  line-height: 1em;
  color: #870000;
  z-index: -1;
  text-shadow: none;
}

blockquote:before {
  content: "❝";
  position: absolute;
  left: 20px;
  top: 10px;
}

blockquote:after {
  content: "❞";
  position: absolute;
  right: 20px;
  bottom: -10px;
}

/*--- list ul*/
article ul {
  width: 100%;
  margin: 30px 0;
  position: relative;
  border: solid 1px #544b20;
}

article ul li {
  margin: 1em 0;
  padding: 10px 35px;
}

article ul li:before {
  font-family: FontAwesome;
  content: "\f0c8";
  color: #544b20;
  margin-right: 5px;
}

/*--- list ol*/
article ol {
  width: 100%;
  margin: 30px 0;
  border: solid 1px #000;
  border-right: 0;
  border-left: 0;

  counter-reset: number;
  list-style-type: none !important;
  position: relative;
}

article ol li {
  margin: 1em 0;
  padding: 10px 0 10px 55px;

  list-style: none;
  position: relative;
}

article ol li:before {
  color: #fff;
  background: #870000;

  position: absolute;
  counter-increment: number;
  content: counter(number);
  text-align: center;
  display: inline-block;

  width: 20px;
  height: 20px;
  font-size: 14px;
  line-height: 20px;
  left: 25px;

  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*--- layout ---*/
#point-wrap {
  width: 100%;

  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 736px) {
  #point-wrap {
    flex-direction: column;
  }
}

main {
  max-width: 870px;
  margin: 0 auto;
  overflow: hidden;
}

article {
  margin-bottom: 30px;
}

article img {
  max-width: 100%;
  margin-bottom: 15px;
  width: 100%;
}

/*--- link*/
a {
  display: block;
  color: #1e1e1e;
}

a:hover {
  color: #870000;
}

/*--- title ---*/
h1,
h2,
h3,
h4,
h5,
h6,
.point-hTtl a {
  line-height: 1.2;
  font-weight: normal;
  font-family: "Sawarabi Mincho";
}

h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  margin-bottom: 15px;
}

h2 {
  font-size: 190%;
  letter-spacing: -0.09em;
  padding: 10px;
}

h3 {
  background: #870000;
  color: #fff;
  font-size: 130%;
  padding: 5px 10px;
}

h4 {
  padding: 5px 10px;
  font-size: 130%;
  border: solid 1px #544b20;
  color: #544b20;
  border-right: 0;
  border-left: 0;
}

h5 {
  border: solid 1px #870000;
  color: #870000;
  padding: 5px 10px;
}

h6 {
  font-size: 100%;
  padding: 5px 10px;
  color: #870000;
  background: #feebec;
}

/* 下層用 */
.under h1 {
  font-size: 190%;
  letter-spacing: -0.09em;
  padding: 10px;
}

.under h2 {
  background: #870000;
  color: #fff;
  font-size: 130%;
  padding: 5px 10px;
}

.under h3 {
  padding: 5px 10px;
  font-size: 130%;
  border: solid 1px #544b20;
  /* color: #544b20; */
  border-right: 0;
  border-left: 0;
  margin-top: 40px;
}



/*--- header ---*/
#point-h {
  width: 100%;
  background: #000;
  position: relative;
  overflow: hidden;
}

.point-hIn {
  width: 870px;
  margin: 0 auto;
  z-index: 1;
}

/* --- h1+下層title */
h1 a,
.point-hTtl a {
  margin: 0 auto;
  font-size: 170%;
  letter-spacing: -0.1em;
  color: #fff;
  text-align: center;
}

/*--- headCopy*/
.point-cp {
  color: #fff;
  font-size: 100%;
  font-weight: 700;
  line-height: 140%;
  margin: 20px auto;
  text-align: center;
}

.point-lower h1 a {
  margin-top: 30px;
}

.point-lower #point-h {
  padding-bottom: 40px;
}

.point-lower #point-hnv {
  bottom: -10px;
}

/*--- indexのみ*/
.point-top .point-hTtl {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  /* Safari用 */
  transform: translate(-50%, -50%);
  z-index: 2;
}

.point-top h1 a,
.point-hTtl a {
  font-weight: bold;
  font-size: 350%;
  padding-bottom: 0;
}

.point-hTtl a {
  font-size: 220%;
}

.point-top .point-cp {
  font-size: 120%;
}

/*--- headNav ---*/
#point-hnv {
  width: 630px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  /* Safari用 */
  transform: translate(-50%, -50%);
  z-index: 2;
}

.point-nvIn {
  overflow: hidden;
}

.point-nvIn li {
  float: left;
  text-align: center;
}

.point-nvIn li a {
  min-width: 150px;
  font-size: 80%;
  color: #fff;
  line-height: 34px;
  background: rgba(135, 0, 0, 0.8);
  margin-left: 10px;
  border-radius: 3px;
  position: relative;
}

.point-nvIn li:nth-child(1) a {
  margin-left: 0;
}

.point-nvIn li a:after {
  font-family: FontAwesome;
  content: "\f054";
  position: absolute;
  right: 10px;
  font-weight: normal;
}

.point-nvIn li a:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slicknav_menu {
  display: none;
}

/*--- mainSlider ---*/
#point-mainvisual {
  width: 100%;
  height: auto;
  margin: 30px 0;
  overflow: hidden;
  opacity: 0.7;
}

.point-slider {
  width: 100%;
  left: 50%;
  margin-left: -435px;
  /* = img幅/2 */
}

.point-slider li img {
  display: block;
}

.bx-wrapper {
  max-width: 100% !important;
  margin: 0 auto;
  position: relative;
  border: none;
  box-shadow: none;
}

#point-mainvisual .bx-viewport {
  height: auto !important;
}

.bx-wrapper .bx-controls-direction a {
  display: none;
}

/*--- mainArea ---*/
#point-main {
  width: 100%;

  /* display: flex;
  justify-content: space-between; */
}

/* @media screen and (max-width: 736px) {
  #point-main {
    flex-direction: column;
  }
} */

#point-main article {
  background: #f8f9fb;
  margin: 0 0 30px;
  padding: 20px;
  position: relative;
}

/*--- 下層リンク ---*/
.point-sec {
  overflow: hidden;
  margin-bottom: 40px;
}

#point-main .point-u {
  width: 32%;
  margin: 0;
  margin-left: 2%;
  padding: 0;
  float: left;
  position: relative;
  overflow: hidden;
}

#point-main .point-u:nth-child(1) {
  margin-left: 0;
}

#point-main .point-u h2 {
  font-size: 120%;
  margin-bottom: 0;
  color: #870000;
  font-weight: 700;
}

.point-u p {
  font-size: 85%;
  padding: 0 10px;
}

/*--- readMore*/
.point-more {
  width: 80px;
  margin: 10px auto;
  text-align: center;
}

.point-more a {
  font-size: 12px;
  color: #fff;
  line-height: 22px;
  background: #870000;
  border-radius: 3px;
  position: relative;
}

.point-more a:after {
  font-family: FontAwesome;
  content: "\f054";
  position: absolute;
  right: 5px;
  font-weight: normal;
  font-size: 8px;
}

.point-more a:hover {
  background: #544b20;
}

/*--- recommend ---*/
article#point-r {
  overflow: hidden;
  padding: 15px;
  border: 0;
}

/*--- h3_link*/
.point-rIn {
  width: 32%;
  margin: 0 0 10px;
  margin-left: 2%;
  float: left;
  position: relative;
  overflow: hidden;
}

#point-r .point-rIn:nth-child(1) {
  margin-left: 0;
}

.point-rIn h3 {
  font-size: 100%;
  margin-bottom: 0;
  font-style: normal;
  background: #fff;
  padding: 0;
}

.point-rIn h3 a {
  position: relative;
  color: #fff;
  line-height: 40px;
  padding: 0 10px;
  background: #870000;
}

.point-rIn h3 a:after {
  font-family: FontAwesome;
  content: "\f054";
  position: absolute;
  right: 10px;
  font-weight: normal;
  font-size: 8px;
}

.point-rIn h3 a:hover {
  background: #544b20;
}

.point-rIn p {
  margin: 3px 0 0;
  text-align: right;
  font-size: 80%;
}

/*--- aside ---*/
#point-side {
  /*min-*/
  width: 130px;
  position: fixed;
  top: 0;
  left: 0;
  background: #090807;
  text-align: center;
  z-index: 99;
}

@media (min-width: 737px) {
  #point-side {
    margin-top: 50px;
  }
}

aside dt {
  font-size: 90%;
  padding: 5px 0;
  color: #fff;
  border-bottom: solid 1px #1e1e1e;
  font-family: "Sawarabi Mincho";
}

aside dd {
  font-size: 75%;
  border-bottom: solid 1px #1e1e1e;
  position: relative;
}

aside dd a:hover {
  background: #870000;
}

/*--- 上block*/
aside .s-1 dd a {
  text-align: center;
  line-height: 32px;
  color: #fff;
}

/*--- 下block*/
aside .s-2 dd a p {
  width: 100%;
  position: absolute;
  top: 18px;
  left: 0;
  line-height: 42px;
  text-align: center;
  color: #fff;
  z-index: 2;
}

aside .s-2 dd img {
  width: 94%;
  margin: 3% auto;
  opacity: 0.65;
}

/*--- footer ---*/
#point-f {
  width: 100%;
  background-color: rgba(84, 75, 32, 0.45);
  background-image: -webkit-gradient(linear,
      0 0,
      0 100%,
      color-stop(0.5, transparent),
      color-stop(0.5, #000),
      to(#000)),
    -webkit-gradient(linear, 0 0, 100% 0, color-stop(0.5, transparent), color-stop(0.5, #000), to(#000));
  -webkit-background-size: 3px 3px;
}

footer ul {
  max-width: 870px;
  margin: 0 auto;
  padding: 30px 0;
  overflow: hidden;
}

footer ul li {
  /*min-*/
  width: 410px;
  float: left;
}

footer ul .f-2 {
  float: right;
}

footer dl {
  overflow: hidden;
  text-align: center;
}

footer dt {
  margin-bottom: 5px;
  font-family: "Sawarabi Mincho";

  padding: 5px 0;
  position: relative;
  color: #fff;
  border: solid 1px #fff;
}

footer dd {
  font-size: 85%;
  line-height: 34px;
}

footer dd a {
  padding: 5px 0;
  color: #fff;
  position: relative;
}

footer dd a:hover {
  text-decoration: underline;
  color: #fff;
}

/*--- footCopy*/
.point-fc {
  padding: 10px 20px;
  margin: 0 auto;
  text-align: center;
  font-size: 85%;
  color: #fff;
  background: #000;
  font-family: "Sawarabi Mincho";
}

/*--- 404*/
.point-nf {
  margin: 0 auto;
  text-align: center;
}

.point-nf b {
  font-family: "Sawarabi Mincho";
  color: #870000;
  font-size: 230%;
}

/*--- pan*/
.point-pan {
  width: 870px;
  margin: 10px auto;
  color: #fff;
}

.point-pan a {
  display: inline;
  padding: 0 8px;
  font-size: 85%;
  color: #fff;
}

.point-pan a:hover {
  background: #870000;
  border-radius: 3px;
}

/*--- SNS ---*/
#point-sns {
  overflow: hidden;
  padding: 15px;
  margin-bottom: 30px;
  background: #fff;
}

.point-snsIn h2 {
  box-shadow: none;
  text-align: center;
}

.point-snsIn dd {
  width: 25%;
  margin: 0 auto;
  float: left;
  display: block;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  border-left: 0;
}

.point-snsIn dd a {
  width: 94%;
  margin: 0 auto;
  padding: 10px 0;
  color: #fff;
  background: #28aae1;
  position: relative;
  box-sizing: border-box;
}

.point-snsIn dd a:hover,
#fb:hover,
#ggl:hover,
#ht:hover {
  opacity: 0.8;
}

/*--- 個別*/
#tw {}

#fb {
  background: #041d4d;
}

#ggl {
  background: #dd4b39;
}

#ht {
  background: #3b5998;
  font-weight: bold;
}

/*--- topPage*/
.point-btn a {
  width: 60px;
  height: 60px;
  line-height: 56px;
  text-align: center;

  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;

  font-size: 9px;
  background: #870000;
}

.point-btn a:before {
  display: block;
  font-family: FontAwesome;
  content: "\f102";
  font-size: 46px;
  color: #fff;
  font-weight: 100;
}

.point-btn a:hover {
  background: #544b20;
}