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

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

body {
  height: 100%;
  font-family: "メイリオ", sans-serif;
  color: #3e352a;
  font-size: 12px;
  border-top: solid 6px #100e0c;
  background: #cde9f2;
  background: -moz-linear-gradient(top, #cde9f2 1%, #ffffff 73%);
  background: -webkit-linear-gradient(top, #cde9f2 1%, #ffffff 73%);
  background: linear-gradient(to bottom, #cde9f2 1%, #ffffff 73%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cde9f2', endColorstr='#ffffff', GradientType=0);
}

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: #e07a23;
}

em {
  color: #56a53f;
}

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

ins {
  display: inline-block;
  background: #56a53f;
  color: #fff;
}

/*--- 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: dotted 1px #bcbcbc;
  background: #f1f1f1;
  font-weight: normal;
}

table td {
  width: 350px;
  padding: 10px;
  vertical-align: top;
  border: 1px dotted #bcbcbc;
  font-size: 90%;
}

/*--- blockquote*/
blockquote {
  margin-bottom: 30px;
  padding: 2em;
  text-align: center;
  background: url(../images/aside_bg.jpg) repeat-x 0 0;
  color: #fff;
  text-shadow: 0px 0px 5px rgba(59, 18, 0, 0.65);
  font-family: "Sawarabi Mincho";
  font-size: 120%;
  position: relative;
  z-index: 1;
}

blockquote:before,
blockquote:after {
  font-size: 30px;
  line-height: 1em;
  color: rgba(59, 18, 0, 0.65);
  font-family: FontAwesome;
  z-index: -1;
  text-shadow: none;
}

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

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

/*--- list ul*/
article ul {
  width: 100%;
  margin: 40px 0;
  border: solid 8px #e4f2df;
  box-sizing: border-box;
}

article ul li {
  font-size: 12px;
  margin: 0.5em 0;
  padding: 10px 35px;
  line-height: 2.35em;
}

article ul li:before {
  content: "〇";
  margin-right: 5px;
  font-weight: 900;
  color: #56a53f;
}

/*--- list ol*/
article ol {
  width: 100%;
  margin: 40px 0;
  border-left: solid 8px #56a53f;
  background: #e4f2df;

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

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

  list-style: none;
  position: relative;
}

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

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

  width: 24px;
  height: 24px;
  line-height: 24px;
  left: 25px;

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

/*--- layout ---*/
#all {
  max-width: 1000px;
  height: 100%;
  margin: 0 auto;

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

#bg {
  background: url(../images/foot.png) repeat-x bottom;
}

#brand-wrap {
  max-width: 77%;
  float: right;
  overflow: hidden;
}

#brand-side {
  width: 21%;
  /*min-*/

  min-height: 100%;
  height: auto;
  background: url(../images/aside_bg.jpg) repeat-y 10px 0;
  background-size: 190px;
  float: left;
  color: #fff;
  position: sticky;
  top: 0;
  height: fit-content;
}

article {
  margin-bottom: 30px;
}

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

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

a:hover {
  color: #56a53f;
}

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

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

/* +下層用 */
h2,
.under h1 {
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.07em;
  color: #63473b;
  border-bottom: dotted 3px #b9a299;
  padding: 8px 10px;
  font-family: "Sawarabi Mincho";
}

.under h1 {
  width: 100%;
  height: initial;
  border-radius: initial;
}

h2:before,
.under h1:before {
  font-family: FontAwesome;
  content: "\f18c";
  color: #56a53f;
  font-size: 28px;
  margin-right: 5px;
  font-weight: normal;
}

.under h1:before {
  position: relative;
  left: 0;
  top: 0;
}

h3,
.under h2 {
  color: #56a53f;
  background: #e4f2df;
  padding: 8px 10px;
}

h4,
.under h3 {
  color: #63473b;
  padding: 5px 0;
}

h3:before,
h4:before,
.under h2:before,
.under h3:before {
  content: "〇";
  margin-right: 5px;
  font-weight: 900;
}

h5 {
  font-size: 110%;
  background: #393939;
  color: #fff;
  padding: 5px 10px;
}

h6 {
  font-size: 110%;
  padding: 5px 10px;
  color: #63473b;
}

/*--- header ---*/
#brand-hd {
  margin: 40px 0 60px;
  text-align: center;
}

#brand-hdnv {
  display: none;
}

/*--- h1+ add 2023/03/29 */
h1,
.ttl_h {
  width: 170px;
  height: 170px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #fff;
  display: table;
  position: relative;
}

