﻿@keyframes headAnim {
    0% {
        top: -100px
    }
    100% {
        top: 0
    }
}

@media only screen and (min-width: 961px) {
    #page-index .header {
        position: absolute;
        background-color: rgba(255, 255, 255, 0)
    }
    #page-index .header__logo {
        background-image: url(./img/logo_site_w.svg)
    }
    #page-index .header .global-nav__link {
        color: #fff
    }
    #page-index .header .global-nav__link:hover {
        color: #fff
    }
    #page-index .header__tel {
        color: #fff
    }
    #page-index .header.js-scroll {
        position: fixed;
        background-color: rgba(255, 255, 255, 0.9);
        animation: headAnim 0.8s ease forwards
    }
    #page-index .header.js-scroll .header__logo {
        background-image: url(./img/logo_site.svg)
    }
    #page-index .header.js-scroll .header__tel {
        color: #2d4770
    }
    #page-index .header.js-scroll .global-nav__link {
        color: #333
    }
    #page-index .header.js-scroll .global-nav__link:hover {
        color: #2d4770
    }
}

.header {
    position: fixed;
    width: 100%;
    z-index: 999;
    transition: all .3s ease;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9);
    height: 90px
}

.header.js-scroll {
    height: 60px
}

.header.js-scroll .header__mail {
    width: 60px
}

.header.js-scroll .header__tel {
    color: #2d4770;
    right: 70px;
    bottom: 10px
}

.header.js-scroll .mega-menu {
    top: 60px;
    padding-top: 0;
}

.header.js-scroll .nav-lang {
    right: 70px;
    top: 5px;
}

.header__inner {
    position: relative;
    height: 100%;
    margin: 0 auto;
    padding: 0 0 0 330px;
    transition: all .3s ease
}

.header__logo {
    display: block;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 44px;
    white-space: nowrap;
    text-indent: 400%;
    overflow: hidden;
    background: url(./img/logo_site.svg) no-repeat center/contain
}

.header .global-nav {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    height: 100%
}

.header .global-nav__list {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center
}

.header .global-nav__item {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    height: 100%;
    position: relative;
    padding: 0 18px
}

.header .global-nav__item:first-child {
    padding-left: 0
}

.header .global-nav__item:first-child::before {
    content: none
}

.header .global-nav__item::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 15px;
    background-color: #e5e5e5;
    left: -2px;
    top: calc(50% - 7.5px);
    transform: rotate(25deg)
}

.header .global-nav__item.has-menu .global-nav__link::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 0;
    background-color: #f53f1d;
    top: 100%;
    left: calc(50% - 0.5px);
    transition: all .3s ease
}

.header .global-nav__item.has-menu .global-nav__link:hover::before, .header .global-nav__item.has-menu .global-nav__link.is-current::before {
    height: 47px;
    transition-delay: .3s
}

.header .global-nav__link {
    display: block;
    position: relative;
    text-decoration: none;
    color: #333;
    border-bottom: 2px solid transparent
}

.header .global-nav__link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #f53f1d;
    left: 0;
    bottom: -1px;
    transform: scale(0, 1);
    transition: all .3s ease
}

.header .global-nav__link:hover, .header .global-nav__link.is-current {
    color: #2d4770
}

.header .global-nav__link:hover::after, .header .global-nav__link.is-current::after {
    transform: scale(1)
}

.header .global-nav__link.is-current + .mega-menu{
    z-index: 1;
}

.header .mega-menu {
    position: fixed;
    top: 60px;
    padding-top: 30px;
    width: 1054px;
    max-width: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 0;
    overflow: hidden;
    transition: height .3s ease-in
}

.header .mega-menu__inner {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
    padding: 34px 34px 56px 0;
}

.header .mega-menu__title {
    display: block;
    width: 230px
}

.header .mega-menu__title a {
    display: inline-block;
    position: relative;
    font-size: 2.2rem;
    font-family: "Noto Sans JP", sans-serif;
    color: #2d4770;
    text-decoration: none;
    padding-right: 36px;
    border-bottom: 2px solid #f53f1d;
    padding: 0 36px 8px 34px
}

.header .mega-menu__title a::after {
    content: '';
    position: absolute;
    width: 31px;
    height: 9px;
    background: url(./img/ico_mm01.svg) no-repeat center/contain;
    right: 0;
    bottom: 20px;
    transition: all .3s ease
}

.header .mega-menu__title a:hover::after {
    right: -10px
}

.header .mega-menu__list {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100% - 230px);
    margin: -28px -10px 0
}

.header .mega-menu__list .menu-wrap {
    width: 50%;
    padding: 0 10px;
    margin-top: 28px
}

.header .mega-menu__list .menu-wrap--l {
    width: 100%
}

.header .mega-menu__list .menu-wrap__in {
    background-color: #f3f3f5;
    padding: 20px 30px
}

.header .mega-menu__list .menu-wrap__title {
    display: block;
    border-bottom: 1px solid #f53f1d;
    padding-bottom: 5px;
    text-decoration: none
}

.header .mega-menu__list .menu-wrap__title span {
    display: inline-block;
    position: relative;
    font-weight: bold;
    padding-right: 23px
}

.header .mega-menu__list .menu-wrap__title span::after {
    content: '';
    position: absolute;
    width: 13px;
    height: 5px;
    background: url(./img/ico_mm02.svg) no-repeat center/contain;
    right: 0;
    top: calc(50% - 2.5px);
    transition: all .3s ease
}

.header .mega-menu__list .menu-wrap__title span:hover::after {
    right: -5px
}

.header .mega-menu__list .menu-wrap__list {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: column;
    height: 140px;
    margin-top: 15px
}

.header .mega-menu__list .menu-wrap__list li {
    width: 33.33333%;
    padding: 5px 0
}

.header .mega-menu__list .menu-wrap__list li a {
    display: block;
    position: relative;
    padding-left: 17px;
    text-decoration: none;
    color: #333;
    line-height: 1.5
}

.header .mega-menu__list .menu-wrap__list li a::before {
    content: '';
    position: absolute;
    width: 9px;
    height: 1px;
    background-color: #f53f1d;
    top: calc(50% - 0.5px);
    left: 0;
    transition: all .3s ease
}

.header .mega-menu__list .menu-wrap__list li a:hover {
    padding-left: 25px
}

