@charset "UTF-8";
/* ===================================================================
CSS information
 file name  :  common.css
 style info :  共通 cssの定義
=================================================================== */

/*@mixin title02{
	padding: 80px 0;
    width: 100%;
    margin: 0;
	display: table;
    background-color: $accent-color2;
    @media only screen and (max-width: 690px) {
    	padding: 40px 0;
    }
}*/

/*@mixin title02{
	padding: 80px 0;
    width: 100%;
    margin: 0;
	display: table;
    background-color: $accent-color2;
    @media only screen and (max-width: 690px) {
    	padding: 40px 0;
    }
}*/

/* side mailmagazine *****/

.banner_mov {
    position: relative;
    margin-bottom: 20px;
}

@media only screen and (min-width: 691px) and (max-width: 979px) {
    .banner_mov {
        float: left;
        width: 50%;
    }
}

.banner_mov a {
    display: block;
    font-size: 0;
    width: 300px;
    position: relative;
    margin-left: calc(50% - 150px);
}

.banner_mov a .ba_left,
.banner_mov a .ba_right {
    position: absolute;
    bottom: 9%;
    z-index: 2;
    -webkit-transition: all .1s ease 0s;
    -o-transition: all .1s ease 0s;
    transition: all .1s ease 0s;
}

@media only screen and (min-width: 980px) and (max-width: 1129px) {
    .banner_mov a {
        width: 240px;
        margin-left: calc(50% - 120px);
    }
    .banner_mov a img {
        width: 240px;
    }
}

.banner_mov a .ba_left {
    left: calc(50% - 140px);
}

.banner_mov a .ba_right {
    right: calc(50% - 140px);
}

@media only screen and (min-width: 980px) and (max-width: 1129px) {
    .banner_mov a .ba_left {
        left: calc(50% - 110px);
        width: 20px;
    }
    .banner_mov a .ba_right {
        right: calc(50% - 110px);
        width: 20px;
    }
}

.banner_mov:hover .ba_left {
    left: calc(50% - 135px);
}

.banner_mov:hover .ba_right {
    right: calc(50% - 135px);
}

@media only screen and (min-width: 980px) and (max-width: 1129px) {
    .banner_mov:hover .ba_left {
        left: calc(50% - 108px);
    }
    .banner_mov:hover .ba_right {
        right: calc(50% - 108px);
    }
}

/* banner normal *****/

.banner_nor {
    position: relative;
    margin-bottom: 30px;
}

@media only screen and (min-width: 691px) and (max-width: 979px) {
    .banner_nor {
        clear: both;
        float: left;
        width: 50%;
    }
}

.banner_nor a {
    display: block;
    font-size: 0;
    width: 300px;
    position: relative;
    margin-left: calc(50% - 150px);
}

@media only screen and (min-width: 980px) and (max-width: 1129px) {
    .banner_nor a {
        width: 240px;
        margin-left: calc(50% - 120px);
    }
    .banner_nor a > img:not(.icon) {
        width: 240px;
    }
}

.banner_nor a .icon {
    position: absolute;
    left: calc(50% - 150px);
    bottom: 0;
    z-index: 2;
    -webkit-transition: all .1s ease 0s;
    -o-transition: all .1s ease 0s;
    transition: all .1s ease 0s;
}

@media only screen and (min-width: 980px) and (max-width: 1129px) {
    .banner_nor a .icon {
        left: calc(50% - 120px);
    }
}

.banner_nor a:hover .icon {
    -webkit-animation: hurueru .3s ease 0s forwards;
    animation: hurueru .3s ease 0s forwards;
}

