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

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

body {
  font-family: "メイリオ", "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3",
    Verdana, Geneva, Arial, sans-serif;
  color: #333;
  font-size: 12px;
  background-size: 100%;
  background: #fefefd;
  background: -moz-linear-gradient(top, #f7f7f7 1%, #fff 100%);
  background: -webkit-linear-gradient(top, #f7f7f7 1%, #fff 100%);
  background: linear-gradient(to bottom, #f7f7f7 1%, #fff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#fff', GradientType=1);
}

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 {
  border: solid 2px #9f0000;
  color: #9f0000;
  padding: 0 3px;
  font-family: "Noto Sans Japanese";
}

em {
  background: #decf9e;
  padding: 0 3px;
}

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

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

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

table th {
  width: 150px;
  padding: 10px;
  text-align: center;
  vertical-align: top;
  border: solid 2px #666;
  background: #decf9e;
  font-weight: bold;
}

table td {
  width: 350px;
  padding: 10px;
  vertical-align: top;
  border: 2px solid #666;
  font-size: 90%;
}

/*--- blockquote*/
blockquote {
  margin-bottom: 30px;
  padding: 2em;
  text-align: center;
  background: #f2efe3;
  font-family: "Noto Sans Japanese";
  font-size: 120%;
  position: relative;
  z-index: 1;
}

blockquote:before,
blockquote:after {
  font-size: 22px;
  line-height: 1em;
  color: #decf9e;
  font-family: FontAwesome;
  z-index: -1;
  text-shadow: none;
}

blockquote:before {
  content: "\f10d";
  position: absolute;
  left: 10px;
  top: 10px;
}

blockquote:after {
  content: "\f10e";
  position: absolute;
  right: 10px;
  bottom: 10px;
}

/*--- list ul*/
article ul {
  width: 100%;
  margin: 40px 0;
  border-top: 2px solid #000;
  border-bottom: 1px dotted #ccc;
}

article ul li {
  margin: 2em 10px;
  padding: 5px 10px;
}

article ul li:before {
  font-family: FontAwesome;
  content: "\f02b";
  color: #9f0000;
  font-size: 16px;
  margin-right: 8px;
}

/*--- list ol*/
article ol {
  width: 100%;
  margin: 40px 0;
  border-top: 2px solid #000;
  border-bottom: 1px dotted #ccc;
  background: #f2efe3;

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

article ol li {
  margin: 1.5em 0;
  padding: 15px 0 15px 65px;

  list-style: none;
  position: relative;
}

article ol li:before {
  font-size: 12px;
  color: #be9d2d;
  border: solid 1px #be9d2d;
  background: #fff;
  font-weight: bold;
  border-radius: 50%;

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

  width: 20px;
  height: 20px;
  line-height: 20px;
  left: 35px;

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

/*--- layout ---*/
#card-wrap {
  max-width: 970px;
  margin: 0 auto 30px;
  /* overflow: hidden; */
  position: relative;
}

article {
  margin-bottom: 30px;
  background: #fff;
  border: solid 1px #f0ede3;
  box-sizing: border-box;
}

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

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

a:hover {
  color: #b9941c;
}

/*--- title ---*/
h1,
h2,
h3,
h4,
h5,
h6,
.under h1,
.under h2,
.under h3,
.ttl_h {
  line-height: 1.2;
  font-weight: 500;
  font-family: "Noto Sans Japanese";
}

h2,
h3,
h4,
h5,
h6,
.under h1 {
  font-size: 120%;
  margin-bottom: 15px;
}

h2,
.under h1 {
  font-size: 140%;
  padding: 12px 20px;
  position: relative;

  border: solid 1px #e6e6e6;
  background: #ffffff;
  background: -moz-linear-gradient(top,
      #ffffff 0%,
      #f1f1f1 50%,
      #e1e1e1 51%,
      #f6f6f6 100%);
  background: -webkit-linear-gradient(top,
      #ffffff 0%,
      #f1f1f1 50%,
      #e1e1e1 51%,
      #f6f6f6 100%);
  background: linear-gradient(to bottom,
      #ffffff 0%,
      #f1f1f1 50%,
      #e1e1e1 51%,
      #f6f6f6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f6f6f6', GradientType=0);
}

h2:before,
.under h1::before {
  content: " ";
  position: absolute;
  top: 10%;
  left: 5px;
  width: 5px;
  height: 80%;
  background: #000000;
}

h3,
.under h2 {
  padding: 10px;
  margin: 10px auto 5px;
  border-top: 2px solid #000;
  border-bottom: 1px dotted #ccc;
  background: #f2efe3;
}

h4,
.under h3 {
  color: #fff;
  padding: 3px 5px;
  background: #333333;
}

h4:before,
.under h3::before {
  content: "◆";
  margin-right: 3px;
}

.under h3 {
  margin-top: 40px;
}

h5 {
  font-size: 110%;
  border-top: 2px solid #000;
  border-bottom: 1px dotted #ccc;
  padding: 5px 10px;
}

h6 {
  font-size: 110%;
  padding: 3px 5px;
  border-left: 6px solid #000;
  border-bottom: 1px solid #ccc;
}

/*--- header ---*/
#card-hd {
  width: 100%;
  border-bottom: solid 1px #666;
  font-family: "Noto Sans Japanese";
  background: #fefefd;
  background: -moz-linear-gradient(top, #f7f7f7 1%, #fff 100%);
  background: -webkit-linear-gradient(top, #f7f7f7 1%, #fff 100%);
  background: linear-gradient(to bottom, #f7f7f7 1%, #fff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#fff', GradientType=1);
}

.card-lower #card-hd {
  margin-bottom: 0;
}

.card-hdIn {
  max-width: 972px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.card-hdTtl {
  width: 100%;
  background: #000;
  box-shadow: 0px 3px 6px -2px rgba(60, 54, 33, 0.5);
}

/*--- h1*/
h1 a,
.ttl_h a {
  margin: 20px;
  font-size: 172%;
  font-weight: 500;
  padding: 5px 8px;
  letter-spacing: -0.1em;
  color: #000;
}

h1 a:before,
.ttl_h a:before {
  font-family: FontAwesome;
  content: "\f009";
  color: #9f0000;
  margin-right: 5px;
}

h1 a:hover,
.ttl_h a:hover {
  text-decoration: none;
}

h1 a:hover:before,
.ttl_h a:hover:before {
  color: #decf9e;
}

/*--- headCopy*/
.card-cp {
  width: 930px;
  color: #decf9e;
  padding: 3px 0;
  margin: 0 auto;
  font-size: 85%;
}

/*--- headNav ---*/
#card-hdnv {
  width: 100%;
}

.card-nvIn {
  display: flex;
  max-width: 972px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;

  background: #ffffff;
  background: -moz-linear-gradient(top,
      #ffffff 0%,
      #c1c1c1 22%,
      #757575 41%,
      #757575 60%,
      #c1c1c1 79%,
      #ffffff 100%);
  background: -webkit-linear-gradient(top,
      #ffffff 0%,
      #c1c1c1 22%,
      #757575 41%,
      #757575 60%,
      #c1c1c1 79%,
      #ffffff 100%);
  background: linear-gradient(to bottom,
      #ffffff 0%,
      #c1c1c1 22%,
      #757575 41%,
      #757575 60%,
      #c1c1c1 79%,
      #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
}

.card-nvIn li {
  /* width: 242px; */
  width: -webkit-fill-available;
  margin-right: 1px;
  float: left;
}

.card-nvIn li:nth-of-type(1) a {
  margin-left: 1px;
}

.card-nvIn li a {
  font-size: 90%;
  font-weight: 700;
  padding: 20px 0;
  position: relative;

  background: #fefefd;
  background: -moz-linear-gradient(top, #fefefd 49%, #f7f7f7 100%);
  background: -webkit-linear-gradient(top, #fefefd 49%, #f7f7f7 100%);
  background: linear-gradient(to bottom, #fefefd 49%, #f7f7f7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fefefd', endColorstr='#f7f7f7', GradientType=1);
}

.card-nvIn li a:hover {
  position: relative;

  background: #fefefd;
  background: -moz-linear-gradient(top, #fefefd 49%, #efedd7 100%);
  background: -webkit-linear-gradient(top, #fefefd 49%, #efedd7 100%);
  background: linear-gradient(to bottom, #fefefd 49%, #efedd7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fefefd', endColorstr='#efedd7', GradientType=1);
}

.card-nvIn li a:after {
  font-family: FontAwesome;
  content: "\f103";
  font-size: 60px;
  font-weight: normal;
  position: absolute;
  top: 0;
  left: 8%;
  color: rgba(0, 0, 0, 0.1);
}

.card-nvIn li a:hover:after {
  color: rgba(159, 0, 0, 0.8);
}

.slicknav_menu {
  display: none;
}

/*--- mainSlider ---*/
#card-mainvisual {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.card-slider {
  width: 100%;
  position: relative;
  left: 50%;
  margin-left: -485px;
}

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

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

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

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

#card-main {
  max-width: 74%;
  float: left;
}

#card-main article {
  padding: 2%;
  overflow: hidden;
}

/*--- 下層リンク ---*/
.card-lk {
  position: relative;
  overflow: hidden;
}

/*--- 2col*/
.card-sec {
  width: 100%;
  overflow: hidden;
}

.card-sec .card-lk {
  width: 49%;
  box-shadow: 0px 3px 6px -2px rgba(60, 54, 33, 0.5);
  float: left;
}

.card-sec .card-lk:nth-of-type(2) {
  float: right;
}

.card-sec .card-lk h2 {
  font-size: 120%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px dotted #ccc;
  background: none;
}

.card-sec .card-lk h2:before {
  display: none;
}

.card-sec .card-lk img {
  margin-bottom: 0;
}

/*--- readMore*/
.card-more {
  width: 160px;
  margin: 20px auto 0;
  text-align: center;
}

.card-more a {
  background: #9f0000;
  color: #fff;
  padding: 3px 0;
  border-radius: 12px;
}

.card-more a:before {
  font-family: FontAwesome;
  content: "\f04e";
  margin-right: 5px;
  display: inline-block;
}

.card-more a:hover {
  background: #decf9e;
}

/*--- recommend ---*/
#card-rc {
  margin: 10px auto 5px;
  border-top: 2px solid #000;
  background: #f2efe3;
}

#card-rc h2 {
  font-size: 120%;
  padding: 12px 20px;
  border: 0;
  border-bottom: 1px dotted #ccc;
  background: none;
}

#card-rc h2:before {
  font-family: FontAwesome;
  content: "\f0eb";
  margin-right: 5px;
  color: #9f0000;
  font-size: 120%;
  position: static;
  width: auto;
  height: auto;
  background: none;
}

/*--- h3_link*/
.card-rcIn {
  width: 100%;
  margin-bottom: 15px;
}

.card-rcIn h3 {
  width: 92%;
  border: none;
  padding: 0;
  margin: 0 auto;
  background: none;
}

.card-rcIn h3 a {
  font-size: 95%;
  padding: 12px 20px;
  position: relative;

  border: solid 1px #e6e6e6;
  background: #ffffff;
  background: -moz-linear-gradient(top,
      #ffffff 0%,
      #f1f1f1 50%,
      #e1e1e1 51%,
      #f6f6f6 100%);
  background: -webkit-linear-gradient(top,
      #ffffff 0%,
      #f1f1f1 50%,
      #e1e1e1 51%,
      #f6f6f6 100%);
  background: linear-gradient(to bottom,
      #ffffff 0%,
      #f1f1f1 50%,
      #e1e1e1 51%,
      #f6f6f6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f6f6f6', GradientType=0);
}

.card-rcIn h3 a:before {
  content: " ";
  position: absolute;
  top: 10%;
  left: 5px;
  width: 5px;
  height: 80%;
  background: #9f0000;
}

.card-rcIn h3 a:hover:before {
  background: #decf9e;
}

.card-rcIn p {
  margin: 5px auto 0;
  text-align: right;
  font-size: 90%;
}

/*--- aside ---*/
#card-side {
  /*min-*/
  width: 24%;
  float: right;
  font-family: "Noto Sans Japanese";
  position: sticky;
  top: 0;
  height: fit-content;
}

aside dl {
  margin-bottom: 30px;
  overflow: hidden;
}

aside dt {
  font-size: 110%;
  padding: 12px 20px;
  background: #fff;
  border-top: 2px solid #000;
  border-bottom: 1px dotted #ccc;
}

aside dt:before {
  font-family: FontAwesome;
  content: "\f00b";
  color: #decf9e;
  margin-right: 5px;
  font-weight: normal;
}

aside dd {
  background: #fff;
  border-bottom: 1px dotted #ccc;
}

/*--- 上block*/
aside .side-sa dd a {
  padding: 15px;
  position: relative;
}

aside .side-sa dd a:before {
  font-family: FontAwesome;
  content: "\f04e";
  font-weight: normal;
  color: #cec8c8;
  position: absolute;
  right: 10px;
}

aside .side-sa dd a:hover:before {
  color: #9f0000;
}

/*--- 下block*/
aside .side-at dd {
  position: relative;
}

aside .side-at a p {
  width: 90%;
  font-size: 80%;
  color: #fff;
  position: absolute;
  bottom: 10px;
  right: 5%;
  padding: 2px 10px;
  background: rgba(0, 0, 0, 0.7);
}

aside .side-at a:hover p {
  color: #decf9e;
}

aside .side-at a:hover p:after {
  color: #d97171;
}

aside .side-at p:after {
  font-family: FontAwesome;
  content: "\f04e";
  font-weight: normal;
  position: absolute;
  right: 8px;
  bottom: 5px;
}

aside .side-at dd img {
  width: 90%;
  margin: 5%;
}

/*--- footer ---*/
#card-ft {
  width: 100%;
  background: #fefefd;
  background: -moz-linear-gradient(top, #fefefd 49%, #e6e4c1 100%);
  background: -webkit-linear-gradient(top, #fefefd 49%, #e6e4c1 100%);
  background: linear-gradient(to bottom, #fefefd 49%, #e6e4c1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fefefd', endColorstr='#e6e4c1', GradientType=1);
}

footer ul {
  width: 970px;
  margin: 0 auto;
  overflow: hidden;
}

footer li {
  width: 330px;
  margin-right: 55px;
  float: left;
  font-family: "Noto Sans Japanese";
}

footer dl {
  margin: 0 auto;
  overflow: hidden;
}

footer dt {
  font-size: 110%;
  padding: 12px 20px;
  border-bottom: 1px dotted #ccc;
}

footer dt:before {
  font-family: FontAwesome;
  content: "\f00b";
  color: #decf9e;
  margin-right: 5px;
  font-weight: normal;
}

footer dd a {
  border-bottom: 1px dotted #ccc;
  padding: 15px;
  position: relative;
}

footer dd a:before {
  font-family: FontAwesome;
  content: "\f04e";
  font-weight: normal;
  color: #cec8c8;
  position: absolute;
  right: 10px;
}

footer dd a:hover:before {
  color: #9f0000;
}

/*--- footCopy*/
.card-fc {
  width: 970px;
  padding: 20px 0;
  margin: 0 auto;
  font-size: 85%;
  text-align: left;
}

/*--- 404*/
.card-nf {
  margin-top: 20px;
  min-height: 700px;
}

.card-nf b {
  font-family: "Noto Sans Japanese";
  font-size: 370%;
  color: #decf9e;
}

/*--- pan*/
.card-pan {
  width: 970px;
  margin: 10px auto;
}

.card-pan a {
  display: inline;
  padding: 0 8px;
  font-size: 85%;
}

/*--- SNS ---*/
#card-sns {}

.card-snsIn {
  overflow: hidden;
}

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

.card-snsIn dd a {
  width: 90%;
  margin: 0 auto;
  padding: 5px 0;
  color: #bc9e3d;
  border: solid 1px #bc9e3d;
  position: relative;
  border-radius: 4px;
}

.card-snsIn dd a:hover {
  background: #bc9e3d;
  color: #fff;
}

/*--- topPage*/
.card-btn a {
  width: 50px;
  height: 50px;
  line-height: 46px;
  text-align: center;

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

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

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

.card-btn a:hover {
  background: #9f0000;
}