@charset "UTF-8";
/* ====================================================
reset style
==================================================== */

html {
    overflow-y: scroll;
    font-size: 10px;
    /* Base font size, change to 14px or 16px if needed */
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

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

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

img {
    vertical-align: middle;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}

li {
    list-style: none;
}

caption,
th {
    text-align: left;
}

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

q:before,
q:after {
    content: '';
}

abbr,
acronym {
    border: 0;
    font-variant: normal;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

/*to enable resizing for IE*/

input,
textarea,
select {
    *font-size: 100%;
}

/*because legend doesn't inherit in IE */

legend {
    color: #333333;
}

del,
ins {
    text-decoration: none;
}

/* ====================================================
Font
==================================================== */

/* ====================================================
Color
==================================================== */

/* ====================================================
Position & transform
==================================================== */

/* ====================================================
Sizing
==================================================== */

/* ====================================================
Misc
==================================================== */

/* ====================================================
Media Quary
==================================================== */

/* ====================================================
flexbox
==================================================== */

/* ====================================================
Transiton
==================================================== */

/* ====================================================
opacity
==================================================== */

/* ====================================================
Base style & container
==================================================== */

body {
    color: #333333;
    font-family: -apple-system, blinkMacSystemFont, "メイリオ", Meiryo, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Sans", "ヒラギノ角ゴシック", "ＭＳ Ｐゴシック", "MS PGothic", "ＭＳ ゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

.container {
    display: block;
    margin: 0 auto;
}

.container.container-sm {
    max-width: 1030px;
    padding: 0 15px;
}

.container.container-md {
    max-width: 1230px;
    padding: 0 20px;
}

.container.container-lg {
    max-width: 1530px;
    padding: 0 25px;
}

@media screen and (max-width: 1024px) {
    .pc {
        display: none;
    }
}

@media print,
screen and (min-width: 1025px) {
    .sp {
        display: none;
    }
}

.sp-sm {
    display: none;
}

@media screen and (max-width: 768px) {
    .sp-sm {
        display: block;
    }
}

/* ====================================================
Float & clear
==================================================== */

.cf {
    *zoom: 1;
}

.cf:before {
    content: "";
    display: table;
}

.cf:after {
    clear: both;
    content: "";
    display: table;
}

img {
    max-width: 100%;
    height: auto;
}

.img100 {
    width: 100% !important;
}

a {
    text-decoration: none;
    color: inherit;
}

.al-c {
    text-align: center;
}

.al-r {
    text-align: right;
}

.align-t {
    vertical-align: top;
}

.rollover {
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.rollover:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
}

.blinkLink:hover {
    cursor: pointer;
    -webkit-animation: blink .3s ease-in-out 1 alternate;
    animation: blink .3s ease-in-out 1 alternate;
}

@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.flex-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-box.content-fs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.flex-box.content-fe {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flex-box.content-bw {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-box.content-c {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-box.align-fs {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flex-box.align-fe {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.flex-box.align-c {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-box .col-2 {
    width: 50%;
}

@media print,
screen and (min-width: 1025px) {
    .flex-box .order1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .flex-box .order2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

.bold {
    font-weight: bold;
}

input,
button,
textarea,
select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button {
    cursor: pointer;
}

.inner {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1000px;
}

@media screen and (max-width: 768px) {
    .inner {
        padding: 0 5%;
    }
}

@media screen and (max-width: 1024px) {
    main {
        padding-top: 65px;
    }
}

/* ====================================================
print css
==================================================== */
@media print {
    .print-none {
        display: none;
    }
}

/* ====================================================
header
==================================================== */

#main_header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    width: 100%;
}

@media print,
screen and (min-width: 1025px) {
    #main_header .logo_box {
        margin: 8px 0;
    }

    #main_header .logo_box .logo {
        text-align: center;
    }
}

#main_header .logo_box > div {
    width: 50%;
}

@media screen and (max-width: 1024px) {
    #main_header .logo_box > div {
        width: 100%;
    }
}

#main_header .logo_box .btn_box a {
    display: block;
    width: 49.5%;
    text-align: center;
    line-height: 72px;
}

#main_header .logo_box .btn_box a.btn_kanyu {
    background: #9b0038;
    color: #fff;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
}

#main_header .logo_box .btn_box a.btn_jwc {
    background: #fff;
    line-height: 66px;
    border: 3px solid #009b63;
    background: url(/assets/img/common/jw_logo_btn_bg.jpg);
}

@media screen and (max-width: 1024px) {
    #main_header .logo_box .btn_box {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    #main_header {
        position: fixed !important;
        top: 0;
        left: 0;
        height: 60px;
        background: #fff;
        z-index: 100;
    }

    #main_header .logo {
        margin-top: 6px;
    }

    #main_header .logo img {
        width: auto;
        max-height: 50px;
    }
}

@media screen and (max-width: 768px) {
    #main_header .inner {
        padding: 0;
    }

    #main_header .logo {
        margin: 12px 0 12px 5px;
    }

    #main_header .logo img {
        width: auto;
        height: 36px;
    }
}

/*--nav--*/

nav.globalMenuSp {
    box-shadow: 0px 5px 7px -2px #333333a1;
    -webkit-box-shadow: 0px 5px 7px -2px #333333a1;
    -ms-box-shadow: 0px 5px 7px -2px #333333a1;
    z-index: 10;
        position: relative;
}

.navGlobal {
    display: none;
}

@media print,
screen and (min-width: 1025px) {
    .navGlobal {
        display: block;
    }
}

