@charset "utf-8";

/**************************************
 * CSS BasicStyle forHTML5 v2.0
**************************************/
a {
    transition-duration: 0.3s;
}

area {
    border: none;
    outline: none;
}

/******************************
 All Area base
******************************/
html {
    height: 100%;
}

body {
    position: relative;
    width: 100%;
    height: 100%;
    letter-spacing: initial;
    font-family: "PT Sans", Helvetica, Arial, "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, sans-serif;
    word-wrap: break-word;
    text-align: center;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 400;
    color: #333;
    background-color: #fff;
    letter-spacing: -0.05rem;
}

/* webfonts*/
.noto {
    font-family: 'Noto Sans JP', sans-serif;
}

.sourcesans {
    font-family: 'PT Sans', sans-serif;
}

.gothic {
    font-family: YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, sans-serif;
}

.serif {
    font-family: 'Yu Mincho', '游明朝', '游明朝体', 'YuMincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'HiraMinProN-W3', 'HGS明朝E', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

/* link */
a:link,
a:visited {
    color: #d80012;
    text-decoration: none;
}

a:hover,
a:active {
    color: #d80012;
    text-decoration: none;
    opacity: 0.7;
}

.PC {
    display: block;
}

.SP {
    display: none;
}

/* ---SP--- */
@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .PC {
        display: none;
    }

    .SP {
        display: block;
    }

    #bg_overlay {
        position: fixed;
        z-index: 5000;
        top: -5000px;
        right: -5000px;
        bottom: -5000px;
        left: -5000px;
        display: none;
        background: #000;
        opacity: 0.6;
    }


    img {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: 50% 50%;
        object-fit: cover;
        object-position: 50% 50%;
    }

}

/* ---/SP--- */

/* form_parts */
.select-wrap {
    display: inline-block;
    position: relative;
}

.select-wrap::before {
    z-index: 1;
    position: absolute;
    right: 20px;
    top: 1.0em;
    content: "";
    width: 7px;
    height: 4px;
    background-image: url(../img/ic_arrow_select.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    pointer-events: none;
}

.select-wrap select {
    border: solid 1px #d7d7d7;
    background-color: #FFF;
    padding: 7px 30px 7px 15px;
    border-radius: 5px;
}

/* default_box */


/* ---SP--- */
@media screen and (max-width: 768px) {}

/* ---/SP--- */

/******************************
 All Area
******************************/
main,
header,
footer {
    min-width: 1000px;
    width: 100%;
}

main {
    padding-top: 156px;
    overflow-x: hidden;
}

/*
h2{
    position: relative;
    font-size: 28px; font-size: 2.8rem;
    line-height: 1.6;
    font-weight: bold;
    margin-bottom:50px;
}
h2::after{
    content: "";
    display: block;
    position: relative;
    width:60px;
    height:2px;
    background-color: #d90312;
    margin-top:10px;
}
*/
h2.gbl {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.0;
    letter-spacing: 0.05em;
}

h2.gbl::after {
    display: none;
}

h2.gbl .en {
    display: block;
    font-family: 'Asap Condensed', YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, sans-serif;
    font-size: 58px;
    font-size: 5.8rem;
    font-weight: 700;
    color: #D80D12;
    margin-bottom: 10px;
    letter-spacing: 0.06em;
}

/*
h3 {
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: bold;
    color: #FFF;
    margin-top: 60px;
    margin-bottom: 40px;
    background-color: #d60d12;
    padding: 8px 18px;
    border-radius: 5px;
    line-height: 1.4;
}
*/

section p {
    line-height: 1.6;
}

section p.lead {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* btn */
.btn {
    min-width: 240px;
    height: 50px;
    margin: 0 auto;
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center;
}

.inputbtn,
.btn a {
    display: block;
    width: 100%;
    line-height: 50px;
    background-color: #DA0012;
    color: #FFF;
    position: relative;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    border: 2px solid #DA0012;
    transition: .3s;
    border-radius: 10px;
}

.inputbtn:hover,
.btn a:hover {
    color: #DA0012;
    -webkit-animation: scale .3s ease-in-out;
    animation: scale .3s ease-in-out;
}

.inputbtn::before,
.btn a::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background-color: #FFF;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
    border-radius: 10px;
}

.inputbtn:hover::before,
.btn a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}


/* ---SP--- */
@media screen and (max-width: 768px) {

    .btn {
        min-width: 58.2%;
        height: 40px;
        margin: 0 auto 30px;
        font-size: 16px;
    }

    .inputbtn,
    .btn a {
        line-height: 40px;
        border-radius: 5px;
    }

    .inputbtn::before,
    .btn a::before {
        border-radius: 5px;
    }

    main,
    header,
    footer {
        min-width: 320px;
        width: 100%;
    }

    main {
        padding-top: 50px;
    }

    section p {
        line-height: 1.6;
    }

    .top main {
        padding-top: 50px;
    }

    .base_box {
        margin-bottom: 20px;
    }

    h2 {
        font-size: 16px;
        margin-bottom: 30px;
    }

    h2::after {
        width: 30px;
        height: 2px;
        margin-top: 5px;
    }

    h2.gbl {
        margin-bottom: 20px;
    }

    h2.gbl .en {
        font-size: 43px;
    }

    h3 {
        font-size: 14px;
        margin-bottom: 20px;
    }

    section p.lead {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* ---/SP--- */
/******************************
 Header Area
******************************/
header {
    /*position: fixed;*/
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #fdf7ef;
    border-top: solid 3px #DA0012;
}

header .inr {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    height: 94px;
}

header .inr::after {
    content: "";
    clear: both;
    display: block;
}

header .logo {
    float: left;
    margin-top: 24px;
}

header .logo a {
    display: block;
    width: 170px;
}

header .logo img {
    width: 100%;
    vertical-align: middle;
}

/*スクロールしたら固定する*/
header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
}

/* nav */
header .sp_nav_btn {
    display: none;
}

header nav .subnav {
    position: absolute;
    top: -94px;
    right: 0;
    display: inline-block;
    padding: 0 5px 0 0;
    margin-bottom: 14px;
    text-align: left;
    font-size: 10px;
    font-size: 1.0rem;
    font-weight: bold;
    background-color: #f0e3d1;
    border-radius: 0 0 5px 5px;
}

header nav .subnav li {
    padding: 0 0 0 5px;
}

header nav .subnav a {
    display: block;
    position: relative;
    color: #2C221F;
}

header nav .subnav a:hover {
    color: #DA0012;
}

header nav .subnav a::before {
    content: "";
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    background-image: url(../img/ic_info.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    vertical-align: middle;
}

header nav .subnav a:hover::before {
    background-image: url(../img/ic_info_on.svg);
}

header nav .headbn {
    position: absolute;
    top: -60px;
    right: 0;
    text-align: left;
    width: 764px;
    margin-bottom: 14px;
}

header nav .headbn::after {
    content: "";
    clear: both;
    display: block;
}

header nav .headbn li {
    float: left;
    margin-left: 12px;
}

header nav .headbn li:first-child {
    margin-left: 0;
}

header nav .headbn li a {
    display: block;
    width: 180px;
}

header nav .headbn li:last-child a {
    width: 188px;
}

header nav .headbn li a img {
    width: 100%;
}

/* gnav */
#nav_area {
    background-color: #f0e3d1;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}

#nav_area nav {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

#nav_area .gnav {
    font-size: 15px;
    font-size: 1.5rem;
    text-align: left;
}

#nav_area .gnav::after {
    content: "";
    clear: both;
    display: block;
}

#nav_area .gnav > li {
    float: left;
    display: block;
    border-left: solid 1px #ead7d7;
}


@media screen and (min-width: 769px) {
    #nav_area .gnav > li {
        letter-spacing: 0.05rem;
    }
}

#nav_area .gnav > li:first-child {
    border-left: none;
}

#nav_area .gnav > li > a,
#nav_area .gnav > li > span.instead span {
    position: relative;
    display: block;
    color: #2C221F;
    padding: 10px 0 10px;
    width: 149px;
    text-align: center;
}

#nav_area .gnav > li.current > span.instead span,
#nav_area .gnav > li > span.instead span:hover {
    color: #DA0012;
}

#nav_area .gnav > li > a::before,
#nav_area .gnav > li > span.instead span::before {
    content: "";
    position: relative;
    display: inline-block;
    margin-right: 5px;
    background-repeat: no-repeat;
    background-size: 100%;
    vertical-align: middle;
    width: 40px;
    height: 40px;
}