.header .mega-menu__list .menu-wrap__list li a:hover::before {
    width: 17px
}

.header .nav-lang {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    position: absolute;
    right: 110px;
    top: 15px
}

.header .nav-lang__item {
    position: relative;
    padding: 0 10px
}

.header .nav-lang__item:first-child {
    padding-left: 0
}

.header .nav-lang__item:first-child::before {
    content: none
}

.header .nav-lang__item::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 10px;
    background-color: #e5e5e5;
    left: 0px;
    top: calc(50% - 5px)
}

.header .nav-lang__link {
    font-size: 1.3rem;
    line-height: 1;
    color: #b2b2b2;
    text-decoration: none
}

.header .nav-lang__link:hover, .header .nav-lang__link.is-current {
    color: #f53f1d;
    font-weight: bold
}

.header .nav-lang__link:hover::after, .header .nav-lang__link.is-current::after {
    transform: scale(1)
}

.header .nav-lang__link.is-current {
    pointer-events: none
}

.header__tel {
    position: absolute;
    right: 110px;
    bottom: 15px;
    color: #2d4770;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    text-decoration: none;
    line-height: 1;
    pointer-events: none
}

.header__mail {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: absolute;
    text-decoration: none;
    background-color: #f53f1d;
    width: 90px;
    height: 100%;
    right: 0;
    top: 0
}

.header__mail img {
    display: block
}

.header__mail:hover img {
    transform: rotateY(360deg);
    transition: all .5s ease
}

@media only screen and (max-width: 1024px) {
    .header__inner {
        padding-left: 255px
    }
    .header__logo {
        width: 220px
    }
    .header__tel {
        font-size: 1.7rem
    }
}

@media only screen and (max-width: 959px) {
    .header {
        background-color: #fff;
        height: 60px
    }
    .header.js-scroll .nav-lang {
        right: 5px
    }
    .header__inner {
        -js-display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
        padding: 0 60px 0 230px
    }
    .header__logo {
        width: 209px;
        height: 33px;
        text-align: left;
        background-image: url(./img/logo_site.svg)
    }
    .header .global-nav {
        display: block;
        padding: 15px 10px
    }
    .header .global-nav__list {
        width: 100%;
        margin-top: 20px
    }
    .header .global-nav__item {
        display: block;
        width: 25%;
        padding: 0;
        position: static
    }
    .header .global-nav__item::before {
        content: none
    }
    .header .global-nav__item:first-child {
        display: none
    }
    .header .global-nav__item.has-menu .global-nav__link {
        pointer-events: none
    }
    .header .global-nav__item.has-menu .global-nav__link::before {
        top: calc(100% - 5px);
        width: 0;
        height: 0;
        border: 4px solid rgba(245, 63, 29, 0);
        border-bottom: 0 none;
        border-top: 5px solid #f53f1d;
        background-color: rgba(245, 63, 29, 0);
        left: calc(50% - 4px);
        transition: all 0s
    }
    .header .global-nav__item.has-menu .global-nav__link:hover::before, .header .global-nav__item.has-menu .global-nav__link.is-current::before {
        border: 0 none;
        width: 1px;
        height: 40px;
        background-color: #f53f1d;
        left: calc(50% - 0.5px);
        transition: height 1s ease;
        transition-delay: .3s
    }
    .header .global-nav__link {
        color: #fff;
        padding: 10px 0;
        text-align: center;
        font-size: 1.4rem;
        font-weight: bold
    }
    .header .global-nav__link::after {
        width: 40px;
        left: calc(50% - 20px);
        bottom: 5px;
        transform: scale(1)
    }
    .header .global-nav__link:hover, .header .global-nav__link.is-current {
        color: #fff
    }
    .header .global-nav .nav-lang {
        -js-display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex
    }
    .header .mega-menu {
        position: absolute;
        top: calc(100% + 10px);
        width: calc(100vw - 30px);
        max-width: none;
        padding-top: 0;
    }
    .header .mega-menu__inner {
        padding: 20px 15px 30px;
        margin: 0
    }
    .header .mega-menu__title {
        display: block;
        width: 100%
    }
    .header .mega-menu__title a {
        font-size: 1.6rem;
        padding: 0 30px 0 0
    }
    .header .mega-menu__title a::after {
        width: 20px;
        bottom: 10px
    }
    .header .mega-menu__list {
        width: 100%;
        margin: 0
    }
    .header .mega-menu__list .menu-wrap {
        width: 100%;
        padding: 0;
        margin-top: 10px
    }
    .header .mega-menu__list .menu-wrap:first-child {
        margin-top: 20px
    }
    .header .mega-menu__list .menu-wrap__in {
        padding: 10px
    }
    .header .mega-menu__list .menu-wrap__title {
        font-size: 1.4rem
    }
    .header .mega-menu__list .menu-wrap__list {
        display: block;
        height: auto;
        margin-top: 10px
    }
    .header .mega-menu__list .menu-wrap__list li {
        width: auto;
        padding: 0;
        margin-top: 6px
    }
    .header .mega-menu__list .menu-wrap__list li a {
        font-size: 1.4rem;
        padding-left: 14px
    }
    .header .nav-lang {
        display: none;
        right: 5px;
        top: 5px;
        transform: translateY(0)
    }
    .header .nav-lang__item {
        padding: 0 2px
    }
    .header .nav-lang__item::before {
        content: none
    }
    .header .nav-lang__link {
        display: block;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 30px;
        background-color: #fff
    }
    .header__tel {
        display: none
    }
    .header__mail {
        width: 60px
    }
}

@keyframes menuFadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}


