/* 全体 */
* {
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  height: 100%;
  scroll-behavior: smooth; /* スムーススクロール */
}
body {
  box-sizing: border-box;
}
.wrapper {
  color: #333;
  background-color: #2f2f2f;
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "BIZ UDPGothic",
    Meiryo,
    sans-serif;
  }
a:link, a:visited {
	color: #333;
	text-decoration: none;
}
a:hover, a:active {
	color: #333;
	text-decoration: none;
}


/* ヘッダー */
.header_area {
  padding: 60px 0 20px;
  text-align: center;
  background-color: #000;
}
.header_area h1 {
  font-size: 48px;
  color: #fff;
}
.header_area p {
  color: #999;
}


/* ナビメニュー */
.navi_menu {
  width: 100%;
  padding: 10px 0 5px;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: end;
  background-color: rgba(0,0,0,0.4);;
}
.navi_menu ul {
  display: flex;
  list-style: none;
  gap: 0 45px;
  padding-right: 30px;  
}
.navi_menu ul li {
  text-align: center;
}
.navi_menu .navi_ja {
  font-size: 14px;
}
.navi_menu .navi_en {
  font-size: 13px;
}
.navi_menu a {
  padding: 10px 0;
  color: #fff;
}
.navi_menu a:hover {
  color: #999;
  transition: 0.5s;
}
.navi_menu img {
  width: auto;
  height: 30px;
  margin-right: 10px;
}


/* フッターに適用 */
.copylight {
	text-align: center;
	padding: 15px 0;
	color: #fff;
	background-color: #2f2f2f;
}
.gotop a {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: flex;
	justify-content: center;
	width:50px;
	height:50px;
	border-radius: 30%;
	background-color: #fff;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .6);
}
.gotop a:link, .gotop a:visited {
	color: #1d6a85;
	text-decoration: none;
}
.gotop a:hover {
	color: #1d6a85;
	transform:rotate(360deg);
	transition: 1s;
}
.arrow {
	display: inline-block;
	text-decoration: none;
	border-radius: 5px;
	position: relative;
	height: 50px;
	width: 50px;
	background-color: #2196F3;
}
.arrow::before {
	content:  '';
	width: 20px;
	height: 20px;
	display: block;
	border-top: solid 2px;
	border-right: solid 2px;
	transform: rotate(-45deg);
	position: absolute;
	top: 10px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}


/* メイン */
.main {
	max-width: 960px;
	margin: 0 auto;
	height: 100%;
}
section {
  margin: 0 0 20px;
  padding: 20px 10px;
  border-radius: 2px;
}
section h2 {
  font-size: 24px;
	padding-left:45px;
	height: 40px;
	border-bottom: solid 1px #e0c6db;
	display: flex;
	align-items: center;
}

/* プロフィール */
.profile {
  color: #94cad2;
  background-color: #0f2e32;
  line-height: 1.8;
}
.profile .info_area {
  display: flex;
}
.profile .image_area {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile .image_area img {
  width: 100%;
}
.profile .comment_area {
  width: 75%;
  padding: 1rem;
}
.profile .comment_area h3 {
  padding: 5px 20px;
  margin-bottom: 10px;
  background-color: #254152;
  color: #eee;
}
.profile .comment_area p {
  text-indent: 1.0em;
}


/* スキル */
.skill {
  color: #d7ffd6;
  background-color: #1a2d1f;
}
.skill .info_area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
}
.skill .info_area article {
  margin: 10px;
  border-radius: 10px;
  border: 1px solid #466942;
  background-color: #121914;
  box-shadow: 2px 2px 4px rgba(168, 168, 168, 0.4);
}
.skill .skill_header {
  font-size: 20px;
  padding-left:30px;
  height: 40px;
  border-radius: 10px 10px 0 0;
  border-bottom: solid 1px #616161;
  display: flex;
  align-items: end;
  color: #eee;
}
.skill .skill_body {
  padding:10px;
}
.skill .skill_body p {
  padding: 10px;
  line-height: 1.6;
  font-size: 15px;
}
.skill .skill_table {
  width: 100%;
  margin-top: 10px;
  border-collapse: separate;
  border-spacing: 5px;
}
.skill .skill_table th {
  font-size: 14px;
  padding: 5px 0;
  color: #fff;
  background-color: #546454;
}
.skill .skill_table td {
  border-left: 1px solid #69836a;
  border-bottom: 1px solid #69836a;
  padding: 5px 0;
}
.skill .skill_table td:nth-child(1) {
  width: 45%;
  text-indent: 1.0em;
}
.skill .skill_table td:nth-child(2) {
  width: 20%;
  text-align: center;
}
.skill .skill_table td:nth-child(3) {
  width: 35%;
  text-align: center;
}


/* 実績 */
.works {
  color: #ffcebb;
  background-color: #3e312c;
}
.works .info_area {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
}
.works .info_area article {
  margin: 10px;
  border-radius: 10px;
  border: 1px solid #aaa;
  background-color: #392720;
  box-shadow: 2px 2px 4px rgba(168, 168, 168, 0.4);
}
.works .works_header {
  font-size: 20px;
  padding-left:30px;
  height: 40px;
  border-radius: 10px 10px 0 0;
  border-bottom: solid 1px #616161;
  display: flex;
  align-items: end;
  color: #eee;
}
.works .works_body {
  padding:10px;
}
.works .works_body img {
  width: 100%;
  border: 1px solid #7a7a7a;
}
.works .works_body p {
  padding: 10px;
  line-height: 1.6;
  font-size: 14px;
}


