@charset "UTF-8";
/*--- import -------------------------------------*/
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  word-break: break-word;
  box-sizing: border-box;
  vertical-align: baseline;
  background: transparent; }

html, body {
  overflow-x: hidden; }

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

li {
  list-style-type: none; }

blockquote, q {
  quotes: none; }
  blockquote::before, blockquote::after, q::before, q::after {
    content: '';
    content: none; }

a {
  text-decoration: none;
  color: inherit; }

img, picture {
  vertical-align: top;
  max-width: 100%; }

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

input, select {
  vertical-align: middle; }

/* safariでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box; }
  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration {
    display: none; }
  input[type="submit"]::focus,
  input[type="button"]::focus {
    outline-offset: -2px; }

/*------------------------------------- import ---*/
.nav {
  padding-top: 80px;
  height: 100vh !important; }
  .nav .inner {
    width: 80%;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    margin: 0 auto;
    border-radius: 15px;
    color: #e6000f;
    margin-bottom: 100px; }
    @media screen and (max-width: 480px) {
      .nav .inner {
        width: 90%; } }
    .nav .inner .parents_list a {
      display: block;
      padding: 15px 0px 15px 15px;
      border-top: 1px solid;
      text-align: left; }
      .nav .inner .parents_list a:before {
        content: '■'; }
    .nav .inner .parents_list .sub li a {
      display: block;
      padding: 15px 0 15px 60px;
      border-top: 1px solid; }
      .nav .inner .parents_list .sub li a:before {
        content: none; }
  .nav a {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px; }

.burger {
  width: 70px;
  height: 67px;
  cursor: pointer;
  position: fixed;
  z-index: 100;
  right: 0;
  top: 0;
  background: #e6000f; }
  .burger > div {
    width: 48%;
    height: 3px;
    background-color: #fff;
    border-radius: 6px;
    position: absolute;
    left: 16px; }

/*
@include mq_max(480){
	.burger{
	width: 52px;
	height: 52px;
	}
}
*/
.on_nav .burger {
  background: #e6000f; }
  .on_nav .burger > div {
    background-color: #fff; }

.normal:first-child {
  top: 25px;
  transition: 0.2s; }
.normal:nth-child(2) {
  top: 34px;
  transition: 0.2s; }
.normal:last-child {
  top: 43px;
  transition: 0.2s; }

/*
@include mq_max(480){
	.normal{
		&:first-child{
			top: 15px;
		}
		&:nth-child(2){
			top: 24px;
			transition: 0.2s;		
		}
		&:last-child{
			top: 33px;
			transition: 0.2s;
		}
	}
}
*/
.burger:hover {
  	/*
  	@include mq_max(480){
      .normal{
          &:first-child{
              top:15px;
          }
  
          &:last-child{
              top:33px;
          }
      }	
  	}	
  	*/ }
  .burger:hover .normal:first-child {
    top: 22px; }
  .burger:hover .normal:last-child {
    top: 46px; }

.topline {
  animation: top 0.5s;
  transform: rotate(45deg);
  top: 34px; }

.bottomline {
  animation: bottom 0.5s;
  transform: rotate(-45deg);
  top: 34px; }

/*
@include mq_max(480){
.topline{
    top:24px;
}
.bottomline{
    top:24px;
}		
}
*/
@keyframes top {
  0% {
    transform: rotate(0deg); }
  0% {
    top: 25px; }
  100% {
    transform: rotate(45deg); }
  100% {
    top: 34px; } }
@keyframes bottom {
  0% {
    transform: rotate(0deg); }
  0% {
    top: 43px; }
  100% {
    transform: rotate(-45deg); }
  100% {
    top: 34px; } }
/*
@include mq_max(480){
@keyframes top{
    0%{transform:rotate(0deg)}
    0%{top:12px}
    100%{transform:rotate(45deg)}
    100%{top:24px}
}
@keyframes bottom{
    0%{transform:rotate(0deg)}
    0%{top:33px}
    100%{transform:rotate(-45deg)}
    100%{top:24px}
}	
}
*/
.nav {
  width: 100%;
  background-color: #e6000f;
  color: white;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  overflow-y: scroll;
  height: 100vh; }
  .nav-list {
    text-align: center;
    margin-top: 40px; }
    .nav-list:first-child {
      margin-top: 100px; }
