@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Josefin+Sans|Noto+Sans+JP|Quattrocento+Sans:700|Ubuntu+Condensed&display=swap");

@font-face {
    font-family: 'FuturaRound-Regular';
    src: url('/font/FuturaRound-Regular.woff') format('woff');
}

/**************************************************
  common
  **************************************************/

html {
    font-size: 10px;
}
input{
    -webkit-appearance: none;
}
input,
a,
button {
    outline: none;
}
::placeholder {
  color: #969696;
}
img {
    width: 100%;
}
.main-content {
    position: relative;
    z-index: 0;
    font-family: 'FuturaRound-Regular', a-otf-gothic-bbb-pr6n, sans-serif;
    font-weight: 400;
    font-style: normal;
}

@media screen and (max-width: 768px) {

    
  .pc-only {
    display: none;
  }
/*
  .about-container .about-company {
    display: block;
  }
  .sp-only {
    display: block !important;
  }
*/


}

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

header {
    position: fixed;
    height: 72px;
    width: 100%;
    margin: 0 auto;
    z-index: 99;
    align-items: center;
    transition: all .5s;
}

.header-bg {
    background: #000;
    transition: all .5s;
    box-shadow: 0px 1px 3px 2px rgba(0, 0, 0, 0.2);
}

header > h1 > a > img {
    position: absolute;
    z-index: 20;
    top: 16px;
    left: 16px;
    width: 8%;
}

nav.NavMenu {
    position: absolute;
    /*表示位置を固定*/
    z-index: 2;
    /*重ね順を変更*/
    /*全幅表示*/
    transform: translateX(200%);
    /*ナビを上に隠す*/
    transition: all 0.5s;
    /*アニメーションの時間を指定*/
    height: 100vh;
    width: 100%;
}

nav.NavMenu ul {
    width: 100%;
    margin-top: 120px;
    padding: 0;
}

nav.NavMenu ul li:last-child {
    padding-bottom: 0;
}

nav.NavMenu ul li a {
    display: inline-block;
    padding: .4em 0;
    font-size: 35px;
    font-weight: bold;
}

nav.NavMenu.active {
    background-color: black;
    transform: translateY(0%);
    text-align: center;
    font-family: 'FuturaRound-Regular';
    /*ナビを表示する*/
    opacity: 0.9;
}

.Toggle {
    display: block;
    position: absolute;
    /* bodyに対しての絶対位置指定 */
    right: 16px;
    top: 14px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 3;
}

.Toggle span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 3px #FFF;
    -webkit-transition: .2s ease-in-out;
    /*変化の速度を指定*/
    -moz-transition: .2s ease-in-out;
    /*変化の速度を指定*/
    transition: .2s ease-in-out;
    /*変化の速度を指定*/
    left: 6px;
}

.Toggle span:nth-child(1) {
    top: 11px;
}

.Toggle span:nth-child(2) {
    top: 20px;
}

.Toggle span:nth-child(3) {
    top: 29px;
}

.Toggle.active span:nth-child(1) {
    top: 20px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 20px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

#fade {
    display: none;
}

.nav {
    font-family: 'Josefin Sans', sans-serif;
    position: absolute;
    right: 0;
    width: 265px;
    letter-spacing: 0.1em;
    font-size: 15px;
}

.nav-item {
    padding: .4em 0;
    font-size: 3.2rem;
}
.nav-item img {
    width: 50%;
}

.nav-item a {
    text-decoration: none;
    color: #fff;
    transition: all .2s;
}

.nav-item a:hover {
    opacity: 0.5;
}

@media screen and (max-width: 768px) {

    header {
        height: 56px;
    }

    header > h1 > a > img {
        top: 8px;
        left: 8px;
        width: 20%;
    }

    .Toggle {
        top: 3px;
        right: 8px;
    }

    nav.NavMenu {
        width: 100%;
    }

    .nav-item{
        font-size: 1.2rem;
    }

    .nav-item img{
        width: 32%;
    }
}

/**************************************************
  main_visual
  **************************************************/

