@charset "utf-8";
* {
    margin: 0;
    padding: 0;
}
.body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
section,
article,
aside,
hgroup,
header,
footer,
nav,
dialog,
figure,
menu,
video,
audio,
mark,
time,
canvas,
details {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    background: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
a {
    color: #494949;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}
a:hover {
    opacity: .7;
}
a img {
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-decoration: none;
}
section,
article,
aside,
hgroup,
header,
footer,
nav,
dialog,
figure,
figcaption {
    display: block;
}
input,
select {
    vertical-align: middle;
}
body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
    color: #494949;
    width: 100%;
    min-width: 769px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background: #f8f5f2;
    font-size: 16px;
    line-height: 2;
    letter-spacing: .075rem;
}
.en {
    font-family: "Lexend Exa", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}
img {
    max-width: 100%;
    margin: auto;
    vertical-align: bottom;
}
ul,
li,
dl,
dt,
dd,
form {
    margin: 0px;
    padding: 0px;
    border: 0px;
    list-style: none;
    letter-spacing: .075rem;
    /* For IE 6/7 */
    *display: inline;
    *zoom: 1;
}
li::marker {
    margin: 0;
    padding: 0;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}
ins {
    /* remember to highlight inserts somehow! */
    text-decoration: none;
}
del {
    text-decoration: line-through;
}
table {
    /* markup tables with 'cellspacing="0"' */
    border-collapse: collapse;
    border-spacing: 0;
}
.alc {
    text-align: center !important;
}
.all {
    text-align: left !important;
}
.alr {
    text-align: right !important;
}
.floatL {
    float: left;
}
.floatR {
    float: right;
}
.clr {
    zoom: 1;
}
.clr:after {
    content: ' ';
    display: block;
    clear: both;
    height: 0;
}
.clearboth {
    clear: both !important;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.inner {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
}
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.flexRev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
/* 共通 */
.more_btn a {
    display: inline-block;
    position: relative;
    font-weight: 400;
    padding-right: 80px;
    }
.more_btn a::after {
    content: '';
    display: inline-block;
    background: url(../img/arw.png) no-repeat top center / 100% auto;
    width: 27px;
    height: 11px;
    position: absolute;
    top: 50%;
    right: 11px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-filter: brightness(0) saturate(100%) invert(70%) sepia(63%) saturate(2531%) hue-rotate(307deg) brightness(107%) contrast(88%);
    filter: brightness(0) saturate(100%) invert(70%) sepia(63%) saturate(2531%) hue-rotate(307deg) brightness(107%) contrast(88%);
}
.more_btn a:hover::after {
    right: 8px;
}
.more_btn a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
    width: 48px;
    height: 48px;
    border: 1px solid #494949;
    border-radius: 50px;
}
/* fadeIn
=======================*/
.fade_in {
    -webkit-animation-name: fadeInAnime;
    animation-name: fadeInAnime;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}
@-webkit-keyframes fadeInAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeInAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInAnimeTrigger {
    opacity: 0;
}
/* header */
header {
    position: fixed;
    height: 85px;
    width: 100%;
    z-index: 9999;
    background-color: rgba(248, 245, 242, .95);
}
.header_inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 30px 0 10px;
}
header h1 {
    max-width: 119px;
}
.header_menubtn {
    display: none;
}
.header_menubg {
    width: 79%;
    max-width: 870px;
}
.accodion .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.accodion .menu>li {
    position: relative;
}
.accodion .menu li a {
    font-weight: 500;
    line-height: 1.5;
    display: block;
    width: 100%;
}
.accodion .menu .menu-title {
    font-size: min(1.4vw, 18px);
    padding: 5px 12px;
}
.accodion .menu .menu-title.havchild {
    padding: 5px 30px 5px 5px;
    position: relative;
}
.accodion .menu .menu-title.havchild::after {
    position: absolute;
    content: "";
    top: 35%;
    right: 0;
    width: 10px;
    height: 10px;
    -webkit-transform: translate(-50%, -40%) rotate(135deg);
        -ms-transform: translate(-50%, -40%) rotate(135deg);
            transform: translate(-50%, -40%) rotate(135deg);
    border-top: 2px solid #424242;
    border-right: 2px solid #424242;
    border-radius: 2px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}
