@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 {
  color: #000;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka",
    "ＭＳ Ｐゴシック", sans-serif;
  font-size: 13px;
  background: #f4f6fb;
  line-height: 1.8;
}

del {
  text-decoration: line-through;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

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

strong {
  border-bottom: dotted 2px #ffa525;
}

em {
  color: #f59000;
  font-style: normal;
}

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

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

/*--- table*/
table {
  border-collapse: collapse;
  line-height: 1.5;
  margin-bottom: 20px;
  border-top: solid 1px #ddd;
}

table th {
  width: 150px;
  padding: 10px;
  text-align: left;
  vertical-align: top;
  border: solid 1px #ccc;
  background: #dceaf8;
}

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

/*--- blockquote*/
blockquote {
  margin-bottom: 30px;
  padding: 2em;
  text-align: center;
  border: solid 4px #f1f1ee;
  font-size: 100%;
  position: relative;
  z-index: 1;
}

blockquote:before {
  font-size: 40px;
  content: "❝";
  color: #386390;
  position: absolute;
  left: 5px;
  top: -20px;
}

blockquote:after {
  font-size: 40px;
  content: "❞";
  color: #386390;
  position: absolute;
  right: 5px;
  bottom: -20px;
}

/*--- list ul*/
article ul {
  width: 100%;
  margin: 40px 0;
  padding: 10px 0;
  position: relative;
  background: #fafaf8;
}

article ul li {
  margin: 20px;
  padding: 0 15px;
}

article ul li:before {
  font-family: FontAwesome;
  content: "\f051";
  color: #386390;
  margin-right: 10px;
}

/*--- list ol*/
article ol {
  width: 100%;
  margin: 40px 0;
  padding: 10px 0;
  counter-reset: number;
  list-style-type: none !important;
  position: relative;
  border: solid 4px #f1f1ee;
  border-right: 0;
  border-left: 0;
}

article ol li {
  width: 96%;
  margin: 10px auto;
  padding: 10px 0 10px 50px;
  list-style: none;
  position: relative;
}

article ol li:before {
  font-size: 12px;
  font-family: "Noto Sans Japanese";
  color: #386390;
  border: solid 1px #386390;
  position: absolute;
  counter-increment: number;
  content: counter(number);
  text-align: center;
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  left: 15px;
  border-radius: 3px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*--- layout ---*/
#up-layout {
  margin: 0 auto;
  /* overflow: hidden; */
  background: rgb(241, 241, 238);
  background: -moz-linear-gradient(top,
      rgba(241, 241, 238, 1) 0%,
      rgba(255, 255, 255, 1) 12%,
      rgba(255, 255, 255, 1) 12%);
  background: -webkit-linear-gradient(top,
      rgba(241, 241, 238, 1) 0%,
      rgba(255, 255, 255, 1) 12%,
      rgba(255, 255, 255, 1) 12%);
  background: linear-gradient(to bottom,
      rgba(241, 241, 238, 1) 0%,
      rgba(255, 255, 255, 1) 12%,
      rgba(255, 255, 255, 1) 12%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f1f1ee', endColorstr='#ffffff', GradientType=0);
}

#up-layout main {
  display: flex;
  justify-content: space-between;
}

main {
  max-width: 960px;
  margin: 20px auto;
  /* overflow: hidden; */
}

article {
  margin-bottom: 30px;
}

article img {
  max-width: 100%;
  border: solid 10px #fff;
  box-sizing: border-box;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin-bottom: 15px;
}

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

a:hover {
  color: #ffa525;
}

/*--- title ---*/
h2,
h3,
h4,
h5,
h6,
.under h1,
.under h2,
.under h3 {
  line-height: 1.2;
  font-weight: normal;
  font-family: "Noto Sans Japanese";
  margin-bottom: 15px;
}

h2,
.under h1 {
  font-size: 130%;
  letter-spacing: -0.07em;
  padding: 0.5em 15px;
  font-weight: 500;
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #ff9600;
  border-radius: 4px 4px 0 0;

  background: rgb(255, 189, 24);
  background: -moz-linear-gradient(-45deg,
      rgba(255, 189, 24, 1) 0%,
      rgba(255, 165, 37, 1) 100%);
  background: -webkit-linear-gradient(-45deg,
      rgba(255, 189, 24, 1) 0%,
      rgba(255, 165, 37, 1) 100%);
  background: linear-gradient(135deg,
      rgba(255, 189, 24, 1) 0%,
      rgba(255, 165, 37, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbd18', endColorstr='#ffa525', GradientType=1);
}

h3,
.under h2 {
  font-size: 130%;
  background: #fafaf8;
  padding: 0.5em 15px;
  border: solid 1px #ddd;
  border-bottom: 3px solid #ffa525;
  border-radius: 4px 4px 0 0;
}

h4,
.under h3 {
  font-size: 120%;
  padding: 5px 10px;
  border-bottom: solid 4px #f1f1ee;
  position: relative;
}

h4:after,
.under h3::after {
  content: "";
  display: block;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 50px;
  border-bottom: 4px solid #ffbd18;
}

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

h5 {
  font-size: 110%;
  border-left: solid 6px #ffbd18;
  background: #e9e4d6;
  padding: 5px 10px;
  font-weight: bold;
}

h6 {
  font-size: 100%;
  border-bottom: dotted 2px #ccc;
  font-weight: bold;
  padding: 5px 10px;
}

/*--- header ---*/
#up-head {
  width: 100%;
  background: #fff;
  height: 80px;
  position: relative;
}

.up-headIn {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 10px;
  overflow: hidden;
}

.up-headTtl {
  width: 201px;
  height: 201px;
  display: table;
  position: relative;
  z-index: 2;

  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  border: solid 1px #ff9600;

  background: rgb(255, 189, 24);
  background: -moz-linear-gradient(-45deg,
      rgba(255, 189, 24, 1) 0%,
      rgba(255, 165, 37, 1) 100%);
  background: -webkit-linear-gradient(-45deg,
      rgba(255, 189, 24, 1) 0%,
      rgba(255, 165, 37, 1) 100%);
  background: linear-gradient(135deg,
      rgba(255, 189, 24, 1) 0%,
      rgba(255, 165, 37, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbd18', endColorstr='#ffa525', GradientType=1);
}

.up-headTtlIn {
  display: table-cell;
  vertical-align: middle;
}

/*--- h1*/
h1,
.ttl_h {
  font-weight: normal;
  font-family: "Noto Sans Japanese";
}

h1 a:first-letter,
.ttl_h a:first-letter {
  font-size: 180%;
}

h1 a,
.ttl_h a {
  width: 90%;
  margin: 10px auto;
  text-align: center;
  font-size: 130%;
  line-height: 1.2em;
  letter-spacing: -0.1em;
}

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

/*--- headCopy*/
.up-copy {
  width: 90%;
  margin: 10px auto;
  font-weight: bold;
  text-align: center;
  color: #fff;
  line-height: 1.2em;
  font-size: 85%;
  font-family: "Noto Sans Japanese";
}

/*--- headNav ---*/
#up-headnv {
  width: 100%;
  border-top: 1px solid #eee;
  border-bottom: 4px solid #ffa525;
  position: absolute;
  bottom: 0;
  left: 0;

  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(top,
      rgba(255, 255, 255, 1) 0%,
      rgba(247, 247, 245, 1) 100%);
  background: -webkit-linear-gradient(top,
      rgba(255, 255, 255, 1) 0%,
      rgba(247, 247, 245, 1) 100%);
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 1) 0%,
      rgba(247, 247, 245, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f7f7f5', GradientType=0);
}

.up-nvIn {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}

.up-nvIn li {
  width: 175px;
  float: left;
  font-family: "Noto Sans Japanese";
}

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

.up-nvIn li a {
  text-align: center;
  padding: 12px 0;
  background: url(../images/line.png) no-repeat right;
}

.up-nvIn li a:hover {
  color: #000;
  background: rgb(255, 238, 212);
  background: -moz-linear-gradient(top,
      rgba(255, 238, 212, 1) 0%,
      rgba(255, 247, 236, 1) 100%);
  background: -webkit-linear-gradient(top,
      rgba(255, 238, 212, 1) 0%,
      rgba(255, 247, 236, 1) 100%);
  background: linear-gradient(to bottom,
      rgba(255, 238, 212, 1) 0%,
      rgba(255, 247, 236, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeed4', endColorstr='#fff7ec', GradientType=0);
}

.slicknav_menu {
  display: none;
}

/*--- mainSlider ---*/
#up-mainvisual {
  margin: 20px 0;
  border: solid 10px #fff;
  box-sizing: border-box;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

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

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

/*--- mainArea ---*/
#up-main {
  max-width: 75%;
  float: right;
}

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

/*--- 下層リンク ---*/
.up-sec {
  background: #ffffff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1) inset;
}

.up-sec .up-kasou h2 {
  box-shadow: none;
  border-radius: 0;
  background: none;
  padding: 5px 10px;
  border-bottom: solid 4px #f1f1ee;
  position: relative;
}

.up-sec .up-kasou h2:after {
  content: "";
  display: block;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 50px;
  border-bottom: 4px solid #ffbd18;
}

.up-sec .up-kasou {
  width: 96%;
  margin: 10px auto;
  border-bottom: dashed 1px #ccc;
  overflow: hidden;
}

.up-sec .up-kasou:nth-last-of-type(1) {
  border-bottom: 0;
}

.up-sec .up-kasouIn {
  width: 58%;
  float: left;
}

.up-sec .up-kasou img {
  width: 40%;
  float: right;
  border: solid 4px #fff;
  margin-bottom: 0;
}

.up-kasou p {
  font-size: 90%;
  color: #747474;
}

/*--- readMore*/
.up-more {
  margin-top: 20px;
}

.up-more a {
  width: 140px;
  text-align: center;
  margin: 0 auto;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  position: relative;
  border-bottom: solid 2px #1a4e77;
  border-radius: 4px;
  background: rgb(17, 72, 132);
  background: -moz-linear-gradient(top,
      rgba(17, 72, 132, 1) 1%,
      rgba(44, 107, 157, 1) 100%);
  background: -webkit-linear-gradient(top,
      rgba(17, 72, 132, 1) 1%,
      rgba(44, 107, 157, 1) 100%);
  background: linear-gradient(to bottom,
      rgba(17, 72, 132, 1) 1%,
      rgba(44, 107, 157, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#114884', endColorstr='#2c6b9d', GradientType=0);
}

.up-more a:before {
  font-family: FontAwesome;
  content: "\f0da";
  position: absolute;
  right: 5px;
}

.up-more a:hover {
  background: #ffa525;
  border-bottom: 0;
  border-top: solid 2px #fff;
  color: #fff;
}

/*--- recommend ---*/
#up-main article#up-rec {
  margin-bottom: 0;
  padding: 0 0 10px;
  background: #fafaf8;
}

#up-rec h2:after {
  display: none;
}

/*--- h3_link*/
.up-recIn {
  margin: 0 0 15px;
}

.up-recIn h3 {
  width: 96%;
  margin: 0 auto;
  position: relative;
  background: #fff;
}

.up-recIn h3 a:before {
  font-family: FontAwesome;
  content: "\f0da";
  position: absolute;
  right: 10px;
  color: #ffa525;
}

.up-recIn p {
  width: 90%;
  margin: 3px auto 0;
  text-align: left;
  font-size: 85%;
}

/*--- aside ---*/
#up-side {
  /*min-*/
  width: 21%;
  float: left;
  margin-top: 130px;
  position: sticky;
  top: 0;
  height: fit-content;
}

aside dt {
  font-size: 100%;
  border-radius: 4px 4px 0 0;
  padding-left: 10px;
  font-family: "Noto Sans Japanese";
  color: #fff;
  background: #000;
}

aside dl {
  margin-bottom: 35px;
  border-radius: 0 0 4px 4px;
}

aside dd a {
  font-size: 12px;
  position: relative;
  padding-left: 30px;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #eee;
  background: #fff;
}

aside .side-fir a:before {
  font-family: FontAwesome;
  content: "\f0da";
  position: absolute;
  left: 15px;
  font-size: 11px;
  color: #386390;
}

aside dd a:hover {
  color: #000;
  background: rgb(255, 238, 212);
  background: -moz-linear-gradient(top,
      rgba(255, 238, 212, 1) 0%,
      rgba(255, 247, 236, 1) 100%);
  background: -webkit-linear-gradient(top,
      rgba(255, 238, 212, 1) 0%,
      rgba(255, 247, 236, 1) 100%);
  background: linear-gradient(to bottom,
      rgba(255, 238, 212, 1) 0%,
      rgba(255, 247, 236, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeed4', endColorstr='#fff7ec', GradientType=0);
}

/*--- 上block*/
aside .side-fir dd {
  line-height: 40px;
}

aside .side-fir dd:nth-last-of-type(1) a {
  border-radius: 0 0 4px 4px;
}

/*--- 下block*/
aside .side-sec a:before {
  display: none;
}

aside .side-sec dd a {
  padding: 0;
  margin: 10px 0;
  position: relative;
  background: #386390;
  border-radius: 6px;
  border: solid 10px #386390;
  box-sizing: border-box;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
}

aside .side-sec dd a p {
  width: 100%;
  text-align: center;
  font-family: "Noto Sans Japanese";
  position: absolute;
  color: #386390;
  font-weight: 700;
  bottom: 0;
}

aside .side-sec dd img {
  width: 100%;
  border-radius: 4px;
}

aside .side-sec dd a:hover img {
  opacity: 0.8;
}

/*--- footer ---*/
#up-foot {
  width: 100%;
  background: #e5e4de;
  border-top: 4px solid #ffa525;
}

.up-footIn {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 0;
  overflow: hidden;
}

footer ul {
  float: left;
  width: 50%;
}

footer li {
  width: 50%;
  float: left;
}

footer dl {
  width: 90%;
  margin: 0 auto;
  padding: 10px 0;
  overflow: hidden;
  border-right: 0;
  border-left: 0;
}

footer dt {
  font-size: 100%;
  border-radius: 4px 4px 0 0;
  padding-left: 10px;
  font-family: "Noto Sans Japanese";
  color: #fff;
  background: #000;
}

footer dd {
  padding-left: 10px;
}

footer dd a {
  line-height: 40px;
  padding: 0 15px;
  position: relative;
}

footer dd a:before {
  font-family: FontAwesome;
  content: "\f0da";
  position: absolute;
  left: 0;
  font-size: 11px;
  color: #386390;
}

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

/*--- footCopy*/
.up-fc {
  float: right;
  /*min-*/
  width: 28%;
  margin: 80px auto 0;
  font-size: 70%;
  font-family: "Noto Sans Japanese";
}

/*--- 404*/
.up-nf b {
  font-family: "Noto Sans Japanese";
  font-size: 400%;
  color: #ffa525;
}

/*--- pan*/
.up-pan {
  width: 940px;
  margin: 10px auto 0;
  position: relative;
  z-index: 3;
}

.up-pan>div {
  margin-left: 230px;
}

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

.up-pan a:hover {
  color: #ffa525;
}

/*--- SNS ---*/
#up-sns {
  overflow: hidden;
}

.up-snsIn {
  float: right;
  width: 290px;
  padding: 5px 0;
  background: #e5e4de;
  border-radius: 10px;
}

.up-snsIn dt {
  width: 40px;
  float: left;
  font-weight: 700;
  font-family: "Noto Sans Japanese";
  color: #666;
  margin: 0 5px;
}

.up-snsIn dd {
  margin: 0 auto;
  float: left;
  display: block;
  text-align: center;
  text-decoration: none;
}

.up-snsIn dd a {
  width: 50px;
  line-height: 24px;
  margin: 0 3px;
  color: #fff;
  position: relative;
  border-radius: 10px;
}

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

/*--- 個別*/
#tw {
  background: #28aae1;
}

#fb {
  background: #041d4d;
}

#ggl {
  background: #dd4b39;
}

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