/* 各アイコン */
#nav_area .gnav > li.home > a::before {
    background-image: url(../img/ic_home.svg);
}

#nav_area .gnav > li.product > span.instead span::before {
    background-image: url(../img/ic_product.svg);
}

#nav_area .gnav > li.recipe > span.instead span::before {
    background-image: url(../img/ic_recipe.svg);
}

#nav_area .gnav > li.oem > a::before {
    background-image: url(../img/ic_oem.svg);
}

#nav_area .gnav > li.learn > a::before {
    background-image: url(../img/ic_learn.svg);
}

#nav_area .gnav > li.company > span.instead span::before {
    background-image: url(../img/ic_company.svg);
}

#nav_area .gnav > li.customer > a::before {
    background-image: url(../img/ic_customer.svg);
}

#nav_area .gnav > li.recruit > a::before {
    background-image: url(../img/ic_recruit.svg);
}

/**/
#nav_area .gnav > li.home.current > a::before,
#nav_area .gnav > li.home > a:hover::before {
    background-image: url(../img/ic_home_on.svg);
}

#nav_area .gnav > li.product.current > span.instead span::before,
#nav_area .gnav > li.product > span.instead span:hover::before {
    background-image: url(../img/ic_product_on.svg);
}

#nav_area .gnav > li.recipe.current > a::before,
#nav_area .gnav > li.recipe > a:hover::before {
    background-image: url(../img/ic_recipe_on.svg);
}

#nav_area .gnav > li.oem.current > a::before,
#nav_area .gnav > li.oem > a:hover::before {
    background-image: url(../img/ic_oem_on.svg);
}

#nav_area .gnav > li.learn.current > a::before,
#nav_area .gnav > li.learn > a:hover::before {
    background-image: url(../img/ic_learn_on.svg);
}

#nav_area .gnav > li.company.current > span.instead span::before,
#nav_area .gnav > li.company > span.instead span:hover::before {
    background-image: url(../img/ic_company_on.svg);
}

#nav_area .gnav > li.customer.current > a::before,
#nav_area .gnav > li.customer > a:hover::before {
    background-image: url(../img/ic_customer_on.svg);
}

#nav_area .gnav > li.recruit.current > a::before,
#nav_area .gnav > li.recruit > a:hover::before {
    background-image: url(../img/ic_recruit_on.svg);
}

/**/


#nav_area li > span.instead {
    transition-duration: 0.3s;
}

#nav_area li > span.instead:hover,
#nav_area li > a:hover {
    color: #DA0012;
}

#nav_area li.current > span.instead,
#nav_area li.current > a {
    color: #DA0012;
}


/* ---SP--- */
@media screen and (max-width: 768px) {
    header {
        border-top: none;
    }

    header .inr {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        max-width: 100%;
        height: 50px;
        background-color: #fdf7ef;
    }

    .top header {
        position: fixed;
        top: 0;
    }

    header .logo {
        position: absolute;
        left: 10px;
        top: 5px;
        z-index: 100;
        margin-top: 0;
    }

    header .logo a {
        width: auto;
    }

    header .logo img {
        width: 116px;
    }

    #nav_area .corp {
        display: none;
    }

    /* ナビゲーション */
    header .sp_nav_btn {
        display: block;
    }

    #nav_area {
        position: fixed;
        z-index: 1;
        top: 0;
        left: 0;
        color: #000;
        text-align: center;
        transform: translateY(-100%);
        transition: all 0.6s;
        background-color: #fdf7ef;
        width: 100%;
        height: 100%;
        padding: 55px 0 0;
        box-shadow: 0 0 0;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }

    #nav_area .gnav {
        width: 100%;
        background-color: #f0e3d1;
    }

    #nav_area .gnav > li {
        font-size: 14px;
        text-align: left;
        width: 100%;
        border-bottom: 1px solid #BFBFBF;
        display: block;
        margin-left: 0;
        padding: 0;
    }

    #nav_area .gnav > li > a::before,
    #nav_area .gnav > li > span.instead span::before {
        background-size: auto 100%;
        background-position: center;
        width: 30px;
        height: 30px;
    }

    #nav_area .gnav > li > a,
    #nav_area .gnav > li > span.instead {
        display: block;
        position: relative;
        width: 100%;
        text-align: left;
        padding: 10px 20px 10px 10px;
        cursor: pointer;
    }

    #nav_area .gnav > li > span.instead span {
        display: inline-block;
        width: 100%;
        position: relative;
        padding: 0;
        text-align: left;
    }

    #nav_area .gnav li > span::before,
    #nav_area .gnav li > span::after {
        display: block;
        content: '';
        background-color: #2C221F;
        position: absolute;
        z-index: 1;
        width: 11px;
        height: 1px;
        top: 50%;
        right: 14px;
    }

    #nav_area .gnav li > span::before {
        width: 1px;
        height: 11px;
        top: 50%;
        right: 19px;
        margin-top: -5px;
    }

    #nav_area .gnav li > span.open::before {
        display: none;
    }

    /* このクラスを、jQueryで付与・削除する */
    #nav_area.active {
        transform: translateY(0%);
    }

    .sp_nav_btn {
        display: block;
        position: absolute;
        right: 13px;
        top: 5px;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 3;
        text-align: center;
    }

    .sp_nav_btn span {
        display: block;
        position: absolute;
        /* .navToggleに対して */
        width: 30px;
        border-bottom: solid 3px #DA0012;
        -webkit-transition: .35s ease-in-out;
        -moz-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
        left: 6px;
    }

    .sp_nav_btn span::before {
        content: "";
        display: block;
        position: absolute;
        /* .navToggleに対して */
        width: 30px;
        border-bottom: solid 3px #DA0012;
        -webkit-transition: .35s ease-in-out;
        -moz-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
    }

    .sp_nav_btn span {
        top: 14px;
    }

    .sp_nav_btn span::before {
        top: 10px;
    }

    /* 最初のspanをマイナス45度に */
    .sp_nav_btn.active span {
        top: 18px;
        left: 6px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    /* 2番目と3番目のspanを45度に */
    .sp_nav_btn.active span::before {
        top: 0px;
        left: 0px;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    header nav .subnav {
        position: relative;
        top: 0;
        right: 0;
        display: block;
        padding: 0;
        margin-bottom: 20px;
        font-size: 14px;
        font-weight: normal;
        background-color: #f0e3d1;
        border-radius: 0;
    }

    header nav .subnav li {
        padding: 0;
    }

    header nav .subnav a {
        display: block;
        position: relative;
        width: 100%;
        text-align: left;
        padding: 10px 20px 10px 10px;
    }

    header nav .subnav a::before {
        width: 30px;
        height: 30px;
        margin-right: 5px;
    }

    header nav .headbn {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        padding: 0 20px 30px;
        text-align: center;
    }

    header nav .headbn li {
        float: none;
        display: inline-block;
        width: 47.5%;
        margin-left: 0;
        margin-bottom: 10px;
    }

    header nav .headbn li a {
        display: block;
        width: 100%;
    }

    header nav .headbn li:last-child a {
        width: 100%;
    }

    header nav .headbn li a img {
        width: 100%;
    }
}

/* ---/SP--- */
/******************************
 mv
******************************/
.inr {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .inr {
        padding: 0 20px;
    }
}

#learn_area .inr,
#safety_area .inr {
    padding: 0 20px;
}

#mv_area {
    width: 100%;
    height: 400px;
    background-color: #f5efef;
    padding: 35px 0 32px;
}

#mv_area .inr {
    display: flex;
    justify-content: space-between;
}

#mv_area .box_text {
    width: 600px;
    text-align: left;
    margin-top: 62px;
}

#mv_area .box_text .ttl {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 17px;
    letter-spacing: normal;
}

#mv_area .box_text .txt {
    font-size: 16px;
    line-height: 1.6;
}

#mv_area .img {
    width: 577px;
    height: 509px;
}


@media screen and (max-width: 768px) {
    #mv_area {
        height: auto;
        padding: 40px 0 25px;
    }

    #mv_area .inr {
        flex-wrap: wrap;
        padding: 0;
    }

    #mv_area .box_text {
        width: 100%;
        margin-top: 0px;
        padding: 0 20px;
        margin-bottom: 20px;
    }

    #mv_area .box_text .ttl {
        font-size: 23px;
        letter-spacing: -1px;
    }

    #mv_area .box_text .txt {
        font-size: 14px;
        line-height: 1.4;
    }

    #mv_area .img {
        width: 100%;
        height: auto;
        padding: 0 5px;

    }
}