.main-visual {
    height: 85vh;
    position: relative;
    overflow: hidden;
    z-index: -1;
    color: #fff;
    background: linear-gradient(225deg, #605db7, #46c6ff, #4686ff, #ea46ff);
    background-size: 800% 800%;

    -webkit-animation: AnimationName 15s ease infinite;
    -moz-animation: AnimationName 15s ease infinite;
    animation: AnimationName 15s ease infinite;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}
@keyframes AnimationName {
    0%{background-position:0% 51%}
    50%{background-position:100% 50%}
    100%{background-position:0% 51%}
}

.main-visual_inner {
    width: 90%;
    margin: 136px auto;
    max-width: 1280px;
    display: flex;
}

.main-v_left {
    width: 70%;
}

.main-v_right {
    width: 30%;
}

.scroll {
    margin-top: 20px;
    z-index: 1;
}

.scroll p {
    color: #fff;
    font-size: 1.6rem;
    margin-left: 1.6rem;
    transform: rotateZ(90deg);
    transform-origin: top left;
    /* Safari */
      -webkit-transform: rotateZ(90deg);
    /* Firefox */
      -moz-transform: rotateZ(90deg);
    /* IE */
      -ms-transform: rotateZ(90deg);
    /* Opera */
      -o-transform: rotateZ(90deg);
}

.scroll::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #fff;
    transform: translateY(0px);
    -webkit-animation: scroll_main 2s ease 0s infinite normal;
    animation: scroll_main 2s ease 0s infinite normal;
}
@-webkit-keyframes scroll_main {
    0% {
        height: 0px;
    }

    50% {
        height: 200px;
    }

    100% {
        height: 200px;
        margin-top: 300px;
    }
}

@keyframes scroll_main {
    0% {
        height: 0px;
    }

    50% {
        height: 250px;
    }

    100% {
        height: 250px;
        margin-top: 300px;
    }
}
.main-e-name {
    position: relative;
}

.main-e-name::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    margin-top: 1rem;
    background-color: #fff;
    -webkit-animation: move1 2s ease 0s infinite normal;
    animation: move1 2s ease 0s infinite normal;
}

@-webkit-keyframes move1 {
    0% {
        width: 0;
    }

    100% {
        margin-left:200%;
        width: 100%;
    }
}

@keyframes move1 {
    0% {
        width: 0;
    }

    100% {
        margin-left:200%;
        width: 100%;
    }
}

.main-e-name h1 {
    font-size: 5.6rem;
}

.main-e-name h1 span {
    font-size: 4rem;
}

.main-j-name {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin: 0 0 0 auto;
}

.main-j-name::after {
    content: "";
    position: absolute;
    right: 5%;
    width: 1px;
    height: 100%;
    margin-top: 1rem;
    background-color: #fff;
    transform: translateY(140px);
    -webkit-animation: move 2s ease 0s infinite normal;
    animation: move 2s ease 0s infinite normal;
}

@-webkit-keyframes move {
    0% {
        height: 0px;
    }

    50% {
        height: 200px;
    }

    100% {
        height: 200px;
        margin-top: 250px;
    }
}

@keyframes move {
    0% {
        height: 0px;
    }

    50% {
        height: 200px;
    }

    100% {
        height: 200px;
        margin-top: 250px;
    }
}

.main-j-name h1 {
    font-size: 1.6rem;
    letter-spacing: 0.3rem;
    line-height: 2rem;
}
@media screen and (max-width: 768px){
    .main-visual {
    height: 80vh;
    }
    .main-v_left {
    width: 90%
}

.main-v_right {
    width: 10%
}
    .scroll p {
    color: #fff;
    font-size: 1.2rem;
    
}
    
.main-e-name h1 {
    font-size: 2.8rem;
}

.main-e-name h1 span {
    font-size: 1.8rem;
}
    .main-j-name h1 {
    font-size: 1.2rem;
    letter-spacing: 0.3rem;
    line-height: 2rem;
}
.main-j-name::after {
    content: "";
    position: absolute;
    right: 5%;
    width: 1px;
    height: 100%;
    margin-top: rem;
    background-color: #fff;
    transform: translateY(180px);
    -webkit-animation: move 2s ease 0s infinite normal;
    animation: move 2s ease 0s infinite normal;
}
}


/**************************************************
  About
  **************************************************/
