@charset "utf-8";

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

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

body {
  background-color: #eef7f5;
  font-size: 15px;
  line-height: 1.8;
  font-family: "HiraKakuProN-W3", "メイリオ", "ヒラギノ角ゴ Pro W3",
    "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "Meiryo",
    "ＭＳ\ Ｐゴシック", "sans-serif";
}

article ul {
  padding: 0.5em 0 0.5em 2.5em;
  margin: 1.5em 0;
  border: double 4px #c7bd96;
}

article ul li {
  position: relative;
}

article ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: -16px;
  width: 10px;
  height: 2px;
  background: #c7bd96;
}

article ol {
  counter-reset: counter-name;
  border: double 4px #c7bd96;
  padding: 0.5em 0 0.5em 1.5em;
  margin: 1.5em 0;
}

article ol li {
  margin: 3px 0;
  list-style: none;
  position: relative;
  padding-left: 35px;
}

article ol li:before {
  counter-increment: counter-name;
  content: counter(counter-name) "";
  position: absolute;
  left: 0;
  background: #c7bd96;
  width: 1.8em;
  text-align: center;
  height: 1.8em;
  color: #fff;
}

blockquote {
  background: rgba(199, 189, 150, 0.5);
  padding: 3em 1em;
  position: relative;
}

blockquote:before,
blockquote:after {
  font-size: 600%;
  line-height: 0em;
  color: #424242;
  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: 150px;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  vertical-align: top;
  border: 1px solid #a59d81;
  background: #c7bd96;
}

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

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 #c7bd96;
  margin: 1em 0;
  padding: 1em;
}

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

em {
  font-style: normal;
  background: rgba(185, 166, 163, 0.19);
}

del {
  text-decoration: line-through;
}

ins {
  display: inline-block;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

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

a:hover {
  color: #ded3a7;
  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: 20px;
}

h2 {
  padding: 10px 0;
}

main h2 {
  background: #c7bd96;
  color: #fff;
  padding: 8px;
}

h3 {
  border-left: 5px solid #c7bd96;
  padding: 5px 0 5px 10px;
}

h4 {
  border-bottom: solid 3px #c7bd96;
  padding: 5px 0;
  font-size: 120%;
}

h5 {
  border: solid 1px #c7bd96;
  font-size: 110%;
  padding: 5px;
}

h6 {
  border-bottom: 1px solid #c7bd96;
  font-size: 100%;
}

/* 下層用 */
.under h1 {
  background: #c7bd96;
  color: #fff;
  padding: 8px;
  font-size: 140%;
  margin-bottom: 20px;
}

.under h2 {
  border-left: 5px solid #c7bd96;
  padding: 5px 0 5px 10px;
}

.under h3 {
  border-bottom: solid 3px #c7bd96;
  padding: 5px 0;
  font-size: 120%;
  margin-top: 40px;
}



strong {
  color: #e45f56;
}

.c_t {
  max-width: 990px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

/*文字色*/
.cb_cov>* {
  color: #333;
}

/* ///////////左右コンテナ*/
.cb_lb {
  max-width: 70%;
  /*670px*/
  float: left;
  padding: 0;
}

@media (max-width: 640px) {
  .cb_lb {
    max-width: initial;
  }
}

.cb_rb {
  /*min-*/
  width: 28%;
  /*280px*/
  float: right;
  margin: 0 auto 30px;
  position: sticky;
  top: 0;
  height: fit-content;
}

/* ///////////メイン */
main {
  margin-bottom: 50px;
}

article {
  margin-bottom: 30px;
}

main article {
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  padding: 15px;
  background: #fff;
}

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

.cb_head {
  width: 100%;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border-bottom: solid 1px #ddd;
}

.cb_c_tit {
  max-width: 1090px;
  overflow: hidden;
  margin: 15px auto;
}

.cb_s_tit a {
  font-size: 23px;
  margin: 0 0 5px;
  font-weight: bold;
  line-height: 1.3;
}

.cb_head p.cb_cp {
  font-size: 70%;
}

.cb_head.cb_hoka {
  margin: 0 auto 20px;
}

.ti_in {
  width: 100%;
}

nav {
  max-width: 500px;
  float: right;
}

.cb_gn>ul {
  display: flex;
  overflow: hidden;
  margin: 10px 0 0;
}

.cb_gn ul#cb_gn-menu>li {
  /* width: 25%; */
  display: block;
  float: left;
  text-align: right;
  font-size: 13px;
}

.slicknav_menu {
  display: none;
}

#cb_gn-menu li a {
  display: block;
  color: #a19979;
  padding: 3px 0 3px 25px;
}

.cb_main {
  background: rgba(223, 235, 234, 0.69);
  margin: 0 auto 40px;
  border-bottom: solid 1px rgba(223, 235, 234, 0.7);
}

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

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

