@charset "UTF-8";


.br-sp {
    display: block;
}

.br-pc {
    display: none;
}

@media (min-width: 768px) {
    .br-sp {
        display: none;
    }

    .br-pc {
        display: block;
    }
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

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

html {
    -webkit-tap-highlight-color: transparent;
    font-size: 62.5%;
}

body {
    font-size: 14px;
    line-height: 1.7;
    color: #1F2C32;
    background: #fff;
    height: 100%;
    position: relative;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    /* font-family: 'Times New Roman', 'Baskerville', 'Yu Mincho Medium', 'YuMincho', 'Hiragino Mincho ProN', Meiryo, sans-serif; */
    /* font-family: 'ten-mincho', 'Times New Roman', 'Baskerville', 'Yu Mincho Medium', 'YuMincho', 'Hiragino Mincho ProN', Meiryo, sans-serif; */
    /* font-family: 'Yu Mincho Medium', 'YuMincho', 'Times New Roman', 'Baskerville', 'Hiragino Mincho ProN', Meiryo, sans-serif; */

}


/* ---------- page ------------------*/

#page {
    overflow: hidden;
    position: relative;
}

/*------------------- font -----------*/

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

a {
    text-decoration: none;
    color: #606060;
}

a:hover,
a:active,
a:focus {
    outline: none;
}

p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
figure {
    color: #000;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

/*---------------- animate-box --------*/

.animate-box {
    opacity: 0;
}


/*---------------- top-image --------*/

.top-image {
    height: 375px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .top-image {
        height: 350px;
    }
}

@media screen and (min-width: 1024px) {
    .top-image {
        height: 400px;
    }
}

/*--------------- header ---------------------*/

.headers {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.headers.-on {
    background-color: rgba(255, 255, 255, 0.98);
}


@media screen and (min-width: 768px) {
    .headers {
        padding: 2rem 0 2rem 2rem;
    }
}

.header-inner {
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media screen and (min-width:2000px) {
    .header-inner {
        max-width: 1400px;
    }

}

.logo-position {
    margin-right: auto;
}

.logo {
    text-align: center;
    line-height: 1em;
    color: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
    width: 18rem;
    margin-left: 1rem;
}

.logo:hover {
    opacity: .5;
}

@media screen and (min-width: 768px) {
    .logo {
        width: 33rem;
    }
}

@media screen and (min-width: 1024px) {
    .logo {
        width: 37rem;
    }
}

.logo-text {
    font-weight: bold;
    color: #000;
    font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
    .logo-text {
        font-size: 1.6rem;
    }
}

.header-cta {
    display: none;
}

@media screen and (min-width: 1200px) {
    .header-cta {
        display: flex;
        margin-right: 11rem;
        gap: 2rem;
    }
}

.header-cta-btn {
    transition: all .3s;
}

@media screen and (min-width: 768px) {
    .header-cta-btn {
        /* font-weight: bold; */
        font-size: 1.4rem;
        display: inline-block;
        padding: 1.5rem 0;
        width: 18rem;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 0.6em;
    }
}

.header-cta-btn-bgo {
    color: #fff;
    background-color: #FA9A2B;
    border: 1px solid #FA9A2B;
    transition: all .3s;
}

.header-cta-btn-bgo:hover {
    color: #FA9A2B;
    background-color: #fff;
    border: 1px solid #FA9A2B;
}

.header-cta-btn-bgg {
    color: #fff;
    background-color: #767676;
    border: 1px solid #767676;
    transition: all .3s;
}

.header-cta-btn-bgg:hover {
    color: #767676;
    background-color: #fff;
    border: 1px solid #767676;
}

.header-cta-download-icon {
    width: 1.67rem;
}

.header-cta-mail-icon {
    width: 1.5rem;
}

.header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    text-decoration: none;
    font-weight: bold;
}

/* ダウンロードボタン */
.header-cta-btn-bgo::before {
    content: "";
    display: inline-block;
    width: 2.3rem;
    height: 2.3rem;
    background: url("../img/common/icon-download.png") no-repeat center/contain;
}

/* ホバー時 */
.header-cta-btn-bgo:hover::before {
    background-image: url("../img/common/icon-download-or.png");
}

/* お問い合わせボタン */
.header-cta-btn-bgg::before {
    content: "";
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background: url("../img/common/icon-mail.png") no-repeat center/contain;
}

.header-cta-btn-bgg:hover::before {
    background-image: url("../img/common/icon-mail-gr.png");
}

/*--------------- global-nav ---------------------*/

.global-nav {
    display: none;
}

.global-nav-item {
    -webkit-transition: all .3s;
    transition: all .3s;
}

.global-nav-item:hover {
    opacity: .6;
}

@media screen and (min-width: 1024px) {
    .global-nav {
        display: block;
        background-color: #727171;
        height: 80px;
    }

    .global-nav-contents {
        top: 25px;
        right: 120px;
        position: absolute;
        list-style: none;
        display: flex;
        justify-content: space-around;
        width: 350px;
    }

    .global-nav-content {
        color: #606060;
        letter-spacing: 0.2em;
        font-size: 12px;
        font-weight: 600;
    }

    .global-nav-content:hover {
        opacity: .5;
        color: #606060;
    }
}


/*--------------- menu ---------------------*/

.menu {
    overflow: hidden;
}

#toggle {
    display: block;
    color: #fff;
    text-align: center;
    width: 55px;
    height: 55px;
    padding: 10px;
    position: fixed;
    top: 0;
    right: 2rem;
    z-index: 10000;
    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;
    /* border: 1px solid #fff; */
    /* border-radius: 50%; */
    cursor: pointer;
    /* box-shadow: 0px 0px 2px 0px grey; */
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media (min-width: 768px) {
    #toggle {
        width: 67px;
        height: 67px;
        top: 2rem;
    }
}

@media (min-width: 1024px) {
    #toggle {
        width: 67px;
        height: 67px;
    }
}

