/*========= reset css ===============*/
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,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*========= base ===============*/

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #222;
  margin: 0;
  padding: 0;
}

ul,
p {
  padding: 0;
  margin: 0;
}

a {
  color: #222;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:hover {
  opacity: 0.5;
}

img {
  max-width: 100%;
}

button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-mt25 {
  margin-top: 25px;
}

.p-mt40 {
  margin-top: 40px;
}

.p-mt50 {
  margin-top: 50px;
}

/*========= loading ===============*/

#loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ccc5c1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  z-index: 9999;
}

#loading-wrapper .completed {
  opacity: 0;
  visibility: hidden;
}

#loading-wrapper p {
  font-family: "Spartan", sans-serif;
}

#loading-wrapper .ball {
  animation: ball 0.2s alternate infinite;
  -webkit-animation: ball 0.2s alternate infinite;
  -moz-animation: ball 0.2s alternate infinite;
}

@keyframes ball {
  0% {
    transform: translate(0%, 0%) rotateX(25deg);
  }
  100% {
    transform: translate(0%, -5px);
  }
}

@-webkit-keyframes ball {
  0% {
    -webkit-transform: translate(0%, 0%) rotateX(25deg);
  }
  100% {
    -webkit-transform: translate(0%, -5px);
  }
}

@-moz-keyframes ball {
  0% {
    -moz-transform: translate(0%, 0%) rotateX(25deg);
  }
  100% {
    -moz-transform: translate(0%, -5px);
  }
}

/*========= botton ===============*/

.btn-wh {
  position: relative;
  display: inline-block;
  width: 240px;
  padding: 20px 0;
  border: #fff solid 1px;
  border-radius: 40px;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Spartan", sans-serif;
  line-height: 1;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .btn-wh {
    width: 26rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 18px 0;
    display: block;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
}

.btn-bl {
  position: relative;
  display: block;
  width: 168px;
  padding: 15px 0;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 40px;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Spartan", sans-serif;
  line-height: 1;
  overflow: hidden;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 767px) {
  .btn-bl {
    width: 26rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 18px 0;
    font-size: 1.6rem;
  }
}

.btn-in {
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
}

.svg-inline--fa.fa-w-16 {
  padding-right: 4px;
  width: 2em;
}

.btn-bl::before,
.btn-bl::after {
  content: "";
  display: block;
  background-color: #222;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: 0.2s;
}

.btn-wh::before,
.btn-wh::after {
  content: "";
  display: block;
  background-color: #333;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: 0.2s;
}

.btn-bl::before,
.btn-wh::before {
  left: 0;
}

.btn-bl::after,
.btn-wh::after {
  right: 0;
}

.btn-bl:hover:before,
.btn-bl:hover:after {
  width: 0;
  background-color: #222;
}

.btn-wh:hover:before,
.btn-wh:hover:after {
  width: 0;
  background-color: #fff;
}

.btn-bl:hover {
  color: #222;
  border: #222 1px solid;
  opacity: 1;
}

.btn-wh:hover {
  color: #222;
  background-color: #fff;
  opacity: 1;
}

/*========= header nav ===============*/

#hamburger {
  width: 6rem;
  height: 6rem;
  text-align: center;
  position: fixed;
  left: 20px;
  cursor: pointer;
  z-index: 1300;
  border-radius: 40px;
}

#g-nav {
  display: none;
}

#g-nav.active {
  display: block !important;
  background-color: #222;
  position: fixed;
  background-size: cover;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 1200;
  text-align: center;
  height: 100%;
  width: 100%;
}

#g-nav.active .g-nav-inner {
  top: 30%;
  display: inline-table;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

#g-nav.active ul li {
  display: block;
}

#g-nav.active ul a {
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  margin-bottom: 40px;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  transition: all 0.3s;
}

#g-nav.active {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#g-nav.active li {
  padding-left: 0;
  display: block;
}

.logo-open {
  display: none;
}

#g-nav.active .logo-open {
  display: inline-block;
  margin-bottom: 30px;
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
}

#header-menu {
  font-family: "Spartan", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  #header-menu {
    display: block;
  }
}

#header-menu ul {
  margin: 0;
}

@media only screen and (max-width: 767px) {
  #header-menu ul {
    margin-bottom: 10.7%;
  }
}

#header-menu li {
  list-style: none;
  margin-bottom: 24px;
  padding-left: 20px;
  font-family: "Spartan", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  #header-menu li {
    display: inline-block;
    margin-bottom: 0;
  }
  #header-menu li:first-child {
    padding-left: 0;
    display: inline-block;
  }
}

