@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: #000;
}

del,
ins {
    text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

body {
    color: #333;
    font-family: "メイリオ", Meiryo, YuGothic, "Yu Gothic", "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 only screen and (max-width: 1024px) {
    .pc {
        display: none;
    }
}

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

/* ====================================================
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: flex-start;
}

.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 only screen and (max-width: 1024px){
    .inner {
        width: 1000px;
    }
}
@media only screen and (max-width: 768px) {
    .inner {
        padding: 0 3%;
        width: 100%;
    }
}

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

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

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

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

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

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

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

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

/*--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;
}

.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;
    }

    .navGlobal .navGlobalIn li {
        position: relative;
        float: left;
        text-align: center;
        margin-left: 1px;
        background: #fff;
        background: rgba(255, 255, 255, 0.9);
        height: 50px;
    }

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

    .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(../img/common/icn_nav01.png);
    }

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

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

    .navGlobal .navGlobalIn li.nav03 {
        width: 125px;
        background: #009b63;
    }

    .navGlobal .navGlobalIn li.nav03 a {
        color: #fff;
        background-image: url(../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(../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: #009b63;
    }

    .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 #009b63;
    }

    .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 only screen and (max-width: 1024px) {
    nav.globalMenuSp {
        position: fixed;
        z-index: 100;
        top: 0;
        left: 0;
        background: #fff;
        color: #000;
        text-align: center;
        -webkit-transform: translateY(-102%);
        -ms-transform: translateY(-102%);
        transform: translateY(-102%);
        -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 only 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%;
    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: 85px;
}

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

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 only 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(../img/common/icon_open.png) no-repeat center center;
        background-size: 50%;
    }

    nav.globalMenuSp ul li .navList_item_sp .js-toggle.active {
        background: url(../img/common/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: #000;
        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;
        z-index: 10;
    }

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

    nav.globalMenuSp .spMenu_inner > ul > li .navList_item span {
        display: block;
        line-height: 80px;
        background: #009b63;
        color: #fff;
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: bold;
        text-align: center;
        position: relative;
        -webkit-transform: perspective(1px) translateZ(0);
        transform: perspective(1px) translateZ(0);
    }

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

    nav.globalMenuSp .spMenu_inner > ul > li .navList_item span:after {
        content: '';
        position: absolute;
        height: 4px;
        background: #009b63;
        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: #333;
    }

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

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

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

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

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

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

    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;
    }

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

    nav.globalMenuSp .spMenu_inner .submenu {
        visibility: hidden;
        opacity: 0;
        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;
        z-index: 5;
        -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: #009b63;
        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: #333 transparent transparent transparent;
        z-index: 1;
    }

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

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

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

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

    nav.globalMenuSp .spMenu_inner .submenu.active.submenu05:before {
        right: 65px;
    }

    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;
        background: none;
    }
}

/*--//PC--*/

@media only 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 #009b63;
    -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(../img/common/bg_ft.jpg) no-repeat center center;
    background-size: cover;
    border-top: 5px solid #009b63;
}

@media only 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 only screen and (max-width: 1024px) {
    #main-footer .ftNav_wrap {
        padding: 0;
        max-width: 100%;
    }
}

#main-footer .ftNav_wrap .ftNav {
    width: 22.6%;
    margin-right: 1.2%;
    margin-left: 1.2%;
}

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

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

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

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

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

#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 only screen and (max-width: 1024px) {
    #main-footer .ftNav_wrap .ftNav .ttl_cat_sp {
        position: relative;
        padding: 13px 5%;
        border-bottom: 1px solid #009b63;
        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(../img/common/icon_open.png) no-repeat center center;
        background-size: 50%;
    }

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

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

@media only 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 #009b63;
    }

    #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: 25px 0 60px;
}

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

#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 only screen and (max-width: 1024px) {
    #main-footer .address_wrap .address {
        width: 100%;
    }
}

#main-footer .address_wrap .btn_box {
    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: 460px;
}

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

#main-footer .address_wrap .btn_box .btn {
    margin: 0 0 0 20px;
    width: 200px;
}

@media screen and (max-width: 768px) {
    #main-footer .address_wrap .btn_box .btn {
        margin: 0 0 20px;
        width: 100%;
    }
}

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

