@charset "UTF-8";
/*------------------------------------------------------------
共通
------------------------------------------------------------*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, object, iframe, pre, code, p, blockquote, form, fieldset, legend, table, th, td, caption, tbody, tfoot, thead, article, aside, figure, footer, header, hgroup, menu, nav, section, audio, video, canvas, main {
  margin: 0;
  padding: 0; }

article, aside, figure, figcaption, footer, h1, h2, h3, h4, h5, h6, header, hgroup, menu, nav, section, main {
  display: block; }

* {
  box-sizing: border-box; }

html {
  font-size: 62.5%;
  width: 100%;
  min-height: 100%; }

body {
  width: 100%;
  min-height: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  line-height: 1.6;
  color: #000;
  font-weight: 400; }

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s; }

dt, h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: 400; }

ol, ul, li {
  list-style: none;
  zoom: 1;
  overflow: hidden; }

table {
  font-size: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  vertical-align: top;
  font-weight: 400; }

dl, dt, dd {
  zoom: 1;
  overflow: hidden; }

fieldset {
  border: none; }

input, textarea, select, label {
  font-size: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0; }

input {
  cursor: pointer; }

button {
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer; }

label {
  cursor: pointer; }

textarea {
  overflow: auto; }

legend {
  display: none; }

img {
  max-width: 100%;
  border: none;
  vertical-align: middle; }

object {
  vertical-align: middle;
  outline: none; }

p {
  line-height: 1.8; }

em {
  font-style: italic; }

b, strong {
  font-weight: 400; }

small {
  font-size: 100%; }

i {
  font-style: normal; }

u {
  text-decoration: none; }

abbr, acronym {
  border: none;
  font-variant: normal; }

address, caption, cite, code, dfn, var {
  font-weight: normal;
  font-style: normal; }

sup {
  font-size: 1em;
  vertical-align: text-top; }

sub {
  font-size: 1em;
  vertical-align: text-bottom; }

hr {
  display: none; }

div:focus, img:focus, textarea:focus, a:focus, button:focus, input:focus {
  outline: none;
  box-shadow: none; }

html, body {
  min-height: 100%; }

/*------------------------------------------------------------
ラッパー
------------------------------------------------------------*/
#wrapper {
  overflow: hidden;
  position: relative;
  height: 100%; }

@media only screen and (min-width: 736px) {
  .sp {
    display: none; }

  .pc {
    display: block; } }
@media only screen and (max-width: 736px) {
  .sp {
    display: block; }

  .pc {
    display: none; } }
/*------------------------------------------------------------
header
------------------------------------------------------------*/
header h1 {
  padding: 20px 40px; }
@media only screen and (max-width: 736px) {
  header h1 {
    padding: 12px 20px;
    min-height: 60px; }
    header h1 img {
      width: 55vw;
      height: auto;
      max-width: 336px; } }
header p {
  position: fixed;
  right: 0px;
  top: 50%;
  z-index: 100;
  background: #fff;
  padding: 20px 15px;
  transition: 0.3s;
  z-index: 101; }
  header p:hover {
    cursor: pointer;
    margin-top: -10px; }
    header p:hover span:nth-of-type(2) {
      margin: 10px 0; }
  header p span {
    text-align: center;
    width: 30px;
    height: 3px;
    display: block;
    background: #000;
    border-radius: 2px;
    transition: 0.3s; }
    header p span:nth-of-type(2) {
      margin: 5px 0; }
  @media only screen and (max-width: 736px) {
    header p {
      top: 0px;
      right: 0px; }
      header p:hover {
        margin-top: 0px; }
        header p:hover span:nth-of-type(2) {
          margin: 5px 0; } }
header div {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-right: 100px;
  text-align: right;
  position: fixed;
  top: 0;
  right: -100%;
  background: #fff;
  opacity: 0;
  display: flex;
  align-items: center;
  font-size: 4vh;
  font-weight: bold;
  transition: 0.3s;
  z-index: 100; }
  @media only screen and (max-width: 736px) {
    header div {
      padding-right: 20px;
      font-size: 3vh; } }
  header div ul {
    width: 100%; }
  header div li {
    margin: 5vh 0; }
  header div a:hover {
    color: #eb8312; }

header.on div {
  right: 0%;
  opacity: 1; }
header.on p:hover {
  margin-top: 0px; }
  header.on p:hover span:nth-of-type(2) {
    display: none; }
header.on p span {
  position: relative; }
  header.on p span:nth-of-type(2) {
    display: none; }
  header.on p span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 1px; }
  header.on p span:nth-of-type(3) {
    transform: rotate(-45deg);
    bottom: 1px; }
  @media only screen and (max-width: 736px) {
    header.on p span:nth-of-type(1) {
      top: 7px; }
    header.on p span:nth-of-type(3) {
      bottom: -5px; } }

/*------------------------------------------------------------
contents_warp
------------------------------------------------------------*/
.contents_warp {
  margin-right: 60px;
  border-radius: 0 20px 0 0; }
  @media only screen and (max-width: 736px) {
    .contents_warp {
      margin-right: 0px;
      border-radius: 0 0 0 0; } }

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
footer {
  text-align: center;
  font-size: 1rem;
  padding: 60px 0; }
  footer h1 {
    margin-bottom: 20px; }
  @media only screen and (max-width: 736px) {
    footer {
      padding: 40px 0; }
      footer h1 {
        margin-bottom: 10px; }
      footer h1 img {
        width: 55vw;
        height: auto;
        max-width: 336px; } }