.cb_l_k img {
  max-width: 100%;
  margin: 0;
}

.cb_l_k_t {
  width: 990px;
  margin: 0 auto 50px;
}

.cb_l_k.l_one {
  margin: 0 0 60px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cb_l_k {
  background: #fff;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cb_l_k_t .cb_l_k {
  margin: 0 1% 0;
  width: 48%;
  float: left;
}

.cb_l_k h2 {
  margin: 0 0 10px;
  border: none;
  font-weight: bold;
  padding: 0;
}

.ll_in {
  padding: 15px;
}

.cb_m_btn {
  text-align: center;
  margin: 20px auto 0;
}

.cb_m_btn a {
  width: 100%;
  padding: 0.3em;
  color: #fff;
  background: #c7bd96;
  letter-spacing: 0.1em;
  margin: 0 auto;
  display: block;
}

.cb_m_btn a:hover {
  background: #e2d6aa;
  color: #444;
}

/* /////////aside */

aside {
  background: #fff;
  padding: 15px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

aside li>p {
  font-size: 17px;
  border-bottom: solid 2px #c7bd96;
  font-weight: bold;
  margin: 0 0 10px;
}

aside a {
  padding: 10px 0;
}

aside img {
  float: left;
  max-width: 100px;
  margin-right: 10px;
}

.side-c_t>li {
  margin: 0 0 30px;
}

.side-c_t>li:last-child {
  margin: 0;
}

.s_a {
  width: 100%;
}

.s_b a {
  margin-bottom: 10px;
  overflow: hidden;
}

.cb_rec {
  background: #fff;
  padding: 15px;
}

.cb_rec h2 {
  border: none;
  padding: 5px;
  color: #fff;
  background: #c7bd96;
}

.cb_rec h3 {
  margin: 0;
  border-bottom: solid 1px #c7bd96;
  position: relative;
}

.cb_rec h3 a {
  display: block;
}

.cb_rec h3 a::after {
  content: ">";
  position: absolute;
  right: 10px;
}

.cb_rec a {
  text-align: left;
}

.cb_rec_in {
  margin: 0 0 3%;
}

.cb_rec_in:last-child {
  margin: 0;
}

/* /////////footer */

footer {
  position: relative;
  background: #c7bd96;
  padding: 50px 0 10px;
}

footer .c_t p {
  color: #fff;
  margin: 0 0 2%;
  border-bottom: solid 1px #fff;
}

footer a {
  font-size: 70%;
}

footer .c_t {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 50px;
}

.cb_ft_cp {
  font-size: 70%;
  color: #fff;
  text-align: center;
}

.cb_ft_mn {
  width: 27%;
  margin-right: 3%;
}

.cb_ft_mn ul {
  margin: 0 0 0 1em;
}

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

.cb_n_f {
  font-size: 170%;
  color: #5a0e00;
}

/* /////////pan nav */

.cb_pan_n {
  margin-bottom: 10px;
}

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

.cb_pan_n font {
  color: #ccc;
}

/* /////////SNS */

.cb_sns_a {
  width: 100%;
  margin: 0 0 10px;
}

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

.cb_sns_a>div {
  text-align: center;
}

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

.cb_sns_c {
  display: none;
}

.cb_sns_d {
  width: 24.8%;
  box-sizing: border-box;
}

.cb_sns_d .fa {
  font-weight: bold;
}

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

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

#twitter {
  background: #00acee;
}

#hatena {
  background: #2d4c86;
}

#facebook {
  background: #3b5998;
}

#ggl-plus {
  background: #dd4b39;
}

p.cb_top_btn a {
  font-size: 30px;
  line-height: 55px;
  text-align: center;
  position: fixed;
  bottom: 10px;
  color: #c7bd96;
  right: 15px;
  z-index: 998;
  background: rgba(73, 69, 55, 0.7);
  border-radius: 50%;
  width: 55px;
  height: 55px;
}

@charset "utf-8";

