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

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

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

.cf:after {
  content: "";
  clear: both;
  display: block;
}

body {
  width: 100%;
  background-color: #e7e7e7;
  font-size: 14px;
  line-height: 2;
  font-family: "Noto Sans Japanese", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3",
    "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo",
    "ＭＳ\ Ｐゴシック", "sans-serif";
}

a {
  color: #000;
  display: block;
}

a:hover {
  color: #b1a395;
  transition: 0.2s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: normal;
}

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

/* +下層用 */
h2,
.under h1 {
  font-size: 20px;
  background: #e7e7e7;
  padding: 15px 20px;
  color: #000;
  font-weight: bolder;
}

.under h1 {
  margin-bottom: 25px;
}

h2.oslink {
  font-size: 20px;
  background: #ffffff;
  padding: 15px 20px;
  color: #000;
  font-weight: bolder;
  border-bottom: 5px solid #000;
  border-top: 5px solid #000;
}

h3,
.under h2 {
  font-size: 20px;
  border-bottom: 7px solid #000000;
  padding-left: 10px;
  background: #fff;
  padding: 9px;
  font-weight: bolder;
}

h3.oslink {
  font-size: 18px;
  background: #83ecd4;
  padding: 10px 15px;
  border-bottom: solid 6px #fff;
  color: #fff;
}

h4,
.under h3 {
  font-size: 18px;
  border-bottom: 4px double #000;
  padding: 0 0 5px 7px;
  font-weight: bolder;
}

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


h5 {
  color: #000;
  font-size: 15px;
  font-weight: bolder;
}

h6 {
  color: #a0a0a0;
  font-size: 13px;
  font-weight: bolder;
}

strong {
  background: linear-gradient(transparent 60%, #b5ffee 60%);
}

article ul {
  margin: 1.5em 0;
  border: solid 2px #83ecd4;
  padding: 0 0.5em;
  position: relative;
}

article ul li {
  position: relative;
  line-height: 0;
  border-bottom: 1px dashed #83ecd4;
  padding: 20px;
}

article ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 17px;
  left: 2px;
  width: 10px;
  height: 10px;
  background: #83ecd4;
}

article ul li:last-of-type {
  border-bottom: none;
}

article ol {
  counter-reset: number;
  /*数字をリセット*/
  list-style-type: none !important;
  /*数字を一旦消す*/
  padding: 0.3em 0.8em;
  margin: 1.5em 0;
  border: solid 2px #83ecd4;
}

article ol li {
  border-bottom: solid 1px #83ecd4;
  position: relative;
  padding: 0.5em 0.5em 0.5em 30px;
  line-height: 1.5em;
}

article ol li:before {
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*数字のデザイン変える*/
  display: inline-block;
  background: #83ecd4;
  color: white;
  font-family: "Avenir", "Arial Black", "Arial", sans-serif;
  font-weight: bold;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

ol li:last-of-type {
  border-bottom: none;
  /*最後のliの線だけ消す*/
}

blockquote {
  background: #eee;
  padding: 3em 3em;
  position: relative;
  font-size: 17px;
  border-radius: 8px;
}

blockquote:before,
blockquote:after {
  font-size: 600%;
  line-height: 0em;
  color: #fff;
  position: absolute;
}

blockquote:before {
  content: "“";
  left: 0;
  top: 0;
  line-height: 1em;
}

blockquote:after {
  content: "”";
  right: 0;
  bottom: 0;
}

table {
  border-collapse: collapse;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 20px;
  background: #fff;
}

table th {
  width: 155px;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
  border: 2px solid #000;
  background: #e7e7e7;
}

table td {
  width: 345px;
  padding: 10px;
  vertical-align: top;
  border: 2px solid #000;
}

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

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

em {
  font-style: normal;
}

del {
  text-decoration: line-through;
}

ins {
  display: inline-block;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

/* top page */
/* header */
.intro {
  position: sticky;
  left: 0;
  /*min-*/
  width: 320px;
  height: 100%;
  box-sizing: border-box;
  background: #000;
  z-index: 99;
  float: left;
  padding: 10px;
  top: 0;
  width: 340px;
}

.intro a {
  color: #fff;
  text-align: center;
  margin: 10px;
}

.intro .webttl a {
  font-size: 20px;
  color: #fff;
  text-align: left;
  font-weight: bolder;
}

p.sub-copy {
  color: #ffffff;
  font-size: 13px;
  padding: 10px;
}

.gnav>ul {
  /*追加*/
  list-style: none;
  line-height: 1.4;
  margin: 0 auto;
}

.gnav ul#g-menu>li {
  display: block;
  position: relative;
  width: 24%;
  font-size: 14px;
  text-align: center;
}

#g-menu li ul.sub-menu {
  display: none;
  position: absolute;
  padding: 0;
  z-index: 9999;
}

.slicknav_menu {
  display: none;
}

#g-menu li a {
  display: block;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

/* slider */
.visualimg {
  overflow: hidden;
  position: relative;
  width: 100%;
  /* margin-left: 220px; */
}

.subbox {
  position: relative;
  float: left;
}

.bx-wrap129per {
  position: relative;
  margin: 0 auto;
  border: none;
  box-shadow: none;
}

