@charset "utf-8";

/*サイトの骨格的な設定*/
body {
	line-height: 1.7;
    font-family: sans-serif;
    color: #000000;
    background-color: #ffffff;
}

p{
    margin-top: 0;
    margin-bottom: 0;
    font-size: 12px;
	line-height: 1.5;
}




#container{
    width:960px;
    margin-right: auto;
    margin-left : auto;
    background-color: #ffff;
    background-blend-mode:lighten;
    }

.example li{
  float: left;
  list-style: none;
}



/*メニューのボタン設定*/

.items5 {
  display: flex;
  align-items: center;
}
.item-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.item-nav li {
  display: inline-block;
  padding: 0px;
}

.item-nav a.active, .item-nav a:hover {
  border-bottom: 2px solid #ada48d;
    opacity: 0.8;
}





/* -------------------- */
/* ▼メニューバーの装飾 */
/* -------------------- */
ul.ddmenu {
  display: flex;
  justify-content: space-between;
   margin: 0px;               /* メニューバー外側の余白(ゼロ) */
   padding: 0px 0px 0px 0px; /* メニューバー内側の余白(左に15px) */
   background-color: #ffffff; /* バーの背景色 */
}

/* -------------------------- */
/* ▼メインメニュー項目の装飾 */
/* -------------------------- */
ul.ddmenu li {
   width: 192px;          /* メニュー項目の横幅 */
   position: relative;    /* ★サブメニュー表示の基準位置にする */
}
ul.ddmenu a {
   background-color: #ada48d; /* メニュー項目の背景色 */
   color: white;              /* メニュー項目の文字色(白色) */
   line-height: 16px;         /* メニュー項目のリンクの高さ(40px) */
   text-align: center;        /* メインメニューの文字列の配置(中央寄せ) */
   text-decoration: none;     /* メニュー項目の装飾(下線を消す) */
   font-weight: bold;         /* 太字にする */
   display: block;            /* ★項目内全域をリンク可能にする */
}
ul.ddmenu a:hover {
   background-color: #FFF; /* メニュー項目にマウスが載ったときの背景色 */
}

/* ---------------------------------- */
/* ▼サブメニューがある場合に開く処理 */   /* ※サブメニューが1階層しか存在しない場合の記述 */
/* ---------------------------------- */
ul.ddmenu li:hover ul {
   display: block;      /* ★マウスポインタが載っている項目の内部にあるリストを表示する */
}

/* -------------------- */
/* ▼サブメニューの装飾 */
/* -------------------- */
ul.ddmenu ul {
   margin: 0px;         /* ★サブメニュー外側の余白(ゼロ) */
   padding: 0px;        /* ★サブメニュー内側の余白(ゼロ) */
   display: none;       /* ★標準では非表示にする */
   position: absolute;  /* ★絶対配置にする */
}

/* ------------------------ */
/* ▼サブメニュー項目の装飾 */
/* ------------------------ */
ul.ddmenu ul li {
   width: 220px;               /* サブメニュー1項目の横幅(135px) */
   border-top: 1px solid #ffffff; /* 項目上側の枠線 */
}
ul.ddmenu ul li a {
   line-height: 35px;     /* サブメニュー1項目の高さ(35px) */
   text-align: left;      /* 文字列の配置(左寄せ) */
   padding-left: 5px;     /* 文字列前方の余白(5px) */
   font-weight: normal;   /* 太字にはしない */
}
ul.ddmenu ul li a:hover {
   background-color: #ede3ca; /* サブメニュー項目にマウスが載ったときの背景色 */
   color: #464439;            /* サブメニュー項目にマウスが載ったときの文字色 */
}












 
/*=== 画像の表示エリア ================================= */
.slide {
  position   : relative;
  overflow   : hidden;
  list-style: none;
/* 画像のサイズに合わせて変更ください */
  width      : 920px;
  height     : 250px;
  margin     : auto;      /* 中央寄せ */
  background : #fff;
}
 
 /*=== 画像の設定 ======================================= */
.slide img {
  display    : block;
  position   : absolute;
                      /* 画像のサイズを表示エリアに合せる */
  width      : 100%;
  height     : 100%;
  left       : -100%;
  animation  : slideAnime 10s ease infinite;
}
 
 /*=== スライドのアニメーションを段差で開始する ========= */
.slide li:nth-of-type(1) img { animation-delay: 0s }
.slide li:nth-of-type(2) img { animation-delay: 5s }
 
 /*=== スライドのアニメーション ========================= */
@keyframes slideAnime{
   0% { left: -100% }
   8% { left: 0     }
  18% { left: 0     }
  40% { left: 100%  }
 100% { left: 100%  }
}






/*リンクマウスオーバーの表現*/
a {
    color: #000000;
    text-decoration: none;
}
a:hover {
    color: #464439;
    text-decoration: none;
}
a:active{
    color: #f89a03;
}
a:hover img {
    opacity: 0.5;
}



.img-responsive{
    display: block;
    max-width: 100%;
    height: auto;
}




#my-window {
    width: 500px;
    height:150px;
    resize: both;
  overflow: auto;
  border-top: 1px solid #eee;
  border-radius: 4px;
  background: #fff;
  padding: 3px;
  margin-top: 10px;
  margin-bottom: 10px;
}



.items {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.items .item {
  width: 30%;
}

.topix-title{
    font-size: 18px;
    font-family: serif;
    background: linear-gradient(transparent 50%, #fae6b0 50%);
}

hr{
    height: 1px;
    background-color: #ada48d;
    border: none;
    margin-top: 10px;
    margin-bottom: 50px;
}
    



.footer-inner {
    display: flex;
    justify-content: center;
    width: 960px;
    background-color: #fff7e3;
    margin-top: 50px;
    margin-right: auto;
    margin-left : auto;
    padding-top: 20px;
    padding-bottom: 20px;
    }


.footer li{
  width: 100%;
  list-style-type: none;
  font-size: .9rem;
  padding-left: 30px;
}


.copyright{
   width:960px;
   margin-right: auto;
    margin-left : auto;
   margin-top: 20px;
   font-size: 10px;
}



/*トップにスクロールする表現*/
html {
  scroll-behavior: smooth;
  min-height:200vh
}


.page_top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 0px 20px;
  color: #ffffff;
  border-radius: 40px;
  text-decoration: none;
  transition: opacity 0.3s;
}