/* @media only screen and (max-width: 959px) { */
    .drawer.drawer--top .drawer-hamburger {
        display: block;
        position: relative;
        box-sizing: border-box;
        width: 60px;
        height: 60px;
        background-color: #f3f3f5;
        padding: 20px;
        overflow: visible
    }
    .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon {
        height: 2px;
        background: -moz-linear-gradient(left, #2d4770 2px, #f3f3f5 2px, #f3f3f5 4px, #2d4770 4px);
        background: -webkit-linear-gradient(left, #2d4770 2px, #f3f3f5 2px, #f3f3f5 4px, #2d4770 4px);
        background: linear-gradient(to right, #2d4770 2px, #f3f3f5 2px, #f3f3f5 4px, #2d4770 4px);
        margin: 0;
        width: 100%
    }
    .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::before, .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::after {
        width: 100%;
        height: 2px;
        background: -moz-linear-gradient(left, #2d4770 2px, #f3f3f5 2px, #f3f3f5 4px, #2d4770 4px);
        background: -webkit-linear-gradient(left, #2d4770 2px, #f3f3f5 2px, #f3f3f5 4px, #2d4770 4px);
        background: linear-gradient(to right, #2d4770 2px, #f3f3f5 2px, #f3f3f5 4px, #2d4770 4px)
    }
    .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::before {
        top: -8px
    }
    .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::after {
        top: 8px;
        width: calc(100% - 6px)
    }
    .drawer.drawer--top .drawer-nav {
        background-color: rgba(0, 0, 0, 0.8);
        transition: opacity 0.3s ease;
        opacity: 0
    }
    .drawer.drawer--top.drawer-open .drawer-toggle .drawer-hamburger-icon {
        background: transparent
    }
    .drawer.drawer--top.drawer-open .drawer-toggle .drawer-hamburger-icon::before, .drawer.drawer--top.drawer-open .drawer-toggle .drawer-hamburger-icon::after {
        top: 0;
        left: -2px;
        background: none;
        background-color: #2d4770;
        width: calc(100% + 4px);
        height: 2px;
        border-radius: 3px
    }
    .drawer.drawer--top.drawer-open .drawer-nav {
        top: 60px;
        opacity: 1;
        height: calc(100% - 60px)
    }
    .drawer.drawer--top.drawer-open .drawer-overlay {
        display: none
    }
    .drawer--top.drawer-open .drawer-nav {
        top: 0;
        overflow: auto;
        -webkit-overflow-scrolling: touch
    }
    .drawer--left.drawer-open .drawer-nav, .drawer--left .drawer-hamburger, .drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
        left: 0;
        overflow: auto;
        -webkit-overflow-scrolling: touch
    }
    .drawer--right.drawer-open .drawer-nav, .drawer--right .drawer-hamburger, .drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
        right: 0;
        overflow: auto;
        -webkit-overflow-scrolling: touch
    }
/* } */

.recruit-wrap {
    background: url(./img/index/img_recruit.jpg) no-repeat center/cover;
    width: 100%;
    height: 300px
}

.recruit-wrap__link {
    display: block;
    position: relative;
    text-decoration: none;
    width: 600px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    background-color: #2d4770;
    padding: 30px 10px 45px;
    transform: translateY(200px)
}

.recruit-wrap__link::after {
    content: '';
    position: absolute;
    width: 61px;
    height: 9px;
    background: url(./img/index/ico_arrow_w.svg) no-repeat center/contain;
    right: 20px;
    bottom: 20px;
    transition: all .3s ease
}

.recruit-wrap__link:hover {
    transform: translateY(196px);
    box-shadow: 0 20px 20px -20px rgba(0, 0, 0, 0.8)
}

.recruit-wrap__link:hover::after {
    right: 10px
}

.recruit-wrap__link strong {
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    line-height: 1.2
}

.recruit-wrap__link img {
    display: block;
    margin: 20px auto 0
}

.recruit-wrap__link p {
    margin-top: 25px;
    font-weight: bold
}

.recruit-wrap+.sitemap {
    padding: 190px 15px 55px
}

@media only screen and (max-width: 767px) {
    .recruit-wrap {
        background-image: url(./img/index/img_recruit_sp.jpg);
        height: 142px
    }
    .recruit-wrap__link {
        width: 315px;
        padding: 18px 10px 35px;
        transform: translateY(112px)
    }
    .recruit-wrap__link:hover {
        transform: translateY(100px)
    }
    .recruit-wrap__link strong {
        font-size: 1.8rem
    }
    .recruit-wrap__link p {
        margin-top: 20px;
        line-height: 1.73
    }
    .recruit-wrap+.sitemap {
        padding: 240px 15px 20px
    }
}

.sitemap {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    background-color: #f3f3f5;
    padding: 50px 15px
}

.sitemap-item {
    position: relative;
    padding: 0 50px;
    border-right: 1px solid #e5e5e5
}

.sitemap-item:first-child {
    border-left: 1px solid #e5e5e5
}

.sitemap-item:nth-child(2) {
    border-right: 0 none;
    padding-right: 0
}

.sitemap-item__link {
    text-decoration: none;
    font-weight: bold
}

.sitemap-item__link:hover {
    text-decoration: underline;
    opacity: 0.8
}

.sitemap-item--product {
    padding-right: 0
}

.sitemap-item--product .sitemap-list {
    width: 400px;
    margin-top: -5px
}

.sitemap-item--product .sitemap-subnav {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap
}

.sitemap-item--product .sitemap-subnav li {
    width: 50%
}

.sitemap-item--product .sitemap-subnav li:first-child {
    margin-top: 5px
}

.sitemap-item--product .sitemap-subnav li:nth-child(even) {
    padding-left: 10px
}

.sitemap-list__item {
    margin-top: 5px
}

.sitemap-list__link {
    text-decoration: none
}

.sitemap-list__link:hover {
    text-decoration: underline;
    opacity: 0.8
}

.sitemap-subnav li {
    margin-top: 5px
}

.sitemap-subnav li:first-child {
    margin-top: 0
}

.sitemap-subnav li a {
    position: relative;
    text-decoration: none;
    color: #333;
    padding-left: 16px
}

.sitemap-subnav li a::after {
    content: '';
    position: absolute;
    width: 9px;
    height: 1px;
    background-color: #999;
    left: 0;
    top: calc(50% - 0.5px)
}

.sitemap-subnav li a:hover {
    text-decoration: underline;
    opacity: 0.8
}

@media screen and (max-width: 960px) {
    .sitemap {
        font-size: 1.4rem
    }
    .sitemap-item {
        padding: 0 15px
    }
    .sitemap-item--product .sitemap-list {
        width: 360px
    }
}

@media only screen and (max-width: 767px) {
    .sitemap {
        display: block;
        padding: 30px 15px 20px;
        font-size: 1.3rem
    }
    .sitemap-item {
        padding: 10px 0;
        border-right: 0 none;
        border-top: 1px solid #e5e5e5
    }
    .sitemap-item:first-child {
        border-left: 0 none
    }
    .sitemap-item:first-child .sitemap-list {
        position: relative;
        padding-left: calc(50% + 10px)
    }
    .sitemap-item:first-child .sitemap-list__item:first-child {
        position: absolute;
        left: 0;
        top: 0;
        width: 50%;
        margin-top: 0
    }
    .sitemap-item:nth-child(2) .sitemap-list {
        -js-display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .sitemap-item:nth-child(2) .sitemap-list__item {
        width: 50%
    }
    .sitemap-item:nth-child(2) .sitemap-list__item:nth-child(even) {
        padding-left: 10px
    }
    .sitemap-item--product {
        border-top: 0 none;
        padding-top: 0;
        margin-top: -10px;
        border-bottom: 1px solid #e5e5e5
    }
    .sitemap-item--product .sitemap-list {
        width: auto
    }
    .sitemap-list__item {
        margin-top: 3px
    }
    .sitemap-subnav li {
        margin-top: 3px
    }
    .sitemap-subnav li:first-child {
        margin-top: 3px
    }
}

.footer {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding-top: 55px
}

.footer__logo {
    display: block;
    padding: 0 15px
}

.footer__logo img {
    display: block
}

.footer__logo:hover {
    opacity: 0.8
}

.footer__address {
    padding: 0 15px;
    line-height: 1.83
}

.footer__sns {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 10px
}

.footer__sns li {
    padding: 0 5px
}

.footer__sns a {
    display: block
}

.footer__sns a:hover {
    transform: rotate(10deg)
}

.footer__sns img {
    display: block
}

.footer__copyright {
    width: 100%;
    margin-top: 55px;
    text-align: center;
    color: #fff;
    background-color: #2d4770;
    padding: 5px;
    font-size: 1.3rem
}

@media only screen and (max-width: 767px) {
    .footer {
        padding-top: 50px;
        text-align: center
    }
    .footer__address {
        margin-top: 20px
    }
    .footer__sns {
        margin-top: 20px
    }
    .footer__sns li {
        padding: 0 10px
    }
    .footer__copyright {
        margin-top: 20px
    }
}

@keyframes bdAnim {
    0% {
        height: 0
    }
    60% {
        height: 65px
    }
    100% {
        height: 65px
    }
}

.index-hero {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    height: 100vh
}

.index-hero::before {
    content: 'SCROLL';
    position: absolute;
    right: 2px;
    bottom: 85px;
    font-size: 1rem;
    line-height: 1;
    color: #f53f1d;
    transform: rotate(90deg)
}

.index-hero::after {
    content: '';
    position: absolute;
    right: 22px;
    top: calc(100% - 65px);
    width: 1px;
    background-color: #f53f1d;
    animation: bdAnim 3s linear infinite
}

.index-hero .ofi {
    z-index: -1;
    transition: all 0s
}

.index-hero__inner {
    width: 570px;
    max-width: 100%;
    text-align: center
}

.index-hero__image {
    -js-display: inline-flex;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex;
    width: 490px;
    max-width: 100%;
    visibility: hidden
}

.index-hero__image li {
    width: 33.3333%;
    padding: 0 6px
}

.index-hero__image li img {
    display: block;
    border: 3px solid #fff
}

.index-hero__title {
    width: 100%;
    height: 32px;
    margin-top: 40px;
    background: url(./img/index/txt_hero.svg) no-repeat center/contain;
    text-indent: 110%;
    overflow: hidden;
    white-space: nowrap;
    visibility: hidden
}

.index-hero__text {
    position: relative;
    margin-top: 30px;
    border-top: 1px solid #2d4770;
    line-height: 1.2;
    font-size: 1.5rem;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #2d4770;
    letter-spacing: 5px;
    visibility: hidden
}

.index-hero__text::before, .index-hero__text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #2d4770;
    top: -4px;
    left: 0
}

.index-hero__text::after {
    top: calc(100% - 4px)
}

@media only screen and (max-width: 767px) {
    .index-hero {
        padding: 0 33px
    }
    .index-hero__image li {
        padding: 0 3px
    }
    .index-hero__image li img {
        border: 2px solid #fff
    }
    .index-hero__title {
        width: 306px;
        height: 0;
        padding-top: 26%;
        margin: 35px auto 0;
        background-image: url(./img/index/txt_hero_sp.svg)
    }
    .index-hero__text {
        margin-top: 20px;
        letter-spacing: 6px
    }
}

.sec-business {
    position: relative;
    max-width: 1230px;
    margin: 0 auto;
    padding: 95px 15px
}

.sec-business::after {
    content: '';
    position: absolute;
    width: 110vw;
    height: 100%;
    top: 0;
    left: calc(50% - 55vw);
    background: linear-gradient(135deg, #1C91FF, #0C1636 70%)
}

.sec-business .ttl-top-01+p {
    position: relative;
    z-index: 1
}

.sec-business .btn-cmn-01 {
    margin-top: 120px;
    z-index: 1
}

@media only screen and (max-width: 767px) {
    .sec-business {
        padding: 40px 15px
    }
    .sec-business .btn-cmn-01 {
        margin-top: 40px
    }
}

.ttl-top-01 {
    position: relative;
    margin-top: 70px;
    text-align: center;
    font-size: 3rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.4;
    padding-bottom: 10px;
    color: #2d4770;
    letter-spacing: 8px;
    z-index: 1
}

.ttl-top-01:first-child {
    margin-top: 0
}

.ttl-top-01::after {
    content: '';
    position: absolute;
    width: 38px;
    height: 2px;
    background-color: #f53f1d;
    left: calc(50% - 19px);
    bottom: 0
}

.ttl-top-01+p {
    margin-top: 30px;
    text-align: center
}

.ttl-top-01+h3 {
    font-family: "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 2.6rem;
    line-height: 1.4;
    margin-top: 35px;
    text-align: center;
    font-weight: normal
}

.ttl-top-01+h3+p {
    text-align: center;
    margin-top: 5px
}

.ttl-top-01--white {
    color: #fff
}

.ttl-top-01--white+p {
    color: #fff
}

@media only screen and (max-width: 767px) {
    .ttl-top-01 {
        margin-top: 55px;
        font-size: 2.6rem;
        letter-spacing: 5px
    }
    .ttl-top-01+p {
        margin-top: 22px
    }
    .ttl-top-01+h3 {
        font-size: 2.2rem;
        margin-top: 25px
    }
}

.grid-business {
    position: relative;
    margin: 40px -15px 0;
    z-index: 1
}

.grid-business .col {
    margin-top: 40px;
    padding: 0 15px
}

.grid-business__link {
    display: block;
    text-decoration: none;
    color: #fff;
    outline: none
}

.grid-business__link:hover .grid-business__image {
    transform: rotateY(360deg);
    transition: all .5s ease
}

.grid-business__link:hover .grid-business__title::before {
    transform: scale(0.8, 1)
}

.grid-business__image {
    display: block;
    margin: 0 auto;
    width: 144px
}

.grid-business__title {
    position: relative;
    margin-top: 25px;
    text-align: center;
    padding-bottom: 13px;
    font-size: 1.6rem;
    font-weight: bold
}

.grid-business__title::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #f53f1d;
    left: 0;
    bottom: 5px;
    transition: all .3s ease
}

.grid-business__title::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 3px solid rgba(245, 63, 29, 0);
    border-bottom: 0 none;
    border-top: 5px solid #f53f1d;
    left: calc(50% - 3px);
    bottom: 0
}

.grid-business__text {
    font-size: 1.4rem;
    margin-top: 15px;
    line-height: 1.64
}

@media only screen and (max-width: 767px) {
    .grid-business {
        margin-top: 10px
    }
    .grid-business__image {
        width: 112px
    }
    .grid-business__title {
        -js-display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin-top: 15px;
        font-size: 1.5rem
    }
}

.sec-company {
    position: relative;
    padding: 290px 15px 0
}

.sec-company::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 55%;
    left: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, #000);
    opacity: 0.5;
    z-index: -2
}

.sec-company__image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -3;
    overflow: hidden
}

.sec-company__image img {
    display: block;
    width: 100%
}

.sec-company__inner {
    transform: translateY(28px)
}

.sec-company__inner p {
    margin-top: 20px
}

.sec-company__inner .btn-cmn-01 {
    margin-top: 50px
}

@media only screen and (max-width: 767px) {
    .sec-company {
        padding-top: 230px
    }
    .sec-company__image img {
        position: absolute;
        width: 200%;
        max-width: none;
        left: calc(50% - 100%);
        top: 0
    }
    .sec-company__inner .btn-cmn-01 {
        margin-top: 25px
    }
}

.news {
    position: relative;
    max-width: 990px;
    padding: 140px 15px 80px;
    margin: 0 auto
}

.news::after {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100%;
    background-color: #f3f3f5;
    left: calc(50% - 50vw);
    top: 0;
    z-index: -1
}

.news-list {
    margin-top: 55px;
    border-top: 1px solid #999
}

.news-list__item {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    padding: 30px 25px;
    border-bottom: 1px solid #999
}

.news-list__item .date {
    display: block;
    width: 150px;
    color: #2d4770;
    font-weight: bold
}

.news-list__item .link {
    display: block;
    width: calc(100% - 150px);
    color: #333;
    text-decoration: none
}

.news-list__item .link:hover {
    text-decoration: underline
}

@media only screen and (max-width: 767px) {
    .news {
        padding: 50px 15px
    }
    .news-list {
        margin-top: 30px
    }
    .news-list__item {
        padding: 15px 0
    }
    .news-list__item .date, .news-list__item .link {
        width: 100%
    }
}

.sec-contact {
    max-width: 990px;
    margin: 0 auto;
    padding: 90px 15px 100px
}

.sec-contact__inner {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 50px;
    border-top: 1px solid #2d4770;
    border-bottom: 1px solid #2d4770;
    padding-bottom: 20px
}

.sec-contact__item {
    margin-top: 20px;
    width: 450px
}

.sec-contact__item .tel {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-justify-content: center;
    justify-content: center;
    pointer-events: none;
    text-decoration: none;
    color: #333;
    font-size: 3.9rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;
    font-weight: bold
}

.sec-contact__item .tel span {
    font-size: 2.5rem
}

.sec-contact__item .tel+p {
    font-size: 1.4rem;
    text-align: center;
    margin-top: 8px
}

.sec-contact__item .btn-cmn-01 {
    width: 390px;
    height: 93px;
    margin: 0 auto
}

.sec-contact__item .btn-cmn-01 .ico-mail {
    display: inline-block;
    position: relative;
    padding-left: 35px
}

.sec-contact__item .btn-cmn-01 .ico-mail::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 20px;
    background: url(./img/ico_mail.svg) no-repeat center/contain;
    left: 0;
    top: calc(50% - 10px)
}