@media print,
screen and (min-width: 1025px) {
    .navGlobal .navGlobalIn {
        margin: 0 auto;
        width: 100%;
        max-width: 965px;
        font-size: 14px;
        background: rgba(255,255,255,0.9);
    }

    .navGlobal .navGlobalIn li {
        position: relative;
        float: left;
        text-align: center;
        margin-left: 1px;
        height: 50px;
    }

    .navGlobal .navGlobalIn li:last-child {
        float: right;
    }

    .navGlobal .navGlobalIn li:before {
        content: '';
        position: absolute;
        display: block;
        top: 5px;
        right: -1px;
        width: 1px;
        height: 40px;
        background: #fff;
    }

    .navGlobal .navGlobalIn li:last-child:before {
        display: none;
    }

    .navGlobal .navGlobalIn li.nav03:before {
        display: none;
    }

    .navGlobal .navGlobalIn li a {
        display: block;
        padding: 0 15px 0 35px;
        line-height: 50px;
        background-position: left 18px center;
        background-size: 18px auto;
        background-repeat: no-repeat;
    }

    .navGlobal .navGlobalIn li.nav01 {
        margin-left: 0;
        width: 150px;
    }

    .navGlobal .navGlobalIn li.nav01 a {
        background-image: url(/assets/img/common/icn_nav01.png);
    }

    .navGlobal .navGlobalIn li.nav02 {
        width: 157px;
    }

    .navGlobal .navGlobalIn li.nav02 a {
        background-image: url(/assets/img/common/icn_nav02.png);
    }

    .navGlobal .navGlobalIn li.nav03 {
        width: 125px;
        background: #0763a4;
    }

    .navGlobal .navGlobalIn li.nav03 a {
        color: #fff;
        background-image: url(/assets/img/common/icn_nav03.png);
    }

    .navGlobal .navGlobalIn li.nav04 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 244px;
        line-height: 48px;
    }

    .navGlobal .navGlobalIn li.nav04 > span {
        padding: 0 15px 0 35px;
        background: url(/assets/img/common/icn_nav04.png) no-repeat left 10px center;
        background-size: 18px auto;
    }

    .navGlobal .navGlobalIn li.nav04 .size {
        margin: 0 7px;
        padding-bottom: 7px;
        color: #0763a4;
    }

    .navGlobal .navGlobalIn li.nav04 .size.fontS {
        font-size: 12px;
    }

    .navGlobal .navGlobalIn li.nav04 .size.fontM {
        font-size: 16px;
    }

    .navGlobal .navGlobalIn li.nav04 .size.fontL {
        font-size: 21px;
    }

    .navGlobal .navGlobalIn li.nav04 .size.active,
    .navGlobal .navGlobalIn li.nav04 .size:hover {
        border-bottom: 2px solid #0763a4;
    }

    .navGlobal .navGlobalIn li.searchBox {
        padding: 8px 20px 9px;
        width: 280px;
    }

    /*
    .navGlobal .navGlobalIn li.searchBox:before {
        display: none;
    }
*/
    .navGlobal .navGlobalIn li.searchBox .searchBox_inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-bottom: 1px solid #b0bec5;
    }

    .navGlobal .navGlobalIn li.searchBox input {
        display: inline-block;
        width: 210px;
        line-height: 32px;
        height: 32px;
    }
}

/*SP*/

