@charset"utf-8";
:root {
    --blue: #19306e;
    --yellow: #f8b100;
    --brown: #431f02;
    --beige: #f2ede9;
    --brown2: #431f02;
    --rightbeige: #fdfdfc;
    --orange: #ff7f50;
}
body {
    background-image: url(../img/background_texture.png);
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 592;
    font-style: normal;
    margin: 0;
}
.header {
    top:0;
    display: flex;
    padding-bottom: 10px;
    right: 0;
    left: 0;
    position: fixed;
    z-index: 1001;
}
.Logo {
    margin: 0 auto;
    margin-left: 10px;
}
.Logo > a > img {
    width: 80px;
    margin-top: 10px;
}
.privacyURL {
    margin: 40px 10px 0 0;
}
.menuContents {
    display: flex;
    margin: 0px 30px 0 0;
}
.sns {
    line-height: 50px;
    margin: 40px 30px 0 0;
    margin-left: 50px;
}
.snsItems > a {
    color: #FFFFFF;
    font-size: 20px;
    text-decoration: none;
    text-align: center;
    margin-left: 30px;
}
.snsItems > a:hover {
    color: var(--yellow);
}
.pushMenu {
    margin: 10px 0 0 0;
}
.pushMenu > a {
    color: var(--blue);
    font-size: 27px;
    padding: 3px 10px 5px 10px;
    border-radius: 7px;
}
.pushMenu > a:hover {
    color: #FFFFFF;
    background-color: var(--blue);
    cursor: pointer;
}
.pushMenucontent {
    position: fixed;
    top: 0;
    right: 0;
    width: 450px;
    height: 100vh;
    z-index: 1100;
    background-color: var(--blue);
    max-width: 0;
    transition: 300ms;
}
.pushMenucontent > .inner {
    width: 100%;
    background-color: var(--blue);
    text-align: center;
    padding: 20px;
}
.pushMenucontent > .inner > .margin-top {
    margin-top: 30px;
}
.pushMenucontent > .inner > .margin-top > div > a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 50px;
    margin-left: 50px;
}
.pushMenucontent > .inner > .margin-top > div > a {
  position: relative;
  display: inline-block;
}

.pushMenucontent > .inner > .margin-top > div > a::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 2px;
  background-color: #fff;
  width: 0;
  transition: width 0.3s ease;
  transform: translateY(-12px);
}

.pushMenucontent > .inner > .margin-top > div > a:hover::after {
  width: 100%;
}
.pushMenucontent > .inner > .hiddenButton {
    text-align: right;
    margin-right: 45px;
}
.pushMenucontent > .inner > .hiddenButton > a {
    font-size: 40px;
    color: #FFFFFF;
}
.pushMenucontent > .inner > .hiddenButton > a:hover {
    color: var(--yellow);
    cursor: pointer;
}
.pushMenucontent.push {
  display: block;
  max-width: 450px;
}
.footer {
    text-align: center;
    margin-top: 20px;
}