@media only screen and (max-width: 767px) {
    .sec-contact {
        padding: 50px 15px
    }
    .sec-contact__inner {
        margin-top: 25px;
        padding: 15px 0
    }
    .sec-contact__item {
        margin-top: 0;
        max-width: 100%
    }
    .sec-contact__item .btn-cmn-01 {
        max-width: 100%;
        height: 77px;
        margin-top: 15px;
        padding-left: 0
    }
}

.ttl-cmn-01 {
    position: relative;
    font-size: 2.6rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    color: #2d4770;
    text-align: center;
    line-height: 1.83;
    padding: 50px 15px 20px;
    background-color: #e6e9ee
}

.ttl-cmn-01::after {
    content: '';
    position: absolute;
    width: 38px;
    height: 2px;
    background-color: #f53f1d;
    bottom: 0;
    left: calc(50% - 19px)
}

@media only screen and (max-width: 767px) {
    .ttl-cmn-01 {
        font-size: 2.4rem;
        padding: 22px 15px 10px
    }
}

.ttl-cmn-02 {
    position: relative;
    font-size: 2.6rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.83;
    padding: 25px 15px;
    margin-top: 80px
}

.ttl-cmn-02:first-child {
    margin-top: 0
}

.ttl-cmn-02::after {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100%;
    background-color: #2d4770;
    top: 0;
    left: calc(50% - 50vw);
    z-index: -1
}