@media screen and (max-width: 1024px) {
    nav.globalMenuSp {
        position: fixed;
        z-index: 100;
        top: 0;
        left: 0;
        background: #fff;
        color: #333333;
        text-align: center;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        -webkit-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s;
        width: 100%;
        height: calc(100vh - 60px);
        border-top: 1px solid #cfd8dc;
        overflow-y: scroll;
    }

    nav.globalMenuSp .spMenu_inner {
        padding-bottom: 120px;
        width: 100%;
    }

    nav.globalMenuSp .submenu {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    nav.globalMenuSp.active {
        top: 60px;
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
    }
}

nav.globalMenuSp .functionSP .item {
    border-bottom: 2px solid #cfd8dc;
    text-align: left;
}

nav.globalMenuSp .functionSP .item.col-5 {
    width: 50%;
}

nav.globalMenuSp .functionSP .item.col-5:nth-child(odd) {
    border-right: 2px solid #cfd8dc;
}

nav.globalMenuSp .functionSP .item a {
    display: block;
    padding: 14px 10%;
    font-size: 16px;
    font-size: 1.6rem;
}

nav.globalMenuSp .functionSP .item.col-5:nth-child(2) a,
nav.globalMenuSp .functionSP .item:first-child a {
    padding: 10px 5% 5px;
    text-align: center;
}

nav.globalMenuSp .functionSP .item.col-5:nth-child(2) a img,
nav.globalMenuSp .functionSP .item:first-child a img {
    width: auto;
    height: 40px;
}

nav.globalMenuSp .functionSP .item.contact a {
    padding: 14px 5%;
}

nav.globalMenuSp .functionSP .item.btn_login a {
    text-align: center;
}

nav.globalMenuSp .functionSP .item.btn_login a span {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    font-size: 1.3rem;
}

nav.globalMenuSp .functionSP .item.btn_bnr_jw {
    height: 52px;
}

nav.globalMenuSp .functionSP .item.btn_bnr_jw a {
    padding: 12px 10px;
}

nav.globalMenuSp .functionSP .item.btn_bnr_jw a img {
    width: auto;
    max-height: 32px;
}

nav.globalMenuSp .functionSP .searchBox {
    padding: 8px 5%;
    border-bottom: 2px solid #b0bec5;
}

nav.globalMenuSp .functionSP .searchBox .searchBox_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

nav.globalMenuSp .functionSP .searchBox input {
    width: calc(100% - 40px);
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 31px;
}

@media screen and (max-width: 1024px) {
    nav.globalMenuSp ul {
        padding: 0;
        width: 100%;
    }

    nav.globalMenuSp ul li {
        width: 100%;
        border-bottom: 1px solid #cfd8dc;
    }

    nav.globalMenuSp ul li .navList_item_sp {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-bottom: 1px solid #cfd8dc;
    }

    nav.globalMenuSp ul li .navList_item_sp a {
        display: block;
        padding: 14px 0 14px 5%;
        width: calc(100% - 50px);
        font-size: 16px;
        font-size: 1.6rem;
        text-align: left;
    }

    nav.globalMenuSp ul li .navList_item_sp .js-toggle {
        width: 50px;
        height: 50px;
        color: #fff;
        background: url(/assets/img/common/jw_icon_open.png) no-repeat center center;
        background-size: 50%;
    }

    nav.globalMenuSp ul li .navList_item_sp .js-toggle.active {
        background: url(/assets/img/common/jw_icon_close.png) no-repeat center center;
        background-size: 50%;
    }

    nav.globalMenuSp ul li .submenu li a {
        display: block;
        padding: 14px 0 14px calc(5% + 1em);
        font-size: 16px;
        font-size: 1.6rem;
        text-align: left;
    }

    nav.globalMenuSp ul li .submenu li a.btn {
        color: #fff;
    }

    nav.globalMenuSp ul li .submenu li ul {
        display: none;
    }

    nav.globalMenuSp ul li a {
        display: block;
        color: #333333;
        padding: 1em 0;
    }
}

/*--//SP--*/

/*PC*/

@media print,
screen and (min-width: 1025px) {
    nav.globalMenuSp .spMenu_inner {
        position: relative;
    }

    nav.globalMenuSp .spMenu_inner > ul > li {
        float: left;
        margin-left: 1px;
        cursor: pointer;
    }

    nav.globalMenuSp .spMenu_inner > ul > li .navList_item {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 80px;
        background: #0763a4;
        position: relative;
        z-index: 10;
    }

    nav.globalMenuSp .spMenu_inner > ul > li:hover .navList_item {
        background: #333333;
    }

    nav.globalMenuSp .spMenu_inner > ul > li .navList_item:before {
        content: '';
        position: absolute;
        display: block;
        top: 4px;
        right: -1px;
        width: 1px;
        height: 72px;
        background: #0763a4;
        z-index: 1;
    }

    nav.globalMenuSp .spMenu_inner > ul > li .navList_item > span {
        display: table;
        width: 100%;
        height: 80px;
        color: #fff;
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: bold;
        text-align: center;
        -webkit-transform: perspective(1px) translateZ(0);
        transform: perspective(1px) translateZ(0);
    }

    nav.globalMenuSp .spMenu_inner > ul > li .navList_item > span span {
        display: table-cell;
        vertical-align: middle;
    }

    nav.globalMenuSp .spMenu_inner > ul > li .navList_item > span:after {
        content: '';
        position: absolute;
        height: 4px;
        background: #0763a4;
        bottom: 0;
        left: 0;
        right: 0;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        z-index: 1;
    }

    nav.globalMenuSp .spMenu_inner > ul > li:hover .navList_item > span:after {
        background: #333333;
    }

    nav.globalMenuSp .spMenu_inner > ul > li .navList_item > span:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff;
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transition-property: -webkit-transform;
        transition-property: -webkit-transform;
        -o-transition-property: transform;
        transition-property: transform;
        transition-property: transform, -webkit-transform;
        -webkit-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        -o-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }

    nav.globalMenuSp .spMenu_inner > ul > li:first-child {
        margin-left: 0;
        width: 215.5px;
    }

    nav.globalMenuSp .spMenu_inner > ul > li:nth-child(2) {
        width: 215.5px;
    }

    nav.globalMenuSp .spMenu_inner > ul > li:nth-child(3) {
        width: 131px;
    }

    nav.globalMenuSp .spMenu_inner > ul > li:nth-child(4) {
        width: 131px;
    }

    nav.globalMenuSp .spMenu_inner > ul > li:nth-child(5) {
        width: 131px;
    }

    nav.globalMenuSp .spMenu_inner > ul > li:nth-child(6) {
        width: 131px;
    }

    nav.globalMenuSp .spMenu_inner > ul > li:nth-child(6) .navList_item:before {
        display: none;
    }

    nav.globalMenuSp .spMenu_inner > ul > li:hover .submenu {
        margin-top: 0px;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        visibility: visible;
        opacity: 1;
        z-index: 1;
    }

    nav.globalMenuSp .spMenu_inner .js-toggle {
        display: none;
    }

    nav.globalMenuSp .spMenu_inner .submenu {
        position: absolute;
        top: 80px;
        left: 0;
        padding: 20px 40px;
        width: 100%;
        background: #fff;
        margin-top: -10px;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        visibility: hidden;
        opacity: 0;
        z-index: 1;
        -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
    }

    nav.globalMenuSp .spMenu_inner .submenu .ttlSubmenu {
        margin-bottom: 20px;
        padding: 15px 0;
        color: #002669;
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: bold;
        border-bottom: 1px solid #cfd8dc;
    }

    nav.globalMenuSp .spMenu_inner .submenu .classM {
        font-size: 14px;
        font-size: 1.4rem;
        font-weight: bold;
    }

    nav.globalMenuSp .spMenu_inner .submenu .classS {
        font-size: 13px;
        font-size: 1.3rem;
    }

    nav.globalMenuSp .spMenu_inner .submenu .classS:hover,
    nav.globalMenuSp .spMenu_inner .submenu .classM:hover {
        -webkit-animation: blink .3s ease-in-out 1 alternate;
        animation: blink .3s ease-in-out 1 alternate;
    }

    nav.globalMenuSp .spMenu_inner .submenu > ul > li {
        margin-bottom: 10px;
    }

    nav.globalMenuSp .spMenu_inner .submenu .itemWrap > ul {
        width: 33.33%;
    }

    nav.globalMenuSp .spMenu_inner .submenu .itemWrap > ul > li {
        margin-bottom: 20px;
    }

    nav.globalMenuSp .spMenu_inner .submenu .itemWrap > ul > li:last-child {
        margin-bottom: 10px;
    }

    nav.globalMenuSp .spMenu_inner .submenu .itemWrap > ul > li > ul {
        margin-top: 5px;
    }

    nav.globalMenuSp .spMenu_inner .submenu .itemWrap > ul > li > ul li {
        margin-bottom: 5px;
    }

    nav.globalMenuSp .spMenu_inner .submenu.submenu01 > ul li {
        width: 25%;
    }

    nav.globalMenuSp .spMenu_inner .submenu.submenu03 .itemWrap > ul:last-child > li:nth-child(5) {
        margin-bottom: 10px;
    }

    nav.globalMenuSp .spMenu_inner .submenu.submenu03 .btn {
        max-width: 230px;
    }

    nav.globalMenuSp .spMenu_inner .submenu.active:before {
        content: '';
        position: absolute;
        top: 0;
        margin-left: -7px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 14px 12px 0 12px;
        border-color: #333333 transparent transparent transparent;
        z-index: 1;
    }

    nav.globalMenuSp .spMenu_inner .submenu.active.submenu01:before {
        left: 104px;
    }

    nav.globalMenuSp .spMenu_inner .submenu.active.submenu02:before {
        left: 322px;
    }

    nav.globalMenuSp .spMenu_inner .submenu.active.submenu03:before {
        left: 495px;
    }

    nav.globalMenuSp .spMenu_inner .submenu.active.submenu04:before {
        left: 625px;
    }

    nav.globalMenuSp .spMenu_inner .submenu.active.submenu05:before {
        left: 759px;
    }

    nav.globalMenuSp .spMenu_inner .submenu.active.submenu06:before {
        left: 870px;
    }

    nav.globalMenuSp .spMenu_inner.active:before {
        -webkit-transition: all 1s ease;
        -o-transition: all 1s ease;
        transition: all 1s ease;
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
    }
}

/*--//PC--*/

@media screen and (max-width: 1024px) {
    .navToggle {
        display: block;
        position: fixed;
        right: 0;
        top: 0;
        width: 60px;
        height: 60px;
        z-index: 3;
        text-align: center;
    }
}

@media print,
screen and (min-width: 1025px) {
    .navToggle {
        display: none;
    }
}

.navToggle span {
    display: block;
    position: absolute;
    /* .navToggleに対して */
    width: 35px;
    border-bottom: solid 3px #0763a4;
    -webkit-transition: .35s ease-in-out;
    -o-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 0;
    right: 0;
    margin: auto;
}

