@charset "UTF-8";

/*========= base ===========*/

html {
  margin: 0;
  padding:0;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP',"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  font-weight: 400;
  color: #555;
  line-height: 2.0;
  position: relative;
  letter-spacing: .03rem;
}

h2,h3,h4,h5 {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  vertical-align: bottom;
}

ul,li,dl,dt,dd {
  margin:0;
  padding:0;
  list-style: none;
}

table{
    border-collapse: collapse;
}

a {
  text-decoration: none;
}

a:hover {
  transition: .3s;
  opacity: 0.6;
}

.to-top{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 20px;
    cursor: pointer;
    z-index: 1;
  }

/*===== header =========================================*/
#loading {
    width: 100vw;
    height: 100vh;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 0.33s cubic-bezier(0.63, -0.02, 1, 0.6) 0.1s;
    transition: -webkit-transform 0.33s cubic-bezier(0.63, -0.02, 1, 0.6) 0.1s;
    transition: transform 0.33s cubic-bezier(0.63, -0.02, 1, 0.6) 0.1s;
    transition: transform 0.33s cubic-bezier(0.63, -0.02, 1, 0.6) 0.1s, -webkit-transform 0.33s cubic-bezier(0.63, -0.02, 1, 0.6) 0.1s;
}
#loading figure {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 1000px;
    display: none;
}
#loading figure.is-none {
    opacity: 0;
}
#loading figure img {
    display: block;
    width: 100%;
}

header{
    width: 100%;
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-logo {
    padding: 24px 0 0 40px;
    width:300px;
}
.header-nav__ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.header-nav__ul a {
    display: block;
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: .1rem;
    line-height: 70px;
    padding: 0 10px 10px;
    position: relative;
}
.header-nav__li {
    -webkit-transition: all 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) 0s;
    transition: all 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) 0s;
    position: relative;
}
.header-nav__li.contact-link a {
    font-size: 2rem;
    background: #000;
    -webkit-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
}
.header-nav__li:before, .header-nav__li:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    right: 0;
    height: 6px;
}
.header-nav__li:after {
    -webkit-transition: 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    background-color: #c62828;
}
.header-nav__li:hover:after {
    left: 0;
    width: 100%;
}
.header-nav__ul a span {
    position: relative;
    display: inline-block;
    width: 100px;
    text-align: center;
}
.header-nav__ul a span::before {
    font-size: 1rem;
    display: inline-block;
    color: #fff;
    position: absolute;
    left: 50%;
    bottom: 10px;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    width: 100%;
    line-height: 1;
    text-align: center;
}
.header-nav__ul a.mission span::before {
    content: '理念';
}
.header-nav__ul a.solution span::before {
    content: '業務内容';
}
.header-nav__ul a.works span::before {
    content: '作品・レビュー';
}
.header-nav__ul a.news span::before {
    content: 'お知らせ';
}
.header-nav__ul a.blog span::before {
    content: 'ブログ';
}
.header-nav__ul a.contact-link span::before {
    content: 'お問い合わせ';
}
.header-nav__btn__sp, .header-social, .header-toggle {
    display: none;
}
.header-nav__li.contact-link:before, .header-nav__li.contact-link:after {
    display: none;
}
.header-nav__li.contact-link a:hover {
    color: #c62828;
    background: #fff;
}