.ttl_h {
  font-size: 110%;
}

h1:before,
.ttl_h:before {
  font-family: FontAwesome;
  content: "\f18c";
  color: #56a53f;
  font-size: 48px;
  font-weight: normal;
  position: absolute;
  top: -15px;
  left: 68px;
}

h1 a,
.ttl_h a {
  padding: 5px 15px 0;
  font-size: 110%;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -0.1em;
  color: #85766e;
  display: table-cell;
  vertical-align: middle;
}

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

/*--- headCopy*/
.brand-cp {
  background: #56a53f;
  color: #fff;
  font-size: 75%;
  font-weight: bold;
  display: inline-block;
  position: relative;
  padding: 8px 12px;
}

.brand-cp:before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-right: solid 10px #215512;
}

.brand-cp:after {
  position: absolute;
  content: "";
  top: 100%;
  right: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-left: solid 10px #215512;
}

.slicknav_menu {
  display: none;
}

/*--- mainSlider ---*/
#brand-mainvisual {
  margin: 10px 0 0;
}

#brand-mainvisual img {
  border: solid 4px #fff;
  box-sizing: border-box;
}

.bx-wrapper {
  margin: 0 auto;
  border: none;
  box-shadow: none;
}

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

/*--- mainArea ---*/
#brand-main {
  margin-top: 20px;
  padding: 2%;
  background: #fff;
  overflow: hidden;
}

/*--- 下層リンク ---*/
#brand-main .brand-lk {
  position: relative;
  overflow: hidden;
  background: #efece7;
  box-shadow: 1px 6px 5px -4px rgba(27, 67, 15, 0.2);
}

.brand-lk h2 {
  font-size: 145%;
  letter-spacing: -0.05;
  color: #56a53f;
  border: none;
  padding: 0;
}

.brand-lk p {
  line-height: 1.8;
}

.brand-lk img {
  width: 52%;
  margin-bottom: 0;
  float: left;
}

.brand-lk>div {
  width: 46%;
  float: right;
  padding: 8px 20px 20px 8px;
}

/*--- readMore*/
.brand-more {
  width: 120px;
  text-align: center;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.brand-more a:before {
  font-family: FontAwesome;
  content: "\f105";
  position: absolute;
  right: 15px;
}

.brand-more a {
  width: 90%;
  margin-left: 10%;
  line-height: 18px;
  padding: 5px 0;
  position: relative;
  background: #fff;
  border-left: solid 5px #56a53f;
}

/*--- recommend ---*/
article#brand-rc {
  margin: 0 0 20px;
  overflow: hidden;
  background: #efece7;
  box-shadow: 1px 6px 5px -4px #c1baad;
  text-align: center;
}

/*--- h3_link*/
.brand-rcIn {
  width: 50%;
  float: left;
  margin: 0 0 10px;
}

.brand-rcIn h3:before {
  display: none;
}

.brand-rcIn h3 {
  margin: 0 auto;
  font-size: 15px;
  text-decoration: none;
  border-left: 0;
  background: none;
}

.brand-rcIn h3 a {
  padding: 16px 26px 16px 0;
  position: relative;
  background: #fff;
  border-left: solid 8px #56a53f;
  box-sizing: border-box;
  box-shadow: 1px 6px 5px -4px rgba(27, 67, 15, 0.2);
}

.brand-rcIn h3 a:before {
  font-family: FontAwesome;
  content: "\f105";
  position: absolute;
  right: 15px;
}

.brand-rcIn h3 a:hover {
  color: #56a53f;
}

.brand-rcIn p {
  width: 90%;
  margin: 0 auto;
  text-align: left;
  font-size: 85%;
}

/*--- aside ---*/
aside dl {
  margin-bottom: 30px;
  text-align: center;
}

aside dt {
  font-size: 120%;
  font-weight: bold;
  color: #fff;
  padding: 5px 10px;
  text-shadow: 0px 0px 5px rgba(75, 47, 43, 0.99);
}

aside dd {
  width: 166px;
  margin: 8px auto;
  font-size: 90%;
  background: rgba(255, 255, 255, 0.92);
  border: solid 1px #fff;
  box-sizing: border-box;
  color: #56a53f;
  font-family: "Sawarabi Mincho";
  box-shadow: 1px 2px 4px -1px rgba(75, 47, 43, 0.8);
  border-radius: 5px;
}

aside dd a:hover {
  opacity: 0.8;
}

/*--- 上block*/
aside .side-first dd a {
  padding: 15px 10px;
}