.navToggle span:nth-child(1) {
    top: 18px;
}

.navToggle span:nth-child(2) {
    top: 28px;
}

.navToggle span:nth-child(3) {
    top: 39px;
}

.navToggle.active span:nth-child(1) {
    top: 29px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 29px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.fontSize .size {
    cursor: pointer;
}

/* ====================================================
footer
==================================================== */

#main-footer .bg_ftNav {
    background: url(/assets/img/common/jw_bg_ft.jpg) no-repeat center center;
    background-size: cover;
    border-top: 5px solid #0763a4;
}

@media screen and (max-width: 1024px) {
    #main-footer .bg_ftNav {
        background: #fff;
    }
}

#main-footer .ftNav_wrap {
    margin: 0 auto;
    padding: 55px 20px 60px;
    max-width: 1000px;
}

@media screen and (max-width: 1024px) {
    #main-footer .ftNav_wrap {
        padding: 0;
        max-width: 100%;
    }
}

#main-footer .ftNav_wrap .ftNav {
    width: 22.6%;
}

@media screen and (max-width: 1024px) {
    #main-footer .ftNav_wrap .ftNav {
        width: 100%;
    }
}

@media print,
screen and (min-width: 1025px) {
    #main-footer .ftNav_wrap .ftNav .item {
        padding-top: 22px;
        border-top: 1px solid #0763a4;
    }

    #main-footer .ftNav_wrap .ftNav .item.mb {
        margin-bottom: 50px;
    }
}

#main-footer .ftNav_wrap .ftNav a {
    color: #fff;
    font-size: 13px;
    font-size: 1.3rem;
}

@media screen and (max-width: 1024px) {
    #main-footer .ftNav_wrap .ftNav a {
        color: #333333;
    }
}

#main-footer .ftNav_wrap .ftNav a:hover {
    cursor: pointer;
    -webkit-animation: blink .3s ease-in-out 1 alternate;
    animation: blink .3s ease-in-out 1 alternate;
}

#main-footer .ftNav_wrap .ftNav .ttl_cat {
    margin-bottom: 14px;
}

#main-footer .ftNav_wrap .ftNav .ttl_cat a {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
    #main-footer .ftNav_wrap .ftNav .ttl_cat_sp {
        position: relative;
        padding: 13px 5%;
        border-bottom: 1px solid #0763a4;
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: bold;
    }

    #main-footer .ftNav_wrap .ftNav .ttl_cat_sp:before {
        content: '';
        position: absolute;
        right: 5px;
        top: 0;
        width: 50px;
        height: 50px;
        color: #fff;
        background: url(/assets/img/common/jw_icon_open.png) no-repeat center center;
        background-size: 50%;
    }

    #main-footer .ftNav_wrap .ftNav .ttl_cat_sp.active:before {
        background: url(/assets/img/common/jw_icon_close.png) no-repeat center center;
        background-size: 50%;
    }

    #main-footer .ftNav_wrap .ftNav .ttl_cat_sp.noAcc {
        padding: 0;
        font-weight: bold;
    }

    #main-footer .ftNav_wrap .ftNav .ttl_cat_sp.noAcc a {
        display: block;
        padding: 13px 5%;
        font-size: 16px;
        font-size: 1.6rem;
    }

    #main-footer .ftNav_wrap .ftNav .ttl_cat_sp.noAcc:before {
        display: none;
    }
}

#main-footer .ftNav_wrap .ftNav .submenu li {
    margin-bottom: 12px;
}

@media screen and (max-width: 1024px) {
    #main-footer .ftNav_wrap .ftNav .submenu {
        display: none;
    }

    #main-footer .ftNav_wrap .ftNav .submenu li {
        margin-bottom: 0;
        border-bottom: 1px solid #0763a4;
    }

    #main-footer .ftNav_wrap .ftNav .submenu li a {
        display: block;
        padding: 14px 5%;
        font-size: 16px;
        font-size: 1.6rem;
    }
}

#main-footer .address_wrap {
    padding: 50px 0 60px;
}

@media screen and (max-width: 1024px) {
    #main-footer .address_wrap {
        padding: 25px 0 30px;
    }
}

#main-footer .address_wrap .logo_jwnet {
    width: 50%;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    #main-footer .address_wrap .logo_jwnet {
        margin-bottom: 30px;
        width: 100%;
    }
}

#main-footer .address_wrap .address .logo {
    margin-bottom: 15px;
}

#main-footer .address_wrap .address p {
    font-size: 16px;
    font-size: 1.6rem;
    text-align: left;
}

@media screen and (max-width: 1024px) {
    #main-footer .address_wrap .address {
        width: 100%;
        text-align: center;
    }
}

#main-footer .copyrigth_wrap {
    padding: 30px 0;
    color: #fff;
    font-size: 12px;
    font-size: 1.2rem;
    background: #0763a4;
}

@media print,
screen and (min-width: 1025px) {
    #main-footer .copyrigth_wrap .inner {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }
}

#main-footer .copyrigth_wrap .adobe {
    margin-bottom: 20px;
    text-align: center;
}

@media print,
screen and (min-width: 1025px) {
    #main-footer .copyrigth_wrap .adobe {
        position: absolute;
        right: 0;
        top: -10px;
        margin-bottom: 0;
        width: 200px;
        text-align: right;
    }
}

#main-footer .copyrigth_wrap .adobe p {
    margin-top: 10px;
    font-size: 10px;
    font-size: 1rem;
}

#main-footer .copyrigth_wrap .copyright {
    margin-top: 20px;
    font-family: Garamond, "Times New Roman", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", "ＭＳ ゴシック", "Helvetica Neue", "Arial", sans-serif;
    text-align: center;
}

.pagetop {
    margin: 0 auto;
    max-width: 960px;
}

.pagetop .toTop {
    position: relative;
    display: block;
    padding-right: 20px;
    width: 154px;
    float: right;
    color: #fff;
    height: 35px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 32px;
    text-align: center;
    background: #0763a4;
}

.pagetop .toTop:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -6px;
    width: 13px;
    height: 13px;
    background: url(/assets/img/common/icn_totop.png) no-repeat center center;
    background-size: cover;
}

#pagetop-fixed {
    display: none;
}
#pagetop-fixed.fixed {
    display: block;
    position: fixed;
    z-index:1000;
    width: 100%;
    height: 32px;
    bottom: 0px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* Safari 4.0 - 8.0 */

