@charset "utf-8";
*, ::after, ::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
body {
  font-size: 1.4rem;
  line-height: 1.8;
  background-image: url("img/bg-ivory.jpg");
  background-repeat: repeat-y;
  background-position: center top;
  font-family: Meiryo,YuGothic, "Yu Gothic medium", "Hiragino Sans", sans-serif;
}
.ripples{
  width: 100%;
  height: 550px;
  background-image: url("img/mv.jpg");
  background-position: center top;
  background-size: cover;
  position: relative;
  border-bottom: 5px solid #E9BC00;
}
.ripples h1{
  position: absolute;
  top: 50%;
  left: calc((100vw - 940px) / 2);
  transform: translateY(-50%);
}
/*タイトルのタイピングアニメーション*/
.typing-animation {
	width: 16ch;	/*文字の長さ*/
	border-right: 4px solid #2d2d2d;	/*点滅バー*/
	overflow: hidden;	/*必須*/
	white-space: nowrap;	/*必須*/
	color:#E9BC00;
	font-size:5.0rem;
	line-height:1.2;
	font-weight:700;
	animation: typing 4s steps(22), blink .5s step-end infinite alternate;	/*アニメーション関連*/
}
@keyframes typing {
	from {
		width: 0;
	}
}
@keyframes blink {
	50% {
		border-color: transparent;		/*点滅風に見せる*/
	}
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 30px 0px;
}
h1, h2, header ul li {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}
h1 a{
	text-decoration: none;
	color: #524e4d;
	transition: 0.3s;
}
h1 a:hover{
	color: #E9BC00;
}
h2 {
  margin-bottom: 20px;
  display: inline-block;
  border-bottom: 3px dotted #524e4d;
  line-height: 1.5;
  padding-right: 20px;
}
h2::before {
  content: url(img/denkyu.svg);
  width: 30px;
  height: 25px;
  margin-bottom: -20px;
  display: inline-block;
  line-height: 0.8;
  padding-bottom: 0px;
  position: relative;
  bottom: -5px;
}
header {
  background-color: rgba(255,255,255, 0.90);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 50px;
  position: fixed;
  top: 0px;
  left: 0px;
  padding: 0px 50px;
  border-bottom: 3px solid #524e4d;
  z-index: 10;
}
nav ul {
  display: flex;
  justify-content: space-between;
}
nav ul li {
  list-style: none;
  display: inline-block;
  margin-right: 30px;
}
nav ul li:last-child {
  margin-right: 0px;
}
nav ul a {
  color: #fff;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.60);
  padding: 5px 20px;
  transition: 0.3s;
}
nav ul a:hover {
  background-color: rgba(233, 188, 0, 0.70);
  color: #524e4d;
}
section {
	margin-bottom: 100px;
	padding: 10px 30px 30px;
	background-color: rgba(255, 255, 255, 0.50);
	box-shadow: 0px 0px 10px 10px rgba(255,255,255,0.50);
	border-radius: 10px;	
}
.career dd {
  padding-bottom: 10px;
  border-bottom: 1px solid #2d2d2d;
  margin-bottom: 30px;
}
.career dd:last-child {
  margin-bottom: 0px;
}
.career dt {
  background-color: rgba(0, 0, 0, 0.60);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 10px;
}

h3 {
  display: inline-block;
  color: #fff;
  padding: 0 20px;
  background-color: rgba(0, 0, 0, 0.70);
  margin-bottom: 10px;
}
.box {
  border: 1px solid #2d2d2d;
  padding: 20px;
  margin-bottom: 30px;
}
.box:last-child {
  margin-bottom: 0px;
}
.skill-box{
  margin-bottom: 10px;
}
.skill-box:last-child {
  margin-bottom: 50px;
}
.skill-title{
  display: inline-block;
  padding: 3px 10px;
  background-color: rgba(233, 188, 0, 0.70);
  color: #524e4d;
  border: 1px solid rgba(233, 188, 0, 1);
  border-radius: 5px;
  margin: 5px 0;
}
.gotop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  opacity: 0.7;
  transition: 0.3s;
  display: none;
  z-index: 9;
}
.gotop:hover {
  opacity: 1;
}
.raindrops{
  height: 150px;
  position: relative;
}
.raindrops p {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  z-index: 1;
}

.likes img {
  width: 80px;
  height: 80px;
}
.likes td {
  padding: 0 30px;
}
table {
  border-collapse: separate;
  border-spacing: 0 10px;
}
.hobby img {
  transition: 0.3s;
}
.hobby img:hover {
  transform: scale(1.1);
}
@media (max-width:1000px) {
  header {
    padding: 0px 30px;
  }
  nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 80%;
  background-color: rgba(116, 83, 153, 0.80);
  padding-top: 70px;
  overflow: auto;
  transition: 0.5s;
  border-bottom-left-radius: 30px;
  }
  nav ul {
    flex-direction: column;
  }
  nav ul li {
    margin: 0
  }
  nav ul a {
    display: block;
    width: 30%;
    margin: 0px auto 30px auto;
    text-align: center;
  }
  .nav-button {
    width: 40px;
    height: 50px;
    position: relative;
    /*background-color: #000;*/
    z-index: 1;
    cursor: pointer;
  }
  .nav-button span {
    width: 40px;
    height: 2px;
    background-color: #524e4d;
    position: absolute;
    right: 20px;
    transition: 0.5s;
  }
  .nav-button span:nth-child(1) {
    top: 12px;
  }
  .nav-button span:nth-child(2) {
    top: 24px;
  }
  .nav-button span:nth-child(3) {
    top: 36px;
  }
  .menu-open .nav-button span:nth-child(1) {
    top: 23px;
    transform: rotate(315deg);
    background-color: #fff;
  }
  .menu-open .nav-button span:nth-child(2) {
    width: 0px;
    right: 50%;
  }
  .menu-open .nav-button span:nth-child(3) {
    top: 23px;
    transform: rotate(-315deg);
    background-color: #fff;
  }
  .menu-open nav {
    right: 0;
  }
  .ripples h1{
  left: 30px;
}
}
@media (max-width:650px) {
  html {
    font-size: calc(100vw * (10 / 650));
  }
  body {
  font-size: 1.6rem;
  }
  section {
  padding: 10px 15px 30px;
}
  nav ul a {
    width: 40%;
  }
  header{
    padding: 0 0 0 20px;
  }
  .ripples{
  height: 300px;
  }
 
   .ripples h1{
  left: 20px;
}
  .likes{
  padding-bottom: 0px;
	}
  .gotop{
    width: 15%;
    height: auto;
  }
}

@media (max-width:550px) {
  tr{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  th{
    width: 30%;
    text-align: left;
    margin-bottom: 20px;
  }
  td{
    width: 70%;
    text-align: left;
    margin-bottom: 20px;
  }
}