@charset "UTF-8";
/* ---------------------------------------------------------
>>> TABLE OF CONTENTS:
------------------------------------------------------------

	1. 	Helper Classes
	2. 	Site Header
	3. 	Menu Modal
	4. 	Search Modal
	5. 	Page Templates
	6.  Post: Archive
	7.  Post: Single
	8.  Blocks
	9.  Entry Content
	10. Comments
	11. Site Pagination
	12. Error 404
	13. Widgets
	14. Site Footer
	15. Media Queries

--------------------------------------------------------- */

/* ------------------------------------------------------ */
/*	1. Helper Classes                                     */
/* ------------------------------------------------------ */

/* Contents Viwe ------------------------------ */

/* contents, page */

.contents, .page {
  width: 100%;
  height: auto;
  padding: var(--page-padding);
}
@media only screen and (min-width: 768px) {
  .contents, .page {
    margin: 0 auto;
  }
  .page {
    max-width: var( --page-width);
  }
  .contents {
    max-width: var( --contents-width);
    padding: var( --contents-padding);
  }
}
.site-header, .site-footer {
  display: none;
}

/* ------------------------------------------------------ */
/*	2. Site Header                                        */
/* ------------------------------------------------------ */

/* Initialize --------------------------------- */
.site-header,
.site-header > contents *,
.site-header > contents *::before,
.site-header > contents *::after {
  all: inherit;
}

/* Contents Viwe ------------------------------ */

.site-header {
  position: fixed;
  width: 100%;
  height: 8rem;
  box-sizing: content-box;
  border-bottom: var( --color-blue_pale ) 1px solid;
}

.site-header * {
  box-sizing: border-box;
}

.site-header > .contents {
  display: flex;
  align-items: center;
  height: 100%;
}

/* siteid */

.site-header .siteid {
  height: 4.4rem;
  flex-basis: 200px;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.site-header .siteid img {
  width: auto;
  height: 100%;
}

/* Menu Button -------------------------------- */

.menubtn {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background-color: var( --color-main );
}

.menubtn > i {
  position: absolute;
  width: 4rem;
  height: .2rem;
  top: 3.2rem;
  left: 50%;
  margin-left: -2rem;
  background-color: white;
}

.menubtn > i::before,
.menubtn > i::after {
  position: absolute;
  width: 4rem;
  height: .2rem;
  top: 0;
  left: 50%;
  margin-left: -2rem;
  background-color: white;
  content: '';
  transition: .3s;
}

.menubtn > i::before {
  margin-top: -1rem;
}

.menubtn > i::after {
  margin-top: 1rem;
}

.menubtn > span {
  position: absolute;
  top: 5rem;
  width: 8rem;
  height: 1.6rem;
  color: white;
  font-size: var( --font-size_s);
  text-align: center;
  transition: .3s;
}

.menubtn.closed > i {
  top: 50%;
  margin-top: -.1rem;
  background: transparent;
}

.menubtn.closed > i::before,
.menubtn.closed > i::after {
  margin-top: 0;
}

.menubtn.closed > i::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menubtn.closed > i::after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.menubtn.closed > span {
  color: transparent;
}

@media only screen and (min-width: 768px) {
  .menubtn {
    display: none;
  }
}

/* ------------------------------------------------------ */
/*	3. Menu Modal                                         */
/* ------------------------------------------------------ */

/* Header Navigation -------------------------- */
.site-header .menu {
  display: none;
  position: absolute;
  top: 8rem;
  left: 0;
  z-index: 1;
  width: 100%;
  height: calc(100vh - 8rem);
  padding: 1rem 2rem 10rem;
  overflow-y: auto;
  border-top: #CCC .6rem solid;
  background-color: white;
  font-size: var(--font-size_m);
}

.site-header .menu > nav > ul {
  margin: 0;
  list-style: none;
}

.site-header .menu > nav > ul > li {
  display: flex;
  align-items: center;
  width: 100%;
  height: 4em;
  margin: 0;
  padding: 1em 1rem;
  overflow: hidden;
  line-height: 1;
  border-bottom: #CCC .1rem solid;
}

@media only screen and (min-width: 768px) {
  .site-header .menu {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    position: initial;
    height: 100%;
    padding: 0;
    overflow-y: visible;
    border-top: none;
    background-color: initial;
  }

  .site-header .menu > nav {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50%;
  }

  .site-header .menu > nav.bunav {
    display: none;
  }

  .site-header .menu > nav > ul {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }

  .site-header .menu > nav > ul > li {
    display: block;
    width: auto;
    height: auto;
    padding: 0;
    overflow: visible;
    border-bottom: none;
  }
}




.vvv {
  display: block;
  width: 100vw;
  height: 400px;
  margin-top: 8rem;

}
.vvv video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