@-webkit-keyframes hurueru {
    0% {
        -webkit-transform: translate(0px, 0px) rotateZ(0deg);
        transform: translate(0px, 0px) rotateZ(0deg);
    }
    15% {
        -webkit-transform: translate(2px, 2px) rotateZ(1deg);
        transform: translate(2px, 2px) rotateZ(1deg);
    }
    30% {
        -webkit-transform: translate(0px, 2px) rotateZ(0deg);
        transform: translate(0px, 2px) rotateZ(0deg);
    }
    45% {
        -webkit-transform: translate(2px, 0px) rotateZ(-1deg);
        transform: translate(2px, 0px) rotateZ(-1deg);
    }
    60% {
        -webkit-transform: translate(2px, 2px) rotateZ(1deg);
        transform: translate(2px, 2px) rotateZ(1deg);
    }
    75% {
        -webkit-transform: translate(0px, 2px) rotateZ(0deg);
        transform: translate(0px, 2px) rotateZ(0deg);
    }
    90% {
        -webkit-transform: translate(2px, 0px) rotateZ(-1deg);
        transform: translate(2px, 0px) rotateZ(-1deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotateZ(0deg);
        transform: translate(0px, 0px) rotateZ(0deg);
    }
}

@keyframes hurueru {
    0% {
        -webkit-transform: translate(0px, 0px) rotateZ(0deg);
        transform: translate(0px, 0px) rotateZ(0deg);
    }
    15% {
        -webkit-transform: translate(2px, 2px) rotateZ(1deg);
        transform: translate(2px, 2px) rotateZ(1deg);
    }
    30% {
        -webkit-transform: translate(0px, 2px) rotateZ(0deg);
        transform: translate(0px, 2px) rotateZ(0deg);
    }
    45% {
        -webkit-transform: translate(2px, 0px) rotateZ(-1deg);
        transform: translate(2px, 0px) rotateZ(-1deg);
    }
    60% {
        -webkit-transform: translate(2px, 2px) rotateZ(1deg);
        transform: translate(2px, 2px) rotateZ(1deg);
    }
    75% {
        -webkit-transform: translate(0px, 2px) rotateZ(0deg);
        transform: translate(0px, 2px) rotateZ(0deg);
    }
    90% {
        -webkit-transform: translate(2px, 0px) rotateZ(-1deg);
        transform: translate(2px, 0px) rotateZ(-1deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotateZ(0deg);
        transform: translate(0px, 0px) rotateZ(0deg);
    }
}

/* sns Follow *****/

.side_fb {
    margin-bottom: 20px;
}

@media only screen and (min-width: 691px) and (max-width: 979px) {
    .side_fb {
        float: right;
        width: 50%;
    }
}

.side_fb .fb {
    margin: auto;
    max-width: 300px;
}

.side_sns {
    line-height: 4rem;
}

.side_sns .txt {
    display: inline-block;
    position: relative;
    padding: 0 5px 0 10px;
    margin-right: 15px;
}

@media only screen and (min-width: 980px) and (max-width: 1129px) {
    .side_sns .txt {
        width: 100%;
    }
}

.side_sns .txt::after {
    content: "";
    position: absolute;
    right: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 0 20px 10px;
}

@media only screen and (min-width: 980px) and (max-width: 1129px) {
    .side_sns .txt::after {
        display: none;
    }
}

.side_sns a {
    display: inline-block !important;
}

@media only screen and (min-width: 980px) and (max-width: 1129px) {
    .side_sns a {
        margin: 0 2px;
    }
}

.side_sns a img {
    width: 32px !important;
    height: 24px !important;
    position: relative;
    top: 8px;
}

.sidearea {
    border-width: 3px 0 1px;
    border-style: solid;
    padding-bottom: 15px;
    margin-bottom: 25px;
    position: relative;
}

@media only screen and (max-width: 979px) {
    .sidearea:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

.sidearea.event {
    border-width: 3px 0 1px;
    border-style: solid;
}

@media only screen and (max-width: 979px) {
    .sidearea.event {
        clear: both;
    }
}

.sidearea::after {
    content: "";
    height: 3px;
    width: 100%;
    position: absolute;
    bottom: -4px;
}

.sidearea .title {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: bold;
    padding: 7px 10px;
    margin-bottom: 10px;
    border-width: 0 0 1px;
    border-style: solid;
}

.sidearea .img100 a {
    display: inline-block;
}

.tag_list a {
    display: inline-block;
    border-width: 1px 0 0;
    border-style: solid;
    border-radius: 3px;
    padding: 3px 4px 3px 6px;
    line-height: 1.4;
    font-size: 11px;
    margin: 3px 3px;
}

.tag_list a:hover,
.tag_list a.current {
    text-decoration: none;
}

.archive_list {
    font-size: 0;
}

.archive_list a {
    padding: 5px 15px;
    border-width: 1px 0 0;
    border-style: solid;
    display: inline-block;
    width: 100%;
    font-size: 14px;
}

@media only screen and (min-width: 691px) and (max-width: 979px) {
    .archive_list a {
        width: 23%;
        margin: 0 1%;
        border-top: none;
        padding: 5px 0;
    }
}

.archive_list a:first-child {
    border-top: none;
    padding-top: 0;
}

.archive_list a::before {
    font-family: FontAwesome;
    content: "\f0da";
    margin-right: 7px;
    font-size: 11px;
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    padding: 0 3px 0 4px;
    line-height: 1;
    border-radius: 1.5px;
}

.medialink {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
}

.medialink a {
    display: block;
    padding: 2px 15px 4px;
    margin: 0;
    border: none;
    border-radius: 0;
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.6;
}

.medialink a::before {
    font-family: FontAwesome;
    content: "\f0da";
    margin-right: 6px;
    font-size: 1.6rem;
    line-height: 1;
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
}

.medialink a:hover {
    text-decoration: none;
}

ul.blog_section01 + ul {
    margin-top: 15px;
}

.blog_date01 {
    font-weight: bold;
    font-size: 11px;
    line-height: 1.2;
    margin-bottom: 5px;
    display: inline-block;
}

.side_event .blog_sideTitl a {}

.side_event .blog_sideTitl a + a {
    margin-top:
}

.side_event table {
    width: 100%;
}

.side_event tr:first-child td {
    border-top: none;
    padding-top: 0;
}

.side_event td {
    padding: 10px 0;
    border-width: 1px 0 0;
    border-style: solid;
}

.side_event td table {
    width: 86%;
    margin: auto;
}

@media only screen and (max-width: 979px) {
    .side_event td table {
        width: 90%;
    }
}

.side_event td td {
    line-height: 16px;
    border: none;
    padding: 0;
}

.side_event td td:last-child {
    padding-top: 10px;
}

.side_event td td.se_type {
    text-align: center;
    line-height: 2rem;
    font-size: 11px;
    width: 70px;
}

.side_event td td.se_time {
    padding-left: 10px;
    padding-top: 0;
    font-size: 12px;
}

.side_event td td.se_link {
    font-weight: bold;
    line-height: 1.4;
    padding-left: 0;
    position: relative;
}

.side_event td td.se_link::before {
    position: absolute;
    left: -7%;
    top: calc(50% - 2px);
    padding: 0 3px 0 4px;
    line-height: 1;
    border-radius: 1.5px;
    font-family: FontAwesome;
    content: "\f0da";
    margin-right: 7px;
    font-size: 11px;
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
}

@media only screen and (max-width: 979px) {
    .side_event td td.se_link::before {
        left: -5%;
    }
}

/*-----------------------------------------------------------------*/

/* side globalnav Category SP */

/*-----------------------------------------------------------------*/

.sidenavcate {
    font-size: 0;
    text-align: left;
    border-width: 0;
    border-style: solid;
    margin: -10px auto 20px;
}

.sidenavcate li {
    text-align: left;
    width: 50%;
    padding: 7px 5px;
    display: inline-block;
    border-width: 0 1px 1px 0;
    border-style: solid;
}

.sidenavcate li:nth-child(2n) {
    border-right: none;
}

/*.sidenavcate li:last-child {
  border-bottom: none;
}*/

.sidenavcate li a {
    font-size: 1.2rem;
    padding: 0;
}

.sidenavcate li a::before {
    position: static;
    width: auto;
    height: auto;
    font-family: FontAwesome;
    content: "\f0da";
    margin-right: 7px;
    font-size: 11px;
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    padding: 0 3px 0 4px;
    line-height: 1;
    border-radius: 1.5px;
}

.sidenav_title {
    margin: 0 auto 10px;
    padding: 6px 6px 4px;
    line-height: 1.4;
    font-weight: bold;
    border-width: 2px 0 1px;
    border-style: solid;
}

.sideunav {
    padding-top: 20px;
    border-width: 1px 0 0;
    border-style: solid;
    margin: 20px auto 0;
}

.sideunav li {
    list-style: none;
}

.sn_normal {
    margin-bottom: 20px;
}

.sideunav li a,
.sn_normal a {
    font-size: 14px;
}

.sideunav li a:before,
.sn_normal a:before {
    font-family: FontAwesome;
    content: "\f0da";
    margin-right: 7px;
    font-size: 11px;
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    padding: 0 3px 0 4px;
    line-height: 1;
    border-radius: 1.5px;
}

.sidenav_sns a.fb::before,
.sidenav_sns a.twt::before,
.sidenav_sns a.insta::before {
    display: none;
}

.sidenav_sns {
    display: flex;
    margin-top: 25px;
}

.sidenav_sns a {
    text-align: center;
    display: block;
    width: calc(100% / 3);
    margin: 0 .5%;
    font-size: 14px;
    padding: 5px;
}

/*-----------------------------------------------------------------*/

/* side latest */

/*-----------------------------------------------------------------*/

.side_latest .lt {
    float: right;
    width: 35%;
    overflow: hidden;
}

.side_latest .lt .latest_thumbnail {
    height: 50px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.side_latest .info {
    float: left;
    width: 60%;
    font-size: 11px;
    line-height: 1.6;
    font-weight: bold;
}

.side_latest li a {
    display: block;
    width: 100%;
}

.side_latest li:not(:last-child) {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-width: 0 0 1px;
    border-style: solid;
}

.side_latest a:hover .latest_thumbnail {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
}

@media only screen and (min-width: 691px) and (max-width: 979px) {
    .side_latest:after {
        content: "";
        display: table;
        clear: both;
    }
    .side_latest li {
        width: 48%;
        margin: 5px 1%;
        float: left;
    }
}

/*-----------------------------------------------------------------*/

/*SP ナビ　タグリスト*/

/*-----------------------------------------------------------------*/

.sidearea.tag {
    display: none;
}

#spnavi .tag.sweep {
    display: flex;
    flex-wrap: wrap;
}

#spnavi .tag.sweep a {
    font-size: 12px;
}

/*-----------------------------------------------------------------

mtame news

-----------------------------------------------------------------*/

.e_zine_box {
    border-width: 3px;
    border-style: solid;
    margin-bottom: 20px;
}

.e_zine_tit {
    padding: 2%;
    text-align: center;
    font-weight: bold;
    font-size: 120%;
}

.e_zine_txt {
    padding: 5%;
    text-align: center;
    font-size: 90%;
}

.button {
    position: relative;
    display: inline-block;
    padding: 0.25em 0.5em;
    text-decoration: none;
    /*border-width: 0 0 3px;
	border-style: solid;*/
    border-radius: 4px;
    -webkit-box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
    font-weight: bold;
    width: 85%;
    height: 40px;
    line-height: 34px;
    font-size: 120%;
    text-align: center;
}

.button:hover {
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
}

.e_zine_box a:hover {
    text-decoration: none;
}

@media only screen and (max-width: 979px) and (min-width: 691px) {
    .e_zine_box {
        float: left;
        width: 48%;
    }
}

.side_event {
    line-height: 16px;
    border: none;
    padding: 0;
}

.side_event:last-child {
    padding-top: 10px;
}

.side_event .se_type {
    text-align: center;
    line-height: 2rem;
    font-size: 11px;
    width: 70px;
    float: left;
}

.side_event .se_time {
    padding-left: 10px;
    padding-top: 3px;
    float: left;
}

.side_event .se_link {
    font-weight: bold;
    line-height: 1.3;
    padding-left: 0;
    position: relative;
}

.side_event .se_link:before {
    position: absolute;
    left: -7%;
    top: 12px;
    padding: 0 3px 0 4px;
    line-height: 1;
    border-radius: 1.5px;
    font-family: FontAwesome;
    content: "\f0da";
    margin-right: 7px;
    font-size: 11px;
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
}

@media only screen and (max-width: 979px) {
    .side_event .se_link:before {
        left: -15px;
        top: 3px;
    }
}

.side_event .wt90 {
    width: 90%;
    margin-left: 20px;
}

/*-----------------------------------------------------------------

subnav

-----------------------------------------------------------------*/

#subnav {
    margin-bottom: 20px;
}

#subnav_title a {
    display: block;
    border-width: 3px 0 1px;
    border-style: solid;
    padding: 10px 5px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    position: relative;
}