/*--- 下block*/
aside .side-second img {
  width: 100%;
  border-radius: 5px 5px 0 0;
}

aside .side-second p {
  padding: 5px 0;
}

/*--- footer ---*/
#brand-ft {
  width: 100%;
  background: #9ac46b;
}

footer ul {
  max-width: 680px;
  margin: 0 auto;
  overflow: hidden;
}

footer ul li {
  /* min-width: 300px; */
  width: 320px;
  height: 200px;
  margin: 10px 10px 20px;
  text-align: center;
  background: #efece7;
  border-radius: 10px;
  float: left;
}

footer dl {
  padding: 0 0 20px;
  overflow: hidden;
}

footer dt {
  font-size: 120%;
  color: #56a53f;
  margin: 15px auto;
  font-weight: bold;
  position: relative;
}

footer dd {
  font-size: 90%;
}

footer dd a {
  width: 80%;
  margin: 10px auto;
  padding: 5px 0;
}

footer dd a:hover {
  background: #feea5f;
  border-radius: 12px;
}

/*--- footCopy*/
.brand-fc {
  width: 100%;
  padding: 10px 0;
  margin: 0 auto;
  font-size: 75%;
  color: #fff;
  background: #100e0c;
  text-align: center;
}

/*--- 404*/
.brand-nf {
  margin-top: 20px;
  min-height: 900px;
  text-align: center;
}

.brand-nf b {
  font-size: 400%;
  color: #56a53f;
}

/*--- pan*/
.brand-pan {
  width: 950px;
  margin: 20px auto 0;
}

.brand-pan a {
  display: inline;
  padding: 1px 10px 0;
  font-size: 90%;
}

.brand-pan a:hover {
  background: #fff;
  border-radius: 10px;
}

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

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

.brand-snsIn h2:first-letter {
  color: #56a53f;
}

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

.brand-snsIn dd a {
  width: 94%;
  margin: 0 auto;
  padding: 12px 0;
  color: #28aae1;
  background: #fff;
  border-left: solid 8px #28aae1;
  position: relative;
  box-sizing: border-box;
  box-shadow: 1px 6px 5px -4px rgba(27, 67, 15, 0.2);
}

.brand-snsIn dd a:hover {
  opacity: 0.8;
  text-decoration: none;
}

/*--- 個別*/
#fb {
  border-color: #041d4d;
  color: #041d4d;
}

#ggl {
  border-color: #dd4b39;
  color: #dd4b39;
}

#ht {
  border-color: #3b5998;
  color: #3b5998;
}

.brand-snsIn .fab {}

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

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

  font-size: 9px;
  border-radius: 50%;
  background: #63473b;
}

.brand-btn a:before {
  display: block;
  font-family: FontAwesome;
  content: "\f106";
  font-size: 46px;
  color: #fff;
}

.brand-btn a:hover {
  background: #56a53f;
}

@charset "utf-8";

