@charset "UTF-8";

/* CSS Document */

/*====================================

    main

====================================*/

main {
    border: 1px solid #000;
    border-radius: 40px;
    overflow: hidden;
    background: #fff;
}

/*====================================

    .main_ttl

====================================*/

.main_ttl {
    padding: 60px 100px 0 100px;
    margin-bottom: 60px;
}
.main_ttl dl {
}
.main_ttl dl dt {
    margin-bottom: 20px;
}
.main_ttl dl dt img {
    width: 300px;
    margin: 0 auto;
}
.main_ttl dl dd {
}

/*====================================

    .gridtab_container

====================================*/

.gridtab_container {
    width: 100%;
    max-width: 100%;
    padding: 0 40px 60px;
}
.gridtab,
.gridtab>dt,
.gridtab>dd {
    margin: 0;
    padding: 0;
    position: relative;
    border: 0 solid
}
.gridtab {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    box-sizing: border-box;
    overflow: hidden;
}
.gridtab * {
    box-sizing: border-box
}
.gridtab>dt {
    padding: 0 !important;
    background: #fff;
    /* Do not set opacity on dt itself.
       If opacity is applied to the parent, children cannot return to 100%.
       We control opacity on image/text separately to enable "image only" hover. */
    transition: background 0.5s ease;
    position: relative;
}
.gridtab>dt span {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 80%;
}
/* Default (non-active) state */
.gridtab>dt>h4>img,
.gridtab>dt>h5 {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* When any tab is active, dim non-active headers */
.gridtab.has-active > dt:not(.is-active) > h4 > img,
.gridtab.has-active > dt:not(.is-active) > h5 {
    opacity: .2;
}

/* Hover: bring back ONLY the image opacity */
.gridtab.has-active > dt:not(.is-active):hover > h4 > img {
    opacity: 1;
}
.gridtab>dt:hover {
    background: #eee;
    cursor: pointer;
}
.gridtab>dt>h4 {
    padding: 20px 60px;
    margin: 0;
}
.gridtab>dt>h4>img {
    width: 100%;
}
.gridtab>dt>h5 {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    font-weight: normal;
}
.gridtab>dt>h5 br {
    display: none;
}
.gridtab>dt.is-disabled {
    pointer-events: none
}
.gridtab>dt.is-active {
    z-index: 2
}
.gridtab>dd {
    z-index: 1;
    display: none;
    min-width: 100%;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 0;
}
.gridtab>dd .tab_content {
    padding: 40px 40px 40px 40px;
}
.gridtab>dd .tab_content h1 {
    font-size: 110%;
    font-weight: bold;
    margin-bottom: 10px;
}
.gridtab>dd .tab_content .ex {
    padding: 0;
    padding: 0 !important;
}
.gridtab>dd .tab_content .ex img {
    width: 280px;
    float: right;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin: 0 0 20px 20px;
}
.gridtab>dd>.gridtab__controls>.gridtab__close {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-left: 1px;
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    text-indent: -999px;
    position: relative;
    position: absolute;
    right: 10px;
    top: 10px;
    background: url(../images/btn_close.svg);
    background-size: cover;
}
.gridtab>dd>.gridtab__controls>.gridtab__arrow,
.gridtab>dd>.gridtab__controls>.gridtab__next {
    display: none;
}
.gridtab[dir="rtl"]>dd>.gridtab__controls {
    right: auto;
    left: 5px
}
.gridtab[dir="rtl"]>dd>.gridtab__controls>.gridtab__close {
    margin-right: 1px;
    margin-left: 0
}
.gridtab>dd .tab_content .ex {
    margin-bottom: 20px;
}
.gridtab>dd .tab_content .prof {
    background: #fff;
    overflow: hidden;
    border: 1px solid #ccc;
}
.gridtab>dd .tab_content .prof>dl {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    background: #eee;
    width: 100%;
}
.gridtab>dd .tab_content .prof>dl:last-child {
    border-bottom: none;
}
.gridtab>dd .tab_content .prof>dl dt {
    padding: 0;
}
.gridtab>dd .tab_content .prof>dl dt p {
    height: 100%;
}
.gridtab>dd .tab_content .prof>dl dd h2 {
    font-weight: normal;
    font-size: 100%;
}
.gridtab>dd .tab_content .prof>dl dd h2 br {
    display: none;
}
.gridtab>dd .tab_content .prof>dl dt {
    width: 140px;
    padding: 0 10px;
}
.gridtab>dd .tab_content .prof>dl dd {
    flex: 1;
    background: #fff;
    padding: 8px 10px;
}
.gridtab>dd .tab_content .prof>dl dd a {
    color: #000;
    text-decoration: underline;
}
.gridtab>dd .tab_content .prof>dl dd a:hover {
    text-decoration: none;
}


/*====================================

    .gridtab__highlight

====================================*/

.gridtab__highlight {
    position: absolute;
    left: 0;
    pointer-events: none;
    z-index: 10;
    overflow: visible;
    opacity: 0;
    transition: opacity 500ms ease;
}
.gridtab__highlight.is-visible {
    opacity: 1;
}
.gridtab__highlight path {
    stroke: #333;
    stroke-width: 1;
    fill: none;
    vector-effect: non-scaling-stroke;
    shape-rendering: crispEdges;
    stroke-linecap: square;
    stroke-linejoin: miter;
}






