* {
  font-family: "Send Flowers", 'Kiwi Maru', serif, cursive;
}
@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;
  width: 100%;
}

.content { 
  display: flex;
  flex-direction: row;
  height: 100%;
  color: rgb(255, 255, 255);
  text-shadow: 4px 4px 1px rgba(17, 10, 0, 0.765);
  margin: 0px 50px 120px;
  text-align: center;
}
#content__story-ttl {
  font-size: x-large;
  font-weight: bold;
  margin-top: 200px;
  margin-bottom: 100px;
  text-align: center;
}
.content__story-text {
  margin-top: 20px;
}
.content__story-text-box {
  margin: 80px;
}
.content__story-text p{
  margin-bottom: 40px;
  text-align: center;
}


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




/*スマホ画面*/
@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%;
}

.content { 
  display: flex;
  flex-direction: column;
  height: 100%;
  color: rgb(255, 255, 255);
  text-shadow: 4px 4px 1px rgba(17, 10, 0, 0.765);
  margin: 0px 0px 120px;
  text-align: center;
}
#content__story-ttl {
  font-size: large;
  font-weight: bold;
  margin-top: 180px;
  text-align: center;
}
.content__story-text {
  font-size: small;
  margin: 60px 20px;
  line-height: 20px;
}
.content__story-text-box {
  margin: 30px 20px;
}
.content__creator-text p{
  margin-bottom: 40px;
  text-align: left;
}

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