/* お問い合わせ */
.contact {
  color: #c9c9c9;
  background-color: #424242;
}
.contact .info_area {
  font-size: 18px;
  padding: 0 5%;
}
.contact .info_area p {
  margin-top: 14px;
}
.contact .info_area input {
  padding: 5px;
  font-size: 16px;
  width: 95%;
}
.contact .info_area textarea {
  padding: 5px;
  font-size: 16px;
  width: 95%;
}
.contact .info_area input[type="submit"] {
  display: block;
  width: 30%;
  margin: 25px auto 30px;
  padding: 10px 0;
  border: none;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
  background-color: #1d6a85;
}
.contact .info_area input[type="submit"]:hover,
.contact .info_area .btn_back
 {
  background-color: #2096b7;
  transition: 0.5s;
}
.contact .info_area .btn_back {
  display: block;
  width: 30%;
  margin: 40px auto 30px;
  padding: 10px 0;
  border: none;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
  background-color: #1d6a85;
  text-align: center;
}

.wocontactrks .info_area article {
  margin: 10px;
  border-radius: 10px;
  border: 1px solid #aaa;
  background-color: #533a30;
  box-shadow: 5px 5px 5px rgba(168, 168, 168, 0.4);
}
.wocontactrks .contact_header {
  font-size: 20px;
  padding-left:30px;
  height: 40px;
  border-radius: 10px 10px 0 0;
  border-bottom: solid 1px #616161;
  display: flex;
  align-items: center;
  color: #eee;
}
.contact .contact_body {
  padding:10px;
}
.contact .contact_body p {
  text-indent: 1.0em;
}
.contact .input_data {
  font-size: 20px;
  color: #fff;
  margin: 5px 10px 20px;
}
.contact .thanks {
  font-size: 20px;
  color: #fff;
  margin: 5% 10% 10%;
  line-height: 1.8;
}



/* モバイル対応 */
@media(max-width: 767px) {


  .contact .info_area input[type="submit"] {
    width: 60%;
  }
  /* コンテンツ間上下スペース */
  section {
    margin: 0;
  }
  /* プロフィール */
  .profile .info_area .image_area {
    display: none;
  }
  .profile .comment_area {
    width: 100%;
    padding: 1rem;
  }
  
  /* スキル、実績 */
  .skill .info_area, .works .info_area {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
  }
  .skill .skill_table td:nth-child(1) {
    text-indent: 0.5em;
    font-size: 14px;
  }

  /* ハンバーガーメニュー */
  .navi_menu {
    z-index: 900;
    overflow: auto;
    width: 140px;
    height: 100%;
    background: #11415f;
    color: #fff;
    position: fixed;
    top: 0;
    padding-top: 60px;
    left: -140px;
    transform: translateX(0);
    transition:  transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .navi_menu ul {
    display: block;
  }
  .navi_menu ul  li{
    text-align: left;
  }

  .contact .info_area .btn_back {
    width: 30%;
    margin: 40px auto 30px;
    padding: 10px 0;
  }

  .contact .info_area .btn_back {
    width: 60%;
  }

  .contact .thanks {
    font-size: 19px;
    color: #fff;
    margin: 5% 0 10%;
    line-height: 2.0;
  }

  /* ハンバーガーボタン */
  #hamburger {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  .hamburger_mask {
    background-color: rgba(0,0,0,0.4);
    transition: 0.3;
  }

  #toggle {
    position: fixed;
    top: 16px;
    left: 10px;
    z-index: 1000;
  }
  #toggle-box {
    position: relative;
    width: 33px;
    height: 18px;
    cursor: pointer;
  }
  #toggle .toggle-text {
    display: block;
    font-family: 'AcademyEngravedLetPlain',sans-serif;
    font-size: 11px;
    margin-top: 1px;
    color: #fff;
  }
  #toggle-box > span {
    width: 100%;
    height: 1px;
    left: 0;
    display: block;
    background: #ffffff;
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
  }
  #toggle-box > span:nth-child(1) {
    top: 0;
  }
  #toggle-box > span:nth-child(2) {
    top: 50%;
    transform: translatey(-50%);
  }
  #toggle-box > span:nth-child(3) {
    bottom: 0;
  }


  .navi_menu ul {
    list-style: none;
  }
  .navi_menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    transition: opacity .6s ease;
  }
  .navi_menu a:hover {
    opacity: 0.6;
  }


  .is-open {
      overflow: hidden;
  }
  .is-open .cover {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      z-index: 100;
  }
  .is-open #toggle-box > span {
    background: #fff;
  }
  .is-open #toggle-box > span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg) translatey(-50%);
  }
  .is-open #toggle-box > span:nth-child(2) {
    width: 0;
  }
  .is-open #toggle-box > span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg) translatey(-50%);
  }
  .is-open .toggle-text {
    display: none !important;
    transition: 0.3s;
  }
  .is-open .navi_menu {
    z-index: 999;
    transform: translateX(100%);
    padding-top: 60px;
  }
  .overlay {
    background: rgba(255,255,255,0.3);
    height: 100vh;
    transition: 0.3s;
  }

}