@charset "UTF-8";

/**
*
* Common
*
*/
:root {
  --site-red: #e80707;
  --site-green: #20c997;
  --site-orange: #ff6800;
  --site-yellow: #efcb1b;
  --site-bg: #ccb5b0;
  --header-bg: #fff;
}
*,
*:after,
*:before,
dl,
dt,
ul,
li,
span {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  transition: 0.5s ease;
}
.mincho,
h2 {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3",
    "Hiragino Mincho ProN", serif;
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}

/**
*
* Navigation
*
*/
.nav-list {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  z-index: 2;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
}
.open .nav-list {
  transform: translateX(20%);
}
.nav-item {
  margin-left: 2em;
  color: rgba(237, 237, 237, 0.9);
  line-height: 3;
}
.nav-item a {
  line-height: 3;
  color: #fff;
  transition: 0.3s;
  display: block;
}
.nav-item a:hover {
  color: rgba(200, 200, 200, 0.9);
}
.nav-item.hasChild > a:hover {
  color: #fff;
}
.drawer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 3;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--site-orange);
  transition: 0.5s;
}
.open .drawer {
  background: var(--site-orange);
}
.bar,
.bar:before,
.bar:after {
  display: block;
  width: 36px;
  height: 1px;
  content: "";
  background: var(--site-orange);
  transition: 0.3s;
}
.bar:before {
  transform: translateY(-10px);
}
.bar:after {
  transform: translateY(10px);
}
.open .bar {
  background: rgba(255, 255, 255, 0);
}
.open .bar:before,
.open .bar:after {
  background: #fff;
}
.open .bar:before {
  transform: rotate(45deg);
}
.open .bar:after {
  transform: rotate(-45deg);
}
/**
*
* Header
*
*/
header {
  position: relative;
  width: 100%;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero {
  width: 100%;
  height: 0%;
  overflow: hidden;
}
.hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: auto;
  opacity: 0;
}
.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--header-bg);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .drawer {
    display: none;
  }
}
/**
*
* Main > leading
*
*/
.leading {
  position: relative;
  width: 90%;
  margin: -20px auto 0 auto;
  padding: 2em 2em;
  background: var(--site-yellow);
  color: #000;
  opacity: 0;
  z-index: 1;
}
.leading-cover {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: #fff;
  z-index: 2;
}
.leading p:not(:last-of-type) {
  margin-bottom: 1em;
}
/**
*
* Main > News
*
*/
.news-list {
  display: flex;
  margin-top: 60px;
}
.news-list li {
  position: relative;
  padding: 3em 1em;
  width: 100%;
  opacity: 0;
}
.news-list li:nth-of-type(odd) {
  background: #eff3f3;
}
.news-list li:nth-of-type(even) {
  background: #ede5903d;
}
.news-list li:last-of-type {
  display: none;
}
.news-list li span {
  position: absolute;
  top: -20px;
  left: 10%;
  display: block;
  width: 80%;
  line-height: 3em;
  margin: 0 auto;
  background: #053225;
  color: #fff;
  text-align: center;
}
.news-list li a {
  position: absolute;
  bottom: 1em;
  right: 1em;
  display: block;
  color: var(--site-red);
  transition: .3s;
}
.news-list li a:hover {
  color: var(--site-orange);
}
