@charset "UTF-8";
/*
Theme Name: wv2020
Theme URI: https://wood-vibration.com
Description: WordPress responsive theme for multi devices.
Version: 1.0
Author: Wood Vibration
Author URI: https://wood-vibration.com
Tags: responsive design
*/
/*------------------------------------------------

    web font
*/
@font-face {
  font-family: 'Marion';
  font-weight: 400;
  font-style: normal;
  src: url("font/Marion-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: 'Marion';
  font-weight: 700;
  font-style: normal;
  src: url("font/Marion-Bold.woff") format("woff");
  font-display: swap;
}
/*------------------------------------------------

    initialize
*/
html, body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #00693e;
  /*font: 300 4.27vw/1.6 "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
  font: 400 4.27vw/1.6 "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}
@media (min-width: 640px) {
  html, body {
    font-size: 16px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

section {
  display: block;
  position: relative;
}

* {
  outline: none;
}

strong {
  font-weight: 700;
}

.marion-font {
  font-family: 'Marion';
}

.container {
  padding-left: 2.67vw;
  padding-right: 2.67vw;
}

@media (min-width: 640px) {
  .container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1040px;
  }
}
/*------------------------------------------------

    header
*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 16vw;
  background: #00693e;
  z-index: 1000;
}
@media (min-width: 640px) {
  header {
    height: 100px;
  }
}
header .container {
  height: 100%;
}
header .logo {
  width: 27.73vw;
  height: 9.87vw;
  background: url("images/logo01.svg") center center no-repeat;
  background-size: contain;
}
@media (min-width: 640px) {
  header .logo {
    width: 160px;
    height: 58px;
  }
}
header .logo a {
  display: block;
  width: 100%;
  height: 100%;
}
header .snsicon {
  position: absolute;
  background: rgba(0, 105, 62, 0.9);
  top: 16vw;
  left: 0;
  width: 100%;
  height: 16vw;
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
}
@media (min-width: 640px) {
  header .snsicon {
    position: relative;
    top: auto;
    width: auto;
    height: auto;
    visibility: visible;
    opacity: 1;
  }
}
header .snsicon.active {
  visibility: visible;
  opacity: 1;
}
header .snsicon a {
  color: #fff;
}
header .snsicon a i {
  font-size: 7.73vw;
}
@media (min-width: 640px) {
  header .snsicon a i {
    font-size: 1.5rem;
  }
}
header nav {
  position: absolute;
  top: 32vw;
  left: 0;
  width: 100%;
  height: calc(100vh - 32vw);
  background: rgba(0, 105, 62, 0.9);
  color: #fff;
  font-size: 3.2vw;
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  overflow-y: scroll;
}
@media (min-width: 640px) {
  header nav {
    top: 100px;
    height: calc(100vh - 100px);
    font-size: .875rem;
  }
}
header nav.active {
  visibility: visible;
  opacity: 1;
}
header nav a {
  color: #fff;
}
header nav a span {
  font-family: 'Marion';
  font-size: 7.2vw;
  font-weight: 700;
  letter-spacing: .05em;
}
@media (min-width: 640px) {
  header nav a span {
    font-size: 2.125rem;
  }
}
header nav a.btn {
  display: block;
  width: 85.33vw;
  height: 11.2vw;
  line-height: 11.2vw;
  background: #E84C95;
  border-radius: 1.6vw;
  font-size: 1rem;
  font-weight: 700;
  padding: 0 0 0 5.33vw;
  position: relative;
  margin-bottom: 2.67vw;
}
@media (min-width: 640px) {
  header nav a.btn {
    width: 320px;
    height: 42px;
    line-height: 42px;
    border-radius: 6px;
    padding: 0 0 0 20px;
    margin-bottom: 10px;
  }
}
header nav a.btn::after {
  content: "\f054";
  font-family: 'FontAwesome';
  position: absolute;
  right: 5.33vw;
}
@media (min-width: 640px) {
  header nav a.btn::after {
    right: 20px;
  }
}
header nav .en {
  margin-top: 10px;
}
header nav .en a {
  display: inline;
  border: 1px solid #fff;
  padding: 3px 18px 5px;
  font-weight: 700;
}
header nav .hr {
  font-size: 7.2vw;
  font-weight: 700;
}
@media (min-width: 640px) {
  header nav .hr {
    font-size: 2.125rem;
  }
}
header .hamburger {
  position: absolute;
  top: 0;
  right: 0;
  width: 16vw;
  height: 16vw;
  background: #fff;
}
@media (min-width: 640px) {
  header .hamburger {
    position: relative;
    width: 34px;
    height: 40px;
    background: #00693e;
    cursor: pointer;
  }
}
header .hamburger .menu {
  position: absolute;
  top: 3.33vw;
  left: 0;
  right: 0;
  margin: auto;
  width: 8.53vw;
  height: 9.33vw;
  transition: opacity .6s;
  opacity: 1;
}
@media (min-width: 640px) {
  header .hamburger .menu {
    top: 0;
    width: 100%;
    height: 100%;
  }
}
header .hamburger .menu .cls-1 {
  fill: #00693e;
}
@media (min-width: 640px) {
  header .hamburger .menu .cls-1 {
    fill: #fff;
  }
}
header .hamburger .menu .cls-2 {
  stroke: #00693e;
}
@media (min-width: 640px) {
  header .hamburger .menu .cls-2 {
    stroke: #fff;
  }
}
header .hamburger .close {
  position: absolute;
  top: 3.33vw;
  left: 0;
  right: 0;
  margin: auto;
  width: 8.53vw;
  height: 9.33vw;
  transition: opacity .6s;
  opacity: 0;
}
@media (min-width: 640px) {
  header .hamburger .close {
    top: 0;
    width: 100%;
    height: 100%;
  }
}
header .hamburger .close .cls-1 {
  fill: #00693e;
}
@media (min-width: 640px) {
  header .hamburger .close .cls-1 {
    fill: #fff;
  }
}
header .hamburger .close .cls-2 {
  stroke: #00693e;
}
@media (min-width: 640px) {
  header .hamburger .close .cls-2 {
    stroke: #fff;
  }
}
header .hamburger.active .menu {
  opacity: 0;
}
header .hamburger.active .close {
  opacity: 1;
}

/*------------------------------------------------

    page
*/
.page {
  margin: 12vw 0;
  min-height: 100vh;
  /* top */
}
@media (min-width: 640px) {
  .page {
    margin: 100px 0;
  }
}
.page h3 {
  color: #00693e;
  font-size: 2.1875rem;
  font-family: 'Marion';
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}
@media (min-width: 640px) {
  .page h3 {
    font-size: 2.8125rem;
    text-align: center;
  }
}
.page h3 span {
  display: block;
  font-size: .875rem;
  font-family: "Noto Sans JP", sans-serif;
}
.page h3::before {
  content: "";
  position: absolute;
  top: -5vw;
  left: 0;
  width: 10vw;
  height: .8vw;
  background: #00693e;
}
@media (min-width: 640px) {
  .page h3::before {
    top: -30px;
    left: 0;
    right: 0;
    width: 40px;
    height: 4px;
    margin: auto;
  }
}
.page#page-top {
  margin-top: 16vw;
}
@media (min-width: 640px) {
  .page#page-top {
    margin-top: 100px;
  }
}
.page#page-top #keyvisual {
  position: relative;
  width: 100%;
  /*height: 100vw;
  background: url("images/keyvisual_sp.jpg") center center no-repeat;
  background-size: cover;*/
  padding-bottom: 56.25%;
}
@media (min-width: 640px) {
  .page#page-top #keyvisual {
    /*height: calc(100vh - 100px);
    background-image: url("images/keyvisual.jpg");*/
  }
}
.page#page-top #keyvisual video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.page#page-top #keyvisual .logo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 38.93vw;
  height: 40.67vw;
  background: url("images/logo02.svg") center center no-repeat;
  background-size: contain;
  opacity: .25;
}
@media (min-width: 640px) {
  .page#page-top #keyvisual .logo {
    width: 21.92vw;
    height: 22.92vw;
  }
}
.page#page-top #latestnews {
  background: #000;
}
.page#page-top #latestnews .container {
  height: 20vw;
}
@media (min-width: 640px) {
  .page#page-top #latestnews .container {
    height: 70px;
  }
}
.page#page-top #latestnews aside {
  color: #ABCD03;
  font-size: .75rem;
  font-weight: 700;
}
@media (min-width: 640px) {
  .page#page-top #latestnews aside {
    font-size: .875rem;
    margin-right: 30px;
  }
}
.page#page-top #latestnews h4 {
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*------------------------------------------------

    archive
*/
.archive {
  margin: 12vw 0;
  min-height: 100vh;
}
@media (min-width: 640px) {
  .archive {
    margin: 100px 0;
  }
}

/*------------------------------------------------

    footer
*/
footer {
  position: relative;
  width: 100%;
  background: #00693e;
  color: #fff;
  padding: 10.67vw 0 8vw;
  text-align: center;
  font-size: .875rem;
}
@media (min-width: 640px) {
  footer {
    padding: 50px 0 40px;
  }
}
footer .logo {
  width: 34.13vw;
  height: 35.73vw;
  background: url("images/logo02.svg") center center no-repeat;
  background-size: contain;
  margin: 0 auto;
}
@media (min-width: 640px) {
  footer .logo {
    width: 128px;
    height: 134px;
  }
}
footer .snsicon a {
  color: #fff;
}
footer .snsicon a i {
  font-size: 7.73vw;
}
@media (min-width: 640px) {
  footer .snsicon a i {
    font-size: 1.5rem;
  }
}
