@charset "UTF-8";
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

body, div, span, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, address, big, cite, code,
em, img, q, s, small, strong,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section, summary,
time, mark, audio, video,
form, input, button, textarea, select {
  margin: 0;
  padding: 0;
  font-size: inherit;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

b, strong {
  font-weight: inherit;
  font-weight: bolder;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

button, input, select, textarea {
  font: inherit;
  margin: 0;
}

button, input, select {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

button, html [type=button],
[type=reset], [type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

body {
  font-family: "Times New Roman", Serif;
}

a, a img, button, [type=button], [type=reset], [type=submit] {
  transition: 0.2s;
}

/*===================================================================
  start up reset
===================================================================*/
body {
  background: transparent;
  color: inherit;
  font-weight: normal;
  line-height: normal;
  background-color: #000;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: bold;
}

a:visited {
  color: #000000;
}

a:hover {
  color: #000000;
}

/*===================================================================
	サイト基礎
===================================================================*/
body {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  position: relative;
  font-size: 18px;
  color: #000;
}

a {
  color: #000000;
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}
a img {
  transition: opacity 0.15s ease-out;
}
a img:hover {
  opacity: 0.5;
}

/*===================================================================
	ヘッダー
===================================================================*/
.site-header {
  position: fixed;
  z-index: 10;
  width: 100%;
}
.site-header .site-header__wrapper {
  width: 100%;
  padding: 0 4vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .site-header .site-header__wrapper {
    padding: 1em 2vw 0;
  }
}
.site-header .site-header__box1 {
  padding: 3.25em 0 0 0;
  width: 22.2%;
  max-width: 160px;
}
@media screen and (max-width: 768px) {
  .site-header .site-header__box1 {
    padding: 0;
    height: 56px;
  }
}
.site-header .site-header__box1 .site-header__box__tit {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .site-header .site-header__box1 .site-header__box__tit {
    padding: 5px 0 0 5px;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .site-header .site-header__box1 .site-header__box__tit h1 {
    width: 144px;
  }
}
.site-header .site-header__box1 .site-header__box__tit h1 img {
  width: 100%;
}
.site-header .site-header__box2 {
  width: 77.8%;
  padding: 3.25em 0 0;
}
@media screen and (max-width: 768px) {
  .site-header .site-header__box2 {
    padding: 0;
  }
}
.site-header .site-header__box2 .site-header__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .site-header .site-header__box2 .site-header__nav ul {
    display: block;
  }
}
.site-header .site-header__box2 .site-header__nav ul li {
  padding: 0 0 0 4vw;
  font-size: 1.6rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .site-header .site-header__box2 .site-header__nav ul li {
    padding: 0 2vw 1vw;
  }
}
.site-header .site-header__box2 .site-header__nav ul li a {
  display: block;
  padding: 1em 0;
}
@media screen and (max-width: 768px) {
  .site-header .site-header__box2 .site-header__nav ul li a {
    text-align: center;
    padding: 0.75em 0;
  }
}
.site-header .site-header__box2 .site-header__nav ul li.contact a {
  background-color: #fff;
  padding: 1em 2.5em;
}
@media screen and (max-width: 768px) {
  .site-header .site-header__box2 .site-header__nav ul li.contact a {
    margin: 1em 0 0;
  }
}
.site-header .site-header__toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  .site-header .site-header__toggle,
  .site-header .site-header__toggle span {
    display: block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .site-header .site-header__toggle {
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 34px;
    padding: 24px;
    box-sizing: content-box;
    z-index: 9999;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .site-header .site-header__toggle {
    width: 30px;
    height: 28px;
    padding: 14px;
  }
}
@media screen and (max-width: 768px) {
  .site-header .site-header__toggle span {
    position: absolute;
    left: 24px;
    width: calc(100% - 24px * 2);
    height: 6px;
    background-color: #000;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .site-header .site-header__toggle span {
    left: 14px;
    width: calc(100% - 14px * 2);
    height: 2px;
  }
}
@media screen and (max-width: 768px) {
  .site-header .site-header__toggle span:nth-of-type(1) {
    top: 26px;
    animation: menu-bar01 0.75s forwards;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .site-header .site-header__toggle span:nth-of-type(1) {
    top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .site-header .site-header__toggle span:nth-of-type(2) {
    top: 38px;
    transition: all 0.25s 0.25s;
    opacity: 1;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .site-header .site-header__toggle span:nth-of-type(2) {
    top: 26px;
  }
}
@media screen and (max-width: 768px) {
  .site-header .site-header__toggle span:nth-of-type(3) {
    bottom: 26px;
    animation: menu-bar02 0.75s forwards;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .site-header .site-header__toggle span:nth-of-type(3) {
    bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .site-header .site-header__toggle.is-active {
    background-color: #000;
  }
  .site-header .site-header__toggle.is-active span {
    background-color: #fff;
  }
  .site-header .site-header__toggle.is-active span:nth-of-type(1) {
    top: 30px;
    animation: active-menu-bar01 0.75s forwards;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .site-header .site-header__toggle.is-active span:nth-of-type(1) {
    top: 19px;
  }
}
@media screen and (max-width: 768px) {
  .site-header .site-header__toggle.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .site-header .site-header__toggle.is-active span:nth-of-type(3) {
    bottom: 30px;
    animation: active-menu-bar03 0.75s forwards;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .site-header .site-header__toggle.is-active span:nth-of-type(3) {
    bottom: 19px;
  }
}
@media screen and (max-width: 768px) {
  .site-header .site-header__nav {
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    left: 0;
    top: -4px;
    width: 100%;
    transform: translateY(-100%);
    transition: 0.4s;
    padding: 3em 1em 1em;
  }
  .site-header .site-header__nav.is-active {
    transform: translateY(0);
    z-index: 1;
  }
}

/*--------------------------------
  keyframes
--------------------------------*/
@keyframes menu-bar01 {
  0% {
    transform: translateY(8px) rotate(45deg);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(8px) rotate(45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(-8px) rotate(-45deg);
  }
}/*# sourceMappingURL=base.css.map */