/*reset*/
*, :before, :after {
  margin: 0;
  padding: 0;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

/*reset*/
/*common*/
body {
  background-color: white;
  background-image: url(../../images/common/bg_dot.png);
  overflow-x: hidden;
}

header .logo {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 10%;
}
@media screen and (max-width: 896px) {
  header .logo {
    width: 16%;
  }
}

.menuBtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 100000;
  width: 80px;
  height: 80px;
}
.menuBtn.open .bar {
  background-color: #fff;
}
.menuBtn.open .bar:nth-of-type(1) {
  transform: rotate(45deg);
}
.menuBtn.open .bar:nth-of-type(2) {
  opacity: 0;
  transform: translateX(50px);
  height: 0;
  margin: 0;
}
.menuBtn.open .bar:nth-of-type(3) {
  transform: translateY(-2px) rotate(-45deg);
}
.menuBtn.open .menuBtn_font {
  font-size: 20px;
  margin-top: 20px;
  color: #fff;
}
.menuBtn .bar {
  width: 40px;
  height: 2px;
  background-color: #000;
  transition: 0.3s ease;
}
.menuBtn .bar:nth-of-type(2) {
  margin: 10px 0;
}
.menuBtn .menuBtn_font {
  font-size: 20px;
  margin-top: 12px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: 0.3s ease;
}
nav.open {
  z-index: 99999;
  opacity: 1;
}
nav.open li {
  opacity: 1;
  transform: translateY(0);
}
nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
nav li {
  margin: 18px 0 0 0;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.3s ease;
}
nav li:nth-of-type(even) a {
  flex-direction: row-reverse;
}
nav li:nth-child(1) {
  transition-delay: 0.4s;
}
nav li:nth-child(1) a img {
  margin-left: 10px;
}
nav li:nth-child(2) {
  transition-delay: 0.5s;
}
nav li:nth-child(2) a img {
  margin-right: 10px;
}
nav li:nth-child(3) {
  transition-delay: 0.6s;
}
nav li:nth-child(3) a img {
  margin-left: 10px;
}
nav li:nth-child(4) {
  transition-delay: 0.7s;
}
nav li:nth-child(4) a img {
  margin-right: 10px;
}
nav li:nth-child(5) {
  transition-delay: 0.8s;
}
nav li:nth-child(5) a img {
  margin-left: 10px;
}
nav a {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}
nav a img {
  width: 50px;
}

@media screen and (max-width: 896px) {
  #contens {
    max-width: 92%;
    margin: 0 auto;
  }
}

.text_box {
  background-color: white;
  max-width: 70%;
  margin: 100px auto;
  box-shadow: 2px 1px 10px #ccc;
  border-radius: 50px;
  padding: 4%;
}
@media screen and (max-width: 896px) {
  .text_box {
    padding: 10%;
  }
}
.text_box p {
  font-size: 16px;
  line-height: 1.6em;
}
.text_box strong {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

.imagebox {
  margin: 0 auto;
  display: block;
  width: 24%;
  animation: moveImg 1s infinite forwards;
}
@keyframes moveImg {
  0% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}

.title_box {
  margin: 32px 0;
  text-align: center;
}
.title_box img {
  height: 52px;
}

img {
  max-width: 100%;
  height: auto;
}

footer {
  background-color: black;
  color: white;
  height: 200px;
  display: table;
  width: 100%;
  text-align: right;
}
footer p {
  display: table-cell;
  vertical-align: middle;
  padding-right: 60px;
}
@media screen and (max-width: 896px) {
  footer p {
    text-align: center;
    padding-right: 0;
  }
}

/*common*/
/*PROFILE*/
/*ABOUT*/
.profile_block {
  position: relative;
  margin-top: 300px;
}
@media screen and (max-width: 896px) {
  .profile_block {
    margin-top: 180px;
  }
}
.profile_block .imagebox {
  width: 20%;
}
@media screen and (max-width: 896px) {
  .profile_block .imagebox {
    top: -200px;
    width: 52%;
  }
}

.profile_textbox {
  display: flex;
}
@media screen and (max-width: 896px) {
  .profile_textbox {
    display: block;
  }
}
.profile_textbox ul {
  width: 50%;
}
@media screen and (max-width: 896px) {
  .profile_textbox ul {
    width: 100%;
  }
}
.profile_textbox ul li:not(:last-of-type) {
  margin-bottom: 24px;
}
.profile_textbox ul:nth-of-type(even) {
  border-left: dotted #f4f4f4 3px;
  padding-left: 10%;
  box-sizing: border-box;
  margin-top: 24px;
}
@media screen and (max-width: 896px) {
  .profile_textbox ul:nth-of-type(even) {
    border-style: none;
    padding-left: 0;
  }
}

.history_textbox table {
  font-size: 14px;
  line-height: 1.6em;
  margin: 0 auto;
}
.history_textbox table tr th {
  font-weight: bold;
  width: 25%;
}
.history_textbox table tr th::after {
  content: ": ";
  padding: 0 10px;
}
@media screen and (max-width: 896px) {
  .history_textbox table tr th {
    width: 100%;
    display: block;
    text-align: left;
  }
}
.history_textbox table tr td {
  display: block;
}
.history_textbox table tr .line_dot {
  border-bottom: dotted #f4f4f4 3px;
  padding: 32px 0;
}
.history_textbox .history_textbox_end {
  text-align: center;
  margin: 50px 0;
}

.about_textbox .about_inner_textbox dl dt {
  margin-bottom: 20px;
}
.about_textbox .about_inner_textbox dl dd {
  line-height: 1.6em;
}

/*PROFILE*/
/*ABOUT*/