body {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  scroll-behavior: smooth;
}
.company-txt,
.midashi h2,
.btn,
.btn-vm,
.flex .flex-li a,
.ser-midashi,
.mem-midashi,
footer ul,
.copyright {
  font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons";
}
.com-content .vision,
.ser-num,
.ser-num2 {
  font-family: 'Montserrat', sans-serif;
}
/* ヘッダー */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
}
.logo {
  width: 20%;
  transition: .3s;
}
.logo h1 {
  margin-bottom: 0px;
  margin-top: 10px;
}
.logo img {
  width: 100%;
}
.logo img:hover {
  opacity: 0.7;
}
.inner {
  max-width: 100%;
  margin: 0 auto;
  width: 90%;
  align-items: center;
  height: auto;
}
.flex {
  display: flex;
  font-weight: bold;
  list-style: none;
  justify-content: space-between;
}
.menu {
  justify-content: flex-end;
  margin-right: 20px;
}
.flex .flex-li a {
  list-style: none;
  position: relative;
  display: inline-block;
  padding: 18px 18px;
  color: #000;
  text-decoration: none;
}
.flex-li {
  transition: .3s;
  color: #000;
}
.flex-li:hover {
  background: #f5f5f5;
  color: #ababab;
}
/* ボタン */
.btn {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 3rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  color: #000;
  background-color: #ffe100;
  margin-left: 20px;
  transition: .3s;
}
.btn:hover {
  background: #f5f5f5;
}
/* ハンバーガーメニュー */
.hamburger-menu {
  display: none;
}
.menu-btn {
  position: fixed;
  top: 0px;
  right: 0px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #000;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: #000;
  transition: all 0.5s;
}
.menu-content a {
	display: inline-block;
	transition: all .3s ease 0s;
	text-decoration: none;
}
.menu-content a:hover {
	cursor: pointer;
	color: #ababab;
}
#menu-btn-check:checked ~ .menu-content {
  left: 0;
}
#menu-btn-check {
  display: none;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
.menu-content ul {
  padding: 70px 10px 0;
}
.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color:#ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
/* トップ */
.top {
  background-color: #000;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.top h1,
.top p {
  color: #ffffff;
  width: 90%;
  text-align: center;
}
/* 会社概要 */
.company,
.service,
.member {
  width: 80%;
  margin: 0 auto;
  padding-top: 90px;
}
.midashi h2,
.midashi p {
  text-align: center;
}
.midashi h2 {
  margin-bottom: 0px;
  font-size: 2rem;
}
.midashi p {
  margin-top: 0px;
  padding-bottom: 30px;
}
.company-txt {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
}
.company-txt p {
  margin-top: 0px;
}
.com-content {
  margin: 0 auto;
  width: 80%;
}
.com-content .vision {
  background-color: #000000;
  color: #ffffff;
  display: inline-block;
  line-height: 1.4em;
  padding: 5px;
  margin-bottom: 0px;
}
.view-more {
  margin: 0 auto;
  text-align: center;
}
.btn-vm {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 3rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  margin-top: 50px;
  color: #000;
  background-color: #ffe100;
  transition: .3s;
}
.btn-vm:hover {
  background: #f5f5f5;
}
/* サービス内容 */
.service li {
  display: flex;
  padding-bottom: 30px;
}
.service ul {
  margin-bottom: 0px;
  padding: 0px;
}
.service li:nth-child(even) {
  flex-direction: row-reverse;
}
.service li:nth-child(even) .ser-txt {
  padding-right: 10px;
}
.service li:nth-child(odd) .ser-txt {
  padding-left: 10px;
}
.service li .ser-num {
  width: 20%;
  box-sizing: border-box;
  font-size: 6rem;
  font-weight: bold;
}
.service li .ser-num2 {
  width: 15%;
  box-sizing: border-box;
  font-size: 6rem;
  font-weight: bold;
  text-align: right;
}
.service li .ser-txt {
  width: 85%;
  box-sizing: border-box;
}
.ser-midashi {
  font-weight: bold;
  margin-top: 10px;
}
/* 役員紹介 */
.mem-midashi {
  font-weight: bold;
  margin-top: 0px;
}
.member-con {
  display: flex;
  flex-direction: row-reverse;
}
.member-photo {
  width: 30%;
}
.member-photo img {
  width: 100%;
}
.member-txt {
  width: 70%;
  padding-right: 20px;
}
table td span {
  white-space: nowrap;
}
table td {
  vertical-align: top;
}
/* フッター */
footer {
  background-color: #000;
  color: #ffffff;
  margin-top: 90px;
}
.footer-con {
  width: 80%;
  margin: 0 auto;
}
footer .logo {
  padding-top: 20px;
}
footer ul {
  display: flex;
  font-weight: bold;
  list-style: none;
  justify-content: space-between;
  width: 70%;
  margin: 0 auto;
  padding-top: 20px;
  padding-left: 0px;
}
footer a {
  list-style: none;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
footer p {
  text-align: center;
  padding-bottom: 10px;
  padding-top: 30px;
  margin-bottom: 0px;
}
footer li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #ffffff;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}
footer li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
/* トップに戻るボタン */
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 15px;
  bottom: 30px;
  background: #ababab;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 25px;
  color: #000;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 860px) {
  .inner {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  /* ヘッダー */
  .menu {
    display: none;
  }
  .logo {
    width: 100%;
}
.logo h1 {
  margin-top: 0px;
}
  .logo img {
    height: auto;
    margin: 0 auto;
    width: 50%;
  }
  .hamburger-menu {
    display: block;
  }
  /* 下層ページ */
  .company,
.service,
.member {
  width: 90%;
  padding-top: 50px;
}
.company-txt {
  font-size: 1.7rem;
}
.service li .ser-num,
.service li .ser-num2 {
  font-size: 3rem;
}
.service li .ser-txt {
  width: 85%;
}
.service li {
  display: flex;
  padding-bottom: 15px;
}
.member-con {
  display: block;
}
.member-txt {
  width: 100%;
}
.member-photo {
  width: 40%;
  margin: 0 auto;
  padding-bottom: 30px;
}
/* フッター */
footer .logo img {
  width: 190px;
}
footer li {
  display: none;
}
footer .eng {
  display: block;
  padding-top: 15px;
}
.footer-con {
  display: flex;
}
.footer-con {
  width: 90%;
}
}
@media screen and (max-width: 330px) {
  .company-txt {
    font-size: 1.4rem;
}
}

.en-midashi {
  padding-bottom: 50px;
}
.eng a {
  text-decoration: underline;
  text-decoration-color: #fff;
}

@media screen and (max-width: 480px) {
.top h1 {
  font-size: 5vw;
}
.top {
  height: 60vw;
}
}