/*--- topPage*/
.up-btn {
  width: 120px;
  text-align: right;
  position: fixed;
  bottom: 45px;
  right: 20px;
  z-index: 1;
}

.up-btn a {
  width: 100%;
  color: #fff;
  line-height: 100%;
  padding: 10px 0;
  border-radius: 6px 6px 0 0;
  position: absolute;
  left: -12px;
  bottom: -48px;
  text-align: center;
  font-family: "Noto Sans Japanese";

  background: rgb(255, 189, 24);
  background: -moz-linear-gradient(-45deg,
      rgba(255, 189, 24, 1) 0%,
      rgba(255, 165, 37, 1) 100%);
  background: -webkit-linear-gradient(-45deg,
      rgba(255, 189, 24, 1) 0%,
      rgba(255, 165, 37, 1) 100%);
  background: linear-gradient(135deg,
      rgba(255, 189, 24, 1) 0%,
      rgba(255, 165, 37, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbd18', endColorstr='#ffa525', GradientType=1);
}

.up-btn a:before {
  font-family: FontAwesome;
  content: "\f077";
  font-size: 10px;
  margin-right: 5px;
}

.up-btn a:hover {
  opacity: 0.8;
}

@charset "utf-8";

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

  /*--- layout ---*/
  #up-layout main {
    flex-direction: column;
  }

  #up-layout,
  main {
    width: 100%;
    margin: 0 auto 30px;
    box-shadow: none;
  }

  #up-main {
    width: 96%;
    margin: 0 auto;
    float: none;
    max-width: none;
  }

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

  h2 {
    padding: 10px;
  }

  h1 a {
    width: 100%;
    display: block;
    font-size: 130%;
    line-height: 1.2;
    margin: 0 auto;
    padding: 5px 0;
  }

  h1 {
    width: 96%;
    margin: 0 auto;
  }

  .up-copy {
    width: 96%;
    margin: 0 auto;
    padding: 10px 0;
    line-height: 1.2;
  }

  /*--- header ---*/
  #up-head {
    width: 96%;
    height: auto;
    margin: 50px 2% 10px;
    background: none;
  }

  .up-headIn {
    width: 100%;
    padding-top: 0;
  }

  .up-headTtl {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
  }

  /*--- mainSlider ---*/
  .up-mrbox {
    width: 100%;
  }

  #up-mainvisual {
    width: 100%;
    margin: 0 auto;
    position: static;
    overflow: hidden;
    float: none;
  }

  .up-slider li {
    margin: 0;
  }

  #up-mainvisual li img {
    width: 100%;
  }

  .up-slider {
    left: 0;
    margin-left: 0;
  }

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

  /*--- 下層リンク ---*/
  .up-sec {
    box-shadow: none;
  }

  .up-sec .up-kasou {
    width: 100%;
    float: none;
  }

  .up-sec .up-kasouIn,
  .up-sec .up-kasou img {
    width: 100%;
    float: none;
  }

  /*--- readMore*/
  .up-more {
    margin: 1em auto 0;
    padding-bottom: 1em;
    text-align: center;
    position: static;
  }

  .up-more a {
    width: 90%;
    padding: 10px 0;
  }

  /*--- recommend ---*/
  #up-rec {
    width: 100%;
    padding-bottom: 10px;
    border-left: 0;
  }

  .up-recIn h2 {}

  .up-recIn h3 {
    margin: 0 auto 10px;
  }

  .up-recIn h3 a {
    font-size: 110%;
  }

  /*--- footer ---*/
  #up-foot,
  .up-footIn {
    width: 100%;
    background-image: none;
    padding-top: 0;
  }

  footer ul {
    width: 94%;
    margin: 15px 3%;
  }

  footer li {
    width: 100%;
    float: none;
  }

  footer ul dl {
    width: 100%;
    padding: 0;
    float: none;
  }

  footer dl {
    padding: 0;
  }

  footer dt,
  footer dd {
    width: 100%;
    margin: 0;
    font-size: 100%;
  }

  footer dd a {
    padding: 8px 15px;
  }

  /*--- footer copy*/
  .up-fc {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    float: none;
    text-align: center;
  }

  /*--- 404*/
  .up-nf b {
    font-size: 250%;
  }

  .up-nf {
    margin-top: 20px;
  }

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

  .up-pan>div {
    margin-left: 10px;
  }

  /*--- SNS ---*/
  #up-sns {
    width: 100%;
    position: static;
  }

  .up-snsIn {
    float: none;
    width: 100%;
    overflow: hidden;
  }

  .up-snsIn dt {
    float: none;
    width: 100%;
    margin: 5px 0 10px;
    font-size: 120%;
    text-align: center;
  }

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

  .up-snsIn dd a {
    width: 96%;
    height: 40px;
    line-height: 40px;
    font-size: 120%;
  }

  /*--- aside ---*/
  #up-side {
    width: 100%;
    float: none;

    margin-top: 0;
  }

  aside dt {
    border-radius: 0;
    background: #ffa525;
  }

  aside dl {
    margin-bottom: 0;
    border-radius: 0;
  }

  aside dd a {
    font-size: 100%;
    font-family: "Noto Sans Japanese";
  }

  aside .side-fir dd:nth-last-of-type(1) a {
    border-radius: 0;
  }

  aside .side-sec dd a {
    padding: 10px 30px;
    margin: 0;
    background: #fff;
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }

  aside .side-sec dd a :before {
    font-family: FontAwesome;
    content: "\f0da";
    position: absolute;
    left: -15px;
    font-size: 100%;
    color: #386390;
  }

  aside dd a:before {
    font-size: 100%;
  }

  aside .side-sec dd a p {
    text-align: left;
    position: relative;
    color: #000;
    font-weight: normal;
  }

  /*--- slicknav ---*/
  #up-headnv,
  .up-menu {
    display: none;
  }

  .slicknav_menu .slicknav_icon {
    display: none;
  }

  .slicknav_nav {
    border-bottom: none;
  }

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

  .slicknav_menu {
    width: 100%;
    display: block;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
  }

  .slicknav_menu a {
    margin: 0;
    overflow: hidden;
    padding: 0;
  }

  .slicknav_nav a {
    padding: 10px 30px;
    border: none;
    color: #000;
    /*--- dd a*/
  }

  .slicknav_nav a:hover {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    background: none;
    opacity: 1;
    color: #000;
    background: rgb(255, 238, 212);
    background: -moz-linear-gradient(top,
        rgba(255, 238, 212, 1) 0%,
        rgba(255, 247, 236, 1) 100%);
    background: -webkit-linear-gradient(top,
        rgba(255, 238, 212, 1) 0%,
        rgba(255, 247, 236, 1) 100%);
    background: linear-gradient(to bottom,
        rgba(255, 238, 212, 1) 0%,
        rgba(255, 247, 236, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeed4', endColorstr='#fff7ec', GradientType=0);
  }

  .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%;
  }
}