/* ---SP--- 
@media screen and (max-width: 768px) {
    #mv_area {
        width: 100%;
        height: 51vw;
        padding: 20px 0;
    }

    #mv_area img {
        width: calc(100vw - 20px);
        height: auto;
    }

    #mv_area .slick-prev,
    #mv_area .slick-next {
        width: 26px;
        height: 26px;
    }

    #mv_area .slick-prev {
        left: 0;
        margin-left: 0;
    }

    #mv_area .slick-next {
        right: 0;
        margin-right: 0;
    }

    #mv_area .slick-next::before,
    #mv_area .slick-prev::before {
        top: 9px;
        left: 9px;
        width: 6px;
        height: 10px;
    }
}

/* ---/SP--- */


/******************************
 producthead_area
******************************/
#producthead_area {
    padding-top: 100px;
}

#producthead_area .producthead_box {
    background-color: #f0e3d1;
}

.producthead_box {
    position: relative;
    padding: 60px 0;
}

.producthead_box ul {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.producthead_box ul::after {
    content: "";
    clear: both;
    display: block;
}

.producthead_box li {
    float: left;
    display: block;
    margin-left: 4px;
    margin-bottom: 4px;
}

.producthead_box li:nth-child(4n+1) {
    margin-left: 0;
}

.producthead_box li a {
    display: table;
    background-color: #FFF;
    width: 297px;
    height: 110px;
    border-radius: 4px;
    text-align: left;
    padding: 10px;
    color: #2C221F;
}

.producthead_box li a:hover {
    color: #d80012;
}

.producthead_box li a::after {
    content: "";
    clear: both;
    display: block;
}

.producthead_box .name {
    display: table-cell;
    vertical-align: middle;
    padding: 0 0 0 10px;
    width: 145px;
    height: 90px;
    line-height: 1.6;
    font-weight: bold;
    letter-spacing: -1px;
}

.producthead_box figure {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    height: 90px;
}

.producthead_box figure img {
    height: 100%;
}

.producthead_box .subbtn {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: right;
}

.producthead_box .subbtn a {
    position: absolute;
    right: 0;
    top: -35px;
    display: inline-block;
    font-weight: bold;
    color: #2C221F;
}

.producthead_box .subbtn a:hover {
    color: #d80012;
}

.producthead_box .subbtn a::before {
    content: "";
    display: inline-block;
    position: relative;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background-image: url(../img/ic_arrow01.svg);
    vertical-align: middle;
}

.producthead_box .btn {
    width: 240px;
}

/* ---SP--- */
@media screen and (max-width: 768px) {
    #producthead_area {
        padding-top: 60px;
    }

    .producthead_box {
        padding: 30px 20px;
    }

    .producthead_box ul li {
        width: calc(50% - 10px);
        height: auto;
    }

    .producthead_box li:nth-child(4n+1) {
        margin-left: 10px;
    }

    .producthead_box li:nth-child(odd) {
        margin-left: 0;
    }

    .producthead_box ul li a {
        position: relative;
        display: block;
        width: 100%;
        height: auto;
        font-size: 14px;
    }

    .producthead_box .name {
        position: relative;
        display: block;
        padding: 0;
        width: 100%;
        height: auto;
        padding-top: 80px;
        text-align: center;
    }

    .producthead_box figure {
        position: absolute;
        top: 10px;
        left: 50%;
        display: block;
        width: 100%;
        height: 65px;
        margin-left: -50%;
        text-align: center;
    }

    .producthead_box figure img {
        height: 100%;
        width: auto;
    }

    .producthead_box .subbtn {
        text-align: center;
        font-size: 13px;
    }

    .producthead_box .subbtn a {
        position: relative;
        top: auto;
    }
}

/* ---SP--- */
/******************************
 pickup_area
******************************/
#pickup_area {
    position: relative;
    background: url(../img/bg_pickup.jpg) no-repeat;
    background-size: 140%;
    padding: 70px 0;
}

#pickup_area .inr {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* pickup_box */
.pickup_box {
    text-align: left;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.pickup_box::after {
    content: "";
    clear: both;
    display: block;
}

.pickup_box .slider {
    margin: 0 auto;
}

#pickup_area .pickup_box li.slick-slide {
    float: left;
    margin: 5px 7px;
}

.pickup_box li.slick-slide a {
    display: block;
    width: 310px;
    background-color: #FFF;
    color: #2C221F;
    border-radius: 4px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.pickup_box li.slick-slide a:hover {
    color: #d80012;
}

.pickup_box li.slick-slide figure {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 220px;
    margin-bottom: 20px;
    background-color: #F7F2F2;
    background-image: url(../img/img_dummy.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    border-radius: 4px 4px 0 0;
}

.pickup_box li.slick-slide figure img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.pickup_box li.slick-slide a:hover figure img {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    -ms-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
}

.pickup_box li.slick-slide span {
    line-height: 1.6;
}

.pickup_box li.slick-slide .title {
    display: block;
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.pickup_box li.slick-slide .txt {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 0 15px 15px;
}

.pickup_box .slick-prev,
.pickup_box .slick-next {
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.pickup_box .slick-prev:before,
.pickup_box .slick-next:before {
    content: "";
    position: absolute;
    top: 0;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 10px;
    height: 17px;
}

.pickup_box .slick-prev:before {
    left: 0;
    background-image: url(../img/ic_arrow_sl_l.svg);
}

.pickup_box .slick-next:before {
    right: 0;
    background-image: url(../img/ic_arrow_sl_r.svg);
}

/* ---SP--- */
@media screen and (max-width: 768px) {
    #pickup_area {
        background-position: top center;
        background-size: auto 100%;
        padding: 30px 0;
    }

    #pickup_area .pickup_box li.slick-slide {
        margin-left: 20vw;
    }

    .pickup_box li.slick-slide a {
        width: 70vw;
    }

    .pickup_box li.slick-slide figure {
        height: 50vw;
    }

    .pickup_box .slick-prev,
    .pickup_box .slick-next {
        z-index: 3;
        width: 25px;
        height: 25px;
    }

    .pickup_box .slick-prev {
        left: 25px;
    }

    .pickup_box .slick-next {
        right: 25px;
    }

    .pickup_box .slick-prev:before,
    .pickup_box .slick-next:before {
        width: 15px;
        height: 26px;
    }

    .pickup_box li.slick-slide .title {
        font-size: 17px;
        margin-bottom: 5px;
    }

    .pickup_box li.slick-slide .txt {
        font-size: 14px;
        padding: 0 15px 10px;
    }
}

/* ---/SP--- */

/******************************
 news_area
******************************/
#news_area {
    padding: 80px 0;
}

#news_area .inr {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#news_area .inr::after {
    content: "";
    clear: both;
    display: block;
}

#news_area .info_area,
#news_area .newproducts_area {
    width: 50%;
    float: left;
}

#news_area .info_area dl {
    padding-right: 30px;
    text-align: left;
}

#news_area .newproducts_area dl {
    padding-left: 30px;
    text-align: left;
}

#news_area dl {
    margin-bottom: 40px;
}

#news_area dt {
    margin-bottom: 10px;
}

#news_area .date {
    font-size: 14px;
    font-size: 1.4rem;
    margin-right: 20px;
}

#news_area .cat {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFF;
    background-color: #d80012;
    border-radius: 3px;
    padding: 3px 5px;
}

#news_area dd {
    border-bottom: dotted 1px #bdbdbd;
    line-height: 1.6;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

#news_area dl a {
    color: #2c221f;
}

#news_area dl a:hover {
    color: #d80012;
}

#news_area .btn {
    width: 240px;
}

/* ---/SP--- */
@media screen and (max-width: 768px) {
    #news_area {
        padding: 40px 0;
    }

    #news_area .inr {
        padding: 0 20px;
    }

    #news_area .info_area,
    #news_area .newproducts_area {
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }

    #news_area .info_area dl {
        padding-right: 0;
    }

    #news_area .newproducts_area dl {
        padding-left: 0;
    }

    #news_area .date {
        font-size: 12px;
        margin-right: 10px;
    }

    #news_area .cat {
        font-size: 10px;
    }

    #news_area dd {
        font-size: 14px;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
}

/* ---/SP--- */
/******************************
 recipe_area
******************************/
#recipe_area {
    position: relative;
    background: url(../img/bg_recipe.jpg) no-repeat;
    background-size: 140%;
    padding: 70px 0;
}

#recipe_area .inr {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#recipe_area h2.gbl {
    display: inline-block;
    position: relative;
}