.ttl-cmn-02 span {
    position: relative;
    display: inline-block;
    padding-bottom: 5px
}

.ttl-cmn-02 span::after {
    content: '';
    position: absolute;
    width: 38px;
    height: 2px;
    background-color: #f53f1d;
    bottom: 0;
    left: calc(50% - 19px)
}

.ttl-cmn-02+p {
    margin-top: 40px
}

@media only screen and (max-width: 767px) {
    .ttl-cmn-02 {
        font-size: 2.4rem;
        padding: 18px 15px;
        margin-top: 40px
    }
    .ttl-cmn-02+p {
        margin-top: 20px
    }
}

.ttl-cmn-03 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #2d4770;
    border-bottom: 3px solid #2d4770;
    line-height: 1.83;
    margin-top: 60px
}

.ttl-cmn-03:first-child {
    margin-top: 0
}

@media only screen and (max-width: 767px) {
    .ttl-cmn-03 {
        font-size: 1.8rem;
        margin-top: 30px
    }
}

.ttl-cmn-04 {
    display: block;
    position: relative;
    font-size: 2rem;
    font-weight: bold;
    color: #2d4770;
    padding-left: 50px;
    margin-top: 50px
}

.ttl-cmn-04:first-child {
    margin-top: 0
}

.ttl-cmn-04::before {
    content: '';
    position: absolute;
    width: 38px;
    height: 1px;
    background-color: #f53f1d;
    left: 0;
    top: calc(50% - 0.5px)
}