#subnav li {
    list-style: none;
}

#subnav li a {
    display: block;
    padding: 8px 5px 8px 25px;
    border-width: 0 0 1px;
    border-style: dotted;
    list-style-type: none;
    position: relative;
    /*background: url("../image/common/arr01.gif") no-repeat 10px 16px/5px auto;*/
}

#subnav li a::before {
    font-family: FontAwesome;
    content: "\f0da";
    margin-right: 6px;
    font-size: 1.6rem;
    line-height: 1;
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    display: block;
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 13px;
}

#subnav li li a {
    padding: 7px 5px 7px 30px;
    /*background-position: 25px 14px;
	background-size: 3px auto;*/
    font-size: 11px;
}

#subnav li li a::before {
    font-family: FontAwesome;
    content: "\f0da";
    margin-right: 6px;
    font-size: 1.6rem;
    line-height: 1;
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    display: block;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 11px;
}

#subnav li.current a,
#subnav li a:hover {
    text-decoration: none;
}

/*-----------------------------------------------------------------

clearfix

-----------------------------------------------------------------*/

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

/*-----------------------------------------------------------------*/

/* pagetop */

/*-----------------------------------------------------------------*/

#topcontrol {
    z-index: 150;
    margin-bottom: 0;
}

a.pagetop {
    width: 72px;
    height: 72px;
    background: url("../image/common/pagetop.gif") no-repeat 0 0;
    background-size: 72px 72px;
    display: block;
    z-index: 50;
}