#recipe_area h2.gbl::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -180px;
    width: 149px;
    height: 93px;
    background-image: url(../img/ttl_recipe_l.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}

#recipe_area h2.gbl::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -180px;
    width: 149px;
    height: 93px;
    background-color: transparent;
    background-image: url(../img/ttl_recipe_r.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}

/* pickup_box */
.recipe_box {
    text-align: left;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 40px;
    background-image: url(../img/bg_check.jpg);
    background-repeat: repeat;
    border-radius: 5px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.recipe_box::after {
    content: "";
    clear: both;
    display: block;
}

.recipe_box .input_box,
.recipe_box .recipe_thumbnail {
    float: left;
    width: 50%;
}

.recipe_box .input_box {
    text-align: center;
    padding-right: 30px;
    border-right: solid 1px #bebebe;
}

.recipe_box .input_box > p {
    position: relative;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: normal;
    margin-bottom: 20px;
}

.recipe_box .input_box > p::before,
.recipe_box .input_box > p::after {
    content: "";
    position: relative;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 13px;
    height: 20px;
}

.recipe_box .input_box > p::before {
    background-image: url(../img/lead_recipein_l.svg);
    margin-right: 5px;
}

.recipe_box .input_box > p::after {
    background-image: url(../img/lead_recipein_r.svg);
    margin-left: 5px;
}

.recipe_box .input_box .input_form {
    margin-bottom: 20px;
}

.recipe_box .input_box .input_form .select-wrap select {
    width: 200px;
}

.recipe_box .recipe_thumbnail {
    padding-left: 30px;
}

.inputbtn {
    position: relative;
    z-index: 0;
    width: 240px;
    height: 50px;
    margin: 0 auto;
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center;
}

.recipe_box .recipe_thumbnail a {
    position: relative;
    display: block;
    color: #2c221f;
    font-weight: bold;
}

.recipe_box .recipe_thumbnail a:hover {
    color: #d80012;
}

.recipe_box .recipe_thumbnail a::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 30px;
    height: 30px;
    border-right: 2px solid #DA0012;
    border-top: 2px solid #DA0012;
    transform: rotate(45deg) translateY(-50%);
}

.recipe_box .recipe_thumbnail a::after {
    clear: both;
    content: "";
    display: block;
}

.recipe_box .recipe_thumbnail figure {
    float: left;
    display: block;
    position: relative;
    width: 230px;
    height: 180px;
    padding: 18px;
    margin-right: 30px;
    background-image: url(../img/bg_book.png);
    background-repeat: no-repeat;
}

.recipe_box .recipe_thumbnail figure span {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 128px;
    margin-bottom: 20px;
    background-color: #F7F2F2;
    background-image: url(../img/img_dummy.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    border-radius: 4px;
    border: solid 1px #FFF;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
}

.recipe_box .recipe_thumbnail figure img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    border-radius: 4px;
}

.recipe_box .recipe_thumbnail a:hover figure img {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    -ms-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
}

.recipe_box .recipe_thumbnail .txt_area {
    position: relative;
    float: left;
    width: 270px;
    margin-top: 40px;
}

.recipe_box .recipe_thumbnail .txt_area::before {
    content: "";
    display: block;
    position: absolute;
    top: -70px;
    right: -30px;
    width: 90px;
    height: 58px;
    background-image: url(../img/ic_pickup.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.recipe_box .recipe_thumbnail .title {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* recipe_cat */
.recipe_cat li {
    display: inline-block;
    margin-right: 5px;
}

.recipe_cat li span {
    display: inline-block;
    color: #FFF;
    font-weight: bold;
    font-size: 12px;
    font-size: 1.2rem;
    background-color: #d65f63;
    padding: 2px 5px;
}

#recipe_area .btn {
    width: 240px;
}

/* ---SP--- */
@media screen and (max-width: 768px) {
    #recipe_area {
        background-position: top center;
        background-size: auto 100%;
        padding: 30px 0;
    }

    #recipe_area .inr {
        padding: 0 20px;
    }

    #recipe_area h2.gbl::before {
        left: -100px;
        width: 75px;
        height: 46px;
    }

    #recipe_area h2.gbl::after {
        right: -100px;
        width: 75px;
        height: 46px;
    }

    .recipe_box {
        margin: 0 auto 20px;
        padding: 25px;
    }

    .recipe_box .input_box,
    .recipe_box .recipe_thumbnail {
        float: none;
        width: 100%;
        padding-right: 0;
    }

    .recipe_box .input_box {
        float: none;
        width: 100%;
        margin-bottom: 20px;
        padding-right: 0;
        border-right: none;
        border-bottom: solid 1px #bfbfbf;
    }

    .recipe_box .recipe_thumbnail {
        float: none;
        width: 100%;
        padding-left: 0;
    }

    .recipe_box .input_box > p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .recipe_box .input_box > p::before {
        position: absolute;
        top: 1.0em;
        left: 0;
    }

    .recipe_box .input_box > p::after {
        position: absolute;
        top: 1.0em;
        right: 0;
    }

    .recipe_box .input_box .input_form .select-wrap {
        width: 100%;
    }

    .recipe_box .input_box .input_form .select-wrap select {
        width: 100%;
        font-size: 16px;
    }

    .recipe_box .input_box .input_form > span {
        display: block;
        margin-bottom: 10px;
    }

    .inputbtn {
        width: 68%;
        height: 40px;
        margin: 0 auto 30px;
        font-size: 16px;
    }

    .recipe_box .recipe_thumbnail a::before {
        right: 10px;
        width: 15px;
        height: 15px;
    }

    .recipe_box .recipe_thumbnail figure {
        width: 115px;
        height: 90px;
        padding: 9px;
        margin-right: 15px;
        background-size: 100%;
    }

    .recipe_box .recipe_thumbnail figure span {
        height: 64px;
        margin-bottom: 10px;
    }

    .recipe_box .recipe_thumbnail .title {
        font-size: 14px;
    }

    .recipe_cat li span {
        font-size: 10px;
    }

    .recipe_box .recipe_thumbnail .txt_area::before {
        top: 0;
        left: 0;
        right: auto;
        width: 45px;
        height: 29px;
        -moz-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
    }

    .recipe_box .recipe_thumbnail .txt_area {
        position: initial;
        width: 52%;
        margin-top: 0;
    }
}

/* ---/SP--- */


/******************************
 gallery_area
******************************/
#gallery_area {
    position: relative;
    padding: 70px 0;
}

#gallery_area .inr {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* gallery_box */
.gallery_box {
    text-align: left;
}

.gallery_box::after {
    content: "";
    clear: both;
    display: block;
}

.gallery_box li {
    float: left;
    margin-left: 18px;
    margin-bottom: 40px;
    font-size: 14px;
    font-size: 1.4rem;
}

.gallery_box li:nth-child(4n+1) {
    margin-left: 0;
}

.gallery_box a {
    display: block;
    width: 286px;
    line-height: 1.6;
}

.gallery_box figure {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 162px;
    margin-bottom: 20px;
    background-color: #F7F2F2;
    background-image: url(../img/img_dummy.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    border-radius: 4px;
    border: solid 1px #bdbdbd;
}

.gallery_box figure img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.gallery_box a:hover figure img {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    -ms-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
}

.gallery_box a {
    display: block;
}

.gallery_box a .date {
    display: block;
    font-size: 12px;
    font-size: 1.2rem;
    color: #807a79;
    margin-bottom: 10px;
}

.gallery_box a .title {
    display: block;
    color: #2c221f;
}

#gallery_area .btn {
    width: 240px;
}

/* ---SP--- */
@media screen and (max-width: 768px) {
    #gallery_area {
        padding: 40px 0;
    }

    #gallery_area .inr {
        padding: 0 20px;
    }

    .gallery_box li {
        width: 48.35%;
        margin-left: 3.3%;
        margin-bottom: 20px;
    }

    .gallery_box li:nth-child(4n+1) {
        margin-left: 3.3%;
    }

    .gallery_box li:nth-child(odd) {
        margin-left: 0;
    }

    .gallery_box li a {
        width: 100%;
    }

    .gallery_box li figure {
        height: 28vw;
        margin-bottom: 10px;
    }

    .gallery_box a .title {
        font-size: 14px;
    }
}

/* ---/SP--- */


/******************************
 footer
******************************/
footer {
    position: relative;
    text-align: left;
    background: #f0e3d1;
}

footer .f_nav {
    border-bottom: solid 1px #e3d2cd;
    padding: 40px 0;
}

