@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');
/* -- The new CSS reset - version 1.11.3 -- */
*:where(:not(html,iframe,canvas,img,svg,video,audio):not(svg *,symbol *)) { all: unset; display: revert; }
*, *::before, *::after { box-sizing: border-box; }
html { -moz-text-size-adjust: none; -webkit-text-size-adjust: none; text-size-adjust: none; }
a, button { cursor: revert; }
ol, ul, menu, summary { list-style: none; }
img { max-inline-size: 100%; max-block-size: 100%; }
table { border-collapse: collapse; }
input, textarea { -webkit-user-select: auto; }
textarea { white-space: revert; }
::placeholder { color: unset; }
/* -- The new CSS reset end -- */
:root {
--main-txt-color: #333333;
--link-color: #996633;
--visited-color: #996633;
--hover-color: #cc9966;
--main-site-color: #FF9EAC;
--main-bg-color: #fff9fb;
--main-border-color: #FF9EAC;
--sub-site-color: #663300;
--sub-txt-color: #996633;
--sub-bg-color: #f0f0f0;
--sub-border-color: #deb887;
--main-btn-link-color: #fff;
--main-btn-bg-color: #996633;
--main-btn-border-color: #666666;
--all_th_res-color: #FF9EAC;
--th-frame-txt-color: #663300;
--page-title-bg-color: #F3EDC8;
--page-title-bg-color2: #F7F6DE;
--page-title-border-color: #F3EDC8;
--page-title-txt-color: #663300;
}
/* -- 全体 -- */
body { font-family: "M PLUS Rounded 1c","Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif; margin: 0; padding: 0; letter-spacing: .05em; background-color: #fff; border-top: 3px solid var(--main-border-color); color: var(--main-txt-color); font-size: 16px; word-break:break-all; }
hr { display:none; }
ul { list-style:none; }
a:link { color: var(--link-color); }
a:visited { color: var(--visited-color); }
a:hover { color: var(--hover-color); }
a { text-decoration:none; 
}
input[type="submit"] { display: block; text-align: center; font-size: 15px; font-weight: bold; color: #ffffff; padding: 0.8rem 1rem; margin: 1.5rem auto; width: 80%; background-color: rgba(255, 182, 193, 0.85); background: linear-gradient(135deg, #ffb6c1, #ffc0cb); border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px; border: 1px solid rgba(255, 182, 193, 0.85); -moz-box-shadow: none; -webkit-box-shadow: none; text-shadow: none;}
input[type="submit"]:active { transform: translate(0,2px); border-bottom:none; border-top:1px; } 
input[type="text"], input[type="email"], input[type="url"] { margin: .5rem 1rem; padding: 0.5rem; width: 50%; height: 50px; border: 1px solid #d1d2d3; border-radius: 4px; box-shadow: inset 0 2px 2px 0 #dddddd; }
select { width: 50%; height: 40px; margin: .8rem 1rem; padding: 0.5rem 1.5rem; border: 1px solid #b3b3b3; border-radius: 50px; background: #ffffff; align-items: center; }
select:active { background-image: linear-gradient(#ffffff, #eeeeee); }
textarea { width: 90%; margin: .5rem 1rem; padding: 6px; height: 300px; border: 1px solid #d1d2d3; border-radius: 4px; box-shadow: inset 0 2px 2px 0 #dddddd; 
}
.backhome { display: block; text-align: center; font-weight: bold; color: #686968; font-size: 1rem; width: 80%; margin: 35px auto 20px; padding: 10px 20px; background: #f8f8f8; border-radius: 5px; border: 2px solid #ccc; 
}
#wrapper { background: #f9f9f9;}
#Content { margin: 0 auto; max-width: 900px; }
#header { width: 100%; }
#container { display: flex; width: 100%; margin: 0 auto;  gap: 10px;  padding: 20px 0; box-sizing: border-box; max-width: 1200px; }
#main { flex: 3; padding: 20px; min-width: 728px; }
#side { flex: 1; padding: 20px; background: var(--main-bg-color); }
#footer { width: 100%; padding: 10px 20px; background: var(--main-bg-color);
} 
/* ヘッダー */
.cute-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(135deg, #ffb6c1, #ffc0cb);
  box-shadow: 0 4px 15px rgba(255, 182, 193, 0.4);
}
.header-top,
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px 5px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo a {
  text-decoration: none;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  text-shadow: 0 2px 4px rgba(255, 105, 180, 0.3);
}
.logo-main {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
}
.logo-sub {
  padding-left: 0.3rem;
  font-size: 0.65rem;
  letter-spacing: 0.1rem;
  opacity: 0.9;
}
.header-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}
.btn-fc {
  display: inline-block;
  background: #ffffff;
  color: #ff69b4;
  font-weight: bold;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-fc:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 12px rgba(255, 105, 180, 0.4);
}
.btn-fc-mobile {
  display: none;
}
.drawer-checkbox {
  display: none;
}
.hamburger-btn {
  display: none;
  cursor: pointer;
  padding: 5px;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1002;
}
.hamburger-btn span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  margin: 5px auto;
  transition: transform 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6), opacity 0.3s ease;
  box-shadow: 0 1px 3px rgba(255, 105, 180, 0.3);
}
.header-nav {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 8px 0;
  margin-top: 5px;
}
.header-nav ul {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.header-nav li {
  position: relative;
}
.header-nav li:not(:last-child)::after {
  content: "☆";
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.8);
}
.header-nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.85rem;
  letter-spacing: 0.08rem;
  padding: 5px 12px;
  border-radius: 15px;
  transition: all 0.25s ease;
  display: inline-block;
}
.header-nav a:hover {
  background: #ffffff;
  color: #FF9EAC;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(255, 105, 180, 0.2);
}
/* 見出し */
.heading-paper-clip {
  position: relative;
  display: inline-block;
  width: calc(100% - 2rem);
  padding: 0.5rem 2.8rem;
  font-size: 1.3rem;
  font-weight: bold;
  color: #5a4b51;
  background-color: #ffffff;
  border: 1px solid #ffe4e8;
  border-radius: 2px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
  margin: 0 1rem;
  transform: rotate(-0.8deg);
}
.heading-paper-clip::before {
  content: '';
  position: absolute;
  top: -10px;
  right: 18px;
  width: 10px;
  height: 22px;
  border: 2px solid #b0bec5;
  border-radius: 6px;
  background-color: transparent;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.heading-paper-clip .cat-count {
  position: absolute;
  top: 15px;
  right: 50px;
  font-size: 0.8rem;
}
/* カテゴリーリスト */
.cat-list-tape-both {
  list-style: none;
  padding: 3rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.cat-list-tape-both li a {
  position: relative;
  display: block;
  padding: 0.8rem 2rem;
  color: #5a4b51;
  font-weight: bold;
  text-decoration: none;
  background-color: #ffffff;
  background-image: 
    linear-gradient(#ffe4e8 1px, transparent 1px),
    linear-gradient(90deg, #ffe4e8 1px, transparent 1px);
  background-size: 10px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, background-color 0.2s;
}
.cat-list-tape-both li:nth-child(odd) a {
  transform: rotate(-1.5deg);
}
.cat-list-tape-both li:nth-child(even) a {
  transform: rotate(1.2deg);
}
.cat-list-tape-both li a:hover {
  transform: rotate(0deg) translateY(-3deg);
  background-color: #fff9fb;
}
/* 左端 */
.cat-list-tape-both li a::before {
  content: '';
  position: absolute;
  top: 0px;
  left: -16px;
  width: 40px;
  height: 12px;
  background-color: rgba(255, 182, 193, 0.85);
  transform: rotate(-45deg);
  clip-path: polygon(
    0% 0%, 3px 50%, 0% 100%, 
    100% 100%, calc(100% - 3px) 50%, 100% 0%
  );
}
/* 右端 */
.cat-list-tape-both li a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  right: -14px;
  width: 40px;
  height: 12px;
  background-color: rgba(255, 182, 193, 0.85);
  transform: rotate(-45deg);
  clip-path: polygon(
    0% 0%, 3px 50%, 0% 100%, 
    100% 100%, calc(100% - 3px) 50%, 100% 0%
  );
}
/* ランキング */
.rank-frame {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 8px;
    margin: 0.8rem;
}
.rank-frame .div1 {
    grid-column: 1 / -1;
    background: #FFF2F4;
    padding: 0;
}
.rank-frame .div2 {
    width: 80px;
    height: 80px;
    grid-column: 1;
    grid-row: 2;
    overflow: hidden;
}
.rank-frame .div3 {
    grid-column: 2;
    grid-row: 2;
    color: #777777;
}
.rank-frame .div4 {
    grid-column: 1 / -1;
    grid-row: 3;
    padding: 0 0.5rem;
    font-size: 0.7rem;
    color: #999999;
}
.rank-frame .div1 a {
    position: relative;
    display: block;
    padding: 0.8rem 1.2rem;
    font-weight: bold;
    color: #5a4b51;
}
.rank-frame .div1 a:hover {
    opacity: 0.6;
}
.rank-frame .div1 a .rank-n {
    display: inline-block;
    background: rgba(255, 182, 193, 0.85);
    color: #ffffff;
    min-width: 2rem;
    margin: 0.2rem 0.8rem 0.2rem 0;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}
.rank-frame .div1 a .rank-new {
  content: '';
  position: absolute;
  top: 5px;
  right: 15px;
  color: #ff0000;
  font-size: 0.6rem;
}
.rank-frame .div1 .date {
    padding-bottom: 0.3rem;
    color: #777777;
    font-size: 0.8rem;
}
.rank-frame .div2 img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center; 
    display: block;
}


.registComp {
 margin: 2rem;
}
.registComp hr {
 display: block;
 margin: 1rem auto;
}
.registComp textarea {
 width: 90%;
 margin: .5rem 0;
 height: 150px;
}
/* フッター */
.info-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); gap: 2px; place-content: center; align-items: center; margin: .8rem auto .5rem; width: calc(100% - 2rem); }
.info-grid__item { margin: 0; padding: 0; }
.info-grid__item a { background-color: #fff; border: 1px solid #ccc; border-radius: 2px; font-size: .8rem; padding: .7rem 0; text-align: center; display: block; color: #5a4b51; }
.info-grid__item a:hover { border-bottom: 1px solid var(--main-border-color);
}
.copyright { margin: .5rem auto .5rem; padding: .5rem; font-size: 1rem; text-align: center;
}