@media only screen and (max-width: 979px) {
    #topcontrol {
        margin-bottom: 220px;
    }
}

@media only screen and (max-width: 979px) {
    #topcontrol {
        margin-bottom: 130px;
    }
    a.pagetop {
        width: 40px;
        height: 40px;
        background-size: 40px 40px;
    }
}

/*-----------------------------------------------------------------*/

/* title */

/*-----------------------------------------------------------------*/

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

/*-----------------------------------------------------------------*/

/* ぱんくず locator */

/*-----------------------------------------------------------------*/

#locator {
    font-size: 10px;
    line-height: 1.6;
    margin-bottom: 40px;
    padding: 5px 0;
    text-align: right;
}

@media only screen and (max-width: 979px) {
    #locator {
        margin-bottom: 40px;
    }
}

/*-----------------------------------------------------------------*/

/* footer header common */

/*-----------------------------------------------------------------*/

.globalnav .inner {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.globalnav .inner li {
    width: calc(100% / 5);
}

.globalnav .inner li a {
    position: relative;
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 1.6;
    display: block;
    padding: 15px 0;
    text-align: center;
}

.globalnav .inner li a:hover {
    text-decoration: none;
}

.globalnav .inner li a::after {
    content: "";
    width: 0;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: -3px;
    z-index: 5;
    -webkit-transition: all .2s ease 0s;
    -o-transition: all .2s ease 0s;
    transition: all .2s ease 0s;
}

.globalnav .inner li a:hover::after {
    width: 100%;
}

.globalnav .inner li a::before {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    -webkit-transition: all .2s ease 0s;
    -o-transition: all .2s ease 0s;
    transition: all .2s ease 0s;
}

.globalnav .inner li a:hover::before {
    width: 100%;
}

.globalnav.h_nav {}

.globalnav.f_nav {
    width: 100%;
}

.globalnav.f_nav li a::after {
    bottom: 0;
}

@media only screen and (max-width: 1299px) {
    .globalnav .inner {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
}

@media only screen and (max-width: 979px) {
    .globalnav .inner li a::after,
    .globalnav .inner li a::before {
        display: none;
    }
    .globalnav.h_nav {
        border-top: none;
        float: none;
        width: 100%;
    }
    .globalnav.h_nav .inner li a {
        padding: 10px 0;
        position: static;
    }
    .globalnav.h_nav .inner li a::after,
    .globalnav.h_nav .inner li a::before {
        display: none;
    }
    .globalnav.f_nav {
        width: 100%;
        border-width: 2px 0 0;
        border-style: solid;
    }
    .globalnav.f_nav ul {
        font-size: 0;
        text-align: left;
    }
    .globalnav.f_nav ul li {
        text-align: left;
        width: 33.333% !important;
        padding: 7px 5%;
        display: inline-block;
        border-width: 0 1px 1px 0;
        border-style: solid;
    }
    .globalnav.f_nav ul li:nth-child(2),
    .globalnav.f_nav ul li:nth-child(3),
    .globalnav.f_nav ul li:nth-child(4),
    .globalnav.f_nav ul li:nth-child(5),
    .globalnav.f_nav ul li:last-child {
        width: 33.333%;
    }
    .globalnav.f_nav ul li:nth-child(3n) {
        border-right: none;
    }
    .globalnav.f_nav ul li a {
        padding: 0;
    }
    .globalnav.f_nav ul li a::before {
        position: static;
        width: auto;
        height: auto;
        font-family: FontAwesome;
        content: "\f0da";
        margin-right: 7px;
        font-size: 11px;
        vertical-align: middle;
        display: inline-block;
        font-weight: normal;
        padding: 0 3px 0 4px;
        line-height: 1;
        border-radius: 1.5px;
    }
}

@media only screen and (max-width: 690px) {
    .globalnav.f_nav ul {
        flex-wrap: wrap;
    }
    .globalnav.f_nav ul li {
        width: 50% !important;
        border-left-width: 1px;
        border-style: solid;
    }
    .globalnav.f_nav ul li:nth-child(odd) {
        border-right: none;
    }
    .globalnav.f_nav ul li:nth-child(3n) {
        border-right: none;
    }
    .globalnav.f_nav ul li:nth-child(2),
    .globalnav.f_nav ul li:nth-child(3),
    .globalnav.f_nav ul li:nth-child(4),
    .globalnav.f_nav ul li:nth-child(5),
    .globalnav.f_nav ul li:last-child {
        width: 50%;
    }
    .globalnav.f_nav ul li:last-child {
        border-right-width: 1px;
        border-style: solid;
        border-bottom: none;
    }
    .globalnav .inner li a{text-align: left; }
}

.slead .logo {
    margin-top: -25px;
}

@media only screen and (max-width: 979px) {
    .slead .logo {
        margin-top: 0;
    }
}

.slead .logo img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-left: 0;
}

.slead .sl_txt {
    margin-top: 10px;
    font-size: 1.2rem;
    line-height: 1.6;
}

@media only screen and (max-width: 690px) {
    .header_l .sl_txt {
        display: none;
    }
}

.footer_l.slead .logo {
    margin-top: 0;
}

/*-----------------------------------------------------------------*/

/* header */

/*-----------------------------------------------------------------*/

header {}

header .inner:nth-child(2) {
    display: flex;
    margin: 15px auto 10px;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 979px) {
    header .inner:nth-child(2) {
        padding-bottom: 0;
        padding-top: 0;
    }
}

@media only screen and (max-width: 690px) {
    header {
        padding: 5px 0;
        border: none;
        position: fixed;
        top: 0;
        z-index: 3;
        width: 100%;
        background-color: #FFF;
        box-shadow: 0 0 20px #DDD;
    }
    header .inner:nth-child(2) {
        margin: 6px auto;
    }
}

/* header logo h1 *****/

.header_l {}

@media only screen and (max-width: 1100px) {
    .header_l {
        width: calc(100% - 550px);
    }
}

@media only screen and (max-width: 979px) {
    .header_l {
        position: relative;
        top: -10px;
        width: 43%;
        padding-right: 10px;
    }
}

@media only screen and (max-width: 690px) {
    .header_l {
        position: static;
        width: 100%;
        padding-right: 0;
    }
}

.header_l .logo {
    width: 272px;
    /*width: 14.167vw;*/
}

@media only screen and (max-width: 979px) {
    .header_l .logo {
        width: 200px;
    }
}

@media only screen and (max-width: 690px) {
    .header_l .logo {
        width: 160px;
    }
}

/* header lead banner sns *****/

.hlead_nav {
    text-align: right;
    font-size: 0;
}

.hlead_ab {
    vertical-align: top;
    display: inline-block;
    padding: 0 10px 5px;
    font-size: 11px;
    font-weight: bold;
    line-height: 2rem;
}

.hlead_ab::before {
    font-family: FontAwesome;
    content: "\f0da";
    margin-right: 7px;
    font-size: 11px;
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    padding: 0 3px 0 4px;
    line-height: 1;
    border-radius: 1.5px;
}

.hlead_sns {
    display: inline-block;
    width: 25px;
    margin-left: 3px;
}

.hlead_sns img {
    width: 100%;
    height: auto;
}

.header_ban {
    width: 728px;
}

@media only screen and (max-width: 1100px) {
    .header_ban {
        width: 550px;
    }
}

.header_ban img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    margin-right: auto;
    margin-left: auto;
}

