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

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

body {
  background: #fff;
  color: #666;
  font-family: Helvetica, Arial, "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN", Meiryo, "メイリオ", "ＭＳ Ｐゴシック", Verdana,
    Geneva;
  font-size: 14px;
  line-height: 1.5;
}

/*///// リスト /////*/
article ul {
  background-color: #fff;
  border-top: 1px dashed #ccc;
  border-bottom: 1px dashed #ccc;
  background: #fffbfb;
  padding: 10px 15px 7px 15px;
  margin-top: 10px;
}

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

article ul li:before {
  font-family: FontAwesome;
  content: "\f192";
  margin-right: 8px;
  color: #f57312;
}

article ol {
  margin: 1.5em 0;
  counter-reset: number;
  list-style-type: none !important;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 10px 20px;
  background: #fffbfb;
}

article ol li {
  margin: 0.5em 0;
  padding: 10px 30px;
  list-style: none;
  position: relative;
}

article ol li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display: inline-block;
  background: #f57312;
  color: white;
  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%);
}

/*///// 引用文 /////*/

blockquote {
  background-color: #ddd;
  padding: 2em;
  position: relative;
  z-index: 1;
}

blockquote:before {
  content: "“";
  font-size: 130px;
  line-height: 1em;
  color: #fff;
  position: absolute;
  left: 10px;
  top: 0;
  z-index: -1;
}

/*///// テーブル /////*/

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

table th {
  width: 150px;
  padding: 10px;
  vertical-align: top;
  background: #656465;
  color: #fff;
  border: solid 1px #ccc;
}

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

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 {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ffe62a 0%) repeat scroll 0 0;
}

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

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

del {
  text-decoration: line-through;
}

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

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

/*///// リンク /////*/

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

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

/*///// タイトル /////*/

h1,
h2,
h3,
h4,
h5,
h6,
.ttl_h a {
  line-height: 1.2;
  font-weight: 600;
  font-family: "Rounded Mplus 1c", serif;
}

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

h2,
.under h1 {
  color: #fff;
  font-weight: 700;
  font-size: 21px;
  background: #656465;
  padding: 25px 20px;
}

h3,
.under h2 {
  font-size: 20px;
  padding: 5px 10px;
  font-weight: 700;
  border: solid 1px #ccc;
}

h3:before,
.under h2::before {
  content: "";
  border-left: solid 7px #f57312;
  margin-right: 8px;
}

h4,
.under h3 {
  font-size: 18px;
  padding: 10px 0 6px 10px;
  font-weight: 700;
  border-bottom: solid 4px #f57312;
}

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

h5 {
  font-size: 16px;
  padding: 5px 10px;
  font-weight: 700;
  background: #f0f0f0;
  border: dotted #ccc 1px;
}

h6 {
  font-size: 15px;
  padding: 5px;
  font-weight: 700;
}

/*///// 全体 /////*/
.con_wrap {
  max-width: 970px;
  margin: 0 auto;
  /* overflow: hidden; */
  display: flex;
  justify-content: space-between;
}

.con_wrap>* {
  color: #2e2e2e;
}

.frame_sia {
  max-width: 74%;
  float: right;
  background: #fff;
}

main {
  max-width: 96%;
  margin: 0 auto;
}

.frame_sib {
  /*min-*/
  width: 24%;
  float: left;
  position: sticky;
  top: 0;
  height: fit-content;
}

article {
  margin-bottom: 30px;
}

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

/*///// ヘッダーエリア /////*/

.frame-hd {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

/*--- head ---*/
.frame-title {
  max-width: 970px;
  margin: 2% auto;
  text-align: center;
}

/*h1*/
.ttl_h a {
  font-size: 175%;
  font-weight: 900;
  color: #656465;
  letter-spacing: -0.05em;
}

.ttl_h a:hover {
  background: none;
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
}

/*copy*/
.frame-cp {
  font-size: 90%;
  color: #656465;
  font-weight: bold;
  margin-bottom: 5px;
}

/*--- headnav ---*/
#frame-nv {
  width: 100%;
  margin: 0 auto;
  background: #f57312;
  text-align: center;
}