@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;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 32px;
    text-align: center;
    background: #009b63;
}

.pagetop .toTop:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -6px;
    width: 13px;
    height: 13px;
    background: url(../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%);
}

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


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

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

/*パンくずMODULE*/

/*見出しMODULE*/

.ttlCom01 {
    position: relative;
    margin-bottom: 30px;
    padding-top: 25px;
    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: #000;
}

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

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

@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*/

/*ボタン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);
}

.btnCom01 {
    background: #009b63;
}

.slide {
    position: relative;
    z-index: 2;
    background-color: #009b63;
    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: #000;
    }
}

.btnCom02 {
    color: #000;
    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: #000;
    }
}

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

@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 #009b63;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: normal;
}

.slide-flw span:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -2px;
    width: 44px;
    height: 2px;
    background: #000;
    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 {
        height: auto;
        border-bottom: none;
        color: #fff;
    }

    .slide-flw span:after {
        left: 0;
        background-color: #009b63;
    }
}

@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: #000;
    }

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

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

.slide-icn {
    position: relative;
    z-index: 2;
    padding: 32px 10px;
    color: #333333;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: left;
    background: #fff;
    border: 3px solid #009b63;
    overflow: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.slide-icn:before {
    border-width: 2px;
    border-color: #009b63;
}

.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: #fff;
        border-color: #009b63;
    }

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

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

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

.btnCom04 {
    position: relative;
    padding: 0;
    text-align: left;
    background: #009b63;
    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: #000;
    -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: #009b63;
    -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: #000;
    }

    .btnCom04 span:hover:after {
        left: 0;
        background: #009b63;
    }
}

/*リストMODULE*/

/*ボックスMODULE*/

/*グリッドMODULE*/

/*フォームMODULE*/

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

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

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

}

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

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

    /* IE11 */
}

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

.content-index .main_img .ttl {
    width: calc(100% - 330px);
}

@media print,
screen and (min-width: 1025px) {
    .content-index .main_img .ttl {
        margin-top: -8vw;
    }
}

@media print,
screen and (min-width: 1680px) {
    .content-index .main_img .ttl {
        margin-top: -9vw;
    }
}

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

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

.content-index .main_img .bnr_box {
    width: 330px;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .content-index .main_img .bnr_box {
        position: absolute;
        margin: auto;
        align-items: center;
        width: 94%;
        max-width: 800px;
        bottom: 20px;
    }

    .content-index .main_img .bnr_box p {
        width: 100%;
    }
}

.content-index .main_img .bnr_box a {
    display: block;
    margin-bottom: 20px;
    padding: 20px 0;
    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);
}

@media screen and (max-width: 1024px) {
    .content-index .main_img .bnr_box a {
        margin-bottom: 0;
        padding: 10px;
        width: 85%;
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
    }

    .content-index .main_img .bnr_box a img {
        width: 100%;
        max-width: 180px;
        height: auto;
    }
}

.content-index .main_img .bnr_box span {
    display: block;
    margin-top: 5px;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
}

.content-index .main_img .bnr_box img + span {
    margin-top: 20px;
}

.bg_lGray {
    background: #f8f4f2;
}

/*
.content-index section {
    padding: 30px 0 40px;
}
*/

section {
    padding: 30px 0 40px;
    padding: 30px 0 40px;
}

.content-index .sec_information ul li {
    width: 31.25%;
}

.bg_lGray ul.flex-box.align-fs {
    margin-bottom: 15px;
}

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

    .content-index .sec_information ul li {
        width: 48%;
        margin-bottom: 15px;
        margin-left: 1%;
        margin-right: 1%;
    }
}

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

    .content-index .main_img .bnr_box span {
        margin-top: 14px;
    }

    .content-index .state-title {
        margin-top: 10px;
    }

    .content-index .sec_information ul li {
        width: 100%;
    }
}

.content-index .sec_information ul li .btn span {
    display: block;
    position: relative;
    padding-left: 56px;
}

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

.txt_box.icon {
    min-height: 74px;
}

@media screen and (max-width: 768px) {
    .content-index .sec_information ul li .btn span {
        padding-left: 40px;
    }
}

.content-index .sec_information ul li .btn span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 5px;
    width: 44px;
    height: 89px;
    margin-top: -32px;
}