@-webkit-keyframes blink-show-hide {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Standard syntax */

@keyframes blink-show-hide {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.address_wrap a:hover {
    -webkit-animation: blink-show-hide 0.3s;
    animation: blink-show-hide 0.3s;
}

.nav-line {
    background: #fff;
    height: 5px;
    width: 14.2857%;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
}

nav.globalMenuSp .spMenu_inner > ul > li:hover .nav-line {
    background: #fff;
}

@media screen and (max-width: 768px) {
    .nav-line {
        display: none;
    }
}

/* ====================================================
MODULE
==================================================== */

/*見出しMODULE*/

.ttlCom01 {
    position: relative;
    margin-bottom: 25px;
    padding-top: 20px;
    color: #333;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
    .ttlCom01 {
        padding-top: 15px;
        font-size: 20px;
        font-size: 2rem;
    }
}

.ttlCom01:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 76px;
    height: 6px;
    background: #333333;
}

@media screen and (max-width: 1024px) {
    .ttlCom01:before {
        height: 4px;
    }
}

.ttlCom01:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 6px;
    background: #0763a4;
}

@media screen and (max-width: 1024px) {
    .ttlCom01:after {
        height: 4px;
    }
}

/*テキストMODULE*/

.txt-center {
    text-align: center;
}

.txt-right {
    text-align: right;
}

.txt-left {
    text-align: left;
}

/*ボタンMODULE*/

.btn {
    position: relative;
    display: inline-block;
    padding: 10px;
    width: 100%;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
    color: #fff;
    font-weight: bold;
}

