@charset "UTF-8";

/* CSS Document */

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

    wrap_bg

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

.wrap_bg {
    background: url(../images/bg.jpg) center center;
    background-size: cover;
}

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

    box

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

.box {
    padding: 60px 80px 20px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    background: #fff;
    margin-bottom: 40px;
    box-shadow: 0px 4px #aaa;
    position: relative;
    display: block;
}
.box .box_ttl {
    width: 100%;
    text-align: center;
    background: url(/common/images/h3_bg.svg) repeat-x;
    background-size: 200px;
    background-position: bottom;
    padding-bottom: 30px;
    margin-bottom: 30px;
    line-height: 1em;
    position: relative;
}
.box .box_ttl span {
    line-height: 1em;
    position: relative;
    color: #333 !important;
    font-weight: 600;
    font-size: 200%;
}
.box .box_ttl span br {
    display: none;
}
.box .box_ttl span:before,
.box .box_ttl span:after {
    content: '';
    width: 50px;
    height: 50px;
    display: inline-block;
    z-index: 1;
    margin-bottom: -10px;
}
.box .box_ttl span:before {
    background: url(../images/hone_left.gif) no-repeat;
    background-size: 100%;
    margin-right: 20px;
}
.box .box_ttl span:after {
    background: url(../images/hone_right.gif) no-repeat;
    background-size: 100%;
    margin-left: 20px;
}
.box .list {
}
.box .list .list_ttl {
    width: 100%;
    text-align: center;
    font-size: 140%;
    color: #64460c;
    border-bottom: 2px solid #64460c;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: bold;
}
.box .list li {
    position: relative;
}
.box .list li .icon {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    z-index: 2;
}
.box .list li a {
    display: block;
    position: relative;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    overflow: hidden;
}
.box .list li a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/btn_play.png) no-repeat center center;
    background-size: 60px;
}
.box .list li a:hover {
    filter: alpha(opacity=60);
    -moz-opacity:0.6;
    opacity:0.6;
    -ms-filter: "alpha(opacity=60)";
    -moz-opacity:0.6;
    -khtml-opacity: 0.6;
    zoom:1;
}
.box .list li a img {
    width: 100%;
}
.box .list .onecolumns {
    margin-bottom: 10px;
}
.box .list .onecolumns li {
    margin-bottom: 30px;
}
.box .list .twocolumns {
    margin-bottom: 10px;
}
.box .list .twocolumns li {
    width: 49%;
    margin-bottom: 30px;
}
.box .list .twocolumns li:nth-child(odd) {
    float: left;
}
.box .list .twocolumns li:nth-child(even) {
    float: right;
}
.box .list li p {
    width: 100%;
    text-align: center;
    font-size: 90%;
}

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

    tabs

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

.tabs{
    width: 100%;
    margin: 0 auto;
    position: relative;
    margin-bottom: 20px;
}
.tab-buttons {
    position: relative;
}
.tab-buttons span {
    color: #333;
    background: #fff;
    cursor: pointer;
    border: 2px solid #ddd;
    display: block;
    float: left;
    text-align: center;
    line-height: 1em;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: inline-block;
    padding: .8em 0;
    font-size: 120%;
    color: #64460c;
    font-weight: 600;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}
.tab-buttons span.content1 {
    width: 50%;
}
.tab-buttons span.content2 {
    width: 25%;
}
.tab-buttons span.content3 {
    width: 25%;
}
.tab-buttons span:hover {
    background: #FDFF32;
}
@media screen and (max-width: 1000px){
    .tab-buttons span {
        font-size: 100%;
    }
}
.tab-content {
    border-right: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    border-left: 2px solid #ddd;
    background: #fff;
    display: inline-block;
}
/*#lamp {
    width: 33.3333333333%;
    height: 2px;
    background: #176238;
    display: block;
    position: absolute;
    bottom: 0px;
    transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
}*/
#lamp.content1 {
    left: 0;
    transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
}
#lamp.content2 {
    left: 33.3333333333%;
    transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
}
#lamp.content3 {
    left: 66.6666666666%;
    transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
}

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

    tab-content

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

.tab-content {
    padding: 40px 40px 10px 40px;
    width: 100%;
}












