@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP");
@import url("https://fonts.googleapis.com/css?family=EB+Garamond:500");
@import url("https://fonts.googleapis.com/css?family=Montserrat");
html {
  font-family: "Noto Sans JP";
  font-size: 12px;
}

body {
  background-color: black;
}

.container-header {
  z-index: 999;
  position: fixed;
  width: 100%;
  height: 64px;
}

@media screen and (max-width: 899px) {
  .container-header {
    height: 96px;
  }
}

@media screen and (max-width: 740px) {
  .container-header {
    height: 64px;
  }
}

.headPhoto .headPhoto__photo {
  width: 100%;
  height: auto;
}

.container-main {
  padding-top: 64px;
  padding-bottom: 32px;
  width: 100%;
  background-color: white;
}

@media screen and (max-width: 899px) {
  .container-main {
    padding-top: 96px;
  }
}

@media screen and (max-width: 740px) {
  .container-main {
    padding-top: 64px;
  }
}

.main {
  max-width: 900px;
  width: 100%;
  margin: auto;
  padding: 0 24px;
}

@media screen and (max-width: 899px) {
  .main {
    padding: 0 16px;
  }
}

@media screen and (max-width: 740px) {
  .main {
    padding: 0 12px;
  }
}

.controlMain {
  max-width: 900px;
  width: 100%;
  margin: auto;
  padding: 24px;
}

@media screen and (max-width: 899px) {
  .controlMain {
    padding: 24px 16px;
  }
}

@media screen and (max-width: 740px) {
  .controlMain {
    padding: 24px 12px;
  }
}

.footer {
  height: 96px;
  color: #999999;
  text-align: center;
  line-height: 96px;
  font-family: 'Montserrat', sans-serif;
}

.alert {
  margin: 16px 8px;
  padding: 8px 16px;
  font-size: 1.2rem;
  background-color: #ff9800;
  color: #261606;
}

.alignRight {
  text-align: right;
}

.button {
  font-size: 1.2rem;
  margin: 0;
  overflow: visible;
  padding: 8px 16px;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: .1s ease-in-out;
  transition-property: color,background-color,border-color;
  background-color: transparent;
  color: #222;
  border: 1px solid #e5e5e5;
}

.button:hover {
  color: #333;
  border-color: #ff9800;
}

.card {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
  margin: 16px;
  padding: 16px;
}

.card p {
  color: #261606;
  font-size: 1.2rem;
  padding-bottom: 16px;
}

.header {
  position: relative;
  height: 100%;
  background-color: #261606;
  background-image: linear-gradient(to bottom, #261606 0%, #382009 100%);
  color: #ff9800;
}

.header__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 64px;
  padding: 12px 0 12px 16px;
}

.header__menuTrigger {
  z-index: 1000;
  display: none;
  position: absolute;
  top: 0;
  right: 32px;
  width: 32px;
  height: 32px;
  padding: 16px;
  transform: scale(0.6);
}

@media screen and (max-width: 740px) {
  .header__menuTrigger {
    display: block;
  }
}

.header__navi {
  position: absolute;
  top: 0;
  right: 0;
  width: 740px;
  height: 64px;
  line-height: 64px;
}

@media screen and (max-width: 899px) {
  .header__navi {
    top: 64px;
    height: 32px;
    line-height: 32px;
  }
}

.heading__large {
  position: relative;
  font-size: 1.7rem;
  font-weight: 100;
  line-height: 1.2;
  color: #222222;
  overflow: hidden;
  padding-right: 16px;
  margin: 40px 0 16px;
}

.heading__large::after {
  content: "";
  position: absolute;
  top: calc(50% - (1px / 2));
  width: 2000px;
  border-bottom: 1px solid #e5e5e5;
  margin-left: .6em;
}

@media screen and (max-width: 899px) {
  .heading__large {
    font-size: 1.4rem;
  }
}

.heading__middle {
  font-size: 1.4rem;
  font-weight: 100;
  line-height: 1.2;
  color: #222222;
  padding-right: 16px;
  margin: 24px 0 16px;
}

.heading__middle::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f571";
  padding-right: 12px;
}