@media only screen and (max-width: 690px) {
    .header_ban {
        display: none;
    }
}

@media only screen and (max-width: 690px) {
    .hlead_nav {
        display: none;
    }
}

/* header globalnavi search *****/

.header_nav {
    border-width: 1px 0 3px;
    border-style: solid;
}

@media only screen and (max-width: 760px) {
    .header_nav {
        border-bottom-width: 3px;
        border-style: solid;
        border-top: none;
    }
}

@media only screen and (max-width: 899px) {
    .header_nav {
        overflow-x: scroll;
    }
}

@media only screen and (max-width: 690px) {
    .header_nav {
        display: none;
        padding-top: 59px;
    }
}

@media only screen and (max-width: 1129px) {
    .header_nav > .inner {
        padding: 0;
        width: calc(100% - 5px);
        margin-right: 5px;
    }
}

@media only screen and (max-width: 979px) {
    .header_nav > .inner {
        width: 100%;
        margin-right: 0;
    }
}

@media only screen and (max-width: 899px) {
    /*  .header_nav > .inner {
    width: 1000px;
  }*/
}

.h_search_pc {
    float: right;
    width: 180px;
    margin-left: 10px;
    margin-top: 9px;
    border-width: 1px;
    border-style: solid;
}

@media only screen and (max-width: 979px) {
    .h_search_pc {
        display: none;
    }
}

