@charset "utf-8";
@import "./reset.css";

html {
    font-size: calc(100vw * 10 / 1512);
    scroll-behavior: smooth;
}
@media screen and (max-width: 390px) {
    html {
        font-size: calc(100vw * 10 / 390);
    }
}
* {
    color: #121212;
    box-sizing: border-box;
}
body {
    font-family: "zen-kaku-gothic-new", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: #FFF;
    position: relative;
}
.wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.object-fit {
	overflow: hidden;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
body {
    overflow: auto;
}
body.active {
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}



/* font */
.eg {
    font-family: "din-2014", sans-serif;
    font-weight: 400;
    font-style: normal;
}



/* animation */
@keyframes wave {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}



/* HEADER */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    transition: all .3s ease;
}
header.active {
    background: #FFF;
    padding: 20px 0;
    transition: all .3s ease;
}
.header__inner {
    width: 95%;
    margin: 4.5rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease;
}
header.active .header__inner {
    margin: 0 auto;
    transition: all .3s ease;
}
.header__logo {
    width: 15rem;
    transition: all .3s ease;
}
.header__logo:hover {
    opacity: .5;
    transition: all .3s ease;
}
.header__logo img {
    width: 100%;
    vertical-align: middle;
}
.header__nav ul {
    display: flex;
    align-items: center;
}
.header__nav ul li {
    margin-right: 50px;
}
.header__nav ul li:last-child {
    margin-right: 0;
}
.header__nav ul li a {
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding-bottom: 2px;
    position: relative;
    transition: all .3s ease;
}
header.active .header__nav ul li a {
    color: #121212;
    transition: all .3s ease;
}
.header__nav ul li a::before {
    content: '';
    width: 100%;
    height: 2px;
    background: #FFF;
    position: absolute;
    bottom: 0;
    left: 0;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s ease;
}
header.active .header__nav ul li a::before {
    background:#121212;
}
.header__nav ul li a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}
.header__spnav {
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
}
.header__spnav ul {
    display: none;
}
.header__spnav__btn {
    display: none;
}
@media screen and (max-width: 768px) {
    header.active {
        padding: 20px 0;
    }
    .header__inner {
        width: 90%;
        margin: 20px auto 0;
    }
    .header__logo {
        width: 100px;
    }
    .header__logo:hover {
        opacity: 1;
    }
    .header__nav {
        display: none;
    }
    .header__spnav {
        transition: all .3s ease;
    }
    .header__spnav.active {
        width: 100%;
        height: 100vh;
        background: #FFF;
        opacity: 1;
        pointer-events: all;
        transition: all .3s ease;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 98;
    }
    .header__spnav.active ul {
        display: block;
        width: 80%;
        margin: 100px auto 0;
    }
    .header__spnav.active ul li {
        border-bottom: 1px solid #121212;
    }
    .header__spnav.active ul li a {
        display: block;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.05em;
        padding: 20px 0;
    }
    .header__spnav__btn {
        display: block;
        width: 40px;
        height: 40px;
        background: #FFF;
        border-radius: 100%;
        position: relative;
        transition: all .3s ease;
    }
    .header__spnav__btn.active {
        background: #121212;
        transition: all .3s ease;
    }
    header.active .header__spnav__btn {
        background: #121212;
        transition: all .3s ease;
    }
    .header__spnav__btn span {
        width: 18px;
        height: 1px;
        background: #121212;
        position: absolute;
        transition: all .3s ease;
    }
    header.active .header__spnav__btn span {
        background: #FFF;
        transition: all .3s ease;
    }
    .header__spnav__btn.active span {
        background: #FFF;
        transition: all .3s ease;
    }
    .header__spnav__btn span:nth-child(1) {
        top: 42%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all .3s ease;
    }
    .header__spnav__btn.active span:nth-child(1) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(30deg);
        transition: all .3s ease;
    }
    .header__spnav__btn span:nth-child(2) {
        top: 58%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all .3s ease;
    }
    .header__spnav__btn.active span:nth-child(2) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(-30deg);
        transition: all .3s ease;
    }
}
@media screen and (max-width: 390px) {
    header.active {
        padding: 2rem 0;
    }
    .header__inner {
        margin: 2rem auto 0;
    }
    .header__logo {
        width: 10rem;
    }
    .header__spnav__btn {
        width: 4rem;
        height: 4rem;
    }
    .header__spnav__btn span {
        width: 1.8rem;
        height: .1rem;
    }
}