.bx-wrap129per .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 60px;
  height: 60px;
  text-indent: -9999px;
  z-index: 9999;
}

.bx-wrap129per .bx-pager,
.bx-wrap129per .bx-controls-auto {
  bottom: 10px;
}

.bx-wrap129per .bx-next:hover,
.bx-wrap129per .bx-next:focus {
  background-position: 0 0;
}

.bx-wrap129per .bx-prev {
  background: url(../images/lefticon.png) no-repeat 0 0;
  left: 900px;
}

.bx-wrap129per .bx-next {
  background: url(../images/righticon.png) no-repeat 0 0;
  right: 900px;
}

/* contents area */
.container {
  /* max-width: 85%;
  margin: 0 0 0 220px; */
}

.container_02 {
  width: 100%;
}

.more-btn {
  text-align: right;
}

.more-btn a {
  padding: 0px 1rem;
  color: #000000;
  display: inline-block;
  margin: 8% 5px 0 0;
  background: #fff;
  font-size: 20px;
  font-weight: bold;
}

.more-btn a:hover {
  background: #fff;
  color: #83ecd4;
}

/* main */
main {
  width: 100%;
  margin: 0 auto;
  float: left;
  background: #fff;
  padding: 25px;
}

article img {
  max-width: 100%;
  margin-bottom: 10px;
  border: 5px #fff solid;
}

.contentslink img {
  float: left;
  max-width: 340px;
  margin-right: 10px;
}

article {
  margin-bottom: 30px;
}

/* おすすめリンク */
.hakohako h5 a {
  display: block;
  color: #83ecd4;
}

.hakohako h5 a::after {
  content: ">";
  margin-left: 10px;
}

.hakohako p {
  padding: 0 0 20px;
}

.hakohako a {
  text-align: left;
}

/* aside */
aside {
  width: 100%;
  margin: 0 auto;
  /* margin-top: 20px; */
  background: #fff;
  padding: 15px;
}

aside li>div {
  color: #000000;
  font-size: 23px;
  text-align: center;

  margin: 0 auto;
  border-bottom: 7px solid #000;
  font-weight: bolder;
}

aside a {
  padding: 8px 0;
}

aside img {
  float: left;
  max-width: 100px;
  margin-right: 10px;
  border: 5px #fff solid;
}

.sublink a {
  margin-bottom: 10px;
}

/* footer */
footer {
  position: relative;
  color: #000000;
  width: 100%;
  margin-top: 20px;
  background: #fff;
  padding: 30px 0 15px 0;
  float: right;
}

footer p {
  font-size: 21px;
}

.ft {
  font-size: 21px;
  border-bottom: 4px double #000;
  font-weight: 700;
}

footer a {
  color: #000000;
  font-size: 15px;
  margin-top: 5px;
}

footer a:hover {
  color: #a0a0a0;
}

footer .container {
  display: flex;
  flex-wrap129: wrap129;
  margin: 0 auto 50px;
}

.ft-copy {
  font-size: 70%;
  text-align: left;
  float: left;
  padding-left: 55%;
}

.ft-copy_02 {
  font-size: 70%;
  text-align: left;
  float: right;
  padding-right: 6%;
}

.totop-btn {
  position: fixed;
  bottom: 10px;
  right: 8px;
  z-index: 1;
}

.ftft-menu {
  margin-right: 4%;
  text-align: left;
}

/* under */
.notfound {
  font-size: 200%;
  color: #ccc;
}

/* pan nav */
.panav {
  margin: 0px 0 10px 20px;
}

.panav a {
  display: inline;
  font-size: 85%;
}

.panav font {
  color: #ccc;
}

/* SNS */
.button-area {
  width: 100%;
  margin: 50px 0;
}

.sns-container {
  display: flex;
  justify-content: space-between;
}

.button-area>div {
  text-align: center;
}

.button-area:after {
  content: "";
  clear: both;
  display: block;
}

.title-fill {
  color: #000;
  border-bottom: 6px solid #000000;
  border-top: solid 6px #000000;
  text-align: center;
  display: block;
  font-size: 14px;
  width: 100%;
  padding: 6px 15px;
  margin-bottom: 17px;
  box-sizing: border-box;
}

.button-whole {
  width: 22%;
  box-sizing: border-box;
  margin: 0 0.1%;
}

.button-whole .fa {
  font-weight: bold;
}

.button-link {
  display: block;
  text-align: center;
  color: #fff !important;
  font-size: 14px !important;
  padding: 10px 0 !important;
  box-sizing: border-box;
  text-decoration: none;
}

.button-link:hover {
  text-decoration: none !important;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

/* SNSごとの背景色 */
#twitter {
  background-color: #43cbfe;
}

#hatena {
  background-color: #536b9a;
}

#facebook {
  background-color: #5072b7;
}

#ggl-plus {
  background-color: #e46150;
}

/*サイド2カラムメニュー*/
li.l_sidemenu {
  float: left;
  width: 49%;
}

li.r_sidemenu {
  float: right;
  width: 49%;
}

.wrap129 {
  /* max-width: 85%; */
  float: right;
}

.bx-wrapper {}

.bx-wrapper img {
  width: 100%;
}