.btn:before {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -4px;
    width: 7px;
    height: 7px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.slide {
    position: relative;
    z-index: 2;
    background-color: #0763a4;
    color: #fff;
    overflow: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.slide:after {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

@media print,
screen and (min-width: 1025px) {
    .slide:hover {
        color: #fff;
    }

    .slide:hover:after {
        left: 0;
        background-color: #333333;
    }
}

.btnCom02 {
    color: #333333;
    background: transparent;
    text-align: left;
    line-height: 1;
}

.slide-flw {
    position: relative;
    display: block;
    z-index: 3;
    overflow: hidden;
    padding: 0;
}

@media screen and (max-width: 1024px) {
    .slide-flw {
        background: #333333;
    }
}

.slide-flw:before {
    right: 20px;
    border-top: 2px solid #333333;
    border-right: 2px solid #333333;
}

@media screen and (max-width: 1024px) {
    .slide-flw:before {
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
    }
}

.slide-flw:after {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.slide-flw span {
    position: relative;
    display: block;
    z-index: 4;
    padding: 15px 10px;
    height: 44px;
    width: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border-bottom: 2px solid #0763a4;
}

.slide-flw span:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -2px;
    width: 44px;
    height: 2px;
    background: #333333;
    z-index: 2;
}

.slide-flw span:after {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    left: -100%;
    top: 0;
    width: calc(100% - 44px);
    height: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
}

@media screen and (max-width: 1024px) {
    .slide-flw span {
        color: #fff;
    }

    .slide-flw span:after {
        left: 0;
        background-color: #0763a4;
    }
}

@media print,
screen and (min-width: 1025px) {
    .slide-flw:hover {
        color: #fff;
    }

    .slide-flw:hover:before {
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
    }

    .slide-flw:hover:after {
        left: 0;
        background-color: #333333;
    }

    .slide-flw:hover span {
        color: #fff;
        border: none;
    }

    .slide-flw:hover span:after {
        left: 0;
        background-color: #0763a4;
    }
}

.btnCom04 {
    position: relative;
    padding: 0;
    text-align: left;
    background: #0763a4;
    overflow: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 3;
}

.btnCom04:before {
    right: 18px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.btnCom04 span {
    display: block;
    position: relative;
    padding: 12px 10px;
}

.btnCom04 span:before {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 44px;
    height: 100%;
    z-index: -1;
    background: #333333;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.btnCom04 span:after {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #0763a4;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s;
}

.btnCom04:after {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    left: -100%;
    top: 0;
    width: calc(100% - 44px);
    height: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: -1;
}

@media print,
screen and (min-width: 1025px) {
    .btnCom04:hover {
        color: #fff;
    }

    .btnCom04:hover:after {
        left: 0;
        background-color: #333333;
    }

    .btnCom04 span:hover:after {
        left: 0;
        background: #0763a4;
    }
}

.slide-icn {
    position: relative;
    padding: 80px 10px 20px;
    color: #fff;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    background: #0763a4;
    border: 3px solid #0763a4;
    overflow: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 2;
}

.slide-icn:before {
    display: none;
}

.slide-icn:after {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

@media print,
screen and (min-width: 1025px) {
    .slide-icn:hover {
        color: #0763a4;
    }

    .slide-icn:hover:before {
        border-color: #0763a4;
    }

    .slide-icn:hover:after {
        left: 0;
        background-color: #fff;
    }
}

@media screen and (max-width: 768px) {
    .slide-icn {
        padding: 60px 10px 8px;
        font-size: 15px;
        font-size: 1.5rem;
    }
}

.content-index .main_img {
    position: relative;
    padding-top: 245px;
    height: 658px;
    background: url(/assets/img/index/jw_bg_main.jpg) no-repeat center bottom;
    background-size: cover;
}

@media screen and (max-width: 1024px) {
    .content-index .main_img {
        padding-top: 20px;
        height: 450px;
    }

    .content-index .main_img .inner {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .content-index .main_img {
        background-size: cover;
    }
}

.content-index .main_img .ttl_box {
    width: calc(100% - 330px);
    margin-top: -42px;
}

@media screen and (max-width: 1024px) {
    .content-index .main_img .ttl_box {
        width: 100%;
        margin-top: 0px;
    }
}

.content-index .main_img .ttl_box ul {
    margin-top: 20px;
}

.content-index .main_img .ttl_box ul li {
    margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
    .content-index .main_img .ttl_box ul li {
        margin-bottom: 10px;
    }
}

.content-index .main_img .ttl_box ul li span {
    display: inline-block;
    padding: 0 10px 0 10px;
    font-size: 21px;
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 24px;
    text-shadow: 2px 2px 2px #fff;
    background-size: 18px auto;
}

@media screen and (max-width: 1024px) {
    .content-index .main_img .ttl_box ul li span {
        padding: 0 10px 0 10px;
        font-size: 17px;
        font-size: 1.7rem;
        line-height: 22px;
        background-size: 15px auto;
    }
}

@media screen and (max-width: 1024px) {
    .content-index .main_img .ttl_box {
        width: 80%;
    }
}

.content-index .main_img .bnr_box {
    padding: 30px 0 10px;
    width: 330px;
    text-align: center;
    background: #fff;
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    height: 178px;
}

.content-index .main_img .pc-login-pd {
    padding-top: 54px;
}

.content-index .main_img .content-bw > .pc a {
    display: block;
}

@media print,
screen and (min-width: 1025px) {
    .content-index .main_img .bnr_box > div:first-child {
        margin-bottom: 30px;
    }
}

.content-index .main_img .bnr_box p {
    margin-bottom: 10px;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
}

.content-index .main_img p.comm {
    font-size: 1.15rem;
    font-weight: normal;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .content-index .main_img .bnr_box p {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 768px) {
    .content-index .main_img .bnr_box p {
        font-size: 12px;
        font-size: 1.2rem;
        margin-bottom: 0;
    }
}

.content-index .main_img .bnr_box p span {
    display: block;
    margin-top: 8px;
}

.content-index .main_img .bnr_box a + p {
    margin-top: 8px;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: normal;
}

.content-index .main_img .bnr_box .btn {
    margin: 0 auto;
    width: 220px;
}

@media screen and (max-width: 768px) {
    .content-index .main_img .bnr_box .btn {
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .content-index .main_img .bnr_box {
        position: absolute;
        bottom: 10px;
        margin: auto;
        padding: 5%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        width: 44%;
        max-width: 400px;
        height: 150px;
        justify-content: center;
        align-items: center;
    }

    .bnr_box.right {
        right: 5%;
    }

    .content-index .main_img .bnr_box > div {
        width: 48.5%;
    }
}

@media screen and (max-width: 1024px) and (-ms-high-contrast:none) {

    *::-ms-backdrop,
    .content-index .main_img {
        margin-top: 65px;
    }

    /* IE11 */
}

.content-index .bg_Beg {
    background: #efebe9;
}

.content-index section {
    padding: 35px 0 60px;
}

@media screen and (max-width: 1024px) {
    .content-index section {
        padding: 30px 0 40px;
    }
}

.content-index .sec_btn_box {
    padding: 25px 0 20px;
}

.content-index .bg_Beg ul.flex-box.align-fs {
    margin-bottom: 15px;
}

@media screen and (max-width: 1024px) {
    .content-index .bg_lGray ul.flex-box.align-fs {
        margin-bottom: 0;
    }
}

.content-index .bg_Beg ul.flex-box.align-fs .txt_box {
    display: flex;
    padding: 10px 15px;
    min-height: 70px;
}

.content-index .sec_btn_box li {
    width: 48.4375%;
}

@media screen and (max-width: 1024px) {
    .content-index .sec_btn_box li {
        width: 100%;
        margin-bottom: 20px;
    }

    .content-index .sec_btn_box li:last-child {
        margin-bottom: 0;
    }
}

.content-index .sec_btn_box li a span {
    display: block;
}

.content-index .sec_btn_box li a span:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    margin: auto;
    width: 53%;
    height: 50px;
    border: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .content-index .sec_btn_box li a span:before {
        top: 5px;
    }
}

.content-index .sec_btn_box li a.btn01 span:before {
    background: url(/assets/img/index/jw_icn01_on.png) no-repeat center center;
    background-size: 53px auto;
}

@media print,
screen and (min-width: 1025px) {
    .content-index .sec_btn_box li a.btn01:hover span:before {
        background: url(/assets/img/index/jw_icn01_off.png) no-repeat center center;
        background-size: 53px auto;
    }
}

.content-index .sec_btn_box li a.btn02 span:before {
    background: url(/assets/img/index/jw_icn02_on.png) no-repeat center center;
    background-size: 53px auto;
}

@media screen and (max-width: 768px) {
    .content-index .sec_btn_box li a.btn02 span:before {
        background-size: 40px auto;
    }
}

@media print,
screen and (min-width: 1025px) {
    .content-index .sec_btn_box li a.btn02:hover span:before {
        background: url(/assets/img/index/jw_icn02_off.png) no-repeat center center;
        background-size: 53px auto;
    }
}

.content-index .sec_news .tab_content_wrap #tags {
    font-size: 16px;
    font-size: 1.6rem;
}

@media screen and (max-width: 1024px) {
    .content-index .sec_news .tab_content_wrap #tags.open .js-tab {
        border-top-width: 1px;
        border: 2px solid #efebe9;
        max-height: 100px;
        padding: 12px 10px;
    }
}

.content-index .sec_news .tab_content_wrap #tags #tab01 {
    color: #009b63;
}

@media print,
screen and (min-width: 1025px) {
    .content-index .sec_news .tab_content_wrap #tags #tab01:hover {
        font-weight: bold;
    }
}

@media print,
screen and (min-width: 1025px) {
    .content-index .sec_news .tab_content_wrap #tags #tab01:after {
        content: '';
        display: inline-block;
        position: absolute;
        bottom: 0;
        left: -100%;
        width: 100%;
        height: 2px;
        background: #009b63;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
    }
}

.content-index .sec_news .tab_content_wrap #tags #tab01:hover:after {
    left: 0;
}

.content-index .sec_news .tab_content_wrap #tags #tab01.select {
    color: #009b63 !important;
    font-weight: bold;
}

.content-index .sec_news .tab_content_wrap #tags #tab01.select:after {
    left: 0;
    background: #009b63;
}

@media screen and (max-width: 768px) {
    .content-index .sec_news .tab_content_wrap #tags #tab01.select {
        color: #fff !important;
    }
}

.content-index .sec_news .tab_content_wrap #tags #tab02 {
    color: #0763a4;
}

@media print,
screen and (min-width: 1025px) {
    .content-index .sec_news .tab_content_wrap #tags #tab02:hover {
        font-weight: bold;
    }
}

.content-index .sec_news .tab_content_wrap #tags .js-tab {
    display: block;
    position: relative;
    padding: 0 10px 10px;
    width: 33.333333%;
    float: left;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    color: #0763a4;
}

@media print,
screen and (min-width: 1025px) {
    .content-index .sec_news .tab_content_wrap #tags .js-tab:before {
        content: '';
        display: inline-block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: #efebe9;
    }
}

@media print,
screen and (min-width: 1025px) {
    .content-index .sec_news .tab_content_wrap #tags .js-tab:after {
        content: '';
        display: inline-block;
        position: absolute;
        bottom: 0;
        left: -100%;
        width: 100%;
        height: 2px;
        background: #0763a4;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
    }
}

.content-index .sec_news .tab_content_wrap #tags .js-tab:hover:after {
    left: 0;
}