footer .f_nav nav {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

footer .f_nav nav::after {
    content: "";
    clear: both;
    display: block;
}

footer .f_nav nav > ul {
    float: left;
    width: 175px;
    border-left: solid 1px #e3d2cd;
    padding-left: 30px;
    margin-left: 30px;
}

footer .f_nav nav > ul:first-child {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
}

footer .f_nav nav > ul:nth-child(1) {
    width: 70px;
}

footer .f_nav nav > ul:nth-child(3) {
    width: 120px;
}

footer .f_nav nav > ul:nth-child(5) {
    width: 320px;
}

footer .f_nav nav > ul:nth-child(6) a {
    color: #2C221F;
}

footer .f_nav li {
    font-weight: bold;
    line-height: 1.6;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: normal;
    color: #DA0012;
    margin-bottom: 15px;
}

footer .f_nav li a {
    color: #DA0012;
}

footer .f_nav nav > ul ul {
    margin-top: 20px;
}

footer .f_nav li li {
    position: relative;
    font-weight: normal;
    margin-left: 0.7em;
    margin-bottom: 5px;
    color: #2C221F;
}

footer .f_nav nav > ul ul.half::after {
    content: "";
    clear: both;
    display: block;
}

footer .f_nav nav > ul ul.half li {
    float: left;
    width: 45%;
}

footer .f_nav li li a {
    color: #2C221F;
}

footer .f_nav nav .interview_column {
    width: 480px;
}

footer .f_nav nav .interview_column::after {
    content: "";
    clear: both;
    display: block;
}

footer .f_nav nav .interview_column li {
    float: left;
    width: 150px;
}

/* bn_nav */
footer .bn_nav {
    border-top: solid 1px #fdeeef;
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
}

footer .bn_nav nav {
    width: 1150px;
    margin: 0 auto;
}

footer .bn_nav nav ul::after {
    content: "";
    clear: both;
    display: block;
}

footer .bn_nav nav li {
    float: left;
    width: 280px;
    margin-left: 10px;
    margin-bottom: 10px;
}

footer .bn_nav nav li:nth-child(4n+1) {
    margin-left: 0;
}

footer .bn_nav nav li a {
    display: block;
}


/* basic_box */
footer .basic_box {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
    background-color: #fdf7ef;
}

footer .basic_box .inr {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

footer .basic_box::after {
    content: "";
    clear: both;
    display: block;
}

footer .basic_box p {
    line-height: 1.6;
}

footer .logo {
    width: 140px;
    float: left;
    margin-right: 20px;
}

footer .logo a {
    display: block;
}

footer .logo img {
    width: 100%;
    vertical-align: top;
}

footer .txt {
    font-size: 14px;
    font-size: 1.4rem;
}

footer .copy {
    background-color: #DA0012;
    color: #FFF;
    text-align: center;
    padding: 1.2em;
    font-size: 12px;
    font-size: 1.2rem;
}

.gotop {
    position: fixed;
    right: 10px;
    bottom: 70px;
    z-index: 12;
}

.gotop a {
    display: block;
    width: 50px;
}

.gotop img {
    width: 100%;
}

/* ---SP--- */
@media screen and (max-width: 768px) {
    footer .f_nav {
        padding: 0;
        border-bottom: none;
    }

    footer .f_nav nav > ul {
        width: 100%;
        float: none;
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }

    footer .f_nav nav > ul:nth-child(1) {
        width: 100%;
    }

    footer .f_nav nav > ul:nth-child(3) {
        width: 100%;
    }

    footer .f_nav nav > ul:nth-child(5) {
        width: 100%;
    }

    footer .f_nav nav > ul ul li:nth-child(odd) a {
        border-right: solid 1px #e3d2cd;
    }

    footer .f_nav nav > ul.ulhalf::after {
        content: "";
        clear: both;
        display: block;
    }

    footer .f_nav nav > ul.ulhalf li {
        float: left;
        width: 50%;
    }

    footer .f_nav nav > ul.ulhalf li:nth-child(odd) span,
    footer .f_nav nav > ul.ulhalf li:nth-child(odd) a {
        border-right: solid 1px #e3d2cd;
    }

    footer .f_nav li {
        margin-bottom: 0;
    }

    footer .f_nav li span,
    footer .f_nav li a {
        display: block;
        padding: 10px 20px;
        border-bottom: solid 1px #e3d2cd;
        letter-spacing: -0.05em;
    }

    footer .f_nav li span {
        position: relative;
        cursor: pointer;
    }

    footer .f_nav li span::before,
    footer .f_nav li span::after {
        display: block;
        content: '';
        background-color: #2C221F;
        position: absolute;
        z-index: 1;
        width: 11px;
        height: 1px;
        top: 50%;
        right: 14px;
    }

    footer .f_nav li span::before {
        width: 1px;
        height: 11px;
        top: 50%;
        right: 19px;
        margin-top: -5px;
    }

    footer .f_nav li span.open::before {
        display: none;
    }

    footer .f_nav nav > ul ul {
        display: none;
        background-color: #fdf7ef;
        margin-top: 0;
    }

    footer .f_nav nav ul ul::after {
        content: "";
        clear: both;
        display: block;
    }

    footer .f_nav nav .interview_column {
        width: 100%;
    }

    footer .f_nav nav .interview_column li,
    footer .f_nav nav ul ul li {
        float: left;
        width: 50%;
        margin-left: 0;
        margin-bottom: 0;
    }

    footer .f_nav nav > ul ul.half li {
        width: 50%;
    }

    footer .f_nav li li::before {
        left: 0;
        top: 0.7em;
    }

    footer .f_nav nav {
        width: 100%;
    }

    footer .bn_nav {
        padding: 15px 20px;
    }

    footer .bn_nav nav {
        width: 100%;
    }

    footer .bn_nav nav li {
        width: 48.35%;
        margin-left: 3.3%;
        margin-bottom: 10px;
    }

    footer .bn_nav nav li a {
        display: block;
    }

    footer .bn_nav nav li:nth-child(odd) {
        margin-left: 0;
    }

    footer .bn_nav nav li img {
        width: 100%;
    }

    footer .basic_box .inr {
        padding: 0 20px;
        font-size: 12px;
    }

    footer .logo {
        width: 100px;
        float: none;
        margin-right: 0;
    }

    footer .copy {
        font-size: 10px;
    }

    .gotop a {
        width: 40px;
    }
}

/* ---/SP--- */

/******************************
 oemMerit_area
******************************/
#oemMerit_area {
    background: #ffffff;
    position: relative;
    z-index: -2;
}

#oemMerit_area .inr {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 116px;
    padding-bottom: 97px;
    text-align: left;
}

#oemMerit_area .ttl {
    font-size: 40px;
    font-weight: bold;
    color: #cd0d12;
    width: 100%;
    text-align: center;
    margin-bottom: 58px;
    font-family: "YuGothic", "游ゴシック", "PT Sans", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, sans-serif;
}

#oemMerit_area figure {
    width: 580px;
}

#oemMerit_area figure img {
    width: 100%;
    height: 380px;
    margin-bottom: 15px;
}

#oemMerit_area figure figcaption {
    font-size: 12px;
    line-height: 1.6;
}

#oemMerit_area figure figcaption span {
    font-weight: bold;
}


#oemMerit_area .box_text {
    width: 580px;
    display: flex;
    flex-wrap: wrap;
    letter-spacing: -0.7px;
}

#oemMerit_area .box_text .ttl {
    font-size: 28px;
    font-weight: bold;
    width: auto;
    color: #2c221f;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 20px;
}

#oemMerit_area .box_text .ttl span {
    color: #cd0d12;
}

#oemMerit_area .box_text .ttl_sub {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 33px;
}

#oemMerit_area .box_text dl {
    display: block;
    line-height: 1.6;
}

#oemMerit_area .box_text dl dt {
    font-size: 20px;
    font-weight: bold;
    color: #cd0d12;
    padding-bottom: 8px;
}

#oemMerit_area .box_text dl dt span {
    color: #fff;
    position: relative;
    text-align: center;
    width: 25px;
    height: 25px;
    display: inline-block;
    padding-top: 4px;
    margin-right: 10px;
    line-height: 1;
}

#oemMerit_area .box_text dl dt span::after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    background: #cd0d12;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
    /*
    transform: translateX(50%);
    transform: translateY(50%);
*/
}

#oemMerit_area .box_text dl dd {
    font-size: 16px;
    padding-bottom: 12px;
}