@media screen and (max-width: 727px) {
  * {
    line-height: 1.7;
  }

  /*--- layout ---*/
  #all {
    width: 100%;
    flex-direction: column;
  }

  #bg {
    background-size: 60%;
  }

  #brand-wrap {
    width: 100%;
    margin: 0 auto 80px;
    background: none;
    box-shadow: none;
    max-width: none;
  }

  /*--- title ---*/
  h2,
  h3,
  h4,
  h5,
  h6 {
    text-align: left;
    font-size: 125%;
    line-height: 1.3;
  }

  h1 {
    width: 180px;
    height: 180px;
    padding-right: 10px;
  }

  h1 a,
  .brand-lower h1 a {
    font-size: 110%;
    line-height: 1.2;

    width: 94%;
    margin: 0;
    padding: 8px 0;
  }

  h1:before {
    font-size: 38px;
    font-weight: normal;
    position: absolute;
    top: 0;
    left: 42%;
  }

  .brand-cp,
  .brand-lower .brand-cp {
    width: 106%;
    margin-left: -3%;
    padding: 5px 0;
    line-height: 1.2;
  }

  /*--- header ---*/
  #brand-hd {
    margin: 35px auto 0;
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .brand-hdIn {
    width: 100%;
  }

  .brand-hdTtl,
  .brand-lower .brand-hdTtl {
    width: 100%;
    height: auto;
    margin: 40px auto 0;
  }

  /*--- mainSlider ---*/
  #brand-mainvisual {
    width: 96%;
    margin: 0 auto;
    position: static;
    overflow: hidden;
  }

  #brand-mainvisual li img {
    margin: 0;
  }

  .brand-sld {
    left: 0;
    margin-left: 0;
  }

  /*--- mainArea ---*/
  #brand-main {
    width: 96%;
    margin: 10px 2% 0;
    float: none;
  }

  /*--- 下層リンク ---*/
  .brand-lk {
    width: 100%;
    float: none;
  }

  .brand-lk>div {
    width: 96%;
    margin: 0 auto;
    float: none;
  }

  .brand-lk img {
    width: 96%;
    margin: 2%;
    border: none;
    float: none;
  }

  /*--- readMore*/
  .brand-more {
    width: 90%;
    margin: 1em auto;
    text-align: center;
    position: static;
  }

  .brand-more a {
    line-height: 3em;
  }

  /*--- recommend ---*/
  #brand-rc {
    width: 100%;
  }

  /*--- h3_link*/
  .brand-rcIn {
    width: 96%;
    float: none;
    margin: 0 auto;
  }

  .brand-rcIn h3 {
    text-align: center;
  }

  /*--- footer ---*/
  #brand-ft {
    width: 100%;
  }

  footer ul {
    width: 94%;
    margin: 0 auto;
  }

  footer ul li {
    width: 100%;
    height: auto;
    margin: 0 0 10px;
    float: none;
  }

  footer dl {
    padding: 0;
  }

  footer dd a {
    padding: 12px 0;
  }

  /*--- footer copy*/
  .brand-fc {
    width: 96%;
    margin: 0 auto;
    text-align: center;
  }

  /*--- pan*/
  .brand-pan {
    width: 100%;
    margin: 5px auto;
  }

  /*--- 404*/
  .brand-nf {
    margin-top: 0;
    min-height: auto;
  }

  .brand-nf b {
    font-size: 250%;
  }

  /*--- SNS ---*/
  #brand-sns {
    width: 100%;
  }

  .brand-snsIn dd {
    width: 50%;
    margin: 0 0 5px;
  }

  /*--- aside ---*/
  #brand-side {
    width: 92%;
    margin: 0 auto;
    float: none;
    background: url(../images/aside_bg.jpg);
    position: static;
  }

  aside dl {
    margin-bottom: 0;
  }

  aside dt {
    color: #56a53f;
    padding: 5px 0;
    text-shadow: none;
  }

  aside dd {
    width: 100%;
    margin: 0 auto;
    border: 0;
    box-shadow: none;
    border-radius: 0;
  }

  aside .side-second dd a {
    padding: 15px 10px;
  }

  aside .side-second p {
    padding: 0;
  }

  /*--- slicknav ---*/
  #brand-hdnv,
  .brand-menu {
    display: none;
  }

  .slicknav_menu .slicknav_icon {
    display: none;
  }

  .slicknav_nav {
    border-bottom: none;
  }

  .slicknav_btn {
    float: none;
    background: #2a1e19;
    /*--- bar背景*/
    border-radius: 0;
  }

  .slicknav_menu {
    width: 100%;
    display: block;
    padding: 0;
    background: #efece7;
    /*--- dl背景*/
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
  }

  .slicknav_menu a {
    margin: 0;
    color: #63473b;
    /*--- dd文字*/
    overflow: hidden;
    padding: 0;
  }

  .slicknav_nav a {
    padding: 7px 15px;
    border: none;
    background: none;
    /*--- dd背景*/
  }

  .slicknav_nav a:hover {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    background: none;
    opacity: 1;
    color: #fff;
    /*--- hover文字*/
    background: #56a53f;
    /*--- hover背景*/
  }

  .slicknav_nav .slicknav_row {
    margin: 0;
    padding: 8px;
  }

  .slicknav_nav .slicknav_row:hover {
    color: #fff;
    border-radius: 0;
    background: none;
  }

  .slicknav_menu .slicknav_menutxt {
    float: right;
    text-shadow: none;
    line-height: 1.5em;
    font-size: 90%;
    padding: 10px;
    color: #ffffff;
    /*--- bar文字*/
  }

  .slicknav_menu img {
    display: none;
  }

  .slicknav_menu>ul>li>a>p {
    display: inline-block;
  }

  .slicknav_nav ul {
    margin: 0;
  }

  a.slicknav_btn.slicknav_collapsed {
    width: 100%;
    display: block;
  }

  ul.slicknav_nav li:last-child {
    border-bottom: none;
  }

  .slicknav_menu .slicknav_no-text {
    float: right;
    margin: 15px;
  }

  .sticky {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
  }
}