.content-index .sec_news .tab_content_wrap #tags .js-tab:hover {
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
    .content-index .sec_news .tab_content_wrap #tags .js-tab {
        width: 100%;
        max-height: 0px;
        padding: 0px;
        float: none;
        -webkit-transition-duration: .2s;
        -o-transition-duration: .2s;
        transition-duration: .2s;
    }

    .content-index .sec_news .tab_content_wrap #tags .js-tab.select {
        padding: 12px 10px;
        border: 2px solid #efebe9;
        border-top-width: 1px;
    }
}

.content-index .sec_news .tab_content_wrap #tags .js-tab.select {
    color: #0763a4 !important;
    font-weight: bold;
}

.content-index .sec_news .tab_content_wrap #tags .js-tab.select:after {
    left: 0;
    background: #0763a4;
}

@media screen and (max-width: 1024px) {
    .content-index .sec_news .tab_content_wrap #tags .js-tab.select {
        max-height: 100px;
        display: block;
        color: #fff !important;
        background: #0763a4;
    }

    .content-index .sec_news .tab_content_wrap #tags .js-tab.select:before {
        content: '';
        position: absolute;
        top: 50%;
        margin-top: -6px;
        right: 15px;
        left: auto;
        width: 8px;
        height: 8px;
        background: none;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
        -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        transform: rotate(135deg);
    }
}

.content-index .sec_news .tab_content_wrap #choice {
    padding: 30px 0 0;
}

@media screen and (max-width: 1024px) {
    .content-index .sec_news .tab_content_wrap .tab-content:nth-child(n+6) {
        display: none;
    }
}

.content-index .sec_news .tab_content_wrap .tab-content .item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 15px;
    color: #333;
}
.content-index .sec_news .tab_content_wrap .tab-content .item a[href='javascript:void(0)'] {
    cursor: default;
}
.content-index .sec_news .tab_content_wrap .tab-content .item .icn-cat {
    width: 204px;
    height: 28px;
    color: #fff;
    font-size: 12px;
    font-size: 1.2rem;
    text-align: center;
    background: #808181;
    line-height: 28px;
    border-left-style: solid;
    border-left-width: 4px;
}

@media screen and (max-width: 768px) {
    .content-index .sec_news .tab_content_wrap .tab-content .item .icn-cat {
        padding: 3px 5px;
        width: 120px;
    }
}

.content-index .sec_news .tab_content_wrap .tab-content .item .icn-cat.cat01 {
    border-color: #009b63;
}

.content-index .sec_news .tab_content_wrap .tab-content .item .icn-cat.cat02 {
    border-color: #002669;
}

.content-index .sec_news .tab_content_wrap .tab-content .item .slide-tag {
    position: relative;
    overflow: hidden;
    z-index: 2;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    cursor: default;
}