.accodion .menu .menu-title.havchild:hover::after {
    top: 60%;
    -webkit-transform: translate(-50%, -60%) rotate(-45deg);
    -ms-transform: translate(-50%, -60%) rotate(-45deg);
    transform: translate(-50%, -60%) rotate(-45deg);
}
.accodion .menu .sub-menu {
    position: absolute;
    z-index: 1;
    width: 185px;
    top: 100%;
    padding: 10px !important;
    left: 0;
    background-color: #ffffff;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0 9px 0px rgba(118, 187, 201, .2);
            box-shadow: 0px 0 9px 0px rgba(118, 187, 201, .2);
}
.accodion .menu .sub-menu li {
    width: 100%;
}
.accodion .menu .sub-menu li:first-child {
    border-bottom: dotted 2px #afafaf;
    margin-bottom: 5px;
}
.accodion .menu .sub-menu li a {
    display: block;
    width: 100%;
    padding: 7px 0;
    font-size: 16px;
    letter-spacing: 0;
}
.accodion .menu li a:hover {
    opacity: .6;
}
/*  */
header .accodion .menu li.header_entry {
    max-width: 170px;
    width: 100%;
}
header .accodion .menu li.header_entry a {
    max-width: 170px;
    width: 100%;
    display: block;
    padding: 8px 15px;
    color: #fff;
    font-weight: 500;
    background: -o-linear-gradient(left, #ef858c, #efb985);
    background: -webkit-gradient(linear, left top, right top, from(#ef858c), to(#efb985));
    background: linear-gradient(to right, #ef858c, #efb985);
    border-radius: 5px;
    position: relative;
    font-size: 18px;
}
header .accodion .menu li.header_entry a::after {
    content: '';
    display: inline-block;
    background: url(../img/arw.png) no-repeat top center / 100% auto;
    width: 27px;
    height: 11px;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
header .accodion .menu li.header_entry a:hover::after {
    right: 10px;
}
/* footer */
footer {
    position: relative;
    z-index: 1;
}
.footBtn {
    max-width: 1000px;
    width: 90%;
    margin: 40px auto 0;
    padding: 50px;
    background: url(../img/btnArea_bg.jpg) no-repeat center top / cover;
}
.footBtn ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 750px;
    margin: 0 auto;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}
.footBtn ul li {
    width: 45%;
    max-width: 335px;
}
.footBtn ul li a {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    border-radius: 50px;
    padding: 15px 35px 15px 0;
    position: relative;
    -webkit-box-shadow: 0px 0 16px 0px rgba(73, 73, 73, .08);
            box-shadow: 0px 0 16px 0px rgba(73, 73, 73, .08);
}
.footBtn ul li a::after {
    content: '';
    display: inline-block;
    background: url(../img/arw.png) no-repeat top center / 100% auto;
    width: 27px;
    height: 11px;
    position: absolute;
    top: 50%;
    right: 21px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.footBtn ul li:last-child a::after {
    -webkit-filter: brightness(0) saturate(100%) invert(70%) sepia(63%) saturate(2531%) hue-rotate(307deg) brightness(107%) contrast(88%);
            filter: brightness(0) saturate(100%) invert(70%) sepia(63%) saturate(2531%) hue-rotate(307deg) brightness(107%) contrast(88%);
}
.footBtn ul li a::before {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    display: inline-block;
    width: 48px;
    height: 48px;
    border: 1px solid #fff;
    border-radius: 50px;
}
.footBtn ul li:last-child a::before {
    border: 1px solid #494949;
}
.footBtn ul li a:hover::after {
    right: 17px;
}
.footBtn ul li:first-child a {
    background-color: #f4a45c;
}
.footBtn ul li:nth-child(2) a {
    background-color: #ebbc2f;
}
.footBtn ul li:last-child a {
    background-color: #fff;
    color: #494949;
    margin-top: 25px;
    letter-spacing: 0;
}
.footBtn ul li.nolink a {
    pointer-events: none;
    opacity: .6;
}
.footerCont {
    margin: 70px auto 0;
    background-color: #d8cfc5;
    padding: 40px 0 10px;
}
.footerCont_inn {
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
}
.footerCont_inn h2 {
    max-width: 120px;
}
.footerCont_inn ul.footerCont_list {
    max-width: 735px;
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.footerCont_inn ul li a {
    display: block;
    width: 100%;
    padding: 0 10px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}
.footerCont_inn ul li span a {
    font-size: 14px;
    padding-left: 12px;
}
.footerCont_inn ul li span a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    display: inline-block;
    width: 8px;
    height: 1px;
    background-color: #363636;
}
.footerCont p {
    font-size: 12px;
    margin: 40px auto 0;
    text-align: center;
}
/* sub */
.sub_mv {
    padding-top: 85px;
    overflow: hidden;
    position: relative;
    margin-bottom: 50px;
}
.sub_mvBg {
    height: 255px;
    position: relative;
}
.sub_mv_inner {
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            -webkit-box-align: end;
                -ms-flex-align: end;
                    align-items: flex-end;
    z-index: 1;
}
.sub_mv_inner h2 {
    font-size: 56px;
    color: #fff;
    line-height: 1.3;
    text-shadow: #492511 0 0 25px, #fff 1px 0 10px;
    z-index: 1;
}
.sub_mv_inner p {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    margin-left: 20px;
    padding-bottom: 5px;
    text-shadow: #492511 0 0 20px, #fff 1px 0 6px;
}
.sub_mv figure {
    position: relative;
    z-index: 1;
}
.sub_mv figure img {
    display: block;
}
.sub_mv_ill01,
.sub_mv_ill02 {
    position: absolute;
}
.sub_ttl {
    margin-bottom: 20px;
}
.sub_ttl h2 {
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: 50px;
    line-height: 1.3;
}
.sub_ttl span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    padding-left: 70px;
    position: relative;
    margin-top: 5px;
}
.sub_ttl span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
    width: 57px;
    height: 1px;
    background-color: #6d6d6d;
}
.sub_ttlCent {
    text-align: center;
    position: relative;
    padding-top: 60px;
    margin: 0 auto 40px;
}
.sub_ttlCent::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    display: inline-block;
    width: 1px;
    height: 57px;
    background-color: #6d6d6d;
}
.sub_ttlCent h2 {
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: 50px;
    line-height: 1.3;
}
.sub_ttlCent span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-top: 5px;
}
.kousai {
    -webkit-filter:
        drop-shadow(0 0 4px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
            filter:
        drop-shadow(0 0 4px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}
/*  */
.sub_jd {
    position: relative;
    background: url(../img/jd_bg.jpg) no-repeat center /cover;
    padding:40px 0 50px;
}
.sub_jd::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -14px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    display: inline-block;
    width: 1px;
    height: 57px;
    background-color: #6d6d6d;
    z-index: 1;
}
.sub_jdLine_top {
    display: block;
    height: 3px;
    width: 100vw;
    background: -o-linear-gradient(left, #9cd5e1, #c6dc97);
    background: -webkit-gradient(linear, left top, right top, from(#9cd5e1), to(#c6dc97));
    background: linear-gradient(to right, #9cd5e1, #c6dc97);
    position: absolute;
    top: -3px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
.sub_jdLine_btm {
    display: block;
    height: 3px;
    width: 100vw;
    background: -o-linear-gradient(right, #9cd5e1, #c6dc97);
    background: -webkit-gradient(linear, right top, left top, from(#9cd5e1), to(#c6dc97));
    background: linear-gradient(to left, #9cd5e1, #c6dc97);
    position: absolute;
    bottom: -3px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
.sub_jd .sub_ttlCent {
    padding-top: 0;
}
.sub_jd .sub_ttlCent::before {
    content: none;
}
.sub_jd .sub_ttlCent h2 {
    background: -o-linear-gradient(left, #328ac2, #59bcd0);
    background: -webkit-gradient(linear, left top, right top, from(#328ac2), to(#59bcd0));
    background: linear-gradient(90deg, #328ac2, #59bcd0);
}
.sub_jd p {
    text-align: center;
}
.sub_jd .sub_jdBtn {
    max-width: 335px;
    margin: 20px auto 0;
}
.sub_jd .sub_jdBtn a {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    border-radius: 50px;
    padding: 15px 0;
    position: relative;
    -webkit-box-shadow: 0px 0 16px 0px rgba(73, 73, 73, .08);
            box-shadow: 0px 0 16px 0px rgba(73, 73, 73, .08);
    background-color: #57adbe;
}
.sub_jd .sub_jdBtn a::after {
    content: '';
    display: inline-block;
    background: url(../img/arw.png) no-repeat top center / 100% auto;
    width: 27px;
    height: 11px;
    position: absolute;
    top: 50%;
    right: 21px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.sub_jd .sub_jdBtn a:hover::after {
    right: 17px;
}
.sub_jd .sub_jdBtn a::before {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    display: inline-block;
    width: 48px;
    height: 48px;
    border: 1px solid #fff;
    border-radius: 50px;
}
.interview_line {
    background: linear-gradient(transparent 65%, #ffe02f 0%);
    line-height: 1.3em;
}
@media only screen and (max-width: 1024px) {
    /* header */
    header {
        height: 70px;
    }
    .header_inner {
        padding: 20px 0 10px;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    header h1 {
        max-width: 90px;
    }
    .header_menubtn {
        display: block;
        position: relative;
        width: 35px;
        height: 43px;
        display: -ms-flexbox;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        cursor: pointer;
    }
    .header_menubtn span {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 1.5px;
        background: #494949;
        position: absolute;
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
    }
    .header_menubtn span.top {
        top: 30%;
    }
    .header_menubtn span.bottom {
        bottom: 30%;
    }
    .open .header_menubtn {
        z-index: 999;
    }
    .open .header_menubtn span.top {
        -webkit-transform: translateY(-50%) rotate(-45deg);
        -ms-transform: translateY(-50%) rotate(-45deg);
        transform: translateY(-50%) rotate(-45deg);
        top: calc(50% - 2px);
    }
    .open .header_menubtn span.bottom {
        -webkit-transform: translateY(-50%) rotate(45deg);
        -ms-transform: translateY(-50%) rotate(45deg);
        transform: translateY(-50%) rotate(45deg);
        bottom: 48%;
    }
    .header_menubg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(248, 245, 242, .8);
        -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
        visibility: hidden;
        opacity: 0;
        z-index: 100;
        overflow: scroll;
        -webkit-overflow-scrolling: touch;
    }
    /* 開閉用ボタンがクリックされた時のスタイル */
    .open .header_menubg {
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
        visibility: visible;
        opacity: 1;
        max-width: 100%;
    }
    /*  */
    .accodion .menu {
        display: block;
        width: 90%;
        max-width: 400px;
        margin: 100px auto 0;
    }
    .accodion .menu .menu-title {
        font-size: 16px;
        padding: 10px 12px;
        border-bottom: 1px solid #363636;
    }
    .accodion .menu li:nth-child(4) .menu-title.havchild {
        margin-top: 10px;
    }
    .accodion .menu .menu-title.havchild {
        padding: 10px 12px;
    }
    .accodion .menu .menu-title.havchild::after {
        content: unset;
    }
    .accodion .menu .menu-title.havchild:hover::after {
        -webkit-transform: unset;
            -ms-transform: unset;
                transform: unset;
    }
    .accodion .menu .sub-menu {
        width: 100%;
        position: static;
        background-color: unset;
        -webkit-box-shadow: unset;
                box-shadow: unset;
        padding: 10px 0 0 !important;
    }
    .accodion .menu .sub-menu li a {
        font-size: 14px;
        padding-left: 30px;
        position: relative;
    }
    .accodion .menu .sub-menu li a::before {
        content: '';
        position: absolute;
        left: 10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        display: inline-block;
        width: 10px;
        height: 1px;
        background-color: #363636;
    }
    /*  */
    header .accodion .menu li.header_entry {
        max-width: 270px;
        margin: 40px auto 0;
    }
    header .accodion .menu li.header_entry a {
        max-width: 270px;
        font-size: 16px;
        padding: 10px 15px;
    }
    .sub_mv {
        padding-top: 70px;
        margin-bottom: 30px;
    }
}
@media only screen and (max-width: 768px) {
    body {
        min-width: 100%;
        font-size: 14px;
    }
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
    .flex {
        display: block;
    }
    /* 共通 */
    .more_btn {
        max-width: 110px;
    }
    .more_btn a {
        padding-right: 60px;
    }
    .more_btn a::after {
        width: 22px;
        height: 9px;
        right: 10px;
    }
    .more_btn a::before {
        right: 0;
        top: 50%;
        width: 40px;
        height: 40px;
    }
    /* footer */
    .footBtn {
        padding: 40px 5%;
    }
    .footBtn ul li {
        width: 100%;
        margin: 0 auto 20px;
    }
    .footBtn ul li:last-child {
        margin-bottom: 0;
    }
    .footBtn ul li a {
        font-size: 16px;
    }
    .footBtn ul li a::after {
        width: 22px;
        height: 9px;
    }
    .footBtn ul li a::before {
        width: 40px;
        height: 40px;
    }
    .footBtn ul li:last-child a {
        margin-top: 0;
    }
    .footerCont {
        margin: 50px auto 0;
        padding: 30px 0 10px;
    }
    .footerCont_inn h2 {
        margin: 0 auto 20px;
    }
    .footerCont_inn ul.footerCont_list {
        max-width: 400px;
        width: 100%;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin: 0 auto;
    }
    .footerCont_inn ul.footerCont_list li {
        width: 48%;
    }
    .footerCont_inn ul li a {
        font-size: 14px;
        padding: 0;
    }
    .footerCont_inn ul li span a {
        font-size: 13px;
        letter-spacing: 0;
        padding-left: 10px;
    }
    .footerCont_inn ul li span a::before {
        width: 6px;
    }
    .footerCont p {
        font-size: 10px;
        margin: 30px auto 0;
        width: 90%;
        line-height: 1.5;
    }
    /* sub */
    .sub_mv {
        margin-bottom: 30px;
    }
    .sub_mvBg {
        height: 200px;
    }
    .sub_mv_inner {
        display: block;
    }
    .sub_mv_inner h2 {
        font-size: 40px;
    }
    .sub_mv_inner p {
        font-size: 18px;
        margin-left: 0;
        padding-bottom: 0;
        text-shadow: #492511 0 0 7px, #fff 1px 0 6px;
    }
    .sub_ttl {
        margin-bottom: 15px;
    }
    .sub_ttl h2 {
        font-size: 36px;
    }
    .sub_ttl span {
        font-size: 16px;
        padding-left: 50px;
    }
    .sub_ttl span::before {
        width: 40px;
    }
    .sub_ttlCent {
        padding-top: 45px;
        margin: 0 auto 30px;
    }
    .sub_ttlCent::before {
        height: 40px;
    }
    .sub_ttlCent h2 {
        font-size: 36px;
    }
    .sub_ttlCent span {
        font-size: 16px;
    }
    /*  */
.sub_jd {
    position: relative;
    background: url(../img/jd_bg_sp.jpg) no-repeat center /cover;
    padding:30px 0 40px;
}
.sub_jd::before {
    top: -12px;
    height: 40px;
}
.sub_jdLine_top {
    height: 2px;
    top: -2px;
}
.sub_jdLine_btm {
    height: 2px;
    bottom: -2px;
}
.sub_jd .sub_ttlCent {
    margin-bottom: 20px;
}
.sub_jd .sub_ttlCent h2 {
    line-height: 1.2;
}
.sub_jd .sub_jdBtn {
    max-width: 300px;
}
.sub_jd .sub_jdBtn a {
    font-size: 16px;
    padding: 12px 0;
}
.sub_jd .sub_jdBtn a::after {
    width: 22px;
    height: 9px;
}
.sub_jd .sub_jdBtn a::before {
    width: 40px;
    height: 40px;
}
}