.heading__small {
  font-size: 1.2rem;
  font-weight: 100;
  line-height: 1.2;
  color: #ff9800;
  padding-right: 16px;
  padding: 8px;
}

.heading__small::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f518";
  padding-right: 12px;
}

.horizontalNavi {
  display: table;
  width: 100%;
  height: 100%;
  table-layout: fixed;
  list-style-type: none;
}

.horizontalNavi .horizontalNavi__item > a, .horizontalNavi .horizontalNavi__item--isActive > a {
  display: block;
  height: 100%;
  text-align: center;
  text-decoration: none;
}

.horizontalNavi__item {
  display: table-cell;
}

.horizontalNavi__item > a {
  position: relative;
  color: #fff;
}

.horizontalNavi__item > a::after {
  position: absolute;
  left: 0;
  bottom: 8px;
  display: block;
  content: "";
  width: 0%;
  height: 2px;
  background: white;
  transition: all 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media screen and (max-width: 899px) {
  .horizontalNavi__item > a::after {
    bottom: 0px;
  }
}

.horizontalNavi__item > a:hover::after {
  width: 100%;
}

.horizontalNavi__item--isActive {
  display: table-cell;
}

.horizontalNavi__item--isActive > a {
  background-color: #ff9800;
  color: #261606;
}

@media screen and (max-width: 740px) {
  .horizontalNavi {
    display: none;
  }
}

.hr {
  margin: 32px 0;
  padding: 0;
  border: 0;
  height: 1px;
  background: #bbb;
  background-image: -webkit-linear-gradient(left, #eee, #ccc, #eee);
  background-image: -moz-linear-gradient(left, #eee, #ccc, #eee);
  background-image: -ms-linear-gradient(left, #eee, #ccc, #eee);
  background-image: -o-linear-gradient(left, #eee, #ccc, #eee);
}

.logo {
  width: 100%;
  height: 100%;
  background-image: url(/svg/logo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  text-indent: -9999px;
}

.menuTrigger,
.menuTrigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menuTrigger {
  position: relative;
  width: 50px;
  height: 44px;
}

.menuTrigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
}

.menuTrigger span:nth-of-type(1) {
  top: 0;
}

.menuTrigger span:nth-of-type(2) {
  top: 20px;
}

.menuTrigger span:nth-of-type(3) {
  bottom: 0;
}

.menuTrigger.isActive span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
}

.menuTrigger.isActive span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: menuTriggerAnimation .8s forwards;
  animation: menuTriggerAnimation .8s forwards;
}

@-webkit-keyframes menuTriggerAnimation {
  100% {
    height: 0;
  }
}

@keyframes menuTriggerAnimation {
  100% {
    height: 0;
  }
}

.menuTrigger.isActive span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-20px) rotate(45deg);
}

.sideNavi {
  display: none;
}

@media screen and (max-width: 740px) {
  .sideNavi {
    position: fixed;
    display: block;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    padding-top: 64px;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .sideNavi .sideNavi__item > a, .sideNavi .sideNavi__item--isActive > a {
    display: block;
    height: 100%;
    text-decoration: none;
    text-align: left;
    padding-left: 16px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
  }
  .sideNavi.isActive {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .sideNavi__item {
    display: block;
  }
  .sideNavi .sideNavi__item > a {
    position: relative;
    color: #fff;
  }
  .sideNavi__item > a::after {
    position: absolute;
    left: 0;
    bottom: 8px;
    display: block;
    content: "";
    width: 0%;
    height: 2px;
    background: white;
    transition: all 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

@media screen and (max-width: 740px) and (max-width: 899px) {
  .sideNavi__item > a::after {
    bottom: 0px;
  }
}

@media screen and (max-width: 740px) {
  .sideNavi__item > a:hover::after {
    width: 100%;
  }
  .sideNavi__item--isActive {
    display: block;
  }
  .sideNavi .sideNavi__item--isActive > a {
    background-color: #ff9800;
    color: #261606;
  }
}

.topGraph {
  width: 100%;
}

.topGraph > img {
  width: 100%;
  height: auto;
}
