* {
  font-family: "Send Flowers", 'Kiwi Maru', serif, cursive;
}
/*PC画面*/
@media screen and (min-width : 769px){

.header {
  background: rgb(6, 38, 101);
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 0 30px;
  color: rgb(234, 211, 4);
}
.header__top {
  display: flex;
  align-items: center;
}
a {
  text-decoration: none;
  color: inherit;
}
.header__logo {
  width: 80px;
  padding-right: 20px;
}
.header__logo img {
  width: 100%;
  border-radius: 50%;
}
.header__ttl {
  font-size: 50px;
  text-shadow: 3px 3px 3px rgba(255, 28, 28, 0.765);
}
.header__nav__list {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.header__nav__item {
  white-space: nowrap;
  text-shadow: 3px 3px 3px rgba(255, 28, 28, 0.765);
  padding-right: 30px;
}
.header__nav__item:last-child {
  margin-right: 30px;
}

.main {
  background: #512603 radial-gradient(circle at 50% 50%, transparent 70%, black 95%);
  height: auto;
  display: flex;
  flex-direction: column;
  width: 80%;
}

.story {
  height: 100%;
  color: rgb(255, 255, 255);
  text-shadow: 4px 4px 1px rgba(17, 10, 0, 0.765);
  margin: 0px 30px 120px;
  text-align: center;

}
.story__kuroneko {
  margin-top: 150px;
}
.story__kuroneko-img {
  width: 300px;
  margin: 20px auto;
}
.story__kuroneko-img img {
  width: 100%;
  margin: 0 auto;
}
#story__kuroneko-ttl {
  font-size: large;
  margin-bottom: 30px;
}
.story__kuroneko-text {
  line-height: 24px;
  font-size: small;
  margin-bottom: 50px;
}
.story__news {
  font-size: large;
}

.title__list {
  display: flex;
  flex-direction: column;
}
.title__list-kuroneko {
  display: flex;
  flex-direction: row;
  width: 150px;
  margin: 50px 10px 0;
}
.title__list-kuroneko img {
  width: 100%;
  height: 100%;
}
.title__list-kuroneko-text {
  text-align: left;
  white-space: nowrap;
  margin: auto 0;
  text-decoration: underline;
}
.title__list-kuroneko-text:hover {
  color: gold;
}
.title__list-kuroneko p {
  font-size: small;
  margin-top: 10px;
}


.sidebar {
  background: #a87001e6;
  position: fixed;
  width: 20%;
  right: 0;
  height: 100%;
  color: #fff;
  margin: 100px 0;
}
.sidebar__nav__list {
  font-size: small;
  margin: 30px;
}
.sidebar__nav__list a {
  display: flex;
  margin-bottom: 10px;
}
.sidebar__nav__list a:hover {
  color: rgb(6, 38, 101);
}
}

/*スマホ画面*/
@media screen and (max-width : 768px){

.header {
  background: rgb(6, 38, 101);
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 0 20px;
  color: rgb(234, 211, 4);
}
.header__top {
  display: flex;
  align-items: center;
}
a {
  text-decoration: none;
  color: inherit;
}
.header__logo {
  width: 90px;
  padding-right: 20px;
}
.header__logo img {
  width: 100%;
  border-radius: 50%;
}
.header__ttl {
  font-size: 30px;
  text-shadow: 3px 3px 3px rgba(255, 28, 28, 0.765);
}
.header__nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  line-height: 20px;
  margin-right: 20px;
  margin-left: -30px;
}
.header__nav__item {
  text-shadow: 3px 3px 3px rgba(255, 28, 28, 0.765);
  font-size: x-small;
}

.main {
  background: #512603 radial-gradient(circle at 50% 50%, transparent 70%, black 95%);
  height: auto;
  display: flex;
  width: 100%;
}

.story {
  height: 100%;
  color: rgb(255, 255, 255);
  text-shadow: 4px 4px 1px rgba(17, 10, 0, 0.765);
  margin: 0px 30px 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.story__kuroneko {
  margin-top: 150px;
}
.story__kuroneko-img {
  width: 150px;
  margin: 20px auto;
}
.story__kuroneko-img img {
  width: 100%;
  margin: 0 auto;
}
#story__kuroneko-ttl {
  font-size: large;
  margin-bottom: 30px;
}
.story__kuroneko-text {
  line-height: 24px;
  font-size: small;
  margin-bottom: 50px;
}
.story__news {
  font-size: large;
}
.title__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.title__list-kuroneko {
  display: flex;
  width: 80px;
  margin: 30px 0 0;
}
.title__list-kuroneko img {
  width: 100%;
}
.title__list-kuroneko-text {
  display: flex;
  align-items: center;
  text-align: left;
  white-space: nowrap;
  font-size: small;
  padding-left: 5px;
}
.title__list-kuroneko-text p {
  display: none;
}

.sidebar {
  display: none;
}
}

.footer{
  background: rgb(6, 38, 101);
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  bottom: 0;
  height: 50px;
  color: rgb(234, 211, 4);
}