@media only screen and (max-width: 767px) {
    .ttl-cmn-04 {
        font-size: 1.8rem;
        padding-left: 20px;
        margin-top: 20px;
        line-height: 1.5
    }
    .ttl-cmn-04::before {
        width: 25px;
        left: -15px;
        top: 12px
    }
}

.ttl-cmn-05 {
    display: block;
    font-size: 1.7rem;
    color: #2d4770;
    margin-top: 30px
}

.ttl-cmn-05:first-child {
    margin-top: 0
}

@media only screen and (max-width: 767px) {
    .ttl-cmn-05 {
        margin-top: 15px
    }
}

.ttl-cmn-06 {
    display: block;
    font-weight: bold;
    margin-top: 30px
}

.ttl-cmn-06:first-child {
    margin-top: 0
}

@media only screen and (max-width: 767px) {
    .ttl-cmn-06 {
        margin-top: 15px
    }
}

.catch {
    margin-top: 80px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
    color: #2d4770
}

.catch:first-child {
    margin-top: 0
}

@media only screen and (max-width: 767px) {
    .catch {
        margin-top: 40px;
        text-align: left;
        font-size: 2rem
    }
}

.catch02 {
    display: block;
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1.83;
    margin-top: 50px
}

.catch02:first-child {
    margin-top: 0
}

.catch02+p {
    margin-top: 20px
}

@media only screen and (max-width: 767px) {
    .catch02 {
        margin-top: 20px
    }
}

.read {
    max-width: 840px;
    margin: 40px auto 0;
    font-size: 1.6rem
}

@media only screen and (max-width: 767px) {
    .read {
        margin-top: 20px
    }
}

.btn-cmn-01, input[type="submit"].btn-cmn-01 {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    color: #fff;
    background-color: #2d4770;
    font-weight: bold;
    width: 300px;
    height: 65px;
    margin: 60px auto 0;
    padding: 0 55px;
    text-align: center
}

.btn-cmn-01::after, input[type="submit"].btn-cmn-01::after {
    content: '';
    position: absolute;
    width: 31px;
    height: 9px;
    background: url(./img/ico_arrow_w.svg) no-repeat center/contain;
    right: 20px;
    top: calc(50% - 4.5px);
    transition: all .3s ease
}

.btn-cmn-01:hover::after, input[type="submit"].btn-cmn-01:hover::after {
    right: 10px
}

.btn-cmn-01--white, input[type="submit"].btn-cmn-01--white {
    color: #2d4770;
    background-color: #fff
}

.btn-cmn-01--white::after, input[type="submit"].btn-cmn-01--white::after {
    background-image: url(./img/ico_arrow_b.svg)
}

input[type="submit"].btn-cmn-01 {
    font-size: 1.5rem;
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    background: url(./img/ico_arrow_w.svg) no-repeat center right 20px/31px 9px;
    background-color: #2d4770;
    transition: all .3s ease
}

input[type="submit"].btn-cmn-01:hover {
    background-position: center right 10px
}

@media only screen and (max-width: 767px) {
    .btn-cmn-01 {
        height: 55px;
        margin-top: 30px
    }
}

.btn-cmn-02 {
    display: block;
    position: relative;
    width: 245px;
    margin: 30px auto 0;
    color: #2d4770;
    text-decoration: none
}

.btn-cmn-02::before, .btn-cmn-02::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #2d4770;
    bottom: 0;
    left: 0;
    transition: all .3s ease
}

.btn-cmn-02::after {
    width: 8px;
    left: auto;
    right: 0;
    bottom: 3px;
    transform: skewY(35deg)
}

.btn-cmn-02+.btn-cmn-02 {
    margin-top: 15px
}

.image-grid {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 55px
}

.image-grid__left {
    width: 47%;
    padding-right: 25px
}

.image-grid__right {
    width: 53%
}

@media only screen and (max-width: 767px) {
    .image-grid {
        margin-top: 30px
    }
    .image-grid__left {
        width: 100%;
        padding-right: 0
    }
    .image-grid__right {
        width: 100%;
        margin-top: 15px
    }
}

@media only screen and (max-width: 767px) {
    .table-parent {
        overflow-x: scroll;
        white-space: nowrap;
        padding-bottom: 10px
    }
}

.table-cmn-01 {
    width: 100%;
    margin-top: 40px
}

.table-cmn-01 thead th {
    background-color: #f3f3f5;
    padding: 17px 10px;
    text-align: center;
    border: 1px solid #999
}

.table-cmn-01 thead td {
    border: 1px solid #999
}

.table-cmn-01 tbody th {
    background-color: #f3f3f5;
    padding: 17px 10px;
    text-align: center;
    border: 1px solid #999
}

.table-cmn-01 tbody td {
    padding: 17px 10px;
    text-align: center;
    border: 1px solid #999
}

.table-cmn-02 {
    width: 100%;
    margin-top: 40px
}

.table-cmn-02 thead th {
    background-color: #fff;
    padding: 17px 10px;
    text-align: center;
    border: 1px solid #999
}