/* MV */
.mv {
    width: 100%;
    height: 54vw;
    background: url('../images/mv.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
}
.mv__item01 {
    width: 17vw;
    position: absolute;
    top: 0;
    left: 0;
}
.mv__item02 {
    width: 35vw;
    position: absolute;
    bottom: 0;
    right: 0;
}
.mv__item01 img, .mv__item02 img {
    width: 100%;
    vertical-align: middle;
}
.mv__cc {
    position: absolute;
    bottom: 4vw;
    left: 6vw;
}
.mv__cc h2 {
    color: #FFF;
    font-size: 7.4rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    line-height: 1.5;
}
.mv__cc p {
    color: #FFF;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-top: 20px;
}
.mv__scroll {
    width: 120px;
    border-bottom: 1px solid #FFF;
    padding-bottom: 5px;
    position: absolute;
    bottom: 0;
    right: 0;
    mix-blend-mode: difference;
    transform: rotate(90deg);
}
.mv__scroll p {
    color: #FFF;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.1em;
    mix-blend-mode: difference;
}
@media screen and (max-width: 768px) {
    .mv {
        width: 100%;
        height: 180vw;
        max-height: 700px;
        background: url('../images/mv-sp.jpg') center center no-repeat;
        background-size: cover;
    }
    .mv__item01 {
        width: 148px;
        /* width: 38vw; */
    }
    .mv__item02 {
        width: 257px;
        /* width: 66vw; */
    }
    .mv__cc {
        width: 90%;
        max-width: 310px;
        position: absolute;
        top: 50%;
        bottom: auto;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .mv__cc h2 {
        font-size: 32px;
    }
    .mv__cc p {
        font-size: 18px;
        margin-top: 20px;
    }
    .mv__scroll {
        width: 100px;
        border-bottom: 1px solid #FFF;
        padding-bottom: 3px;
        bottom: 20px;
        right: -30px;
    }
    .mv__scroll p {
        font-size: 14px;
    }
}
@media screen and (max-width: 390px) {
    .mv {
        max-height: 70rem;
    }
    .mv__item01 {
        width: 14.8rem;
    }
    .mv__item02 {
        width: 25.7rem;
    }
    .mv__cc {
        max-width: 31rem;
    }
    .mv__cc h2 {
        font-size: 3.2rem;
    }
    .mv__cc p {
        font-size: 1.8rem;
        margin-top: 2rem;
    }
    .mv__scroll {
        width: 10rem;
        border-bottom: .1rem solid #FFF;
        padding-bottom: .3rem;
        bottom: 2rem;
        right: -3rem;
    }
    .mv__scroll p {
        font-size: 1.4rem;
    }
}




/* about */
.about {
    padding: 15rem 0 75px;
    position: relative;
}
.about__message {
    width: 90%;
    max-width: 110rem;
    margin: 0 auto;
    position: relative;
}
.about__message p {
    color: #FFF;
    font-size: 14.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.07;
    mix-blend-mode: difference;
    position: relative;
    z-index: 2;
}
.about__message span {
    color: #FFF;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.66;
    position: absolute;
    bottom: 2.2rem;
    right: 0;
    mix-blend-mode: difference;
    z-index: 2;
}
.about canvas{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
@media screen and (min-width: 1512px) {
    .about {
        padding: 150px 0 75px;
    }
    .about__message {
        max-width: 1100px;
    }
    .about__message p {
        font-size: 147px;
    }
    .about__message span {
        font-size: 24px;
        bottom: 22px;
    }
}
@media screen and (max-width: 768px) {
    .about {
        padding: 100px 0;
    }
    .about__message {
        max-width: 340px;
    }
    .about__message p {
        font-size: 45px;
    }
    .about__message span {
        display: block;
        font-size: 16px;
        position: relative;
        bottom: auto;
        mix-blend-mode: difference;
        margin-top: 15px;
    }
    .about canvas{
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
    }
}
@media screen and (max-width: 390px) {
    .about {
        padding: 10rem 0;
    }
    .about__message {
        max-width: 34rem;
    }
    .about__message p {
        font-size: 4.5rem;
    }
    .about__message span {
        font-size: 1.6rem;
        margin-top: 1.5rem;
    }
    .about canvas{
        bottom: -1rem;
    }
}





/* service */
.service {
    width: 100%;
    background: #121212;
    padding: 75px 0 150px;
}
.service__inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}
.service__container {
    display: flex;
    margin-top: 50px;
}
.service__container:first-child {
    margin-top: 0;
}
.service__container:nth-child(even) {
    flex-direction: row-reverse;
}
.service__cnt {
    width: 450px;
    height: 450px;
    background: #FFF;
    position: relative;
}
.service__cnt__inner {
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.service__cnt__index {
    display: inline-block;
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.1em;
    background: #121212;
    padding: 3px 5px 2px 8px;
}
.service__cnt__ttl {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 5px;
}
.service__cnt__inner p {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.7;
    margin-top: 20px;
}
.service__img {
    width: calc(100% - 50px);
    margin: 50px 0 0 -400px;
}
.service__container:nth-child(even) .service__img {
    width: calc(100% - 50px);
    margin: 50px -400px 0 0;
}
.service__img img {
    width: 100%;
    vertical-align: middle;
}
@media screen and (max-width: 768px) {
    .service {
        padding: 30px 0 100px;
    }
    .service__inner {
        width: 90%;
    }
    .service__container {
        margin-top: 50px;
    }
    .service__cnt {
        width: 230px;
        height: 230px;
    }
    .service__cnt__inner {
        width: 80%;
    }
    .service__cnt__index {
        font-size: 12px;
        padding: 3px 5px 2px 6px;
    }
    .service__cnt__ttl {
        font-size: 30px;
        margin-top: 5px;
    }
    .service__cnt__inner p {
        font-size: 12px;
        margin-top: 10px;
    }
    .service__img {
        width: calc(100% - 50px);
        height: 350px;
        margin: 50px 0 0 -180px;
    }
    .service__img img {
        height: 100%;
    }
    .service__container:nth-child(even) .service__img {
        width: calc(100% - 50px);
        margin: 50px -180px 0 0;
    }
    .service__container:nth-child(even) .service__img img {
        object-position: 20% top;
    }
}
@media screen and (max-width: 390px) {
    .service {
        padding: 3rem 0 10rem;
    }
    .service__container {
        margin-top: 5rem;
    }
    .service__cnt {
        width: 23rem;
        height: 23rem;
    }
    .service__cnt__index {
        font-size: 1.2rem;
        padding: .3rem .5rem .2rem .6rem;
    }
    .service__cnt__ttl {
        font-size: 3rem;
        margin-top: .5rem;
    }
    .service__cnt__inner p {
        font-size: 1.2rem;
        margin-top: 1rem;
    }
    .service__img {
        width: calc(100% - 5rem);
        height: 35rem;
        margin: 5rem 0 0 -18rem;
    }
    .service__container:nth-child(even) .service__img {
        width: calc(100% - 5rem);
        margin: 5rem -18rem 0 0;
    }
}




/* company */
.company {
    padding: 100px 0;
}
.company__inner {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}
.company__inner h3 {
    font-size: 70px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
}
.company__list {
    width: 100%;
    margin-top: 45px;
}
.company__list tr th, .company__list tr td {
    border-bottom: 1px solid #AAAAAA;
    padding: 25px 0;
}
.company__list tr th {
    width: 220px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding-left: 50px;
}
.company__list tr td {
    width: calc(100% - 220px);
    font-size: 16px;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
    .company {
        padding: 100px 0;
    }
    .company__inner {
        max-width: 800px;
    }
    .company__inner h3 {
        font-size: 40px;
    }
    .company__list {
        margin-top: 30px;
    }
    .company__list tr th {
        display: block;
        width: 100%;
        font-size: 14px;
        border-bottom: none;
        padding-left: 20px;
        padding: 20px 20px 5px 20px;
    }
    .company__list tr td {
        display: block;
        width: 100%;
        font-size: 14px;
        border-bottom: 1px solid #AAAAAA;
        padding: 0 20px 20px 20px;
    }
}
@media screen and (max-width: 390px) {
    .company {
        padding: 10rem 0;
    }
    .company__inner {
        max-width: 70rem;
    }
    .company__inner h3 {
        font-size: 4rem;
    }
    .company__list {
        margin-top: 3rem;
    }
    .company__list tr th {
        font-size: 1.4rem;
        padding-left: 2rem;
        padding: 2rem 2rem .5rem 2rem;
    }
    .company__list tr td {
        font-size: 1.4rem;
        border-bottom: .1rem solid #AAAAAA;
        padding: 0 2rem 2rem 2rem;
    }
}





/* contact */
.contact {
    width: 100%;
    background: #121212;
    padding: 100px 0;
}
.contact__cnt {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}
.contact__cnt h3 {
    color: #FFF;
    font-size: 70px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
}
.contact__exp {
    color: #FFF;
    font-size: 18px;
    letter-spacing: 0.05em;
    text-align: center;
    margin-top: 40px;
}
.contact__form__wrap {
    width: 100%;
    background: #FFF;
    padding: 50px 0;
    margin-top: 50px;
}
.contact__form__wrap form {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}
.contact__form__wrap form table {
    width: 100%;
}
.contact__form__wrap form table tr {
    padding: 30px 0;
    border-bottom: 1px solid #AAAAAA;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact__form__wrap form table tr th {
    width: 220px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact__form__wrap form table tr th p {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.contact__form__wrap form table tr th span {
    display: inline-block;
    color: #FFF;
    font-size: 14px;
    letter-spacing: 0.05em;
    background: #F02727;
    padding: 3px 7px;
}
.contact__form__wrap form table tr td {
    display: block;
    width: calc(100% - 270px);
}
.contact__form__wrap form table tr td input {
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.05em;
    border: 1px solid #AAAAAA;
    padding: 10px;
}
.contact__form__wrap form table tr td textarea {
    width: 100%;
    height: 150px;
    font-size: 16px;
    letter-spacing: 0.05em;
    border: 1px solid #AAAAAA;
    padding: 10px;
    resize: none;
}
.contact__form__submit {
    width: 300px;
    text-align: center;
    margin: 50px auto 0;
}
.contact__form__submit input {
    width: 100%;
    font-size: 18px;
    letter-spacing: 0.05em;
    background: #FFF;
    border-radius: 0;
    border: 1px solid #121212;
    padding: 20px 0;
    cursor: pointer;
    transition: all .3s ease;
}
.contact__form__submit input:hover {
    color: #FFF;
    background: #121212;
    border: 1px solid transparent;
    transition: all .3s ease;
}
.alert {
    width: 90%;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-align: center;
    margin: 0 auto;
}
.alert-danger {
    color: #F02727;
}
.alert-success {
    color: #20E34B;
}
@media screen and (max-width: 768px) {
    .contact {
        padding: 100px 0;
    }
    .contact__cnt h3 {
        font-size: 40px;
    }
    .contact__exp {
        font-size: 14px;
        margin-top: 30px;
    }
    .contact__form__wrap {
        padding: 10px 0 30px;
        margin-top: 30px;
    }
    .contact__form__wrap form table tr {
        padding: 20px 0;
        flex-wrap: wrap;
    }
    .contact__form__wrap form table tr th {
        width: 100%;
    }
    .contact__form__wrap form table tr th p {
        font-size: 14px;
    }
    .contact__form__wrap form table tr th span {
        font-size: 12px;
        padding: 3px 7px;
    }
    .contact__form__wrap form table tr td {
        width: 100%;
        margin-top: 15px;
    }
    .contact__form__wrap form table tr td input {
        font-size: 14px;
        padding: 10px;
    }
    .contact__form__wrap form table tr td textarea {
        height: 150px;
        font-size: 14px;
        border: 1px solid #AAAAAA;
        padding: 10px;
    }
    .contact__form__submit {
        width: 250px;
        margin: 20px auto 0;
    }
    .contact__form__submit input {
        font-size: 16px;
        border: 1px solid #121212;
        padding: 15px 0;
    }
    .contact__form__submit input:hover {
        color: #121212;
        background: #FFF;
        border: 1px solid #121212;
    }
    .alert {
        font-size: 14px;
    }
}
@media screen and (max-width: 390px) {
    .contact {
        padding: 10rem 0;
    }
    .contact__cnt h3 {
        font-size: 4rem;
    }
    .contact__exp {
        font-size: 1.4rem;
        margin-top: 3rem;
    }
    .contact__form__wrap {
        padding: 1rem 0 3rem;
        margin-top: 3rem;
    }
    .contact__form__wrap form table tr {
        padding: 2rem 0;
    }
    .contact__form__wrap form table tr th p {
        font-size: 1.4rem;
    }
    .contact__form__wrap form table tr th span {
        font-size: 1.2rem;
        padding: .3rem .7rem;
    }
    .contact__form__wrap form table tr td {
        margin-top: 1.5rem;
    }
    .contact__form__wrap form table tr td input {
        font-size: 1.4rem;
        padding: 1rem;
    }
    .contact__form__wrap form table tr td textarea {
        height: 15rem;
        font-size: 1.4rem;
        border: .1rem solid #AAAAAA;
        padding: 1rem;
    }
    .contact__form__submit {
        width: 25rem;
        margin: 2rem auto 0;
    }
    .contact__form__submit input {
        font-size: 1.6rem;
        border: .1rem solid #121212;
        padding: 1.5rem 0;
    }
    .contact__form__submit input:hover {
        border: .1rem solid #121212;
    }
    .alert {
        font-size: 1.4rem;
    }
}





/* footer */
footer {
    width: 100%;
    background: #FFF;
    padding: 20px 0;
}
.copy {
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: center;
}
@media screen and (max-width: 768px) {
    footer {
        padding: 15px 0;
    }
    .copy {
        font-size: 12px;
    }
}
@media screen and (max-width: 390px) {
    footer {
        padding: 1.5rem 0;
    }
    .copy {
        font-size: 1.2rem;
    }
}