#toggle:hover {
    opacity: .35;
}

#toggle.toggle-on {
    border: 1px solid #fff;
    background-color: transparent;
    top: 1rem;
}

#toggle.toggle-on:hover {
    opacity: .65;
}

.trigger,
.trigger span {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.trigger {
    position: relative;
    width: 25px;
    height: 20px;
    top: 0px;
}

.trigger.active {
    position: relative;
    width: 25px;
    height: 20px;
    top: -1px;
    left: 0;
}

.trigger span {
    position: absolute;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    border-radius: 4px;
}

.trigger .triger-title {
    position: absolute;
    left: 3px;
    width: 100%;
    top: 20px;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.2em;
}

.trigger.active .triger-title {
    display: none;
}

.trigger span:nth-of-type(1) {
    top: 2px;
    /* box-shadow: 0px 1px 1px 0px grey; */
}

.trigger span:nth-of-type(2) {
    top: 9px;
    width: 100%;
    /* box-shadow: 0px 1px 1px 0px grey; */
}

.trigger span:nth-of-type(2)::after {
    position: absolute;
    top: 0px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #fff;
    border-radius: 4px;
    -webkit-transition: all .4s;
    transition: all .4s;
    opacity: 0;
}

.trigger span:nth-of-type(3) {
    bottom: 2px;
    right: 0;
    width: 100%;
    /* box-shadow: 0px 1px 1px 0px grey; */
}

.trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) scale(0);
    transform: translateY(8px) scale(0);
    opacity: 0;
    box-shadow: none;
}

.trigger.active span:nth-of-type(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 10px;
    width: 100%;
    background-color: #fff;
    box-shadow: none;
}

.trigger.active span:nth-of-type(2)::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 1;
    background-color: #fff;
    box-shadow: none;
}

.trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) scale(0);
    transform: translateY(-8px) scale(0);
    opacity: 0;
    box-shadow: none;
}

.menu-trigger::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 30px;
    height: 30px;
    margin: -16px 0 0 -16px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);
    transition: all .1s;
    opacity: 0;
}

.menu-trigger.active::after {
    /* -webkit-animation: circle .5s;
    animation: circle .5s; */
}