@media screen and (max-width: 768px) {
    #oemMerit_area .inr {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    #oemMerit_area .ttl {
        font-size: 28px;
        margin-bottom: 20px;
    }

    #oemMerit_area figure {
        width: 100%;
        margin-bottom: 40px;
    }

    #oemMerit_area figure img {
        width: 100%;
        height: 66vw;
        margin-bottom: 10px;
    }

    #oemMerit_area figure figcaption {
        font-size: 10px;
        line-height: 1.6;
    }

    #oemMerit_area figure figcaption span {
        font-weight: bold;
    }


    #oemMerit_area .box_text {
        width: 100%;
    }

    #oemMerit_area .box_text .ttl {
        font-size: 23px;
        line-height: 1.4;
        margin-bottom: 40px;
    }

    #oemMerit_area .box_text .ttl span {
        color: #cd0d12;
    }

    #oemMerit_area .box_text .ttl_sub {
        font-size: 17px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    #oemMerit_area .box_text dl {
        display: block;
        line-height: 1.6;
    }

    #oemMerit_area .box_text dl dt {
        font-size: 14px;
        display: flex;
    }

    #oemMerit_area .box_text dl dt span {
        padding-top: 6px;
    }

    #oemMerit_area .box_text dl dd {
        font-size: 14px;
        padding-bottom: 12px;
    }

}



/******************************
 developmentMerit_area
******************************/
#developmentMerit_area {
    background: #f5efef;
}

#developmentMerit_area .inr {
    padding: 30px 0 125px;
}

#developmentMerit_area .box_lead {
    width: 100%;
    position: relative;
    text-align: left;
}

#developmentMerit_area .box_lead .img {
    width: 696px;
    height: 415px;
}

#developmentMerit_area .box_lead .ttl {
    position: absolute;
    background: #d60d12;
    color: #ffffff;
    font-size: 40px;
    font-size: 4rem;
    padding: 70px 55px 70px;
    top: -30px;
    right: 0;
    font-weight: bold;
    line-height: 1.4;
}

#developmentMerit_area .box_lead .ttl span {
    font-family: 'Asap Condensed', sans-serif;
    font-size: 24px;
    font-size: 2.4trem;
    font-weight: 600;
    display: block;
}

#developmentMerit_area .lists {
    display: flex;
    justify-content: space-between;
    margin-top: 27px;
    font: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 70px;
}

#developmentMerit_area .lists .item {
    width: 380px;
}

#developmentMerit_area .lists .item .ttl {
    padding: 24px 10px 20px;
    line-height: 1.6;
    text-align: center;
    background: #d60d12;
    color: #ffffff;
    position: relative;
    margin-bottom: 27px;
}

#developmentMerit_area .lists .item .ttl::after {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border-top: solid 19px #d60d12;
    border-right: solid 20px transparent;
    border-left: solid 20px transparent;
    position: absolute;
    bottom: -19px;
    left: 0;
    right: 0;
    margin: auto;
}

#developmentMerit_area .lists .item .card {
    background: #ffffff;
    padding: 30px 30px 25px;
    letter-spacing: -0.5px;
}

#developmentMerit_area .lists .item .card img {
    margin-bottom: 20px;
}

#developmentMerit_area .lists .item .card .ttl_sub {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.6;
    font-weight: bold;
    margin-bottom: 15px;
}

#developmentMerit_area .lists .item .card .text {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: normal;
    text-align: left;
    /*    letter-spacing: -0.08rem;*/
}


#developmentMerit_area .box_cmn_contact .ttl {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.6;
    font-weight: bold;
    margin-bottom: 20px;
}

#developmentMerit_area .box_cmn_contact .ttl span {
    position: relative;
    width: auto;
    display: inline-block;
}

#developmentMerit_area .box_cmn_contact .ttl span::before,
#developmentMerit_area .box_cmn_contact .ttl span::after {
    content: "";
    display: block;
    width: 2px;
    height: 70px;
    position: absolute;
    background: #2c221f;
    border-radius: 10px;
    top: 0;
}

#developmentMerit_area .box_cmn_contact .ttl span::before {
    left: -36px;
    transform: rotate(-30deg);
}

#developmentMerit_area .box_cmn_contact .ttl span::after {
    right: -36px;
    transform: rotate(30deg);
}

@media screen and (max-width: 768px) {
    #developmentMerit_area .inr {
        padding: 150px 0 50px;
    }

    #developmentMerit_area .box_lead .img {
        width: 100%;
        height: auto;
        padding: 0 5px;
    }

    #developmentMerit_area .box_lead .ttl {
        width: 275px;
        max-width: 100%;
        height: 145px;
        font-size: 24px;
        background: #d60d12;
        color: #ffffff;
        padding: 20px 30px;
        top: -150px;
    }

    #developmentMerit_area .box_lead .ttl span {
        font-size: 19px;
    }

    #developmentMerit_area .lists {
        margin-top: 20px;
        font-size: 16px;
        margin-bottom: 40px;
        flex-wrap: wrap;
        padding: 0 20px;
    }

    #developmentMerit_area .lists .item {
        width: 100%;
        margin-bottom: 20px;
    }

    #developmentMerit_area .lists .item:last-child {
        margin-bottom: 0;
    }

    #developmentMerit_area .lists .item .ttl {
        padding: 15px 10px;
        font-size: 16px;
        margin-bottom: 15px;
    }

    #developmentMerit_area .lists .item .ttl::after {
        border-top: solid 9px #d60d12;
        border-right: solid 10px transparent;
        border-left: solid 10px transparent;
        bottom: -9px;
    }

    #developmentMerit_area .lists .item .card {
        padding: 20px;
    }

    #developmentMerit_area .lists .item:first-child .card img {
        width: 49%;
        height: auto;
    }

    #developmentMerit_area .lists .item:nth-child(2) .card img {
        width: 72%;
        height: auto;

    }

    #developmentMerit_area .lists .item:nth-child(3) .card img {
        width: 55%;
        height: auto;
    }

    #developmentMerit_area .lists .item .card img {
        margin-bottom: 20px;
    }

    #developmentMerit_area .lists .item .card .ttl_sub {
        font-size: 17px;
        margin-bottom: 15px;
    }

    #developmentMerit_area .lists .item .card .text {
        font-size: 14px;
        line-height: 1.4;
    }

    #developmentMerit_area .box_cmn_contact .ttl {
        font-size: 17px;
        padding: 0;
        margin-bottom: 20px;
        letter-spacing: -1.7px;
    }

    #developmentMerit_area .box_cmn_contact .ttl span {
        position: relative;
        width: auto;
        display: inline-block;
    }

    #developmentMerit_area .box_cmn_contact .ttl span::before,
    #developmentMerit_area .box_cmn_contact .ttl span::after {
        width: 1px;
        height: 70px;
        top: auto;
        bottom: 0;
    }

    #developmentMerit_area .box_cmn_contact .ttl span::before {
        left: -10px;
        transform: rotate(-30deg);
    }

    #developmentMerit_area .box_cmn_contact .ttl span::after {
        right: -5px;
        transform: rotate(30deg);
    }
}

@media screen and (max-width: 375px) {
    #developmentMerit_area .box_cmn_contact .ttl span::before {
        left: -6px;
        transform: rotate(-20deg);
    }

    #developmentMerit_area .box_cmn_contact .ttl span::after {
        right: -1px;
        transform: rotate(20deg);
    }
}




/******************************
 box_cmn_contact
******************************/
.box_cmn_contact .box_telMail {
    display: flex;
    justify-content: center;
}

.box_cmn_contact .box_telMail .item {
    width: 50%;
    min-height: 147px;
    position: relative;
    /*
    display: flex;
    justify-content: center;
    vertical-align: middle;
    flex-wrap: wrap;
*/
}

.box_cmn_contact .box_telMail .item {
    background: #ffffff;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: bold;
}

.box_cmn_contact .box_telMail .item a {
    /*
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
*/
    width: 100%;
    height: 100%;
    color: #ffffff;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-box-pack: 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;


}

.box_cmn_contact .box_telMail .item.tel a span {
    display: block;
}

.box_cmn_contact .box_telMail .item.tel a .text {
    color: #000000;
    width: 100%;
    padding-top: 15px;
    letter-spacing: normal;

}

.box_cmn_contact .box_telMail .item.tel a .num {
    color: #d60d12;
    font-size: 40px;
    font-size: 4rem;
    font-family: 'Asap Condensed', sans-serif;
    font-weight: 700;
    position: relative;
    padding-top: 15px;
    padding-left: 20px;
    letter-spacing: 0.1rem;
}