#frame-nv ul {
  max-width: 970px;
  margin: 0 auto;
  padding: 8px 0;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}

#frame-nv li {
  width: 25%;
  float: left;
}

#frame-nv li:nth-of-type(1) a {
  border-left: solid 1px #fff;
}

#frame-nv li a {
  color: #fff;
  padding: 5px 0;
  border-right: solid 1px #fff;
}

#frame-nv li a:before {
  font-family: FontAwesome;
  content: "\f138";
  margin-right: 5px;
}

#frame-nv li a:hover {
  opacity: 0.7;
  transition: 0.4s;
}

.slicknav_menu {
  display: none;
}

/*///// スライダー /////*/
.frame-mainvisual {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.frame-slider {
  position: relative;
  left: 50%;
  width: 2940px;
  margin-left: -1470px;
}

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

.mainvisual .bx-viewport li {
  padding: 0 20px;
}

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

/*///// 下層リンク /////*/

.frame-top {
  width: 100%;
}

.frame-top .frame-lk {
  width: 96%;
  margin: 0 auto 4%;
  overflow: hidden;
  background: #e5e5e5;
  position: relative;
}

.frame-top .frame-lk p {
  width: 48%;
  float: right;
  font-size: 85%;
  line-height: 1.8;
}

.frame-lk img {
  width: 48%;
  margin-left: 2%;
  float: left;
}

/*--- もっと読むボタン ---*/
.frame-more {
  width: 100px;
  text-align: center;
  overflow: hidden;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.frame-more a {
  background: #fff;
  font-size: 80%;
  line-height: 30px;
  color: #f57312;
}

.frame-more a:hover {
  background: #f57312;
  color: #fff;
}

/*///// サイドエリア /////*/
aside dl {
  margin-bottom: 40px;
  border-right: solid 1px #ccc;
  border-left: solid 1px #ccc;
}

aside dt {
  color: #fff;
  padding: 8px;
  font-size: 110%;
  font-weight: bold;
  background: #656465;
  border-bottom: solid 1px #ccc;
}

aside a {
  border-bottom: solid 1px #ccc;
  color: #656465;
}

aside a:hover {
  color: #f57312;
  background: #efefef;
}

/*menu*/
aside .frame_t a {
  line-height: 36px;
  padding-left: 20px;
  position: relative;
}

aside .frame_t a:before {
  font-family: FontAwesome;
  content: "\f105";
  position: absolute;
  right: 10px;
}

/*column*/
aside .frame_trs dd {
  line-height: 45px;
}

aside .frame_trs a img {
  width: 60px;
  height: 35px;
  overflow: hidden;
  margin: 5px;
  border: solid 2px #ccc;
  box-sizing: border-box;
}

/*///// おすすめリンク /////*/

.frame-lbk {
  width: 100%;
  overflow: hidden;
  border: solid 3px #f57312;
}

.frame-lbk h2 {
  font-size: 18px;
  padding: 20px;
  margin: 0;
  font-weight: 700;
  background: #f57312;
  text-align: center;
}

.lbk_in {
  width: 50%;
  float: left;
  margin-bottom: 10px;
}

.frame-lbk h3 {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 100%;
}

.frame-lbk h3:before {
  border: none;
}

.frame-lbk h3 a {
  width: 90%;
  margin: 0 auto;
  line-height: 30px;
  padding: 5px 25px;
  font-weight: 700;
  position: relative;
  border: solid 1px #ccc;
}

.frame-lbk h3 a:hover {
  background: #efefef;
}

.frame-lbk h3 a:before {
  font-family: FontAwesome;
  content: "\f138";
  border: none;
  position: absolute;
  left: 8px;
  color: #f57312;
}

.lbk_in p {
  margin: 3px 20px;
  font-size: 85%;
}

/*///// フッターエリア /////*/

footer {
  width: 100%;
  padding-bottom: 30px;
  background: #676566;
}

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

footer li {
  width: 240px;
  float: left;
}

footer dl {
  width: 96%;
  margin-left: 4%;
}

footer dt {
  line-height: 30px;
  color: #fff;
  font-weight: bold;
}

footer dd {
  font-size: 80%;
  line-height: 36px;
  position: relative;
}

footer dd a:before {
  font-family: FontAwesome;
  content: "\f138";
  position: absolute;
  left: 0;
  color: #f57312;
}

footer a {
  padding-left: 15px;
  color: #fff;
}

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

/*--- コピーライト ---*/
.frame-fc {
  width: 970px;
  margin: 0 auto;
  border-bottom: #fff 1px solid;
  border-top: #fff 1px solid;
  padding: 15px;
  font-size: 70%;
  text-align: center;
  color: #fff;
}

/* /////////under */

.frame-nf {
  font-size: 280%;
  color: #656465;
}

/*///// パンくず /////*/

.frame-pan {
  width: 970px;
  margin: 10px auto;
}

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

/*///// ＳＮＳ /////*/

.sns-ctnbt {
  width: 100%;
  margin: 60px auto;
}

.sns-ctnbt dl {
  overflow: hidden;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: #fffbfb;
  padding: 0 10px 10px;
  text-align: center;
}

.sns-ctnbt dt {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  line-height: 50px;
}

.sns-ctnbt dd {
  width: 25%;
  float: left;
}

.sns-ctnbt dd a {
  width: 96%;
  font-weight: bold;
  text-decoration: none;
  line-height: 50px;
  margin: 0 auto 4px;
  background: #fff;
}

.sns-ctnbt dd a:hover {
  text-decoration: none !important;
  margin: 0 auto;
}

/* SNSごとの背景色 */

#twitter {
  color: #00acee;
  border-bottom: 4px solid #00acee;
  border-top: 1px solid #00acee;
  border-left: 1px solid #00acee;
  border-right: 1px solid #00acee;
}

#hatena {
  color: #2d4c86;
  border-bottom: 4px solid #2d4c86;
  border-top: 1px solid #2d4c86;
  border-left: 1px solid #2d4c86;
  border-right: 1px solid #2d4c86;
}