/*=== main top ===================================================*/
.modal-video {
    width: 100vw;
    height: 100vh;
    background: rgba(33, 33, 33, 0.95);
    position: fixed;
    z-index: 100000;
    display: none;
}
.modal-video #modal-video-player {
    position: fixed;
    z-index: -1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 900px;
    height: 508px;
    max-width: 100%;
    z-index: -1;
}
.top-first {
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}
.top-first__box {
    overflow: hidden;
}
.background {
    width: 100%;
    height: auto;
    margin: 0 auto;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    pointer-events: none;
    background: url(image/bg_movie.png) no-repeat center center;
    background-size: cover;
}
.background .background-wrap .background-movie {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.background .background-wrap {
    position: relative;
    top: 0;
    left: 0;
    z-index: -1;
    min-width: 100%;
    min-height: 100%;
    overflow: hidden;
}
.background .background-cover {
    width: 100vw;
    height: 100vh;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: url(image/bg_movie.png) no-repeat center center;
    z-index: 1;
    display: none;
}
.background .background-wrap #background-movie-player {
    width: 100%;
    height: 100vh;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
}
.background .background-wrap .background-movie:after {
    content: '';
    width: 100vw;
    height: 100vh;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    /* background: rgba(0, 0, 0, 0.28); */
}
.top-first__link {
    cursor: pointer;
    position: absolute;
    left: 50%;
    bottom: 120px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    width: 250px;
    height: 60px;
    padding-left: 55px;
    line-height: 57px;
    text-align: center;
    font-size: 2rem;
    letter-spacing: .2rem;
    font-weight: 600;
    -webkit-transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    display: none;
}
.top-first {
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}
.top-first__link .arw {
    position: absolute;
    top: 7px;
    left: 15px;
    border: 2px solid #fff;
    border-radius: 45px;
    width: 45px;
    height: 45px;
    display: block;
    -webkit-transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.top-first__link .arw:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 16px;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    top: 13px;
    left: 15px;
    -webkit-transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.top-first__link:hover {
    border-color: #c62828;
    color:#c62828;
    -webkit-transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}


/*===scroll btn  ================================================= */
.common-online-link.is-hidden {
    -webkit-transform: translateX(107%);
    transform: translateX(107%);
    bottom: 100px;
    display: none;
}
.common-online-link {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #fff;
    color: #000000;
    padding: 10px;
    -webkit-transition: 0.8s ease-in 0s;
    transition: 0.8s ease-in 0s;
    z-index: 100;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
.common-online-link__close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 21px;
    height: 21px;
    cursor: pointer;
}
    .common-online-link__close::before, .common-online-link__close::after {
        content: '';
        width: 100%;
        height: 1px;
        background: #c62828;
        display: block;
        position: absolute;
    }
    .common-online-link__close::before {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        left: 0;
        top: 10px;
    }
    .common-online-link__close::after {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        left: 0;
        top: 10px;
    }
.common-online-link__in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.common-online-link__ttl {
    padding-left: 10px;
}

.common-online-link__en {
    color: #c62828;
    font-family: "Barlow Condensed", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.8rem;
    margin-bottom: 5px;
}
.common-online-link__txt {
    font-size: 1.4rem;
    color: #000000;
}


/*=========== contaniner =======================*/
.top-container {
    background: #fff;
}
/*==== second ======*/
.top-second {
    background-size: 100%;
    padding: 130px 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.top-second__in {
    width: 900px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.top-second__in__box {
    -webkit-transition: 1s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
    transition: 1s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
}
.top-second__in__box.right {
    margin-left: 30px;
}
.is-anime .top-second__in__box.right img {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 0, 0) translate3d(0, 0, 0);
    transform: scale3d(1, 1, 1) rotate3d(0, 0, 0, 0) translate3d(0, 0, 0);
    transition: opacity 2.8s, -webkit-transform 2.8s;
    -webkit-transition: opacity 2.8s, -webkit-transform 2.8s;
    transition: opacity 2.8s, transform 2.8s;
    transition: opacity 2.8s, transform 2.8s, -webkit-transform 2.8s;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.top-second__in__box.right img {
    width: 372px;
    height: 300px;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale3d(1.3, 1.3, 1) rotate3d(1, -3, -1, -36deg) translate3d(0, 50px, 130px);
    transform: scale3d(1.3, 1.3, 1) rotate3d(1, -3, -1, -36deg) translate3d(0, 50px, 130px);
}
.is-anime .top-second__in__box.left img {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 0, 0) translate3d(0, 0, 0);
    transform: scale3d(1, 1, 1) rotate3d(0, 0, 0, 0) translate3d(0, 0, 0);
    transition: opacity 2.8s, -webkit-transform 2.8s;
    -webkit-transition: opacity 2.8s, -webkit-transform 2.8s;
    transition: opacity 2.8s, transform 2.8s;
    transition: opacity 2.8s, transform 2.8s, -webkit-transform 2.8s;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.top-second__in__box.left img {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale3d(1.3, 1.3, 1) rotate3d(1, -3, -1, 36deg) translate3d(0, 50px, 130px);
    transform: scale3d(1.3, 1.3, 1) rotate3d(1, -3, -1, 36deg) translate3d(0, 50px, 130px);
}

/*====what============  */
.top-what {
    background: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 20px 0 750px;
}
.top-what__ttl {
    font-size: 4.8rem;
    font-family: "Barlow Condensed", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1rem;
}
.top-what__lead {
    max-width: 800px;
    margin: 35px auto 30px;
    line-height: 1.6;
    font-size:1.5rem;
    text-align: center;
}
.top-what__lead span {
  color: #c62828;
  font-size:2rem;
}
.top-what .line-wrap {
    width: 1900px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 3000px;
    z-index: -1;
}
.top-what .line-wrap span {
    display: block;
    width: 1px;
    height: 100%;
    background: #e5e5e5;
}
}
.top-what__wrap {
    width: 1030px;
    margin: 0 auto;
    position: relative;
}
.top-what__in.active {
    display: block;
}
.top-what__in {
    position: absolute;
    display: none;
    width: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.top-what__left {
    width: 400px;
    position: absolute;
    left: 50px;
    top: 35px;
    z-index: 2;
}
.top-what__left__subttl {
    font-family: "Barlow Condensed", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #c62828;
    font-size: 4.8rem;
    font-style: italic;
    line-height: 1;
    letter-spacing: .3rem;
}
.top-what__left__subttl span {
    display: block;
    font-family: "NotoSansCJKjp";
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.8rem;
    color: #212121;
    margin-top: 8px;
    letter-spacing: .3rem;
    font-weight: 600;
}
.top-what__left__subttl span:after {
    content: '';
    width: 40px;
    height: 2px;
    background: #000;
    display: block;
    margin-top: 35px;
}
.top-what__left__text {
    width: 450px;
    line-height: 1.7;
    margin-top: 30px;
    text-align: justify;
    font-size:1.5rem;
}
.top-what__right {
    margin-left: 440px;
}
.top-what__nav {
    font-family: "Barlow Condensed", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 600;
    font-size: 1.8rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    color: #cccccc;
    width: 60%;
    margin:0 auto;
    border-bottom: 2px solid #ccc;
}
.top-what__nav li {
    margin-bottom: 20px;
    position: relative;
    transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.top-what__nav li:hover {
    color: #c62828;
    cursor: pointer;
}
.top-what__nav li.active {
    color: #c62828;
}
.top-what__nav li.active span {
    display: block;
}
.top-what__nav li span {
    display: none;
    font-family: "NotoSansCJKjp";
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1rem;
    color: #212121;
    margin-top: 8px;
    letter-spacing: 0;
}

.top-what__right__box {
    display: block;
    position: relative;
    z-index: 1;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.top-what__right__box img {
    display: block;
    /* width: 80%;*/
    margin-right: 5rem;
    margin-left: auto;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 12px 20px 40px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 12px 20px 40px 0px rgba(0, 0, 0, 0.15);
}
/* .top-what__right__box:after {
    content: '';
    display: block;
    width: 800px;
    height: 430px;
    background: #eee;
    position: absolute;
    top: 80px;
    left: 100px;
    z-index: 0;
} */
.top_what_list_title{
    display: inline-block;
    color: #c62828;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem;
}
.top_what_list {
    display: flex;
    flex-wrap: wrap;
}
.top_what_list li{
    color: #fff;
    background: #d56d68;
    padding: 1rem;
    border-radius: 10px;
    width: 30%;
    text-align: center;
    margin: .5rem;
    font-size: 1.2rem;
}


/*========== top-work ================*/
.top-works {
    background: #fff;
    position: relative;
    z-index: 1;
}
.top-works__in {
    background: #c62828;
    position: relative;
    padding: 100px 0 150px;
    width:100%;
}
.top-works__ttl {
    font-size: 4.8rem;
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1rem;
}
.top-works__wrap {
    width: 100%;
    max-width: 1030px;
    margin: 0 auto;
    padding: 60px 0 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.top-works__link  {
    display: block;
    margin-bottom: 30px;
    width: 500px;
    position: relative;
    overflow: hidden;
}
.works-movie{
    width:100%;

}
.top-works__link  img {
    display: block;
    max-width: 100%;
}
.top-works__info {
    width: 100%;
    height: 100%;
    background: rgba(33, 33, 33, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.top-works__info .box {
    padding: 0 20px;
    line-height: 1.8;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
}
.top-works__info .box span {
    display: block;
}
.top-works__info .big {
    font-size: 1.6rem;
}
.top-works__info .small {
    font-size: 1.3rem;
}
.top-works__wrap a:hover .top-works__info {
    opacity: 1;
}


/*======= NEWS ====================*/
.top-news {
    background: #eee;
    padding: 80px 0 100px;
}
.top-news__ttl {
    font-size: 4.8rem;
    color: #212121;
    font-family: "Barlow Condensed", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: .8rem;
    text-align: center;
}
.top-news__in {
    width: 1030px;
    margin: 30px auto 0;
}
.top-news__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.top-news__list dt {
    background: #000;
    color: #fff;
    width: 20%;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 80px;
    line-height: 80px;
    font-size: 2rem;
    letter-spacing: .15rem;
    color: #fff;
}
.top-news__list dd {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #212121;
    width: 20%;
    padding:0 2rem;
    font-size:1.5rem;
}
.new_news {
    color: #c62828;
    font-weight: 700;
    font-size: 14px;
    padding: 0 1rem;
}
.top-news__list__cont {
    width: 60%!important;
}

.top-news__list__cont a{
    font-size:14px;
}
.top-news__list__date {
    font-size: 14px;
    margin-left: auto;
}

/*======== contact ==================*/

.contact{
    background: #eee;
    padding: 80px 0 100px;
}
.formTable {
    width: 60%;
    margin: 30px auto 0;
}
.formTable th{
    height: 60px;
    line-height: 60px;
    width: 30%;
    text-align: start;
    font-size: 1.5rem;
    vertical-align: middle;
    font-family: "Barlow Condensed", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.formTable td{
    padding:10px;
}
input[type="text"] {
    width: 100%;
    height: 40px;
    border:none;
    box-shadow: 20px 19px 40px 0px rgba(0, 0, 0, 0.15);
    font-size:16px;
    font-family: 'Noto Sans JP',"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
}
textarea{
    width: 100%;
    height: 160px;
    border:none;
    box-shadow: 20px 19px 40px 0px rgba(0, 0, 0, 0.15);
    resize: none;
    font-size:16px;
    font-family: 'Noto Sans JP',"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="reset"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="reset"]::focus {
  outline-offset: -2px;
}

input[type="submit"],input[type="reset"] {
    -webkit-box-shadow: 20px 19px 40px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 20px 19px 40px 0px rgba(0, 0, 0, 0.15);
    line-height: 60px;
    background: #c62828;
    font-size: 2rem;
    font-family: "Barlow Condensed", sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #fff;
    border: none;
    width:20%;
    cursor: pointer;
}
input[type="reset"] {
    background:dimgray;
}

.contact-sub {
    text-align: center;
    margin-top: 10rem;
}
.required {
    background: #c62828;
    color: #fff;
    padding: .3rem 1.5rem;
    /* border-radius: 5px; */
    margin: 1rem;
}
.any {
    background:#28C6C6;
    color: #fff;
    padding: .3rem 1.5rem;
    /* border-radius: 5px; */
    margin: 1rem;
}
.fa, .far, .fas {
    margin-right: 1rem;
}
.required_frame{
    width: 100px;
    vertical-align: middle;
    padding:0!important;
}
/*====footer  ====================*/
.footer {
    position: relative;
    z-index: 2;
}
.footer-go-top.is-footer {
    position: absolute;
    right: 35px;
    top: -36px;
}
.footer a {
    color: #fff;
    text-decoration: none;
}
.footer-go-top span:nth-of-type(1) {
    top: 32px;
    left: 32px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.footer-go-top span:nth-of-type(2) {
    top: 32px;
    left: 23px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.footer-go-top span {
    display: block;
    width: 15px;
    height: 3px;
    background: #fff;
    position: absolute;
}
.footer-go-top {
     width: 70px;
    height: 70px;
    background: #c62828;
    border-radius: 35px;
    -webkit-transition: 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
    transition: 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
}
.footer-top {
    width: 100%;
    height: 350px;
    background-color: #000;
}
.footer-top__inner {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.footer-top__left {
    width: 100%;
}
.footer-top__logo {
    background: url(image/logo.png) center center no-repeat;
    background-size: contain;
    width: 200px;
    height: 32px;
    margin: 0 0 20px;
}
.footer-top__txt {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.501;
    letter-spacing: 0.03em;
    margin: 0 0 40px;
}
.footer-top__right {
    width: 100%;
}
.footer-top__address {
    font-size: 1rem;
    color: #fff;
    line-height: 2;
    letter-spacing: 0.03em;
    font-style: normal;
}
.footer-nav {
    width: 100%;
}
.footer-nav-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.footer-nav-list__item {
    margin: 0 0 40px 40px;
}
.footer-nav-list__txt {
    font-size: 1.5rem;
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.05em;
    font-weight: 500;
    -webkit-transition: all 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) 0s;
    transition: all 0.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) 0s;
    position: relative;
}
.footer-bottom {
    width: 100%;
    background-color: #212121;
}
.footer-bottom__inner {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
}
/* .footer-outerlink-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.footer-outerlink-list__item {
    margin: 16px 3px 0;
} */
.copyright{
    color:#fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding:1rem;
}
.br::before {
    content: "\A";
    white-space: pre;
}
.footer-nav-list__txt:before, .footer-nav-list__txt:after {
    content: '';
    position: absolute;
    bottom: -8px;
    width: 0;
    right: 0;
    height: 4px;
}
.footer-nav-list__txt:before {
    -webkit-transition: 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.1s;
    transition: 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.1s;
    background: #000;
}
.footer-nav-list__txt:after {
    -webkit-transition: 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    background-color: #c62828;
}
.footer-nav-list__txt:hover:after {
    left: 0;
    width: 100%;
}


/*================== media クエリ =============================================================================================================*/

@media (max-width: 1030px){

/*======= header =======*/
.header {
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
}
    .header-logo {
        padding: 20px 20px 11px;
    }
    .header-logo a {
        display: block;
        width: 140px;
        height: 20px;
        background: url(image/logo.png) no-repeat;
        background-size: 100%;
    }
    .header-logo a img {
        display: none;
    }
    .header-nav {
        position: absolute;
        display: block;
        width: 100vw;
        height: 100vh;
        left: 0;
        top: 50px;
        background: url(image/bg_glonav_sp.png) no-repeat;
        background-size: cover;
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: 0.3s ease 0s;
        transition: 0.3s ease 0s;
    }
    .open.header-nav {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        opacity: 1;
        -webkit-transition: 0.3s ease 0s;
        transition: 0.3s ease 0s;
        overflow-y: scroll;
    }
    .header-nav__ul {
        display: block;
        width: 100%;
        position: absolute;
        top: 45%;
        left: 0;
        -webkit-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
    }
    .header-nav__btn__pc {
        display: none;
    }
    .header-nav__btn__sp {
        display: block;
    }
    .header-nav__ul a {
        color: #fff;
        font-size: 2.1rem;
        line-height: 50px;
        padding-left: 40px;
        padding-bottom: 15px;
        position: relative;
    }
    .header-nav__li__link:before, .header-nav__li__link:after {
        content: '';
        width: 10px;
        height: 2px;
        background: #fff;
        display: block;
        position: absolute;
        right: 20px;
    }
    .header-nav__li__link:before {
        top: 26px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .header-nav__li__link:after {
        top: 32px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .header-nav__btn__sp__link:before, .header-nav__btn__sp__link:after {
        content: '';
        width: 10px;
        height: 2px;
        background: #fff;
        display: block;
        position: absolute;
        right: 20px;
    }
    .header-nav__btn__sp__link:before {
        top: 32px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    .header-nav__btn__sp__link:after {
        top: 32px;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    .header-toggle {
        display: block;
        width: 50px;
        height: 50px;
        background: #c62828;
        position: relative;
    }
    .header-toggle span {
        display: block;
        background: #fff;
        width: 20px;
        height: 3px;
        margin: 5px auto 0;
    }
    .header-toggle span:first-child {
        margin-top: 15px;
    }
    .header-nav__ul a span {
        width: 200px;
        text-align: start;
    }
    .header-nav__ul a span::before {
        bottom: 0px;
        text-align: start;
    }
/*first */
    .modal-video #modal-video-player {
        height: 50%;
    }




/* second */
    .top-second {
        padding: 50px 50px 0;
    }
    .top-second__in {
        width: 100%;
        display: block;
        overflow: hidden;
    }
    .top-second__in__box.right {
        margin: 0 0 15px;
        text-align:center;
    }
    .top-second__in__box {
        margin: 0;
        text-align: center;
    }
    .top-second__in__box img {
        max-width: 100%;
    }
    .top-second .line-wrap {
        width: 100%;
    }

/* what */
    .top-what {
        padding: 75px 20px 0;
    }
    .top-what__nav li.active span{
        display: none;
    }
    .top-what__nav{
        width:100%;
    }
    .top-what__ttl {
        font-size: 2.4rem;
    }
    .pc {
        display: none !important;
    }
    .top-what .line-wrap {
        width: 100%;
    }
    .top-what__in{
        position: static;
    }
    .top-what__wrap {
        width: 100%;
        height: auto;
        margin-bottom: 5rem;
    }
    .top-what__left {
        width: 100%;
        position: static;
    }
    .top-what__left__subttl {
        font-size: 2.1rem;
    }
    .top-what__left__subttl span {
        font-size: 1.2rem;
    }
    .top-what__left__text {
        width: 100%;
        margin-top: 15px;
    }
    .link-more, .top-what__right__link, .top-works__more, .top-update__more, .back-btn__more {
        font-size: 1.8rem;
        height: 50px;
        line-height: 50px;
    }
    .top-what__right__link {
        display: none;
        width: calc(100% - 80px);
        margin: 20px auto;
    }
    .top-what__right {
        margin: 35px 0 0;
        padding-right: 0;
    }
    .top-what__nav {
        font-size: 1.2rem;
    }
    .top-what__right__box {
        width: 100vw;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .top-what__right__box a {
        pointer-events: none;
    }
    .top-what__right__box:after {
        width: 85%;
        left: 30px;
        top: 20px;
        height: 200px;
    }
    .top_what_list li{
        font-size:1rem;
    }


/*======== works ==============*/

    .top-works__ttl{
        font-size:2.4rem;
    }
    .top-works {
        padding: 0;
    }
    .top-works__in {
        margin-right: 0;
        width: 100%;
        padding: 50px 20px;
    }
    .top-works__wrap {
        padding: 60px 30px 30px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        padding: 40px 0 0;
    }
    .top-works__wrap a {
        margin: 0 auto 30px;
        width: 100%;
    }
    .top-works__wrap a img {
        margin: 0 auto;
    }
    .top-works__info .big {
        font-size: 1.2rem;
    }
    .top-works__info .small {
        font-size: 1rem;
    }

/* NEWS */
    .top-news {
        padding: 45px 10px;
    }
    .top-news__ttl {
        font-size: 2.4rem;
    }
    .top-news__in {
        width: 100%;
        margin: 15px auto;
    }
    .top-news__list {
        display: block;
        padding: 15px 10px;
    }
    .top-news__list dt {
        display: inline-block;
        font-size: 1rem;
        width: 75px;
        height: 20px;
        line-height: 20px;
    }
    .top-news__list dd:not(.top-news__list__cont) {
        width: 100%;
        padding: 0;
    }
    .top-news__list__date {
        padding: 0;
    }
    .top-news__list dd.top-news__list__cont {
        width: 100%!important;
    }
    .top-news__list dd a {
        border-bottom: none;
        text-decoration: underline;
        line-height: 1.5;
    }

    /* contact */
    .formTable{
        width: 90%;
    }
    tr {
        display: block;
    }
    .formTable th {
        display: block;
        height: auto;
        line-height: inherit;
        width: 100%;
        text-align: start;
        font-size: 1.6rem;
     }
     .formTable td{
         display: block;
     }
     .contact-sub {
         margin-top: 2rem;
    }
    input[type="submit"], input[type="reset"] {
        width: 40%;
        margin: 0 auto;
        line-height: 40px;
        font-size:1.6rem;
    }

    /* footer */
    .footer-go-top {
        width: 40px;
        height: 40px;
        right: 15px;
    }
    .footer-go-top span:nth-of-type(1) {
        top: 17px;
        left: 17px;
    }
    .footer-go-top span:nth-of-type(2) {
        top: 17px;
        left: 8px;
    }
    .to-top {
        bottom: 40px;
    right: 40px;
    }
    .footer-top__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-flow: column;
        -ms-flex-flow: column;
        flex-flow: column;
        max-width: 230px;
        padding: 50px 0 0;
    }
    .footer-top__logo {
        width: 121px;
        height: 19.5px;
        margin: 0 0 30px;
    }
    .footer-top__txt {
        font-size: 1rem;
        margin: 0 0 10px;
    }
    .footer-top__address {
        line-height: 1.5;
    }
    .footer-nav-list {
        display: none;
    }
    .copyright {
        font-size: 1.1rem;
        position: relative;
        top: -55px;
        text-align: center;
    }


}