.about {
    color: #969696;
    overflow-x:hidden;
}
.about-inner {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.about_main {
    margin: 120px 0;
}

.about-left {
    margin-bottom: 120px;
    position: relative;
}

.about-left::before {
    content: "";
    position: absolute;
    top: -90px;
    right: 10px;
    width: 200px;
    height: 300px;
    background-color: #969696;
    z-index: 2;
    background-image: url(../img/img2.jpg);
    background-size: cover;
    background-position: -40px;
    opacity: 0;
  -webkit-animation: img_1 1.2s ease 0.5s 1 forwards;
  animation: img_1 1.2s ease 0.5s 1 forwards;
  }
  @-webkit-keyframes img_1 {
  100% {
    opacity: 1;
  }
}
@keyframes img_1 {
  100% {
    opacity: 1;
  }
}

.about-left::after {
    content: "";
    position: absolute;
    top: -40px;
    right: 160px;
    width: 200px;
    height: 300px;
    background-color: #000;
    z-index: -1;
    background-image: url(../img/img1.jpg);
    background-size: cover;
    background-position: -120px;
    opacity: 0;
  -webkit-animation: img_1 1.2s ease 0.5s 1 forwards;
  animation: img_1 1.2s ease 0.5s 1 forwards;
}

.about-left h1{
    font-size: 1.6rem;
    margin-bottom: 6.4rem;
}

.about-left .intro-title {
    font-size: 3.6rem;
    line-height: 4.8rem;
    margin-bottom: 1rem;
}

.about-left .intro-title span {
    margin-left: -2.2rem;
}

.about-left .intro-text {
    font-size: 2.4rem;
    line-height: 2.8rem;
}

.about-right {
    width: 80%;
    margin: 0 auto;
}

.about-right .right-item {
    font-size: 1.4rem;
    line-height: 3.2rem;
    border-top: 1px solid #969696;
    border-bottom: 1px solid #969696;
}

.about-right .right-item table {
    margin: 20px auto;
}

.about-right .right-item table tr {
    display: block;
    border-bottom: 1px solid #EBEBEB;
    padding: 10px 0;
}

.about-right .right-item table tr:nth-last-child(1) {
    border-bottom: none;
}

.about-right .right-item table td:nth-of-type(odd) {
    vertical-align: middle;
    width: 120px;
}


.line-box-parent {
    position: relative;
}

@media screen and (max-width: 768px) {

.about_main {
    margin: 460px 0 120px;
}

.about-left {
    margin-bottom: 80px;
}

.about-left::before {
    content: "";
    position: absolute;
    top: -440px;
    right: 0px;
    width: 200px;
    height: 300px;
    background-color: #969696;
    z-index: 2;
    background-image: url(../img/img2.jpg);
    background-size: cover;
    background-position: -40px;
}

.about-left::after {
    content: "";
    position: absolute;
    top: -420px;
    left: 0;
    width: 200px;
    height: 300px;
    background-color: #000;
    z-index: -1;
    background-image: url(../img/img1.jpg);
    background-size: cover;
    background-position: -120px;
}

.about-left h1{
    text-align: center;
}

.about-left .intro-title {
    font-size: 2.3rem;
    line-height: 3.2rem;
    margin-bottom: 1rem;
}

.about-left .intro-title span {
    margin-left: -1.4rem;
}

.about-left .intro-text {
    font-size: 1.8rem;
    line-height: 2.4rem;
}

.about-right {
    width: 100%;
}

.about-right .right-item {
    font-size: 1.4rem;
    line-height: 2.4rem;
}

.about-right .right-item table {
    margin: 28px auto;
}

.about-right .right-item table tr {
    padding: 16px 0;
}

.about-right .right-item table tr:nth-last-child(1) {
    border-bottom: none;
}

.about-right .right-item table td:nth-of-type(odd) {
    vertical-align: middle;
    width: 100px;
}
}
/**************************************************
contact
**************************************************/

.contact {
    position: relative;
    color: #969696;
}

.contact-inner {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}
.contact-inner h1 {
    font-size: 1.6rem;
    margin-bottom: 6.4rem;
}
.contact_img {
    width: 80%;
    margin: 0 auto;
}
.contact-inner p{
    margin: 64px auto 120px;
    padding: 20px 0 14px;
    text-align: center;
    width: 80%;
    background-color: #000;
    border-radius: 30px;
    transition: 0.2s;
}
.contact-inner p a{
    font-size: 2.4rem;
    color: #fff;
    text-decoration: none;
    display: block;
    transition: 0.2s;
    
}
.contact-inner p:hover{
    transition: 0.2s;
    opacity: 0.5;
}
.contact-inner p a:hover{
    transition: 0.2s;
    opacity: 0.5;
}

@media screen and (max-width: 768px) {
.contact-inner h1 {
    text-align: center;
}
.contact_img {
    width: 100%;
}
.contact-inner p{
    margin: 40px auto 80px;
    padding: 16px 0 8px;
    width: 100%;
}
.contact-inner p a{
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    display: block;
    transition: 0.2s;
    
}
.contact-inner p:hover{
    opacity: 1;
}
.contact-inner p a:hover{
    opacity: 1;
}
}
/**************************************************
contact_page
**************************************************/
.aj_con {
    padding: 120px 0 0;
}
.contact-inner h2 {
    font-size: 3.2rem;
    margin-bottom: 6.4rem;
    text-align: center;
}
.input-wrapper{
    border-top: 1px solid #969696;
    border-bottom: 1px solid #969696;
    padding: 80px 0 0;
    margin-bottom: 120px;
}
.contact-inner .form-group {
  display: flex;
  font-size: 1.8rem;
    padding: 20px 0;
  border-bottom: 1px solid #EBEBEB;
    align-items: center;
}
.contact-inner .form-group:nth-of-type(4) {
  display: flex;
  font-size: 1.8rem;
    padding: 20px 0;
  border-bottom: none;
    align-items: flex-start; 
}
.from_l {
    width: 30%;
}
.from_r {
    width: 70%;
}
.contact-inner .form-group input {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #EBEBEB;
  padding: 5px 16px;
  box-sizing: border-box;
}
.textbox {
    width: 100%;
    height: 200px;
  border-radius: 10px;
  border: 1px solid #EBEBEB;
    box-sizing: border-box;
}
.contact-inner .form-button input {
  background: #000;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
    width: 100%;
    border-radius: 50px;
}
.form-button{
    margin: 64px auto 64px;
    text-align: center;
    width: 80%;
    background-color: #000;
}
@media screen and (max-width: 768px) {
   .aj_con {
    padding: 140px 0 0;
}
.contact-inner h2 {
    font-size: 2.4rem;
    margin-bottom: 4.8rem;
}
.input-wrapper{
    padding: 64px 0 0;
    margin-bottom: 80px;
}
.contact-inner .form-group {
  display: flex;
  font-size: 1.4rem;
    padding: 20px 0;
  border-bottom: 1px solid #EBEBEB;
    align-items: center;
}
.contact-inner .form-group:nth-of-type(4) {
  display: block;
  font-size: 1.4rem;
    padding: 20px 0;
  border-bottom: none;
    align-items: flex-start; 
}
.contact-inner .form-group input {
  padding: 10px 16px;
}
.textbox {
    width: 100%;
    height: 240px;
  padding: 5px 0 0 16px;
}
    .form_r_2 {
        width: 100%;
        margin-top: 20px;
    }
.contact-inner .form-button input {
  background: #000;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
    width: 100%;
    border-radius: 50px;
}
.form-button{
    margin: 64px auto 0;
    text-align: center;
    width: 80%;
    background-color: #000;
    box-shadow: none;
} 
}
/**************************************************
footer
**************************************************/
footer {
    background: linear-gradient(225deg, #605db7, #46c6ff, #4686ff, #ea46ff);
    background-size: 800% 800%;

    -webkit-animation: AnimationName 15s ease infinite;
    -moz-animation: AnimationName 15s ease infinite;
    animation: AnimationName 15s ease infinite;
}



.footer-inner {
    display: flex;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}
.footer-img {
    width: 16%;
    margin: 24px 0;
}
.footer-nav li{
    display: inline-block;
    font-size: 1.8rem;
    margin-left: 20px;
}
.footer-nav li a{
    color: #fff;
    text-decoration: none;
}
.footer-nav li a:hover{
    transition: 0.2s;
    opacity: 0.5;
}
.footer-copyright {
    color: #fff;
    text-align: center;
}
.footer-copyright .copyright {
    padding-bottom: 40px;
}

.modal-wrap {
    display: none;
    width: 100%;
    height: 100%;
    background-color: #999;
    opacity: 0.4;
    position: fixed;
    top: 0;
    z-index: 99;
}

#modal {
    display: none;
    position: fixed;
    color: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 100;
    opacity: unset;
    background: #fff;
    color: #000;
    border-radius: 5px;
    padding: 50px;
    overflow: auto;
}

#modal > ul li {
    list-style: none;
    border-bottom: 1px solid;
    padding: 6px 0;
}

.modal-title {
    text-align: center;
    padding-bottom: 25px;
}

.modal-button-area {
    text-align: center;
    padding-top: 25px;
}

.modal-button-area button {
    color: #fff;
    background: #000;
    border: none;
    padding: 5px 10px;
    margin: 0 10px;
    cursor: pointer;
}

#sendingMessage {
    display: none;
    text-align: center;
    padding-top: 10px;
}

#complete-modal {
    position: fixed;
    color: black;
    background-color: #eee;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 100;
    opacity: unset;
    padding: 10px 10px 10px 25px;
    border-radius: 10px;
}

@keyframes show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@media screen and (max-width: 768px) {


    /**************************************************
slick
**************************************************/
    .about-container .map-icon {
        position: absolute;
        right: -10px;
        bottom: -8px;
    }

    /**************************************************
slick
**************************************************/
    .slider .slick-dots {
        bottom: 3.5%;
    }

    .slider .slick-prev {
        width: 25px;
        height: 25px;
    }

    .slider .slick-next {
        width: 25px;
        height: 25px;
    }
}