@media screen and (max-width: 768px) {
    .content-index .sec_information ul li .btn span:before {
        margin-top: -28px;
        left: 0;
        width: 36px;
        height: 75px;
    }
}

.content-index .sec_information ul li .btn.btn01 span:before {
    background: url(../img/index/icn_faq01_off.png) no-repeat left center;
    background-size: 44px auto;
}

@media screen and (max-width: 768px) {
    .content-index .sec_information ul li .btn.btn01 span:before {
        background-size: 34px auto;
    }
}

/*
@media print,
screen and (min-width: 1025px) {
    .content-index .sec_information ul li .btn.btn01:hover span:before {
        background: url(../img/index/icn_faq01_on.png) no-repeat left center;
        background-size: 44px auto;
    }
}
*/

.content-index .sec_information ul li .btn.btn02 span:before {
    background: url(../img/index/icn_faq02_off.png) no-repeat left center;
    background-size: 44px auto;
}

@media screen and (max-width: 768px) {
    .content-index .sec_information ul li .btn.btn02 span:before {
        background-size: 34px auto;
    }
}

/*
@media print,
screen and (min-width: 1025px) {
    .content-index .sec_information ul li .btn.btn02:hover span:before {
        background: url(../img/index/icn_faq02_on.png) no-repeat left center;
        background-size: 44px auto;
    }
}
*/

.content-index .sec_information ul li .btn.btn03 span:before {
    background: url(../img/index/icn_faq03_off.png) no-repeat left center;
    background-size: 44px auto;
}

@media screen and (max-width: 768px) {
    .content-index .sec_information ul li .btn.btn03 span:before {
        background-size: 34px auto;
    }
}

/*
@media print,
screen and (min-width: 1025px) {
    .content-index .sec_information ul li .btn.btn03:hover span:before {
        background: url(../img/index/icn_faq03_on.png) no-repeat left center;
        background-size: 44px auto;
    }
}
*/

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

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

.content-index .sec_event .tab_content_wrap #tags #tab01 {
    color: #8957a1;
}

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

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

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

.content-index .sec_event .tab_content_wrap #tags #tab01.select {
    color: #4c3059 !important;
    font-weight: bold;
}

.content-index .sec_event .tab_content_wrap #tags #tab01.select:after {
    background: #4c3059;
    left: 0;
}

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

.content-index .sec_event .tab_content_wrap #tags #tab02 {
    color: #cc9237;
}

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

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

.content-index .sec_event .tab_content_wrap #tags #tab02:hover:after {
    left: 0;
}

.content-index .sec_event .tab_content_wrap #tags #tab02.select {
    color: #c28c3a !important;
    font-weight: bold;
}

.content-index .sec_event .tab_content_wrap #tags #tab02.select:after {
    background: #c28c3a;
    left: 0;
}

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

.content-index .sec_event .tab_content_wrap #tags #tab03 {
    color: #54b1dc;
}

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

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

.content-index .sec_event .tab_content_wrap #tags #tab03:hover:after {
    left: 0;
}

.content-index .sec_event .tab_content_wrap #tags #tab03.select {
    color: #5b94ae !important;
    font-weight: bold;
}

.content-index .sec_event .tab_content_wrap #tags #tab03.select:after {
    background: #5b94ae;
    left: 0;
}

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

.content-index .sec_event .tab_content_wrap #tags #tab04 {
    color: #0026bf;
}

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

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

.content-index .sec_event .tab_content_wrap #tags #tab04:hover:after {
    left: 0;
}

.content-index .sec_event .tab_content_wrap #tags #tab04.select {
    color: #051762 !important;
    font-weight: bold;
}

.content-index .sec_event .tab_content_wrap #tags #tab04.select:after {
    background: #051762;
    left: 0;
}

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

.content-index .sec_event .tab_content_wrap #tags #tab05 {
    color: #1f1f1f;
}

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

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

.content-index .sec_event .tab_content_wrap #tags #tab05:hover:after {
    left: 0;
}

.content-index .sec_event .tab_content_wrap #tags #tab05.select {
    color: #1f1f1f !important;
    font-weight: bold;
}

.content-index .sec_event .tab_content_wrap #tags #tab05.select:after {
    background: #1f1f1f;
    left: 0;
}

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