.header {
  position: absolute;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .header {
    height: auto;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 500;
  }
}

.header-left {
  position: absolute;
  bottom: 80px;
  z-index: 500;
}

@media only screen and (max-width: 767px) {
  .header-left {
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    position: relative;
  }
}

.menuTop {
  top: -100px;
  transition: all 0.3s 0s ease;
}

.menuScroll {
  top: 30px;
  transition: all 0.3s 0s ease;
}

@media only screen and (max-width: 767px) {
  .menuScroll {
    top: 20px;
  }
}

.menu-btn {
  position: absolute;
  background: url(../img/glasses_white.png) no-repeat center center;
  background-size: 65% auto;
  background-color: #222;
}

#close-btn {
  display: none;
}

#close-btn.active {
  display: block;
  cursor: pointer;
}

#close-btn.active span {
  position: fixed;
  width: 30px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  top: 70px;
  left: 35px;
  z-index: 1500;
}

#close-btn.active::before {
  content: "";

  display: block;

  padding-top: 100%;

  position: relative;
}

#close-btn.active span:nth-child(1) {
  transform: translateY(-12px) rotate(-45deg);
}

#close-btn.active span:nth-child(2) {
  transform: translateY(-12px) rotate(45deg);
}

/*========= main-visual ===============*/

#main-visual {
  background: url(../img/mv_background.jpg) no-repeat top center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  background-size: auto 100%;
  position: relative;
}

.main-visual-in {
  padding: 0 80px;
}

@media only screen and (max-width: 767px) {
  .main-visual-in {
    padding: 0;
  }
}

#main-visual .logo {
  max-width: 72px;
  margin-bottom: 20px;
  padding-left: 20px;
}

@media only screen and (max-width: 767px) {
  #main-visual .logo {
    padding-left: 0;
    margin-bottom: 30px;
    display: inline-block;
    width: 20%;
  }
}

#main-visual .header.open .logo {
  display: none;
}

#main-visual .mv-contents {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background-image: url(../img/mv_background_contents.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
}

#main-visual .hand {
  opacity: 0;
  top: -100%;
}

#main-visual .mv-hand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/mv_hands.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 630px;
  height: 623px;
  top: 0;
  transition: all 2s ease;
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  #main-visual .mv-hand {
    width: 100%;
    height: 100%;
  }
}

.mv-hand-top {
  top: -100%;
  transition: all 2s ease;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}

#main-visual .inner {
  position: relative;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  #main-visual .inner {
    height: auto;
  }
  #main-visual .inner:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
}

#main-visual .mv-movie {
  position: absolute;
  left: 42%;
  transform: translate x(-50%);
  bottom: 145px;
}

@media only screen and (max-width: 767px) {
  #main-visual .mv-movie {
    bottom: 99px;
    left: 58%;
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 440px) {
  #main-visual .mv-movie {
    bottom: 90px;
  }
}

#main-visual video {
  max-width: 80px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: solid 3px #eeeeee;
}

@media only screen and (max-width: 767px) {
  #main-visual video {
    width: 100%;
    height: auto;
  }
}

#main-visual .inner-in {
  position: absolute;
  left: 33%;
  transform: translate x(-50%);
  bottom: 50px;
}

@media only screen and (max-width: 767px) {
  #main-visual .inner-in {
    position: absolute;
    bottom: 9%;
    left: 48%;
    transform: translateX(-50%);
  }
}

#main-visual .text-main {
  font-family: "Spartan", sans-serif;
  font-size: 2.2rem;
  line-height: 1.4;
  margin-bottom: 12px;
}

@media only screen and (max-width: 767px) {
  #main-visual .text-main {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}

#main-visual .text-sub {
  font-size: 1.3rem;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  #main-visual .text-sub {
    font-size: 1rem;
  }
}

/*========= container ===============*/