.box_cmn_contact .box_telMail .item.tel a .num::before {
    content: "";
    display: block;
    width: 20px;
    height: 26px;
    position: absolute;
    background: url(../img/ic_tel.svg);
    background-repeat: no-repeat;
    left: 56px;
    bottom: 7px;
    margin: auto;
}


.box_cmn_contact .box_telMail .item.mail {
    background: #f7931e;
}


.box_cmn_contact .box_telMail .item.mail a {
    position: relative;
}

.box_cmn_contact .box_telMail .item.mail a::before {
    content: "";
    display: block;
    width: 26px;
    height: 22px;
    position: absolute;
    background: url(../img/ic_arrow-r.svg);
    background-repeat: no-repeat;
    right: 23px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.box_cmn_contact .box_telMail .item.mail span {
    position: relative;
    padding-left: 34px;
    padding-top: 10px;
    letter-spacing: normal;
}


.box_cmn_contact .box_telMail .item.mail a span::before {
    content: "";
    display: block;
    width: 31px;
    height: 22px;
    position: absolute;
    background: url(../img/ic_mail.svg);
    background-repeat: no-repeat;
    left: -4px;
    top: 3px;
    bottom: 0;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .box_cmn_contact {
        padding: 0 20px;
    }

    .box_cmn_contact .box_telMail {
        flex-wrap: wrap;
    }

    .box_cmn_contact .box_telMail .item {
        width: 100%;
        min-height: 85px;
        height: 85px;
    }

    .box_cmn_contact .box_telMail .item {
        font-size: 14px;
    }

    .box_cmn_contact .box_telMail .item.tel a .text {
        color: #000000;
        width: 100%;
        padding-top: 10px;

    }

    .box_cmn_contact .box_telMail .item.tel a .num {
        font-size: 25px;
        padding-top: 10px;
        padding-left: 0px;
    }

    .box_cmn_contact .box_telMail .item.tel a .num::before {
        width: 13px;
        height: 17px;
        left: 20px;
        margin: auto;
    }


    .box_cmn_contact .box_telMail .item.mail {
        background: #f7931e;
    }


    .box_cmn_contact .box_telMail .item.mail a {
        position: relative;
    }

    .box_cmn_contact .box_telMail .item.mail a::before {
        width: 15px;
        height: 13px;
        right: 10px;
    }

    .box_cmn_contact .box_telMail .item.mail span {
        position: relative;
        padding-left: 0px;
        padding-top: 0px;
    }


    .box_cmn_contact .box_telMail .item.mail a span::before {
        width: 18px;
        height: 13px;
        left: -23px;
        bottom: 2px;
    }
}

/******************************
 ttl_cmn_01
******************************/
.ttl_cmn_01 {
    color: #d60d12;
    font-size: 40px;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.ttl_cmn_01 span {
    color: #2c221f;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 600;
    font-family: 'Asap Condensed', sans-serif;
    display: block;
    padding-top: 13px;
    letter-spacing: 2px;
}


.ttl_cmn_sub {
    font-size: 20px;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}

@media(max-width: 768px) {
    .ttl_cmn_01 {
        color: #d60d12;
        font-size: 24px;
        margin-bottom: 25px;
    }

    .ttl_cmn_01 span {
        color: #2c221f;
        font-size: 17px;
        padding-top: 5px;
    }


    .ttl_cmn_sub {
        font-size: 16px;
    }
}


@media(min-width: 769px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

/******************************
product_area
******************************/
#product_area {
    background: #ffffff;
}

#product_area .inr {
    padding: 121px 0 114px;
}

#product_area .lists {
    display: flex;
    justify-content: space-between;
    margin-top: 51px;

}

#product_area .lists .card {
    width: 282px;
}

#product_area .lists .card figure {
    width: 100%;
    margin-bottom: 28px;
}

#product_area .lists .card .ttl {
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    margin-bottom: 19px;
}

#product_area .lists .card .txt {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: left;
    line-height: 1.6;
    letter-spacing: -0.1px;
}

@media(max-width: 768px) {
    #product_area .inr {
        padding: 50px 20px 50px;
    }

    #product_area .lists {
        margin-top: 30px;

        flex-wrap: wrap;
    }

    #product_area .lists .card {
        width: 100%;
        margin-bottom: 60px;
    }

    #product_area .lists .card figure {
        width: 100%;
        height: auto;
        margin-bottom: 25px;
    }

    #product_area .lists .card .ttl {
        font-size: 17px;
        margin-bottom: 15px;
    }

    #product_area .lists .card .txt {
        font-size: 14px;
        line-height: 1.4;
    }
}

/******************************
type_area
******************************/
#type_area {
    position: relative;
}

@media screen and (min-width: 769px) {
    #type_area::before {
        content: "";
        display: block;
        background: url(../img/bg_oem_type.jpg);
        width: 1200px;
        height: 1700px;
        position: absolute;
        left: 0;
        top: 0;
        /*
        width: calc(100% - 200px);
        min-width: 1400px;
*/
    }

    #type_area .type_area_inrwp {
        width: 1200px;
        height: 1700px;
        margin: 0 auto;
        position: relative;
        z-index: 3;
    }
}

#type_area .ttl_bg {
    min-width: 300px;
    height: 391px;
    width: 25%;
    background: #d60d12;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}


#type_area .type_area_inr {
    padding: 225px 0 115px;
    position: relative;
    width: 1400px;
    margin-right: auto;
    background: url(../img/bg_oem_type.jpg);
}


#type_area .type_area_inr > .box_txt .ttl {
    color: #ffffff;
    font-size: 40px;
    font-size: 4rem;
    font-weight: bold;
    text-align: left;
    position: relative;
    z-index: 3;
    letter-spacing: 0.1rem;
}

@media screen and (min-width: 769px) {
    #type_area .type_area_inr {
        height: 1700px;
    }

    #type_area .type_area_inr > .box_txt .ttl {
        width: 312px;
        height: 395px;
        position: absolute;
        background: #d60d12;
        padding-top: 85px;
        top: 0px;
        left: 0;
    }

}

#type_area .box_txt .ttl span {
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 600;
    font-family: 'Asap Condensed', sans-serif;
    display: block;
    padding-top: 11px;
    letter-spacing: 0.23rem;
}

#type_area .box_txt .ttl_sub {
    font-size: 20px;
    font-size: 2rem;
    color: #2c221f;
    /*    padding-left: 126px;*/
    font-weight: bold;
    position: relative;
    z-index: 3;
}

@media screen and (min-width: 769px) {
    #type_area .box_txt > .ttl_sub.ttl_sub02 {
        position: absolute;
        top: 90px;
/*        left: 160px;*/
        left: 118px;
        right: 0;
        margin: auto;
    }
}

#type_area .lists {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    /*    padding-left: 100px;*/
    margin-top: 76px;
    position: relative;
    z-index: 3;
}

#type_area .lists .card {
    width: 380px;
    background: #ffffff;
    position: relative;
}

#type_area .lists .card:nth-child(3) {
    top: -40px;
}


#type_area .lists .card figure {
    width: 100%;
}


#type_area .lists .card .box_txt {
    padding: 26px 30px 5px;
    text-align: left;
    display: block;
}

#type_area .lists .card .ttl {
    font-size: 24px;
    font-size: 2.4rem;
    color: #2c221f;
    font-weight: bold;
    text-align: center;
    margin-bottom: 22px;
}

#type_area .lists .card .ttl_sub {
    padding-left: 0;
    font-weight: normal;
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 30px;
    letter-spacing: 0.1rem;
}


#type_area .lists .card .ttl_sub span {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    background: #d60d12;
    width: 90px;
    min-height: 26px;
    font-size: 14px;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: -0.1rem;
    padding: 6px 0;
    line-height: 1;
    margin-right: 14px;
}

#type_area .lists .card dl dl {}

#type_area .lists .card dl dt {
    color: #d60d12;
    margin-bottom: 3px;
    font-weight: bold;

}

#type_area .lists .card dl dd {
    line-height: 1.6;
    margin-bottom: 20px;
}

#type_area .box_cmn_contact {
    max-width: 1200px;
    margin-top: 80px;
}