.content-index .sec_event .tab_content_wrap #tags #tab06 {
    color: #8e6546;
}

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

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

.content-index .sec_event .tab_content_wrap #tags #tab06:hover:after {
    left: 0;
}

.content-index .sec_event .tab_content_wrap #tags #tab06.select {
    color: #8e6546 !important;
    font-weight: bold;
}

.content-index .sec_event .tab_content_wrap #tags #tab06.select:after {
    background: #8e6546;
    left: 0;
}

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

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

@media print,
screen and (min-width: 1025px) {
    .content-index .sec_event .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_event .tab_content_wrap #tags .js-tab: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_event .tab_content_wrap #tags .js-tab:hover:after {
    left: 0;
}

.content-index .sec_event .tab_content_wrap #tags .js-tab:hover {
    font-weight: bold;
}
.content-index .sec_event .tab_content_wrap #tags .js-tab a {
    padding: 0 10px 10px;
    display: block;
}
@media screen and (max-width: 1024px) {
    .content-index .sec_event .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_event .tab_content_wrap #tags .js-tab.select {
        padding: 12px 10px;
        border-top-width: 1px;
        border: 2px solid #efebe9;
    }
}

.content-index .sec_event .tab_content_wrap #tags .js-tab.select {
    color: #009b63;
    font-weight: bold;
}

.content-index .sec_event .tab_content_wrap #tags .js-tab.select:after {
    background: #009b63;
    left: 0;
}

@media screen and (max-width: 1024px) {
    .content-index .sec_event .tab_content_wrap #tags .js-tab.select {
        max-height: 100px;
        color: #fff !important;
        background: #009b63;
    }

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

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

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

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

.content-index .sec_event .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_event .tab_content_wrap .tab-content .item a[href='javascript:void(0)'] {
    cursor: default;
}

.content-index .sec_event .tab_content_wrap .tab-content .item .icn-cat {
    width: 120px;
    height: 28px;
    color: #fff;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    background: #808181;
    border-left-style: solid;
    border-left-width: 4px;
}

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

.content-index .sec_event .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_event .tab_content_wrap .tab-content .item .txt.icn-doc.icn-pdf:after {
    content: '\f1c1' !important;
    color: #e71717;
}
.content-index .sec_event .tab_content_wrap .tab-content .item .txt.icn-doc.icn-link:after {
    content: '\f08e' !important;
    color: #0763a4;
}
.content-index .sec_event .tab_content_wrap .tab-content .item .txt.icn-doc.icn-docx:after {
    content: '\f1c2' !important;
    color: #4d82B8;
}
.content-index .sec_event .tab_content_wrap .tab-content .item .txt.icn-doc.icn-excel:after {
    content: '\f1c3' !important;
    color: #009b63;
}

@media screen and (max-width: 1024px) {
    .content-index .sec_event .tab_content_wrap .tab-content .item .icn-cat {
        height: 22px;
        line-height: 22px;
    }
}

.content-index .sec_event .tab_content_wrap .tab-content .item .icn-cat.cat01 {
    border-color: #8957a1;
}

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

.content-index .sec_event .tab_content_wrap .tab-content .item .icn-cat.cat03 {
    border-color: #54b1dc;
}

.content-index .sec_event .tab_content_wrap .tab-content .item .icn-cat.cat04 {
    border-color: #0026bf;
}

.content-index .sec_event .tab_content_wrap .tab-content .item .icn-cat.cat05 {
    border-color: #393939;
}

.content-index .sec_event .tab_content_wrap .tab-content .item .icn-cat.cat06 {
    border-color: #ffb57e;
}

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

.content-index .sec_event .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_event .tab_content_wrap .tab-content .item:hover .slide-tag {
        color: #fff;
    }

    .content-index .sec_event .tab_content_wrap .tab-content .item:hover .slide-tag.cat01:after {
        left: 0;
        background-color: #8957a1;
    }

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

    .content-index .sec_event .tab_content_wrap .tab-content .item:hover .slide-tag.cat03:after {
        left: 0;
        background-color: #54b1dc;
    }

    .content-index .sec_event .tab_content_wrap .tab-content .item:hover .slide-tag.cat04:after {
        left: 0;
        background-color: #0026bf;
    }

    .content-index .sec_event .tab_content_wrap .tab-content .item:hover .slide-tag.cat05:after {
        left: 0;
        background-color: #393939;
    }

    .content-index .sec_event .tab_content_wrap .tab-content .item:hover .slide-tag.cat06:after {
        left: 0;
        background-color: #ffb57e;
    }
}

