@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333;
  font-family: "Toppan Bunkyu Midashi Mincho", sans-serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  cursor: pointer;
}

button {
  width: 300px;
  height: 70px;
  margin: 48px auto;
  padding: 14px 0 16px 0;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  line-height: 40px;
  text-decoration: none;
  color: #fff;
  background: #836D6D;
  border-radius: 30px;
  -webkit-box-shadow: 2px 2px 5px #b9b9b9;
          box-shadow: 2px 2px 5px #b9b9b9;
}

button:hover {
  opacity: 0.7;
}

p {
  text-align: justify;
}

li {
  list-style: none;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}

header {
  width: 100%;
  max-width: 100vw;
  height: 100px;
  background-image: url(../img/24073734_m.jpg);
  position: fixed;
  z-index: 999;
}

.heading {
  padding: 0 20px;
}

.footer-text p {
  text-align: center;
  padding: 24px 0;
  font-size: 14px;
  font-weight: bold;
}

/* =========================
      nav menu
=========================== */
nav {
  height: 100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

nav > :first-child {
  margin-right: auto;
  font-size: 24px;
  width: 100%;
}

.nav-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: auto;
}

.nav-list-item {
  list-style: none;
  padding: 10px 30px;
  text-align: center;
  color: #333;
}

.nav-list-item a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  position: relative;
}

#drawer_input {
  display: none;
}

.drawer_open {
  display: none;
}

.nav-list {
  display: block;
}

.nav-list-item a {
  display: inline-block;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-perspective-origin: 50% 50%;
          perspective-origin: 50% 50%;
  vertical-align: bottom;
  overflow: hidden;
}

.nav-list-item a {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  padding: 0px 30px;
  display: inline-block;
}

.nav-list-item a:hover {
  background-color: #836D6D;
  color: #fff;
}

.nav-list-item:last-child {
  background-color: #836D6D;
  margin: 0;
}

.nav-list-item:last-child a:hover {
  background-color: #fff;
  color: #836D6D;
}

.nav-list-item:last-child a {
  color: #fff;
}

a:hover {
  color: #836D6D;
}

footer {
  background-color: #836D6D;
}

footer p {
  font-size: 12px;
  color: #fff;
}

/* =========================
      pc版
=========================== */
@media screen and (min-width: 768px) {
  .pc-logo {
    display: block;
  }
  .sm-logo {
    display: none;
  }
  .nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .pc-logo {
    margin: auto 0;
  }
  .main-visual {
    width: 100%;
  }
  .main-visual {
    background-position: top;
    margin-top: 0;
    padding-top: 100px;
    height: 600px;
    position: inherit;
  }
  .nav-list-item a {
    padding: 0 10px;
    width: 100%;
  }
  .nav-list-item {
    padding: 0px;
    line-height: 100px;
  }
  .nav-list-item:last-child {
    height: 100%;
  }
  .nav-list-item:last-child a {
    line-height: 100px;
    width: 100%;
  }
}

/* =========================
      sp版
=========================== */
@media screen and (max-width: 768px) {
  html, body, header, nav, main, footer {
    width: 100%;
  }
  .pc-logo {
    display: none;
  }
  .sm-logo {
    display: block;
    font-size: 20px;
    line-height: 70px;
  }
  /* =========================
      header
  =========================== */
  header {
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
  }
  .nav-list .sp-nav {
    padding: 0;
  }
  /* =========================
        hamburger menu
  =========================== */
  .sp-nav {
    padding: 0;
    display: block;
  }
  .drawer_hidden {
    display: none;
  }
  .drawer_open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    z-index: 999;
    cursor: pointer;
    top: 18px;
    right: 26px;
    width: 40px;
    height: 40px;
  }
  .drawer_open span, .drawer_open span:before, .drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 35px;
    border-radius: 3px;
    background: #333;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: absolute;
  }
  .drawer_open span:before {
    bottom: 10px;
  }
  .drawer_open span:after {
    top: 10px;
  }
  #drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0);
  }
  #drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  nav {
    height: 100%;
    position: fixed;
    left: -100%;
    background: #836D6D;
    color: #fff;
    -webkit-transition: .5s;
    transition: .5s;
    text-align: center;
  }
  .nav-list-item {
    margin: 0 auto;
    padding: 10px 30px;
  }
  .nav-list-item a {
    font-size: 18px;
    color: #fff;
  }
  .nav-list-item:last-child a {
    background-color: #fff;
    color: #836D6D;
    border-radius: 20px;
    padding: 10px 30px;
  }
  #drawer_input:checked ~ nav {
    left: 0;
  }
  .nav-list-item:last-child {
    width: 100vw;
  }
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .nav-list-item a {
    font-size: 0.7em;
  }
}

.container {
  padding: 84px 20px 84px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.pankuzu-list {
  font-size: 14px;
  padding: 10px 0;
}

.category {
  background-color: lightsalmon;
  padding: 5px 10px;
}

data {
  font-family: 'Roboto', sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto 0;
}

.pd10 {
  padding: 0 10px;
}

.container img {
  width: 100%;
  margin: 20px 0;
}

.blog-text {
  padding: 10px 0;
}

.side-title {
  font-size: 24px;
  padding: 1rem;
  border-left: 6px solid #333;
  border-bottom: 2px solid #333;
}

.side-img img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.side-text {
  margin-top: 20px;
  padding-left: 10px;
}

.page-title {
  font-size: 24px;
  margin: 0px auto;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .container {
    padding: 184px 20px 84px 20px;
  }
  .grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.5fr 0.5fr;
        grid-template-columns: 1.5fr 0.5fr;
  }
  .side-text {
    margin-top: 20px;
  }
  .container img {
    margin: 20px 0 0 0;
  }
  .side-area {
    padding-bottom: 84px;
  }
  .side-text p {
    margin-top: 20px;
  }
}
/*# sourceMappingURL=news.css.map */