@media screen and (max-width: 768px) {
    #type_area {
        width: 100%;
        min-width: 100%;
        background: url(../img/bg_oem_type.jpg);
    }

    #type_area .type_area_inr {
        width: 100%;
        margin: 0 auto;
        padding: 0px 0 50px;
    }


    #type_area .type_area_inr > .box_txt {
        display: block;
    }

    #type_area .type_area_inr > .box_txt .ttl {
        width: 275px;
        min-width: 100px;
        max-width: 100%;
        height: 145px;
        font-size: 23px;
        background: #d60d12;
        padding: 20px 30px;
        margin-left: auto;
    }

    #type_area .box_txt .ttl span {
        font-size: 19px;
        padding-top: 11px;
    }

    #type_area .box_txt .ttl_sub {
        font-size: 17px;
        font-weight: bold;
        /*        padding: 0 20px;*/
        padding: 0;
        display: flex;
        align-items: center;
    }

    #type_area .lists {
        flex-wrap: wrap;
        margin-top: 30px;
        padding: 0 20px;
    }

    #type_area .lists .card {
        width: 100%;
        margin-bottom: 30px;
    }

    #type_area .lists .card:nth-child(3) {
        top: auto;
    }


    #type_area .lists .card figure {
        width: 100%;
    }


    #type_area .lists .card .box_txt {
        padding: 20px;
    }

    #type_area .lists .card .ttl {
        font-size: 17px;
        margin-bottom: 15px;
    }

    #type_area .lists .card .ttl_sub {
        font-size: 14px;
        margin-bottom: 20px;
    }


    #type_area .lists .card .ttl_sub span {
        width: 90px;
        min-height: 20px;
        font-size: 12px;
        margin-right: 10px;
    }

    #type_area .lists .card dl dt {
        font-size: 14px;
        line-height: 1.4;
    }

    #type_area .lists .card dl dd {
        font-size: 14px;
        line-height: 1.4;
    }

    #type_area .box_cmn_contact {
        margin-top: 30px;
    }
}


/*20201030追加分*/
#type_area .lists .card.card__lrg figure img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 769px) {
    #type_area .lists {
        flex-wrap: wrap;
    }

    #type_area .lists .card.card__lrg {
        width: 1200px;
        margin-bottom: 84px;
        display: flex;
        align-items: center;
    }

    #type_area .lists .card.card__lrg figure {
        width: 380px;
        height: 276px;
    }

    #type_area .lists .card.card__lrg .ttl {
        text-align: left;
    }

    #type_area .lists .card.card.card__lrg .box_txt {
        padding: 37px 0 0 55px;
        text-align: left;
        display: block;
    }

}


/******************************
flow_area
******************************/
#flow_area {
    background: #ffffff;
}

#flow_area .inr {
    padding: 121px 0;
}

#flow_area .inr .ttl_cmn_01 {
    margin-bottom: 56px;
}

#flow_area table {
    vertical-align: middle;
}

#flow_area table tr {
    vertical-align: middle;
    line-height: 1.5;
    color: #2c221f;
}

#flow_area table th {
    width: 70px;
    background: #c92a24;
    font-size: 40px;
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Asap Condensed', sans-serif;
    color: #ffffff;
    vertical-align: middle;
    text-align: center;
    line-height: 1.5;
}

#flow_area table td {
    vertical-align: middle;
    text-align: left;
    padding: 17px 29px;
    background: #f2f2f2;
    line-height: 1.5;
}

#flow_area table td.sub {
    width: 235px;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: bold;
    border-right: solid 2px #d0d0d0;
}

#flow_area table td.arrow {
    background: none;
    padding: 0;
    height: 43px;
    text-align: center;
    vertical-align: middle;
}

#flow_area table td.arrow img {
    width: 42px;
    height: 23px;
    vertical-align: middle;
}

@media screen and (max-width: 768px) {
    #flow_area .inr {
        padding: 50px 0;
    }

    #flow_area .inr .ttl_cmn_01 {
        margin-bottom: 30px;
    }

    #flow_area table tr {
        width: 100%;
        padding: 0 20px;
        height: auto;
        display: flex;
        flex-wrap: wrap;
    }

    #flow_area table th {
        width: 20%;
        background: #c92a24;
        font-size: 24px;
        padding: 15px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    #flow_area table td {
        text-align: left;
        background: #f2f2f2;
        padding: 20px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        font-size: 14px;
        width: 100%;
    }

    #flow_area table td.sub {
        width: 80%;
        font-size: 17px;
        border: none;
    }

    #flow_area table td.arrow {
        width: 100%;
        height: 40px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    #flow_area table td.arrow img {
        width: 42px;
        height: 23px;
        transform: scale(0.8);
    }

}

/******************************
package_area
******************************/

#package_area {
    width: 100%;
    min-height: 300px;
    background: transparent;
}

.parallax-slider {
    top: 0;
    left: 0;
}

#package_area .inr {
    padding-bottom: 119px;
}

#package_area .box_ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 583px;
    height: 142px;
    background: #d60d12;
    margin: 0 auto 45px;
}

#package_area h2.ttl {
    font-size: 40px;
    font-size: 4rem;
    color: #ffffff;
    letter-spacing: 0.1rem;
    font-weight: bold;
}

#package_area .ttl span {
    font-family: 'Asap Condensed', sans-serif;
    font-size: 24px;
    font-size: 2.4trem;
    font-weight: 600;
    display: block;
    width: 100%;
    padding-top: 15px;
    letter-spacing: 0.23rem;
}

#package_area .ttl_cmn_sub {
    color: #ffffff;
}


#package_area .list {
    display: flex;
    justify-content: space-between;
    margin-top: 43px;
}

#package_area .list .card {
    width: 282px;
    background: #ffffff;
    padding: 32px 20px 25px;
}

#package_area .list .card .ttl {
    font-size: 24px;
    font-size: 2.4rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

#package_area .list .card figure {
    margin-bottom: 30px;
}

#package_area .list .card .txt {
    line-height: 1.6;
    text-align: left;
    letter-spacing: -1px;
}

@media screen and (max-width: 768px) {
    #package_area {
        min-height: 15vh;
    }

    #package_area .inr {
        padding: 0 0 50px;
    }

    #package_area .box_ttl {
        display: block;
        margin: 0;
        width: 275px;
        min-width: 100px;
        max-width: 100%;
        height: 145px;
        font-size: 24px;
        background: #d60d12;
        padding: 20px 30px;
        margin-left: auto;
        text-align: left;
        margin-bottom: 30px;
    }

    #package_area h2.ttl {
        font-size: 24px;
    }

    #package_area .ttl span {
        font-size: 19px;
        padding-top: 11px;
    }

    #package_area .ttl_cmn_sub {
        padding: 0 20px;
    }

    #package_area .list {
        flex-wrap: wrap;
        margin-top: 30px;
        padding: 0 20px;
    }

    #package_area .list .card {
        width: calc(50% - 5px);
        padding: 20px;
        margin-bottom: 10px;
    }

    #package_area .list .card .ttl {
        font-size: 17px;
        margin-bottom: 20px;
    }

    #package_area .list .card figure {
        margin-bottom: 20px;
    }

    #package_area .list .card .txt {
        font-size: 14px;
        line-height: 1.4;
    }
}


/******************************
Performance_area
******************************/
#Performance_area {
    background: #f2f2f2;
}

#Performance_area .inr {
    padding: 123px 0 120px;
}

#Performance_area h2.ttl {
    margin-bottom: 55px;
}

#Performance_area .list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    letter-spacing: -1px;
    margin-bottom: 33px;
}

#Performance_area .list .card {
    width: 282px;
    margin-bottom: 47px;
    background: #ffffff;
    margin-right: 24px
}

#Performance_area .list .card:nth-child(4n) {
    margin-right: 0;
}

#Performance_area .list .card .ttl {
    height: 80px;
    background: #c92a24;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 20px;
    font-size: 2rem;
    padding: 0 10px;
    line-height: 1.6;
    font-weight: bold;
}

#Performance_area .list .card figure {}

#Performance_area .list .card .txt {
    font-size: 12px;
    font-weight: bold;
    color: #2c221f;
    text-align: left;
    padding: 20px 20px 16px;
}


@media screen and (max-width: 768px) {
    #Performance_area .inr {
        padding: 50px 0px;
    }

    #Performance_area .list {
        justify-content: flex-start;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    #Performance_area .list .card {
        width: calc(50% - 5px);
        margin-bottom: 20px;
        margin-right: 0;
    }

    #Performance_area .list .card:nth-child(2n + 1) {
        margin-right: 10px;
    }

    #Performance_area .list .card .ttl {
        height: auto;
        background: #c92a24;
        font-size: 16px;
        padding: 10px;
        line-height: 1.4;
    }

    #Performance_area .list .card .txt {
        font-size: 12px;
        font-weight: bold;
        color: #2c221f;
        text-align: left;
        padding: 10px;
    }
}