.content-index .sec_event .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: 1024px) {
    .content-index .sec_event .tab_content_wrap .tab-content .item .date {
        padding: 0 15px;
        width: calc(100% - 120px);
        line-height: 22px;
        text-align: left;
    }
}

.content-index .sec_event .tab_content_wrap .tab-content .item .txt {
    padding-top: 2px;
    width: calc(100% - 280px);
    font-size: 1.4rem;
}

@media screen and (max-width: 1024px) {
    .content-index .sec_event .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_event .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_event .tab_content_wrap .tab-content .item .txt.icn-doc {
    position: relative;
}

.content-index .sec_event .tab_content_wrap .tab-content .item .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_event .tab_content_wrap .tab-content .item .txt .icn {
    padding: 2px 5px;
    line-height: 18px;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold;
}

.content-index .sec_event .tab_content_wrap .tab-content .item .txt .icn.icn-important {
    color: #fff;
    background: #d80e1e;
    margin-right: 5px;
}

.content-index .sec_event .tab_content_wrap .tab-content .item .txt .icn.icn-announce {
    color: #fff;
    background: #e4932b;
    margin-right: 5px;
}

.content-index .sec_event .tab_content_wrap .tab-content .item .txt .icn.icn-event {
    color: #fff;
    background: #56c5a5;
    margin-right: 5px;
}

.content-index .sec_event .tab_content_wrap .tab-content .item .txt .icn.icn-other {
    color: #fff;
    background: #001e9f;
    margin-right: 5px;
}

.content-index .sec_event .tab_content_wrap .tab-content .item .cssBlink {
    width: calc(100% - 120px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.content-index .sec_event .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_event .tab_content_wrap .tab-content .item .cssBlink {
        display: none;
    }
}

.content-index .sec_event .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: 1024px) {
    .content-index .sec_event .tab_content_wrap .tab-content .item .cssBlink .date {
        padding: 0 15px;
        width: calc(100% - 120px);
        line-height: 22px;
        text-align: left;
    }
}

.content-index .sec_event .tab_content_wrap .tab-content .item .cssBlink .txt {
    padding-top: 2px;
    width: calc(100% - 160px);
    font-size: 1.6rem;
    word-wrap: break-word;
}

@media screen and (max-width: 1024px) {
    .content-index .sec_event .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_event .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_event .tab_content_wrap .tab-content .item .cssBlink .txt.icn-doc {
    position: relative;
}

.content-index .sec_event .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_event .tab_content_wrap .tab-content .item .cssBlink .txt.icn-doc.icn-pdf:after {
    background-image: url(../img/common/icn_pdf.png);
}

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

.content-index .sec_event .tab_content_wrap .tab-content .item .cssBlink .txt .icn {
    padding: 2px 5px;
    line-height: 18px;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 2px;
    display: inline-block;
}

.content-index .sec_event .tab_content_wrap .tab-content .item .cssBlink .txt .icn.icn-important {
    color: #fff;
    background: #d80e1e;
    margin-right: 5px;
}

.content-index .sec_event .tab_content_wrap .tab-content .item .cssBlink .txt .icn.icn-announce {
    color: #fff;
    background: #e4932b;
    margin-right: 5px;
}

.content-index .sec_event .tab_content_wrap .tab-content .item .cssBlink .txt .icn.icn-event {
    color: #fff;
    background: #56c5a5;
    margin-right: 5px;
}

.content-index .sec_event .tab_content_wrap .tab-content .item .cssBlink .txt .icn.icn-other {
    color: #fff;
    background: #001e9f;
    margin-right: 5px;
}



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

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

.sec_pickup ul li {
    width: 31.25%;
    margin:0 1.04%;
}

@media screen and (max-width: 1024px) {
    .sec_pickup ul li {
        width: 48%;
        margin-bottom: 20px;
        margin:0 1%;
    }
}

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

.sec_pickup ul li a {
    display: block;
    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);
}

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


.sec_pickup ul li .txt_box:before {
    /*
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -4px;
    width: 7px;
    height: 7px;
    border-top: 3px solid #fff;
    border-top-color: rgb(255, 255, 255);
    border-top-width: 3px;
    border-right: 3px solid #fff;
    border-right-color: rgb(255, 255, 255);
    border-right-width: 3px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
*/
}

.sec_pickup ul li .txt_box {
    position: relative;
}

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

.sec_pickup ul li .txt_box.icon02:before {
    background: url(../img/index/icn_faq03_off.png) no-repeat left center;
    background-size: 36px auto;
}

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

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

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

.sec_pickup ul li .txt_box strong {
    position: relative;
    display: block;
    margin: 2px 0;
    font-size: 21px;
    font-size: 1.8rem;
}

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

.sec_pickup ul li .txt_box.icon strong:before {
    content: none;
}

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

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

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

.sec_pickup ul li .txt_box.icon .cap,
.sec_pickup ul li .txt_box.icon strong,
.sec_pickup ul li .txt_box.icon small {
    padding-left: 48px;
}

.content-index .sec_links ul {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.content-index .sec_links ul li {
    margin-bottom: 30px;
    width: 31.25%;
    margin-right: 1.04%;
    margin-left: 1.04%;
}

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

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

.content-index .sec_links ul li a {
    display: block;
    background: #fff;
    border: 1px solid #d2d2d2;
    height: 120px;
    position: relative;
}

.content-index .sec_links ul li a img {
    max-width: 260px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-\ transform: translateY(-50%) translateX(-50%);
}

.content-index .sec_links .btn {
    width: 380px;
    float: right;
}

.content-index .sec_links .btn.slide-flw {
    width: 47%;
    min-width: 400px;
}

.content-index .sec_links .btn .sp-sm {
    display: none;
}

/*
.content-index .sec_links .slide-flw span {
    padding: 0;
}
*/

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

    .content-index .sec_links .btn,
    .content-index .sec_links .btn.slide-flw {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 400px) {
    .content-index .sec_links .btn span {
        padding: 12px 10px;
    }

    .content-index .sec_links .btn .sp-sm {
        display: block;
    }
}

@media print,
screen and (min-width: 1025px) {
    ul.flex-box.content-bw.align-c {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: flex-start;
    }
}

@media print,
screen and (min-width: 1025px) {
    .content-index .sec_information ul li {
        width: 100%;
        margin-right: 30px;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .content-index .sec_information ul li:last-child {
        margin-right: 0;
    }
}



.content-index {
    /* padding-top: 25px; */
    padding-bottom: 25px;
    /*    background: url(../img/common/patt01.png) repeat;*/
}



.content-index .held-state {
    margin-bottom: 20px;

    text-align: center;
}

.content-index .state-title {
    position: relative;

    display: inline-block;

    margin-right: 1em;
    padding: .6em 1.5em;

    vertical-align: middle;

    color: #fff;
    border-radius: 26px;
    background: #000;
}



.content-index .state-text {
    display: inline-block;
    /*    text-align: left;*/
    vertical-align: middle;
    padding: 0 10px;
}

.content-index .state-text p {
    display: inline-block;

    vertical-align: middle;
}

.content-index .state-text .icon {
    font-size: 40px;
    font-size: 3rem;
    font-weight: bold;

    color: #009b63;
}

.content-index .held-state-stop {
    font-size: 14px;
}

.content-index .held-state-stop .state-title {
    background: red;
    font-weight: bold;
}

.content-index .held-state-stop .state-title:after {
    border-color: transparent transparent transparent red;
}

.content-index .held-state-stop .state-text span {
    color: red;
}

.content-index .held-state-stop .state-text .icon {
    color: red;
}

.content-index .headNav ul {
    font-size: 14px;
    font-size: 1.4rem;
}

.content-index .headNav li {
    font-weight: bold;

    display: table;
    float: left;

    width: 22%;
    height: 80px;
    margin-right: 4%;

    text-align: center;
}

.content-index .headNav li:nth-child(4n) {
    margin-right: 0;
}

.content-index .headNav li a {
    display: table-cell;

    transition: .3s;
    vertical-align: middle;

    border-right: 3px solid #009b63;
    border-bottom: 3px solid #009b63;
    background: #fff;
}

.content-index .headNav li a:hover {
    transition: .3s;

    color: #fff;
    background: #009b63;
}

.content-index .headNav li span {
    font-size: 12px;
    font-size: 1.2rem;
}

/*--//SP--*/

/*講習会・研修会を探す*/
.page-section .result-contents .result-table {
    margin-bottom: 30px;
}


.page-section .y-mark {
    background: linear-gradient(transparent 0%, #f9ff9c 0%);
    font-size: 24px;
    font-size: 2.4rem;
}

.page-section .back-btn {
    text-align: center;
    display: none;
}

.page-section button {
    background-color: #fff;
    padding: 10px 20px;
    border: 2px solid #888;
    transition: .3s;
}

.page-section button:hover {
    transition: .3s;
    background: #888;
    color: #fff;
}

/*講習会・研修会の一覧*/
.textbox-type01.workshop-list {
    width: 48%;
}
.textbox-type01.workshop-list {
    width: 100%;
    border: 3px solid #cccccc;
/*    background: #f8f4f2;*/
}
.textbox-type01.workshop-list .w-list-box {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #ccc;
    margin-bottom: 15px;
}
.textbox-type01.workshop-list .w-list-box {
    display: flex;
    display: block;
    align-items: center;
    padding-right: 2.5rem;
    border-bottom: 2px solid #ccc;
    border: none;
    width: 23%;
    float: left;
    margin-bottom: 0;
}
.workshop-list .w-list-box img {
    width: 66px;
    width: 100%;
    height: auto;
    margin-bottom: 0;
    margin-right: -8px;
    position: relative;
    transform: translateX(-10px);
    transform: none;
    box-shadow: 2px 2px 9px 2px #c5bebb;
    background: #f8f4f2;
}

.workshop-list .w-list-box h3.box-title{
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.flexbox-type05 div.workshop-list div.box-text{
    margin-bottom:20px;
    padding-bottom: 0px;
    min-height: auto;
    margin-bottom: 0;
    padding-bottom: 0px;
    min-height: auto;
    width: 75%;
    float: right;
}
.flexbox-type05 div.workshop-list div.box-text {
    width: 75%;
    float: right;
}
.flexbox-type05 > div.workshop-list > div > p{
    margin-bottom: 0px;
}

.flexbox-type05 > div.workshop-list > div.cf{
    position: relative;
}

@media only screen and (max-width: 1024px) {
    .textbox-type01.workshop-list{
        width: 100%;
    }
}

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


/*講習会・研修会の一覧-ver.2*/
.textbox-type01.workshop-list {
    padding: 0;
    margin-bottom: 3%;
}
.textbox-type01 .box-title {
    display:block;
    margin: 10px 0 15px 0;
}
.flexbox-type05 .workshop-list a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 1em;
    width: 100%;
    overflow: auto;
}
.flexbox-type05 .workshop-list a:hover {
    background: #f8f4f2;
}
/*
span.textbox-type01 workshop-list {
    font-size: 15px;
}
*/
.textbox-type01.workshop-list .w-list-box {
    padding-bottom: 0;
}
span.box-inner {
    float:right;
    width: 77%;
    display: block;
}
.textbox-type01 .detail {
    position: absolute;
    transform: translate(404px,-52px);
    font-size: 0.8em;
    color: #9b0038;
    font-weight: bold;
    text-decoration: none;
}
.detail.jump-link::before {
    border: 1px solid #9b0038;
}
.detail.jump-link::after {
    border-top: 1px solid #9b0038;
    border-right: 1px solid #9b0038;
}
.textbox-type01 .detail + span {
    font-size: 0.8em;
}
@media only screen and (max-width: 768px){
    .textbox-type01 .detail {
        transform: none;
        margin-top: -5.7%;
        margin-left: 60%;
    }
}
@media only screen and (max-width: 640px){
    .textbox-type01 .detail {
        margin-top: -8.7%;
        margin-left: 55%;
    }
}
@media only screen and (max-width: 530px){
    .textbox-type01 .detail {
        display: none;
    }
}
/* ====================================================
print css
==================================================== */
@media print {

    .print-none {
        display: none;
    }

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

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

    .navGlobal .navGlobalIn {
        margin: 0 auto;
        width: 100%;
        max-width: 965px;
        font-size: 10px;
    }
}


::-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;
}