.container {
  position: relative;
  overflow: hidden;
  max-width: 1920px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

.main {
  background: url(../img/main_background.png) repeat-y;
  background-size: contain;
  padding: 10px 40px 150px 40px;
}

@media only screen and (max-width: 767px) {
  .main {
    padding: 0 15px 70px 15px;
  }
}

.slideConts {
  width: 150px;
  height: auto;
  margin: 40px auto;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.slideContsL {
  transform: translate(-800px, 0);
}

.slideContsR {
  transform: translate(800px, 0);
}

.slideContsL.show {
  transform: translate(-10px, 0) !important;
}

.slideContsR.show {
  transform: translate(10px, 0) !important;
}

.side-animation01 {
  position: absolute;
  top: 960px;
  right: 0;
  z-index: 500;
}

.side-animation02 {
  position: absolute;
  top: 1970px;
  left: 0;
  z-index: 500;
  width: 194px;
}

.side-animation03 {
  position: absolute;
  top: 3210px;
  right: 0;
  z-index: 500;
  width: 204px;
}

.side-animation04 {
  position: absolute;
  top: 4838px;
  left: 0;
  z-index: 500;
  width: 204px;
}
@media only screen and (max-width: 767px) {
  .side-animation01 {
    top: 710px;
    width: 24%;
  }
  .side-animation02 {
    top: 2340px;
    width: 29%;
  }
  .side-animation03 {
    top: 3710px;
    width: 32%;
  }
  .side-animation04 {
    top: 5003px;
    width: 31%;
  }
}

.content {
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.content h2 {
  position: relative;
  margin: 120px 0 16px 0;
  color: #fff;
  -webkit-text-stroke: 1px #222;
  font-size: 5.6rem;
  margin-left: 50px;
  font-family: "Spartan", sans-serif;
}

.content h2:before {
  content: "";
  position: absolute;
  background: url(../img/icon_headline.png) no-repeat;
  background-size: cover;
  width: 3.8rem;
  height: 0.3rem;
  top: 40.7%;
  left: -50px;
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .content h2 {
    margin: 60px 0 8px 0;
    margin-left: 35px;
    font-size: 4.8rem;
  }
  .content h2:before {
    left: -35px;
  }
}

.content h3 {
  font-size: 1.6rem;
  font-weight: bold;
  padding-bottom: 3px;
  border-bottom: 1px solid #222222;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .content h3 {
    margin-bottom: 10px;
  }
}

.about-inner {
  display: flex;
  font-size: 0;
  text-align: left;
}

.about-inner .text-box {
  padding-left: 40px;
  box-sizing: border-box;
  margin-top: 37px;
}

.about-inner .text-box .name {
  font-size: 3rem;
  font-family: "Spartan", sans-serif;
}

.about-inner .text-box .text-content {
  font-size: 1.4rem;
  padding: 5px 16px;
  background-color: #efeee6;
}

.skill-inner {
  display: flex;
  text-align: left;
  margin-top: 50px;
}

.skill-inner ul {
  margin-left: 18px;
}

.skill-inner li {
  list-style-type: disc;
  line-height: 2.3;
}

.skill-inner .gray {
  color: #ccc;
}

.skill-left {
  width: 460px;
}

.skill-right {
  width: 460px;
  margin-left: 40px;
}

@media only screen and (max-width: 767px) {
  .about-inner {
    display: block;
    text-align: center;
  }
  .about-inner .face {
    padding: 0 12rem;
  }
  .about-inner .text-box {
    padding-left: 0;
    margin-top: 9px;
  }
  .about-inner .text-box .name {
    font-size: 2.4rem;
  }
  .about-inner .text-box .text-content {
    margin-top: 3px;
  }
  .skill-inner {
    display: block;
    margin-top: 30px;
  }

  .skill-inner li {
    line-height: 2;
  }

  .skill-left {
    width: 100%;
  }

  .skill-right {
    width: 100%;
    margin-top: 20px;
    margin-left: 0px;
  }
}

.service-list {
  display: block;
  width: 1000px;
  height: 563px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .service-list {
    margin-bottom: 20px;
    width: 100%;
    height: 100%;
  }
  .service-list::after {
    content: "";
    padding-top: 60%;
    display: block;
  }
}

.service-list img {
  position: absolute;
  width: 100%;
}

.service-list li {
  list-style: none;
  /*display: block;*/
}

.service-list li:last-child {
  padding-bottom: 0px;
}

.works-list {
  display: flex;
  flex-wrap: wrap;
  width: 1000px;
  justify-content: space-around;
}

.works-item {
  width: 320px;
  height: 198px;
  overflow: hidden;
}
.works-item-thumb {
  width: 184px;
}

.works-list-content {
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.works-list-content:hover {
  transform: scale(1.2);
}

.works-list-content-no:hover {
  transform: none;
}

.works-list-tit-thumb {
  margin-top: 3px;
  font-size: 1.4rem;
}

.works-list-tit- {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .works-list {
    width: 100%;
  }
  .works-list-thumb {
    width: 100%;
    justify-content: flex-start;
  }
  .works-item-thumb {
    width: 48%;
    margin-right: 2%;
  }
  .works-list-tit {
    margin-bottom: 20px;
  }
  .works-list-tit-thumb {
    margin-bottom: 18px;
    margin-top: 1px;
  }
}

/*footer*/

.pagetop {
  position: absolute;
  right: 20px;
  width: 160px;
}

.pagetop a {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .pagetop {
    right: 0px;
  }
}

.pagetop-bottom {
  position: absolute;
  right: 20px;
  z-index: 999;
}

@media only screen and (max-width: 767px) {
  .pagetop-bottom {
    right: 0;
    width: 70%;
  }
}

.pagetop-top {
  position: absolute;
  right: 50px;
  bottom: -60px;
  z-index: 1000;
  width: 100px;
}

@media only screen and (max-width: 767px) {
  .pagetop-top {
    bottom: -40px;
    right: 10px;
    width: 50%;
  }
}

.pagetop-top-animation {
  animation: ptAnime 2.5s ease infinite;
}

@keyframes ptAnime {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-15px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

footer {
  padding: 70px 0 70px;
  background-color: #333333;
  text-align: center;
  color: #fff;
}

.footer-animation {
  width: 60px;
  display: block;
  margin: 0 auto;
}

.footer-txt {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .footer-txt {
    font-size: 1.7rem;
  }
}

small {
  color: #cccccc;
  margin-top: 40px;
  font-size: 13px;
  line-height: 1;
  display: block;
}

/*works page*/

.main_works {
  padding: 60px 15px 120px 15px;
}

.header-fixed {
  display: flex;
  text-align: left;
}

.logo {
  display: flex;
}

.logoIcon {
  width: 6rem;
  height: 6rem;
  text-align: center;
  margin: 20px;
  border-radius: 40px;
  background: url(../img/glasses_white.png) no-repeat center center;
  background-size: 65% auto;
  background-color: #222;
}

.headerTit {
  font-size: 2rem;
  font-family: "Spartan", sans-serif;
  margin-top: 34px;
}

.breadcrumb {
  font-size: 1.4rem;
  background-color: #efeee6;
  padding: 8px 40px;
}

.breadcrumb_list {
  list-style: none;
  display: flex;
}

.breadcrumb_link {
  color: #222;
  text-decoration: underline;
}

.breadcrumb_item {
  color: #999;
  transition: color 0.3s;
  flex: 0 0 auto;
}

.breadcrumb_item:not(:first-child)::before {
  content: "\003e";
  margin: 0 5px;
  color: #999;
}

@media only screen and (max-width: 767px) {
  .main_works {
    padding: 30px 15px 30px 15px;
  }

  .logoIcon {
    width: 5rem;
    height: 5rem;
    margin: 18px;
  }

  .headerTit {
    margin-top: 29px;
    font-size: 1.8rem;
  }

  .breadcrumb {
    font-size: 1.4rem;
    padding: 6px 16px;
  }

  .breadcrumb_list {
    list-style: none;
    display: flex;
  }

  .breadcrumb_link {
    color: #222;
    text-decoration: underline;
  }

  .breadcrumb_item {
    color: #999;
    transition: color 0.3s;
    flex: 0 0 auto;
  }

  .breadcrumb_item:not(:first-child)::before {
    content: "\003e";
    margin: 0 5px;
    color: #999;
  }
}

.pageTit-wrapper {
  margin-bottom: 45px;
}

.pageTit .client {
  color: #999;
  line-height: 1.75;
  display: block;
}

.pageTit .title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-top: -4px;
  display: block;
}

.pageTit .url-btn {
  position: relative;
  display: inline-flex;
  padding: 2px 16px 4px;
  background-color: #000;
  border: 1px solid transparent;
  border-radius: 40px;
  margin-top: 10px;
}

.pageTit .url-bl {
  color: #fff;
  font-size: 1.2rem;
  z-index: 1;
  letter-spacing: 0.05em;
}

.pageTit .url-btn-in {
  text-align: center;
  position: relative;
}

.text-detail {
  margin: 60px 0;
}

.text-detail dt {
  font-weight: bold;
}

.text-detail dd {
  margin-bottom: 25px;
}
.text-detail li {
  list-style-type: disc;
  margin-left: 20px;
}
.works_detailImg {
  margin-bottom: 40px;
}

.works-btnBack {
  display: block;
  width: 168px;
  padding: 10px 0;
  border: #000 solid 1px;
  border-radius: 40px;
  font-size: 1.4rem;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .pageTit-wrapper {
    margin-bottom: 30px;
  }

  .text-detail {
    margin: 30px 0;
  }

  .works_detailImg {
    margin-bottom: 30px;
  }
}