@-webkit-keyframes circle {
    0% {
        -webkit-transform: scale(.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(3.5);
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        transform: scale(.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}


/* ------------------- toggleWrap ---------------- */

.toggleWrap {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: -1;
    height: 100vh;
    overflow: auto;
    padding-bottom: 120px;
}

@media (min-width: 768px) {
    .toggleWrap {
        width: 30%;
    }

}

.toggleWrap-contents {
    padding: 20px 20px 0 20px;
}

.menu-list-rule-position {
    padding: 0px 20px 0 20px;
}

@media (min-width: 768px) {
    .toggleWrap-contents {
        padding: 0;
        padding-top: 6.5rem;
        display: flex;
        width: 90%;
        max-width: 980px;
        margin: 0 auto;
        position: relative;
        justify-content: center;
    }

    .menu-list-rule-position {
        position: relative;
        padding: 0;
        width: 90%;
        max-width: 980px;
        margin: 100px auto;
    }
}

.toggleWrap.open {
    display: block;
    visibility: inherit;
    opacity: 1;
    z-index: 1000;
    background-color: #6c6c6c;
}

.mainNav {
    padding: 0;
    list-style-type: none;
}

.menu-logo {
    margin: 43px 0 0 20px;
}

.menu-logo img {
    width: 167px;
}

@media (min-width: 768px) {
    .menu-logo {
        width: 235px;
        position: relative;
        margin: 63px 0 0 10%;
    }

    .menu-logo img {
        width: 235px;
    }
}

.menu-footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: #969285;
}

.menu-footer .copyright {
    background-color: inherit;
}

.navItem {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 0;
    font-size: 25px;
    line-height: 1.2em;
    letter-spacing: 0.1em;
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media (min-width: 768px) {
    .navItem {
        font-size: 30px;
    }
}

.mainNav .navItem:hover {
    opacity: .5;
}

.nav-sub {
    font-size: 12px;
    font-weight: bold;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

@media (min-width: 768px) {
    .nav-sub {
        font-size: 14px;
    }
}

.menu-list-sns {
    width: 205px;
    margin: 30px 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
}

@media screen and (min-width: 768px) {
    .menu-list-sns {
        margin: 0 0 30px 0;
    }
}

.menu-list-sns li a {
    width: 55px;
    height: 55px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: block;
    position: relative;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.menu-list-sns li a:hover {
    opacity: .5;
}

.sns-icons img {
    width: 10px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.sns-insta img {
    width: 15px;
}

.sns-linkdin img {
    width: 15px;
}

.menu-list-link {
    list-style: none;
    width: 205px;
    margin-bottom: 30px;
}

.menu-list-link li {
    border-top: 1px solid #fff;
}

.menu-list-link li:last-of-type {
    border-bottom: 1px solid #fff;
}

.menu-list-link li a {
    color: #fff;
    padding: 15px 0 15px 10px;
    display: block;
    position: relative;
    font-family: 'Robot', sans-serif;
    letter-spacing: 0.01em;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    font-size: 12px;
}

/* @media screen and (min-width: 768px) {
    .menu-list-link li a {
        font-size: 14px;
    }
} */

.menu-list-link li a:hover {
    opacity: .5;
}

.menu-list-link li a:after {
    position: absolute;
    z-index: 1000;
    content: '';
    margin: 0 auto;
    top: 22px;
    right: 20px;
    width: 13px;
    height: 11px;
    background-image: url("../img/common/footer-contents-list-link-icon.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.menu-list-rule {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 230px;
    line-height: 1;
    letter-spacing: .2em;
}

.menu-list-rule li:before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 1px;
    background-color: #fff;
    margin-right: 5px;
    position: relative;
    top: -3px;
    left: 0;
    z-index: 100;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.menu-list-rule li {
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.menu-list-rule li:hover {
    opacity: .5;
}

@media (min-width: 768px) {
    .menu-list-rule {
        width: 404px;
    }
}

@media (min-width: 1024px) {
    .menu-list-rule {
        width: 404px;
    }
}

/* .menu-list-rule li+li {
    border-left: 1px solid #fff;
    padding-left: 15px;
} */

.menu-list-rule li>a {
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.01em;
    font-weight: normal;
}

@media (min-width: 768px) {
    .menu-list-rule li>a {
        font-size: 14px;
    }
}

/* .open {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}  */

/* .open {
    opacity: .8;
    visibility: inherit;
    overflow: inherit;
} */


/* .hide {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
} */


/* メニューオープン時のみ、メニューの後ろのコンテンツをスクロールさせない
  iOS safariには別途対応が必要（jQueryに記述）*/

.no-scroll {
    overflow: hidden;
}


/* アニメーションはメニューの開閉時のみでいいので
  .toggleWrapに書かず、別にclassを用意 */

.animation {
    -webkit-transition-property: opacity, visibility;
    transition-property: opacity, visibility;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
}

#wrapper {
    /*    margin-top: -100px;*/
    position: fixed;
    width: 100%;
    z-index: -1;
}

/*---------------- footer --------*/

.footer {
    padding: 0.5rem 0;
    width: 100%;
    background-color: #767676;
}

@media screen and (min-width: 768px) {
    .footer {
        padding: 0.5rem 0;
    }
}

/*---------------- copyright --------*/

.copyright-position {
    width: 90%;
    margin: 0 auto;
}

.copyright-position-item {
    letter-spacing: 0.02em;
    color: #fff;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .copyright-position-item {}
}

.section-inner-anker {
    margin-top: -80px;
    padding-top: 80px;
}

.section-inner-anker-about {
    margin-top: -220px;
    padding-top: 220px;
}

/*--------------------- #newsList ---------------*/

#newsList {
    height: 100%;
    list-style-type: none;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

#newsList li {
    /* margin-bottom: 55px; */
}

#newsList li span {
    display: block;
}

#newsList li span.catNametitle {
    color: #606060;
    font-weight: 600;
}

.catNametitle {
    -webkit-transition: all .3s;
    transition: all .3s;
}

.cell-category-position {
    position: absolute;
    width: 100%;
    top: 34%;
    left: 25px;
}

span.catName {
    font-size: 26px;
    line-height: 1em;
}

@media (min-width: 1024px) {
    span.catName {
        font-size: 36px;
    }
}

span.catName-sub {
    font-weight: bold;
    font-size: 14px;
    line-height: 1em;
    margin-top: 5px;
}

@media (min-width: 1024px) {
    span.catName-sub {
        font-size: 20px;
    }
}

span.catName-sub:before {
    content: "";
    display: inline-block;
    width: 20.3%;
    height: 1px;
    background-color: #fff;
    margin-right: 10px;
    position: relative;
    top: -6px;
    left: 0px;
}

span.catName-sub.saiyou:before {
    width: 13%;
}

@media (min-width: 768px) {
    span.catName-sub:before {
        width: 17.3%;
    }

    span.catName-sub.saiyou:before {
        width: 15%;
    }

}

@media (min-width: 768px) {
    span.catName-sub:before {
        width: 17.3%;
    }

    span.catName-sub.saiyou:before {
        width: 12%;
    }

}

/* ---------- btn ------------------*/

.btn {
    display: inline-block;
    width: 230px;
    height: 53px;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    line-height: 42px;
    font-size: 12px;
    outline: none;
    letter-spacing: 0.15em;
    line-height: 53px;
}

@media screen and (min-width: 768px) {
    .btn {
        width: 160px;
        height: 53px;
    }
}

.btn:before,
.btn:after {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
}

.btn,
.btn:before,
.btn:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.btn {
    background-color: #606060;
    border: 2px solid #606060;
    color: #fff;
    /*	line-height: 50px;*/
}

.btn:hover {
    background-color: #fff;
    border-color: #606060;
    color: #606060;
    border: 2px solid #606060;
}

.btn-text {
    /*    margin-top: 100px;*/
    text-align: center;
}

.btn-about {
    background-color: #606060;
    border: 2px solid #606060;
    color: #fff;
}

.btn-about:hover {
    background-color: #fff;
    color: #606060;
}

@media screen and (min-width: 768px) {
    .btn-text.company {}

    .btn-company {
        width: 210px;
        height: 50px;
        line-height: 47px;
    }
}


.section-about-concept-title-position {
    margin: 0 0 45px 0;
}

@media (min-width: 768px) {
    .section-about-concept-title-position {
        margin: 0 0 80px 0;
    }
}

.our-news-link-position {
    margin-top: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0px auto 0;
}

@media (min-width: 768px) {
    .our-news-link-position {
        margin-top: 30px;
    }
}

.our-news-link-position>p {
    text-align: right;
    margin-right: 10px;
}

@media (min-width: 768px) {
    .our-news-link-position>p {
        margin-right: 0px;
    }
}

.our-news-link-position>p a {
    font-size: 16px;
    color: #fa9a2b;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.our-news-link-position>p a:hover {
    opacity: .5;
}

.our-works-link-position>p {
    text-align: center;
}

.our-contact-link-position>p {
    text-align: center;
}

/* ---------- btn ------------------*/

.section-cta {
    background-color: #FA9A2B;
    padding: 4rem;
}

@media screen and (min-width: 768px) {
    .section-cta {
        padding: 4rem;
    }
}

.section-cta-contents {
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

@media screen and (min-width: 768px) {
    .section-cta-contents {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }
}

.section-cta-content {}

@media screen and (min-width: 768px) {
    .section-cta-content {}
}


/* 立体ボタン */
.cta-btn {
    position: relative;
    display: inline-block;
    padding: 2rem 6rem;
    background: #fff;
    color: #ED6103;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 4px 0 #bb5b0f;
    transition: transform .1s, box-shadow .1s;
    width: 90%;
    margin: 0 auto;
    line-height: normal;
    text-align: center;
    font-size: 2rem;
    min-width: 30rem;
    border: 1px solid;
}

.cta-btn:hover {
    transform: translateY(4px);
    box-shadow: none;
    opacity: .9;
}

.cta-btn:before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 2.3rem;
    height: 2.3rem;
    background: url(../img/common/icon-download-or-dn.png) no-repeat center / contain;
}

@media screen and (min-width: 768px) {
    .cta-btn {
        width: 100%;
        min-width: 30rem;
    }
}

.cta-btn.-download:before {
    top: 2.5rem;
    left: 4rem;
    background: url(../img/common/icon-download-or-dn.png) no-repeat center / contain;
}

.cta-btn.-contact:before {
    top: 2.4rem;
    left: 5.8rem;
    background: url(../img/common/icon-mail-or-dn.png) no-repeat center / contain;
}