.content-index .sec_news .tab_content_wrap .tab-content .item .slide-tag:after {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

@media print,
screen and (min-width: 1025px) {
    .content-index .sec_news .tab_content_wrap .tab-content .item:hover .slide-tag {
        color: #fff;
    }

    .content-index .sec_news .tab_content_wrap .tab-content .item:hover .slide-tag.cat01:after {
        left: 0;
        background-color: #009b63;
    }

    .content-index .sec_news .tab_content_wrap .tab-content .item:hover .slide-tag.cat02:after {
        left: 0;
        background-color: #002669;
    }
}

.content-index .sec_news .tab_content_wrap .tab-content .item .date {
    width: 160px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 28px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .content-index .sec_news .tab_content_wrap .tab-content .item .date {
        padding: 0 0 0 15px;
        width: calc(100% - 120px);
        line-height: 22px;
        text-align: left;
    }
}

.content-index .sec_news .tab_content_wrap .tab-content .item .txt {
    padding-top: 4px;
    width: calc(100% - 350px);
    font-size: 1.6rem;
}

@media screen and (max-width: 1024px) {
    .content-index .sec_news .tab_content_wrap .tab-content .item .txt {
        font-size: 14px;
        font-size: 1.4rem;
        margin-top: 8px;
        width: 100%;
    }
}

@media print,
screen and (min-width: 1025px) {
    .content-index .sec_news .tab_content_wrap .tab-content .item .txt:hover {
        -webkit-animation: blink .3s ease-in-out 1 alternate;
        animation: blink .3s ease-in-out 1 alternate;
    }
}

.content-index .sec_news .tab_content_wrap .tab-content .item .txt.icn-doc {
    position: relative;
}

.content-index .sec_news .tab_content_wrap .tab-content .item .txt.icn-doc:after {
    display: inline-block;
    content: '';
    font-family: 'FontAwesome';
    right: 0;
    display: inline-block;
    margin-left: 5px;
    width: 16px;
    height: 16px;
    background-size: 15px auto;
    background-position: center center;
    background-repeat: no-repeat;
}

.content-index .sec_news .tab_content_wrap .tab-content .item .txt.icn-doc.icn-pdf:after {
    content: '\f1c1' !important;
    color: #e71717;
}
.content-index .sec_news .tab_content_wrap .tab-content .item .txt.icn-doc.icn-link:after {
    content: '\f08e' !important;
    color: #0763a4;
}
.content-index .sec_news .tab_content_wrap .tab-content .item .txt.icn-doc.icn-docx:after {
    content: '\f1c2' !important;
    color: #4d82B8;
}
.content-index .sec_news .tab_content_wrap .tab-content .item .txt.icn-doc.icn-excel:after {
    content: '\f1c3' !important;
    color: #009b63;
}


.content-index .sec_news .tab_content_wrap .tab-content .item .txt .icn {
    margin-right: 8px;
    padding: 2px 5px;
    line-height: 18px;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold;
}

.content-index .sec_news .tab_content_wrap .tab-content .item .txt .icn.icn-important {
    color: #fff;
    background: #d80e1e;
}

.content-index .sec_news .tab_content_wrap .tab-content .item .cssBlink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.content-index .sec_news .tab_content_wrap .tab-content .item:hover .cssBlink {
    -webkit-animation: blink .3s ease-in-out 1 alternate;
    animation: blink .3s ease-in-out 1 alternate;
}

@media screen and (max-width: 1024px) {
    .content-index .sec_news .tab_content_wrap .tab-content .item .cssBlink {
        display: none;
    }
}

.content-index .sec_news .tab_content_wrap .tab-content .item .cssBlink .date {
    width: 160px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 28px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .content-index .sec_news .tab_content_wrap .tab-content .item .cssBlink .date {
        padding: 0 0 0 15px;
        width: calc(100% - 120px);
        line-height: 22px;
        text-align: left;
    }
}

.content-index .sec_news .tab_content_wrap .tab-content .item .cssBlink .txt {
    padding-top: 4px;
    width: calc(100% - 160px);
    font-size: 1.6rem;
}

@media screen and (max-width: 1024px) {
    .content-index .sec_news .tab_content_wrap .tab-content .item .cssBlink .txt {
        font-size: 14px;
        font-size: 1.4rem;
        margin-top: 8px;
        width: 100%;
    }
}

@media print,
screen and (min-width: 1025px) {
    .content-index .sec_news .tab_content_wrap .tab-content .item .cssBlink .txt:hover {
        -webkit-animation: blink .3s ease-in-out 1 alternate;
        animation: blink .3s ease-in-out 1 alternate;
    }
}

.content-index .sec_news .tab_content_wrap .tab-content .item .cssBlink .txt.icn-doc {
    position: relative;
}

.content-index .sec_news .tab_content_wrap .tab-content .item .cssBlink .txt.icn-doc:after {
    display: inline-block;
    content: '';
    margin-left: 5px;
    width: 16px;
    height: 16px;
    background-size: 15px auto;
    background-position: center center;
    background-repeat: no-repeat;
}

.content-index .sec_news .tab_content_wrap .tab-content .item .cssBlink .txt.icn-doc.icn-pdf:after {
    background-image: url(/assets/img/common/icn_pdf.png);
}

.content-index .sec_news .tab_content_wrap .tab-content .item .cssBlink .txt.icn-doc.icn-link:after {
    background-image: url(/assets/img/common/icn_outlink.png);
}

.content-index .sec_news .tab_content_wrap .tab-content .item .cssBlink .txt .icn {
    margin-right: 8px;
    padding: 2px 5px;
    line-height: 18px;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold;
}

.content-index .sec_news .tab_content_wrap .tab-content .item .cssBlink .txt .icn.icn-important {
    color: #fff;
    background: #d80e1e;
}

.content-index .sec_news .btn {
    float: right;
    width: 180px;
}

@media screen and (max-width: 768px) {
    .content-index .sec_news .btn {
        width: 100%;
    }
}

.content-index .sec_contact {
    padding-bottom: 80px;
    margin-bottom: -40px;
}

.content-index .sec_contact ul li {
    width: 31.25%;
    /*    width: 22.9%;*/
}

@media screen and (max-width: 1024px) {
    .content-index .sec_contact ul li {
        width: 48%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .content-index .sec_contact ul li {
        width: 100%;
    }
}

.content-index .sec_contact ul li a {
    display: block;
    /*    position: relative;*/
    background: #fff;
    /*追加分*/
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
    /*追加分*/
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
    /*追加分*/
}

.content-index .sec_contact ul li a img {
    width: 100%;
    height: 207px;
    object-fit: cover;
}

/*追加分*/

/*表に関するcss*/


/*End of 表に関するcss*/

.content-index .sec_contact ul li .txt_box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.content-index .sec_contact ul li .txt_box.icon:before {
    content: "";
    position: absolute;
    left: 4%;
    top: calc((100% - 36px) / 2);
    width: 36px;
    height: 36px;
    background: url(/assets/img/common/jw_icn_pc.png) no-repeat left center;
    background-size: 36px auto;
}

.content-index .sec_contact ul li .txt_box.icon02:before {
    background: url(/assets/img/common/jw_icn_sptab.png) no-repeat left center;
    background-size: 36px auto;
}

.content-index .sec_contact ul li .txt_box > div {
    -ms-flex-item-align: center;
    align-self: center;
}

.content-index .sec_contact ul li .txt_box .cap {
    display: block;
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
    .content-index .sec_contact ul li .txt_box .cap {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

.content-index .sec_contact ul li .txt_box strong {
    position: relative;
    display: block;
    margin: 2px 0;
    font-size: 18px;
    font-size: 1.8rem;
}

.content-index .sec_contact ul li .txt_box strong:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: calc(100% - 4px);
    border: 2px solid #0763a4;
    background-color: #0763a4;
}

.content-index .sec_contact ul li .txt_box.icon strong:before {
    content: none;
}

@media screen and (max-width: 1024px) {
    .content-index .sec_contact ul li .txt_box strong {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

.content-index .sec_contact ul li .txt_box small {
    display: block;
    font-size: 13px;
    font-size: 1.3rem;
}

.content-index .sec_contact ul li .txt_box .cap,
.content-index .sec_contact ul li .txt_box strong,
.content-index .sec_contact ul li .txt_box small {
    padding-left: 15px;
}

.content-index .sec_contact ul li .txt_box.icon .cap,
.content-index .sec_contact ul li .txt_box.icon strong,
.content-index .sec_contact ul li .txt_box.icon small {
    padding-left: 40px;
}

/*End of 追加分*/

.content-index .sec_contact ul li a .btn_txt {
    position: absolute;
    top: 16px;
    left: 18px;
    color: #fff;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
}

.content-index .sec_contact ul li a .btn_txt small {
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.2;
}

.content-index .sec_contact ul li a .arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    width: 54px;
    height: 54px;
    background: #0763a4;
}

.content-index .sec_contact ul li a .arrow:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: -4px;
    margin-left: -6px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*--//SP--*/

/*# sourceMappingURL=maps/styles_jw.css.map */

@media print {
    body {
        -webkit-print-color-adjust: exact;
    }
}

#example_cases {
    overflow: auto;
}
#example_cases .wid50 {
    width: 48%;
    display: inline-block;
    float: left;
    margin-bottom: 4%;
}
#example_cases .wid50:nth-child(odd) {
    margin-right: 4%;
}
#example_cases a {
    display: flex;
    padding: 4%;
    position: relative;
    border: 3px solid #202f55;
    background: rgba(200,200,200,0.2);

    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
#example_cases a:hover {
    background: rgba(200,200,200,0.5);
}
#example_cases p {
    display: block;
    padding-right: 10%;
    padding-left: 2%;
    padding-top: 2%;
}
#example_cases .img-icon {
/*    max-width: 120px;*/
    max-width:none;
    width: 80px;
    height: 80px;
}
#example_cases a:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 10%;
    height: 100%;
    background: #202f55;
}
#example_cases a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 4%;
    display: block;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
@media screen and (max-width: 600px) {
    #example_cases .wid50 {
        width: 100%;
        float: none;
    }
    #example_cases .wid50:nth-child(odd) {
        margin-right: 0%;
    }
}

/*-- 2019/02/12 竹村追加分--*/

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #aaa !important;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #aaa !important;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #aaa !important;
}
:-moz-placeholder { /* Firefox 18- */
    color: #aaa !important;
}