@charset "utf-8";

/**************************************************
 * リセットcss
 */

html,
body,
h1,
h2,
h3,
p,
dl,
dt,
dd,
ul,
li {
    margin: 0;
    padding: 0;
    line-height: 1;
    color: #000;
    font-family: 'aktiv-grotesk', sans-serif;
    scroll-behavior: smooth;
    font-feature-settings: "palt";
}

body {
    font-size: 62.5%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

a:hover {
    opacity: 0.5;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    border: none;
}


/**************************************************
 * Slick Slider
 */

.slick-slide.dragging {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}


/**************************************************
 * ヘッダー
 */

.sp-only {
    display: none;
}

.header {
    margin-left: calc((50% - 1600px / 2) + 230px);
    padding: 50px 0 50px 70px;
}

.header__wrap {
    margin: 0 0 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    margin-right: 10%;
    position: fixed;
    top: 30px;
    z-index: 100;
}

.header__pc-nav--list {
    padding-left: 300px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 55px;
    right: 5%;
    z-index: 100;
    gap: 50px;
}

.header__pc-nav--item a {
    font-size: 1.8em;
    font-weight: bold;
}


/**************************************************
 * メインビジュアル
 */

.section__mv {
    margin: 0 auto 150px;
}

.section__mv .slide {
    margin-left: calc((50% - 1600px / 2) + 230px);
    padding-left: 70px;
    position: relative;
}

.section__mv .slide span {
    display: block;
}

.section__mv .slide img {
    width: 100%;
}

.section__mv .slick-dots{
    position: absolute;
    left: -3%;
    bottom: 0;
}

.section__mv .slick-dots li button{
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ccc;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: -9999px;
    cursor: pointer;
    border: none;
}

.section__mv .slick-dots li.slick-active button{
    background: #006ae4;
}


.section__mv .slick-dots li+li{
    margin-top: 8px;
}

.section__mv .slick-slide{
    overflow: hidden;
}

@keyframes fadezoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

.section__mv .slide .slick-active img{
    animation: fadezoom 4s 0s forwards;
}

.mv {
    width: 100vw;
    height: 100vh;
    background-image: url(../images/img_mv.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

/**************************************************
 * メイン共通
 */

.section__business,
.section__philosophy {
    margin: 0 auto 150px auto;
}

.section__wrap {
    margin-left: calc((50% - 1600px / 2) + 230px);
}

.section__title {
    margin-bottom: 100px;
}

.section__title h2 {
    font-size: 7.6em;
    margin-bottom: 20px;
}

.section__title p {
    font-size: 2em;
}


/* ビジネス */

.business__flex-box {
    display: flex;
    margin-bottom: 80px;
}

.business__cont {
    width: 30%;
    padding: 10px 50px;
    text-align: center;
}

.business__cont:hover {
    background-color: #80b4f1;
    transition: 0.3s;
}

.business__cont p {
    border-top: solid 3px #006ae4;
    border-bottom: solid 3px #006ae4;
    padding: 100px 0;
    font-size: 2em;
    line-height: 2;
}

.business__cont p:hover {
    border-top: solid 3px #fff;
    border-bottom: solid 3px #fff;
    transition: 0.3s;
    color: #fff;
}

.business__cont p span {
    margin: 0 5px;
}

.business__img--bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 70%;
}

.business01, .business02, .business03 {
    /* background-image: url(../images/img_unei.jpg); */
    background-image: url(../images/img_mv.jpg);
    background-size: contain;
}

/* .business02 {
    background-image: url(../images/img_outlet.jpg);
}

.business03 {
    background-image: url(../images/img_hanbaidaikou.jpg);
} */

.business__detail {
    font-size: 0.8em;
}


/* 企業理念 */

.section__philosophy .section__wrap {
    background-image: url(../images/img_philosophy_bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section__philosophy .section__title h2 {
    padding-top: 40px;
}

.section__philosophy .philosophy__cont {
    padding: 100px 0 200px 0;
}

.philosophy__text {
    text-align: center;
    font-size: 2em;
}


/* 会社概要 */

.section__company {
    background-color: #222222;
    padding: 40px 10px;
}

.section__company .section__title h2,
.section__company .section__title p,
.company__list {
    color: #fff;
}

table {
    width: 50%;
    margin: 0 auto 100px auto;
    font-size: 1.6em;
}

th {
    padding: 20px 0 20px 20px;
}


td {
    padding: 20px 0 20px 20px;
}

td p {
    color: #fff;
    margin-bottom: 20px;
}

td p:last-child {
    margin-bottom: 0;
}


/* お問い合わせ */
.section__contact {
    padding: 40px 10px;
    margin: 150px 0;
}

.contact {
    display: flex;
    justify-content: space-between;
}

.form {
    width: 60%;
}

.form__item {
    margin-bottom: 30px;
}

.form__label {
    margin-bottom: 15px;
    display: flex;
}

.form__label label {
    font-size: 24px;
    font-weight: bold;
}

.form__label span {
    background-color: #9b001b;
    padding: 8px;
    margin-left: 10px;
    color: #fff;
}

.form__item input,
.form__item textarea {
    width: 80%;
    padding: 15px;
    border: 1px solid #777;
}

.form__item textarea {
    height: 240px;
}

.form_btn {
    width: 70%;
    padding: 20px 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #000;
    border: 1px solid #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.6s;
    color: #fefefe;
}


/**************************************************
 * Modal
 */

.modal {
    display: none;
}

.modal.is-open {
    display: block;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal__container {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
}

.business_modal__close {
    width: 23px;
    position: fixed;
    right: 20px;
    top: 20px;
    transition: 0.3s;
    cursor: pointer;
}

.business_modal__close:hover {
    opacity: 0.6;
}

.business_modal__box{
    width: 640px;
    height: 100%;
    margin: 0 0 0 auto;
    padding: 150px 0 50px 100px;
    background: #fff;
    overflow-y: auto;
}

.business_modal__box .title{
    margin-bottom: 40px;
    padding-bottom: 40px;
    padding-right: 80px;
    border-bottom: 1px solid #000;
}

.business_modal__box .title .jp{
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: bold;
}

.business_modal__box .title .en{
    line-height: 100%;
    font-family: 'aktiv-grotesk', sans-serif !important;
    font-size: 4em;
    font-weight: bold;
    color: #fefefe;
}

.business_modal__box .headline{
    margin-bottom: 40px;
    padding-right: 100px;
    line-height: 150%;
    font-size: 22px;
    font-weight: bold;
}

.business_modal__box .text{
    padding-right: 100px;
    line-height: 180%;
    font-size: 14px;
}

.business_modal__box .pic{
    margin-top: 40px;
    padding-right: 100px;
}


/**************************************************
 * Animation Style
 */

@keyframes mmfadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes mmfadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.modal[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn .3s;
}

.modal[aria-hidden="false"] .modal__container {
    animation: mmslideIn .3s;
}

.modal[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .3s;
}

.modal[aria-hidden="true"] .modal__container {
    animation: mmslideOut .3s;
}

.modal .modal__container,
.modal .modal__overlay {
    will-change: transform;
}


/**************************************************
 * フッター
 */

.footer {
    padding: 50px 5% 0 70px;
    background-color: #eee;
}

.footer__wrap {
    margin: 0 0 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__nav-list {
    display: flex;
    gap: 50px;
}


.footer__nav-item a {
    font-size: 1.8em;
    font-weight: bold;
}

.copyright{
    text-align: center;
    padding: 20px 0;
    background-color: #eee;
}


/* ローディングアニメ */

.loader {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 9000;
}

.loader__img {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: none;
    z-index: 9999;
    width: 40%;
    /* filter: drop-shadow(5px 5px 5px #aaa); */
}


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

    /**************************************************
    * ヘッダー
    */

    .header {
        padding: 60px 0 40px 70px;
        margin-left: auto;
    }

    .header__pc-nav--list {
        padding-left: 205px;
        right: 20px !important;
        gap: 30px;
    }

    .header__pc-nav--item a {
        font-size: 1.6em;
    }

    /**************************************************
    * メインビジュアル
    */

    .section__mv {
        margin: 0 auto 100px;
    }

    .section__mv .slide {
        margin-left: auto;
    }

    /* メイン共通 */

    .section__wrap {
        margin: 0;
        padding-left: 20px;
    }

    .section__title h2 {
        font-size: 5em;
    }

    /* ビジネス */

    .business__cont {
        width: 50%;
        padding: 10px 20px;
    }

    .business__cont p {
        padding: 40px 0;
    }

    /* 企業理念 */

    .section__philosophy .philosophy__cont {
        padding: 0 0 100px 0;
    }

    .philosophy__text {
        font-size: 1.6em;
    }

    /* 会社概要 */

    table {
        width: auto;
    }

    /**************************************************
    * フッター
    */

    .footer {
        margin-left: auto;
    }

    .footer__nav-list {
        gap: 30px;
    }

    .footer__nav-item a {
        font-size: 1.6em;
    }
}


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

    /**************************************************
    * ヘッダー
    */

    .header {
        padding: 34px 0;
        margin: 0;
    }

    .header__nav {
        display: none;
    }

    .header__logo {
        top: 12px;
        left: 10px;
        width: 30%;
    }

    /* ハンバーガー */
    .header__sp-btn {

        display: block;
        position: fixed;
        top: 20px;
        right: 25px;
        height: 23px;
        cursor: pointer;
        z-index: 2;
    }

    .header__sp-btn span {
        display: block;
        position: relative;
        top: 10px;
        width: 22px;
        height: 3px;
        border-radius: 2px;
        background: #000;
        transition: 0.3s;
    }

    .header__sp-btn span::before,
    .header__sp-btn span::after {
        content: "";
        display: block;
        position: absolute;
        width: 22px;
        height: 3px;
        border-radius: 2px;
        background: #000;
        transition: 0.3s;
    }

    .header__sp-btn span::before {
        bottom: 8px;
    }

    .header__sp-btn span::after {
        top: 8px;
    }

    /* ハンバーガを閉じる */
    .header__sp-btn.open span {
        background: transparent;
    }

    .header__sp-btn.open span::before {
        bottom: 0;
        transform: rotate(45deg);
    }

    .header__sp-btn.open span::after {
        top: 0;
        transform: rotate(135deg);
    }

    /* ハンバーガーメニュー */
    .header__sp-nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fefefe;
        z-index: 1;
    }

    .header__sp-nav ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

    .header__sp-nav ul li {
        padding: 20px 0;
        color: #000;
        font-size: 2.8em;
        font-weight: bold;
    }

    /**************************************************
    * メインビジュアル
    */

    .section__mv {
        margin: 0 auto 80px;
    }

    .section__wrap {
        margin: 0;
    }

    .section__mv .slide {
        padding-left: 40px;
        margin-left: auto;
        position: relative;
    }

    .section__mv .slick-dots {
        position: absolute;
        left: -25px;
        bottom: 0;
    }

    /* メイン共通 */

    .section__title p {
        font-size: 1.8em;
    }

    .section__title {
        margin-bottom: 40px;
    }

    .section__title h2 {
        font-size: 3em;
    }

    .section__business, .section__philosophy {
        margin-left: 20px;
        margin-bottom: 80px;
    }

    /* ビジネス */
    .business__flex-box {
        margin-bottom: 40px;
    }

    .business__cont {
        padding: 10px;
        width: 50%;
    }

    .business__cont p {
        padding: 10px 0;
        font-size: 1.6em;
        line-height: 1.6;
    }

    .business__detail {
        font-size: 0.75em;
    }

    .business__img--bg {
        width: 50%;
    }

    /* 企業理念 */

    .section__philosophy .section__title h2 {
        padding-top: 10px;
    }

    .section__philosophy .philosophy__cont {
        padding: 0 0 40px 0;
    }

    .philosophy__text {
        font-size: 1.2em;
    }

    /* 会社概要 */

    table {
        width: 100%;
        font-size: 1.2em;
        margin-bottom: 40px;
    }

    th {
        padding: 20px 0 20px 0px;
    }

    /* お問い合わせ */
.section__contact {
    padding: 40px 10px;
    margin: 80px 0 0 0;
}

.contact {
    display: block;
}

.form {
    width: 100%;
}

.form__item {
    margin-bottom: 30px;
}

.form__label {
    margin-bottom: 15px;
    display: flex;
}

.form__label label {
    font-size: 16px;
    font-weight: bold;
}

.form__label span {
    background-color: #9b001b;
    padding: 8px;
    margin-left: 10px;
    color: #fff;
}

.form__item input,
.form__item textarea {
    width: 80%;
    padding: 15px;
    border: 1px solid #777;
}

.form__item textarea {
    height: 240px;
}

.form_btn {
    display: block;
    margin: 0 auto;
    width: 70%;
    padding: 20px 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #000;
    border: 1px solid #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.6s;
    color: #fefefe;
}

    /**************************************************
    * フッター
    */

    .footer {
        display: none;
    }

    /**************************************************
    * Modal
    */

    .business_modal__close {
        width: 17px;
        right: 40px;
        top: 40px;
    }

    .business_modal__close:hover {
        opacity: 0.6;
    }

    .business_modal__box {
        width: calc(100% - 40px);
        height: calc(100% - 40px);
        margin: 20px auto;
        padding: 60px 0 50px 6%;
    }

    .business_modal__box .title {
        padding-right: 10%;
    }

    .business_modal__box .title .jp {
        font-size: 1.2em;
    }

    .business_modal__box .title .en {
        font-size: 3em;
    }

    .business_modal__box .title .en span {
        font-size: 0.8em;
        margin: 0 5px;
    }

    .business_modal__box .headline {
        padding-right: 10%;
        font-size: 1.6em;
    }

    .business_modal__box .text {
        padding-right: 5%;
        font-size: 1.2em;
    }

    .business_modal__box .pic {
        padding-right: 10%;
    }
}