.table-cmn-02 thead td {
    border: 1px solid #999
}

.table-cmn-02 tbody th {
    background-color: #fff;
    padding: 17px 10px;
    text-align: center;
    border: 1px solid #999
}

.table-cmn-02 tbody td {
    padding: 17px 10px;
    text-align: center;
    border: 1px solid #999
}

.table-cmn-03 {
    width: 100%;
    border-bottom: 1px dotted #999;
    margin-top: 50px
}

.table-cmn-03 tr {
    border-top: 1px dotted #999
}

.table-cmn-03 th {
    font-weight: bold;
    padding: 15px 10px 15px 0
}

.table-cmn-03 td {
    padding: 15px 10px
}

@media only screen and (max-width: 767px) {
    .table-cmn-03 {
        margin-top: 30px
    }
    .table-cmn-03 tr {
        -js-display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%
    }
    .table-cmn-03 th {
        display: block;
        width: 50%;
        padding: 10px 0 0 0
    }
    .table-cmn-03 td {
        display: block;
        width: 50%;
        padding: 10px 0 0 0
    }
    .table-cmn-03 td:last-child {
        width: 100%;
        padding: 0 0 10px
    }
}

.bg-gray {
    position: relative;
    padding: 50px 0;
    margin-top: 40px
}

.bg-gray::after {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100%;
    background-color: #f3f3f5;
    top: 0;
    left: calc(50% - 50vw);
    z-index: -1
}

.bg-gray [class*=table-cmn] {
    margin-top: 0
}

.form-table {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 100px
}

.form-table:first-child {
    margin-top: 0
}

.form-table dt {
    padding: 10px 0;
    width: 190px;
    margin-top: 15px
}

.form-table dd {
    width: calc(100% - 190px);
    margin-top: 15px
}

.form-table dd.check-wrap {
    margin-top: 10px
}

.form-table dd .zip {
    display: inline-block;
    width: 150px;
    margin: 0 0 10px 10px
}

@media only screen and (max-width: 767px) {
    .form-table {
        margin-top: 50px
    }
    .form-table dt {
        padding: 0;
        width: 100%;
        margin-top: 10px
    }
    .form-table dd {
        width: 100%;
        margin-top: 5px
    }
    .form-table dd.check-wrap {
        margin-top: 0
    }
}

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    width: 100%;
    background-color: #f3f3f5;
    padding: 12px 24px;
    border: 1px solid transparent
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, select:focus, textarea:focus {
    background-color: #fff;
    border: 1px solid #f3f3f5
}

select {
    width: auto;
    padding-right: 30px;
    background: url(./img/ico_arrow_select.svg) no-repeat center right 8px;
    background-color: #f3f3f5
}

textarea {
    height: 240px
}

@media only screen and (max-width: 767px) {
    input[type="text"], input[type="email"], input[type="tel"], select, textarea {
        padding: 8px 12px
    }
    select {
        padding-right: 30px
    }
}

.checkbox, .web-check label {
    display: inline-block;
    cursor: pointer;
    padding-right: 55px;
    margin-top: 15px
}

.checkbox input[type="checkbox"], .web-check label input[type="checkbox"] {
    display: none
}

.checkbox input[type="checkbox"]:checked+span::before, .web-check label input[type="checkbox"]:checked+span::before {
    background-color: #2d4770
}

.checkbox input[type="checkbox"]:checked+span::after, .web-check label input[type="checkbox"]:checked+span::after {
    transform: rotate(315deg) scale(1)
}

.checkbox span, .web-check label span {
    display: inline-block;
    position: relative;
    z-index: 1;
    padding-left: 45px
}

.checkbox span::before, .web-check label span::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #f3f3f5;
    left: 0;
    top: calc(50% - 15px);
    transition: all .3s ease
}

.checkbox span::after, .web-check label span::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: scale(0);
    left: 9px;
    top: calc(50% - 4px);
    z-index: 1;
    transition: all .3s ease
}

@media only screen and (max-width: 767px) {
    .checkbox {
        margin-top: 10px
    }
}

.req {
    display: inline-block;
    font-size: 1.2rem;
    color: #ec1c24;
    margin-left: 5px
}

.industry-hero {
    overflow: hidden
}

.industry-hero__item {
    display: block;
    width: 100%;
    height: 500px;
    background: no-repeat center / cover;
    text-decoration: none;
    color: #fff
}

.industry-hero__item:hover {
    opacity: 0.8
}

.industry-hero__text {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    width: 39%;
    height: 100%;
    padding-left: 10px;
    z-index: 1
}

.industry-hero__text .text-bg {
    position: absolute;
    width: calc(100% + 100px);
    height: 100%;
    background-color: rgba(45, 71, 112, 0.9);
    top: 0;
    right: 0;
    z-index: -1;
    transform: skewX(-18deg)
}

.industry-hero__text .text-bg::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #f53f1d;
    right: -3px;
    top: 0
}

.industry-hero__text .text-bg::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 100%;
    background-color: rgba(45, 71, 112, 0.9);
    right: -13px;
    top: 0
}

.industry-hero__text .inner {
    padding: 0 25px;
    border-left: 1px solid #fff
}

.industry-hero__text .inner strong {
    display: block;
    font-size: 4.5rem;
    line-height: 1.4
}

.industry-hero__text .inner img {
    display: block;
    margin: 40px auto 0
}

.industry-hero .slick-slide {
    overflow: hidden
}

@media only screen and (max-width: 767px) {
    .industry-hero__item {
        height: 570px
    }
    .industry-hero__text {
        -webkit-align-items: flex-end;
        align-items: flex-end;
        width: 100%;
        padding: 0 15px
    }
    .industry-hero__text .text-bg {
        width: 100%;
        height: 65%;
        background-color: rgba(45, 71, 112, 0.9);
        top: auto;
        bottom: -70px;
        transform: skewX(0) skewY(-12deg)
    }
    .industry-hero__text .text-bg::before {
        width: 100%;
        height: 1px;
        right: 0;
        top: -3px
    }
    .industry-hero__text .text-bg::after {
        width: 100%;
        height: 7px;
        right: 0;
        top: -12px
    }
    .industry-hero__text .inner {
        padding: 0 15px;
        margin-bottom: 100px
    }
    .industry-hero__text .inner strong {
        font-size: 3.5rem
    }
    .industry-hero__text .inner img {
        height: 150px;
        margin: 20px 0 0
    }
}