.h_search_pc input {
    border: none;
    border-radius: 0;
    display: block;
    height: 30px;
    padding: 0 0 0 5%;
}

.h_search_pc .search_txt {
    float: right;
    width: 148px;
}

.h_search_pc .submit_btn {
    background: url("../image/common/icon_search.png") no-repeat scroll center center/16px auto;
    border: medium none;
    cursor: pointer;
    float: right;
    padding: 0;
    width: 30px;
}

/*-----------------------------------------------------------------*/

/* footer */

/*-----------------------------------------------------------------*/

footer {
    margin-top: 50px;
}

.f_bottom {
    padding: 25px 0;
}

.f_bottom .inner {
    display: table;
}

.f_bottom .inner .footer_l {
    display: table-cell;
    vertical-align: middle;
}

.f_bottom .inner .footer_l .logo {
    max-width: 148px;
}

.f_bottom .inner .funav {
    display: table-cell;
    vertical-align: middle;
    font-size: 0;
    width: 330px;
}

.f_bottom .inner .funav li {
    display: inline-block;
    width: 50%;
    text-align: left;
    margin: 4px 0;
}

.f_bottom .inner .funav li a {
    font-size: 1.3rem;
    line-height: 1.6;
}

.f_bottom .inner .funav li a::before {
    font-family: FontAwesome;
    content: "\f0da";
    margin-right: 7px;
    font-size: 11px;
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    padding: 0 3px 0 4px;
    line-height: 1;
    border-radius: 1.5px;
}