@media screen and (max-width: 640px) {
  .sli {
    width: 100%;
    position: fixed;
    z-index: 999;
  }

  body {
    font-size: 15px;
    line-height: 1.9;
    background-color: #e3f3f0;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    text-align: left;
  }

  .c_t {
    padding: 2.5%;
    flex-direction: column;
  }

  h2 {
    font-size: 130%;
    padding: 8px;
  }

  h3,
  h4,
  h5,
  h6 {
    font-size: 115%;
  }

  h5,
  h6 {
    font-size: 105%;
  }

  .c_t,
  main,
  .side-menu,
  .s_b img,
  article img {
    width: 100%;
  }

  article img {
    max-width: 100%;
  }

  main article {
    padding: 3%;
  }

  article img,
  main,
  .s_b img {
    float: none;
  }

  /* ///////////左右コンテナ*/
  .cb_lb,
  .cb_rb {
    width: 100%;
    float: none;
  }

  .cb_head {
    padding: 11% 3% 5%;
  }

  /*ページタイトルのコンテナ*/
  .cb_c_tit {
    width: 100%;
    margin: 0 auto;
  }

  h1.cb_s_tit a {
    text-align: center;
    margin: 0 0 2%;
    font-size: 140%;
  }

  .cb_head p.cb_cp {
    text-align: center;
  }

  .cb_head.cb_hoka {
    margin: 0;
  }

  .ti_in {
    float: none;
    width: 100%;
  }

  /*/////////ヘッダーナビ*/
  nav {
    width: 100%;
    float: none;
  }

  .cb_l_k img {
    float: none;
    display: block;
    margin: 0 auto;
  }

  .cb_rec {
    padding: 3%;
  }

  .ll_in {
    padding: 3%;
  }

  /*/////////スライダー*/
  .cb_main {
    width: 100%;
    margin: 0 0 5%;
    z-index: 1;
  }

  .main_bg {
    display: none;
  }

  /*/////////下層リンク*/
  .cb_l_k_t {
    padding: 3%;
    overflow: hidden;
    width: 100%;
    z-index: 1;
    margin: 0 auto 5%;
  }

  .cb_l_k_t .cb_l_k {
    width: 100%;
    float: none;
    margin: 0 auto 5%;
  }

  /*/////////もっと読むボタン*/
  .cb_m_btn a {
    font-weight: bold;
    display: block;
    padding: 0.6em;
    margin: 0 auto;
  }

  /*/////////サイドコンテナ*/
  aside {
    display: none;
  }

  .side-c_t p a {
    height: 28px;
    padding: 0;
    text-align: center;
  }

  /*/////////フッター*/
  footer {
    padding: 0;
  }

  footer .c_t {
    margin: 0 auto 5%;
  }

  footer .cb_ft_mn {
    width: 100%;
    margin-bottom: 2rem;
  }

  .cb_ft_cp {
    padding: 0 1em 0;
  }

  footer a {
    font-size: 90%;
  }

  /* /////////sns */
  .cb_sns_a {
    overflow: hidden;
    width: 100%;
    margin: 0 auto 3%;
  }

  .cb_sns_e {
    padding: 3px 0 !important;
  }

  .cb_sns_b {
    display: block;
  }

  .cb_sns_d {
    display: block;
    width: 48%;
    float: left;
    margin: 0 1% 1%;
  }

  /*/////////トップに戻るボタン*/
  p.cb_top_btn a {
    font-size: 30px;
    line-height: 50px;
    bottom: 10px;
    right: 10px;
    width: 53px;
    height: 53px;
  }

  /* /////////////////////slicknav /////////////////////*/
  .cb_gn #cb_gn-menu {
    display: none;
  }

  /*デフォルトナビアイコン*/
  .slicknav_menu .slicknav_icon {
    display: none;
  }

  /*ナビの下のボーダー*/
  .slicknav_nav {
    border-bottom: none;
  }

  /*トップ背景色*/
  .slicknav_btn {
    float: none;
    background-color: #77715d;
    border-radius: 0;
  }

  /*メニューの背景色（hover時の色）*/
  .slicknav_menu {
    display: block;
    padding: 0;
    background: #fff;
  }

  /*下層文字色*/
  .slicknav_menu a {
    margin: 0;
    color: #333;
    overflow: hidden;
    padding: 0;
  }

  /*下層メニュー内容部分背景色*/
  .slicknav_nav a {
    padding: 7px 15px;
    background: #ede6c8;
  }

  /*下層メニュー内容部分hove文字色r*/
  .slicknav_nav a:hover {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    background: none;
    opacity: 1;
    color: #333;
  }

  /*ナビ内メニュータイトルのli・pddingで高さ*/
  .slicknav_nav .slicknav_row {
    margin: 0;
    padding: 8px;
  }

  /*ナビ内メニュータイトルのli:hover時*/
  .slicknav_nav .slicknav_row:hover {
    color: #333;
  }

  /*ナビタイトルテキスト（マーク）*/
  .slicknav_menu .slicknav_menutxt {
    float: right;
    text-shadow: none;
    line-height: 1.6em;
    /*高さ調節*/
    padding: 10px 15px 10px 10px;
    /*高さ調節ここでも*/
    color: #fff;
  }

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

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

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

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

  /* /////////////↑slicknav設定ここまで↑ //////////////*/
}

/*下層などflex内で要素が増える時*/
.c_t.cb_cov.clear:has(.cb_pan_n) {
  flex-wrap: wrap;
}

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

/*パンくず*/