#facebook {
  color: #3b5998;
  border-bottom: 4px solid #3b5998;
  border-top: 1px solid #3b5998;
  border-left: 1px solid #3b5998;
  border-right: 1px solid #3b5998;
}

#ggl-plus {
  color: #dd4b39;
  border-bottom: 4px solid #dd4b39;
  border-top: 1px solid #dd4b39;
  border-left: 1px solid #dd4b39;
  border-right: 1px solid #dd4b39;
}

#twitter:hover {
  border-bottom: 8px solid #00acee;
}

#hatena:hover {
  border-bottom: 8px solid #2d4c86;
}

#facebook:hover {
  border-bottom: 8px solid #3b5998;
}

#ggl-plus:hover {
  border-bottom: 8px solid #dd4b39;
}

.sns-ctnc .fa {
  font-weight: bold;
}

/*///// トップに戻るボタン /////*/

p.frame-btn a {
  font-size: 9px;
  text-align: center;
  position: fixed;
  border-radius: 50%;
  bottom: 18px;
  right: 10px;
  z-index: 1;
  background: #f57312;
  width: 50px;
  height: 50px;
  color: #fff;
}

p.frame-btn a:before {
  font-family: FontAwesome;
  content: "\f106";
  width: 50px;
  display: block;
  font-size: 20px;
}

p.frame-btn a:hover {
  background: #000000;
}

/*下層などflex内で要素が増える時*/
.frame-con.con_wrap.box_cf:has(.frame-pan) {
  flex-wrap: wrap;
}

/*パンくずが含まれる時のみ*/
.frame-pan {
  width: 100%;
}

/*パンくず*/