#copyright {
    font-size: 1.2rem;
    line-height: 1.6;
    border-width: 0 0 1px;
    border-style: solid;
    padding: 8px 0;
    text-align: center;
}

@media only screen and (max-width: 690px) {
    footer {
        margin-top: 40px;
    }
    .f_bottom .inner {
        display: block;
        width: 100%;
    }
    .f_bottom .inner .footer_l {
        display: block;
        text-align: center;
        margin-bottom: 25px;
    }
    .f_bottom .inner .footer_l .logo {
        margin: auto;
    }
    .f_bottom .inner .funav {
        border-top-width: 2px;
        border-style: solid;
        display: block;
        margin: auto;
        width: 100%;
    }
    .f_bottom .inner .funav li {
        border-bottom-width: 1px;
        border-style: solid;
        margin: 0;
    }
    .f_bottom .inner .funav li:nth-child(odd) {
        border-right-width: 1px;
        border-style: solid;
    }
    .f_bottom .inner .funav li a {
        font-size: 1.2rem;
        line-height: 1.6;
        display: block;
        padding: 7px 10px;
    }
}

/*-----------------------------------------------------------------*/

/* contents banner */

/*-----------------------------------------------------------------*/

.cb_banner {
    padding: 2%;
    font-size: 0;
    margin-top: 40px;
}

.cb_banner.sub {
    margin-top: 60px;
}

.cb_banner .ban {
    display: inline-block;
    width: 50%;
    padding: 3% 5%;
}

@media only screen and (max-width: 690px) {
    .cb_banner .ban {
        padding: 5%;
    }
}

.cb_banner .ban img {
    max-width: 100%;
    width: auto;
    height: auto;
    margin: auto;
    display: block;
}