.sec-product {
    max-width: 1230px;
    margin: 0 auto;
    padding: 80px 15px
}

@media only screen and (max-width: 767px) {
    .sec-product {
        padding: 40px 15px
    }
    .sec-product .btn-cmn-01 {
        margin-top: 55px
    }
}

.product-slide {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 28px -3px 0
}

.product-slide__link {
    display: block;
    position: relative;
    text-decoration: none;
    color: #333;
    width: calc(33.33333% - 6px);
    margin: 22px 3px 0
}

.product-slide__link:hover figure::after {
    opacity: 1
}

.product-slide__link:hover p::after {
    right: 2px
}

.product-slide__link figure {
    height: 0;
    padding-top: 75%
}

.product-slide__link figure::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 71, 112, 0.5);
    top: 0;
    left: 0;
    opacity: 0;
    transition: all .3s ease
}

.product-slide__link p {
    position: relative;
    padding: 15px 10px 15px 20px;
    font-size: 1.4rem;
    line-height: 1.4;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    margin: -40px 30px 0 0;
    z-index: 1
}

.product-slide__link p span {
    display: block;
    font-size: 1.7rem;
    font-weight: bold
}

.product-slide__link p::before {
    content: '';
    position: absolute;
    width: 1px;
    height: calc(100% - 30px);
    background-color: #f53f1d;
    left: 10px;
    top: 50%;
    transform: translateY(-50%)
}

.product-slide__link p::after {
    content: '';
    position: absolute;
    width: 31px;
    height: 9px;
    background: url(./img/ico_arrow_ore.svg) no-repeat center/contain;
    right: 5px;
    bottom: 5px;
    transition: all .3s ease
}

@media only screen and (max-width: 767px) {
    .product-slide {
        padding: 0;
        margin: 25px -15px 0
    }
    .product-slide__link p {
        padding: 8px 10px 8px 20px;
        margin: -20px 20px 0 0
    }
    .product-slide__link p::before {
        height: calc(100% - 16px)
    }
    .product-slide .slick-slide {
        padding: 0 4px
    }
    .product-slide .slick-prev, .product-slide .slick-next {
        width: 64px;
        height: 64px;
        top: calc(50% - 32px);
        transition: all .3s ease;
        z-index: 10;
        border-radius: 50%;
        background-color: rgba(45, 71, 112, 0.7)
    }
    .product-slide .slick-prev::before, .product-slide .slick-next::before {
        content: none
    }
    .product-slide .slick-prev::after, .product-slide .slick-next::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        top: calc(50% - 10px)
    }
    .product-slide .slick-prev {
        left: -20px
    }
    .product-slide .slick-prev::after {
        right: 10px;
        transform: rotate(-135deg)
    }
    .product-slide .slick-next {
        right: -20px
    }
    .product-slide .slick-next::after {
        left: 10px;
        transform: rotate(45deg)
    }
    .product-slide .slick-dots {
        bottom: -25px
    }
    .product-slide .slick-dots li {
        width: 10px;
        height: 10px;
        margin: 0 3px
    }
    .product-slide .slick-dots li.slick-active button::before {
        color: #f53f1d
    }
    .product-slide .slick-dots li button {
        width: 100%;
        height: 100%;
        padding: 0
    }
    .product-slide .slick-dots li button::before {
        width: 100%;
        height: 100%;
        line-height: 10px;
        color: #EAEDF1;
        opacity: 1;
        font-size: 10px
    }
}

.sec-flow {
    position: relative;
    padding: 80px 15px 40px;
    max-width: 1054px;
    margin: 0 auto
}

.sec-flow::after {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100%;
    background-color: #f3f3f5;
    top: 0;
    left: calc(50% - 50vw);
    z-index: -1
}

@media only screen and (max-width: 767px) {
    .sec-flow {
        padding: 40px 15px 30px
    }
}

.flow-list {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 35px -20px 0
}

.flow-list__item {
    width: 20%;
    min-width: 180px;
    margin-top: 15px;
    padding: 0 20px
}

.flow-list__item img {
    display: block
}

.flow-list__item strong {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #2d4770;
    line-height: 1.5;
    margin-top: 13px;
    letter-spacing: 2px
}

.flow-list__item p {
    line-height: 1.83;
    margin-top: 10px
}

@media only screen and (max-width: 767px) {
    .flow-list {
        margin: 10px 0 0
    }
    .flow-list__item {
        -js-display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-align-items: center;
        align-items: center;
        width: 100%;
        min-width: 1px;
        margin-top: 30px;
        padding: 0 30px
    }
    .flow-list__item strong {
        margin: 0 0 0 10px
    }
    .flow-list__item p {
        width: 100%
    }
}

.sec-service {
    position: relative;
    padding: 40px 15px 80px;
    max-width: 1230px;
    margin: 0 auto
}

.sec-service::after {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100%;
    background-color: #f3f3f5;
    top: 0;
    left: calc(50% - 50vw);
    z-index: -1
}

.sec-service .grid-cmn {
    margin: 35px -15px 0
}

.sec-service .grid-cmn .col {
    margin-top: 15px
}

@media only screen and (max-width: 767px) {
    .sec-service {
        padding: 30px 15px 40px
    }
    .sec-service .grid-cmn {
        margin-top: 20px
    }
}

.service-item {
    background-color: #fff;
    padding: 45px 40px 40px;
    height: 100%
}

.service-item__image img {
    display: block;
    margin: 0 auto
}

.service-item__cap {
    display: block;
    text-align: center;
    margin-top: 25px;
    font-size: 1.6rem;
    color: #2d4770;
    line-height: 1.4
}

.service-item__title {
    display: block;
    position: relative;
    text-align: center;
    margin-top: 5px;
    font-size: 2.5rem;
    line-height: 1.6;
    padding-bottom: 5px;
    letter-spacing: 10px
}

.service-item__title::after {
    content: '';
    position: absolute;
    width: 38px;
    height: 2px;
    background-color: #f53f1d;
    bottom: 0;
    left: calc(50% - 19px)
}

.service-item__text {
    margin-top: 25px
}

@media only screen and (max-width: 767px) {
    .service-item {
        padding: 35px 30px
    }
}