@media only screen and (max-width: 690px) {
    .cb_banner .ban {
        width: 100%;
        margin: 5px 0;
    }
}

/*-----------------------------------------------------------------*/

/* SP navi */

/*-----------------------------------------------------------------*/

.h_search_sp,
#spnavi {
    display: none;
}

@media only screen and (max-width: 690px) {
    .h_search_sp {
        display: none;
    }
    #spnavi {
        display: block;
    }
}

.h_search_sp {
    position: fixed;
    z-index: 999;
    width: 100%;
}

.search_btn {
    position: fixed;
    font-size: 2.8rem;
    display: block;
    top: 10px;
    right: calc(4% + 40px + 7px);
    width: 40px;
    height: 38px;
    border-width: 1px;
    border-style: solid;
}

.search_btn span {
    display: block;
    height: auto;
    margin-top: 3px;
    text-align: center;
}

.search_con {
    position: relative;
    display: none;
    width: 100%;
    padding: 5%;
    top: -44px;
    z-index: 999;
}

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

.search_con input {
    border-width: 1px;
    border-style: solid;
    border-radius: 0;
    display: block;
    height: 36px;
    padding: 0 0 0 5%;
}

.search_con .search_txt {
    float: left;
    width: calc(100% - 40px);
}

.search_con .submit_btn {
    background: url("../image/common/icon_search.png") no-repeat scroll center center/20px auto;
    border: medium none;
    cursor: pointer;
    float: left;
    padding: 0;
    width: 40px;
}

/*-----------------------------------------------------------------*/

/* locator */

/*-----------------------------------------------------------------*/

.loca {
    margin: 8px auto 24px;
    text-align: right;
    font-size: 11px;
}

.loca .inner {
    width: 100%;
}

@media only screen and (max-width: 690px) {
    .loca {
        margin: 90px auto 16px;
    }
    .loca .inner {
        width: 92%;
    }
}

/****************************************************************/

/* list style */

/****************************************************************/

.list_none li {
    list-style: none;
    line-height: 1.6;
    margin-bottom: 5px;
}

.list_disc li {
    list-style-type: disc;
    margin-left: 20px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.list_circle li {
    list-style-type: circle;
    margin-left: 20px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.list_square li {
    list-style-type: square;
    margin-left: 22px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.list_decimal li {
    list-style-type: decimal;
    margin-left: 25px;
    line-height: 1.6;
    margin-bottom: 5px;
}

/****************************************************************/

/* sitemap */

/****************************************************************/

.sitemap_list li {
    margin: 10px 0;
    padding: 0;
    list-style-type: none;
}

.sitemap_list a {
    color: #333;
    list-style-type: none;
    /*background:url("../image/common/arr01.gif") no-repeat 10px 8px/5px auto;*/
}

.sitemap_list ul {
    padding: 0 0 5px 25px;
}

.sitemap_list ul li {
    margin: 5px 0;
    padding: 0;
}

.sitemap_list a::before {
    font-family: FontAwesome;
    content: "\f0da";
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    margin-right: 10px;
    vertical-align: middle;
}


/*------------------------------*/

.nav_icon {
    width: 50px;
    height: 5px;
    -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    background-color: #333;
    position: relative;
    display: block;
}

.nav_icon:before {
    position: absolute;
    top: -10px;
    left: 0;
    content: ' ';
    width: 100%;
    height: 5px;
    -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    background-color: #333;
}

.nav_icon:after {
    position: absolute;
    top: 10px;
    left: 0;
    content: ' ';
    width: 100%;
    height: 5px;
    -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    background-color: #333;
}

.nav_icon_area {
    width: 50px;
    padding: 20px 10px;
    border: 1px solid #000;
    position: fixed;
    z-index: 5;
    display: flex;
    right: 20px;
    top: 16px;


}

.drawer-nav002 {
    position: fixed;
    z-index: 1000;
    top: 0;
    overflow: hidden;
    width: 90%;
    height: 100%;
    color: #222;
    background-color: #fff;

}

/*
.spnavi_inner {
    position: absolute;
    right: -90%
}*/

.drawer-nav {
    position: relative !important
}

.drawer-nav {
    width: 100%
}

#spnavi01 {
    display: none
}

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

    .drawer-open #spnavi01 {
        display: block;
        position: fixed;
        z-index: 400;
        top: 0;
        height: 100%;
        overflow-y: scroll
    }
}
