@charset "UTF-8";

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
　共通箇所 (基本タグ設定)
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

html,
body {
    width: 100%;
}

html {
    font-size: 62.5%;
}

body {
    text-align: center;
    line-height: 1.75;
    font-size: 16px;
    font-size: 1.6rem;
    color: #323232;
    font-family: noto-sans-cjk-jp, sans-serif;
    font-weight: 400;
    font-style: normal;
    -webkit-text-size-adjust: 100%;
    letter-spacing: 1px;
    counter-reset: number 0;
    min-width: 1200px;
}

@media print, screen and (max-width: 1300px) {
    body {
        font-size: 15px;
    }
}

.wrapper {
    width: 100%;
    margin: 0px auto;
    text-align: left;
    padding: 0 4%;
}

@media print, screen and (min-width: 1200px) {
    .wrapper {
        width: 1200px;
        padding: 0 20px;
    }
}


/* link */

a {
    color: #1a1a1a;
    text-decoration: none;
    outline: none;
    word-break: break-all;
}

a:link {
    color: #1a1a1a;
}

a:visited {
    color: #1a1a1a;
}

a:hover {
    color: #1a1a1a;
}

.link:hover {
    text-decoration: underline;
}

#outer {
    width: 100%;
    overflow-x: hidden;
}

#loading_wrap {
    background: #fff;
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
}

.bg_gray {
    background: #f0f1f0;
}

.bg_blue {
    background: #eff6fa;
}

.bg_orange {
    background: #faf5e4;
}


.bg_ptn1 {
    margin: auto;
    background-color: #ffffff;
    background-image: radial-gradient(#f6f6f6 29%, transparent 32%),
        radial-gradient(#f6f6f6 29%, transparent 32%);
    background-position: 0 0, 5px 5px;
    background-size: 10px 10px;
}

.bg_ptn2 {
    margin: auto;
    background-color: #e5e5e5;
    background-image: radial-gradient(#dfdfdf 29%, transparent 32%),
        radial-gradient(#dfdfdf 29%, transparent 32%);
    background-position: 0 0, 5px 5px;
    background-size: 10px 10px;
}




/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
　--header
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

header {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

header .pcmenu {
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 100;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.15);
}

.language header .pcmenu {
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.15) !important;
    -webkit-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.15) !important;
    -moz-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.15) !important;
}

header .pcmenu .nav {
    padding: 14px 0;

}

header .pcmenu .nav.active {
    display: none;
}



header .pcmenu .search_box {
    display: none;
    position: relative;
    font-size: 17px;
    color: #4b4e53;
    line-height: 1.6;
    width: 380px;
    transition: all .3s;
    border: none;
    border-bottom: 2px solid #e8e9ec;
    float: right;
    padding: 22.5px 20px;
    margin: 0;
}

header .pcmenu #search_btn {
    display: none;
    float: right;
}

header .pcmenu .search_btn a {
    display: block;
    background: #4ca534;
    color: #fff;
    padding: 23px 23px;
    letter-spacing: 5px;
    font-size: 16px;
}



header .pcmenu .search_box.search_box_active {
    display: block;
}

header .pcmenu #search_btn.search_btn_active {
    display: block;
    background: #333;
    color: #fff;
    border: none;
    padding: 26px;
    font-size: 15px;
    letter-spacing: 5px;
    cursor: pointer;

}


header .logo {
    float: left;
    padding-left: 15px;
    padding-top: 14px;
}

header .logo img {}

header .business {
    float: right;
}

header .business a {
    border: 3px solid #d2d2d2;
    padding: 6px 24px 8px 18px;
    display: block;
    position: relative;
}

header .business a:after {
    content: '';
    position: absolute;
    right: 10px;
    top: 19px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

header .contact {
    float: right;
    padding: 10px 30px 0;
}


header .contact:before {
    content: '';
    display: inline-block;
    width: 33px;
    height: 33px;
    background-image: url(../../images/header_contact.svg);
    background-size: contain;
    vertical-align: middle;

}


header .search {
    float: right;
    background: #e8e9ec;
}

header .search a {
    display: block;
    padding: 15px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;

}

header .search a:hover {
    background: #cfd6d9;
}

header .search .cycle {
    background: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
}


header .search a .btn {
    display: inline-block;
    width: 26px;
    height: 26px;
    position: relative;
    top: 7px;
    background-image: url(../../images/search_icon.png);
    background-size: contain;
    vertical-align: middle;
}

header .search.active a .btn {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    top: 6px;
    background-image: url(../../images/menu_close.jpg);
    background-size: contain;
    vertical-align: middle;
}


header .lang {
    float: right;
    position: relative;
}

header .lang > a {
    background: #4b4e53;
    color: #fff;
    font-size: 12px;
    padding: 22px 12px 31px;
    display: block;
    position: relative;
}

header .lang > a:after {
    content: '';
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    margin: 0 auto;
    left: 8px;
    right: 0;
    bottom: 22px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateX(-50%) rotate(135deg);
}

header .lang > .drop {
    position: absolute;
    background: #fff;
    width: 167px;
    right: 0;
    z-index: 101;
}

header .lang > .drop > li {
    border-bottom: 1px solid #ccc;
}

header .lang > .drop > li a {
    display: block;
    padding: 12px 6px;
    font-size: 13px;
}

header .lang > .drop > li a:hover {
    background: #e8e9ec
}

.header-nav.fixed {
    position: fixed;
    width: 100%;
    z-index: 100;
    background: #fff;
}


.header-nav nav {
    padding: 25px 0;
}

.header-nav ul {
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.header-nav ul li {
    width: 20%;
    text-align: center;
    border-left: 1px solid #e8e9ec;
}

.header-nav ul li:last-of-type {
    border-right: 1px solid #e8e9ec;
}

.header-nav ul li .nav_icon {
    display: inline-block;
    width: 80px;
    height: 60px;
    background-size: contain;
    vertical-align: middle;

}

.header-nav ul li.about .nav_icon {
    background-image: url(../../images/nav_about.svg);
}

.header-nav ul li.about a:hover .nav_icon {
    background-image: url(../../images/nav_about_hover.svg);
}

.header-nav ul li.business .nav_icon {
    background-image: url(../../images/nav_business.svg);
}

.header-nav ul li.business a:hover .nav_icon {
    background-image: url(../../images/nav_business_hover.svg);
}

.header-nav ul li.recruit .nav_icon {
    background-image: url(../../images/nav_recruit.svg);
}

.header-nav ul li.recruit a:hover .nav_icon {
    background-image: url(../../images/nav_recruit_hover.svg);
}

.header-nav ul li.info .nav_icon {
    background-image: url(../../images/nav_info.svg);
}

.header-nav ul li.info a:hover .nav_icon {
    background-image: url(../../images/nav_info_hover.svg);
}

.header-nav ul li.goods .nav_icon {
    background-image: url(../../images/nav_goods.svg);
}

.header-nav ul li.goods a:hover .nav_icon {
    background-image: url(../../images/nav_goods_hover.svg);
}


.header-nav ul li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 12px 0;
    font-size: 17px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.1s ease;

}

.header-nav ul li a:hover {
    background: #cfd6d9;
}

.header-nav-dammy {
    width: 100%;
}



#page_index #contents_wrap {
    margin-top: 74px;
}

.subpage #contents_wrap {
    margin-top: 121px;
}

.language #contents_wrap {
    margin-top: 74px;
}

.subpage header .pcmenu {
    box-shadow: none;
}

/* ヘッダー部のサブメニュー */
.subpage .header-nav {
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.15);
    border-top: #e8e9ec 1px solid;
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 99;
    top: 74px;
}

.subpage .header-nav ul li {
    width: auto;
}

.subpage .header-nav ul li img {
    display: none;
}

.subpage .header-nav nav {
    padding: 0;
}

.subpage .header-nav ul li {
    border: none;
}

.subpage .header-nav ul li a {
    padding: 10px 0;
    font-size: 15px;
    position: relative;
}

.subpage .header-nav ul li p {
    border-left: 1px solid #e8e9ec;
}

.subpage .header-nav ul li a:hover {
    opacity: 1;
    background: #fff;
}

.subpage .header-nav ul li a:after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: "";
    width: 100%;
    height: 3px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .5s;
}

.subpage .header-nav ul li.home.hover a:after {
    background: #3f60a3;
    transform: scale(1, 1);
}

.subpage .header-nav ul li.home.hover a {
    color: #3f60a3;
}

.subpage .header-nav ul li.home a:after {
    background: #3f60a3;
}

.subpage .header-nav ul li.home a:hover {
    color: #3f60a3;
}

.subpage .header-nav ul li.about.hover a:after {
    background: #f39800;
    transform: scale(1, 1);
}

.subpage .header-nav ul li.about.hover a {
    color: #f39800;
}

.subpage .header-nav ul li.about a:after {
    background: #f39800;
}

.subpage .header-nav ul li.about a:hover {
    color: #f39800;
}

.subpage .header-nav ul li.business.hover a:after {
    background: #4ca534;
    transform: scale(1, 1);
}

.subpage .header-nav ul li.business.hover a {
    color: #4ca534;
}

.subpage .header-nav ul li.business a:after {
    background: #4ca534;
}

.subpage .header-nav ul li.business a:hover {
    color: #4ca534;
}

.subpage .header-nav ul li.info.hover a:after {
    background: #eb6c73;
    transform: scale(1, 1);
}

.subpage .header-nav ul li.info.hover a {
    color: #eb6c73;
}

.subpage .header-nav ul li.info a:after {
    background: #eb6c73
}

.subpage .header-nav ul li.info a:hover {
    color: #eb6c73
}

.subpage .header-nav ul li.goods.hover a:after {
    background: #3c61ac;
    transform: scale(1, 1);
}

.subpage .header-nav ul li.goods.hover a {
    color: #3c61ac;
}

.subpage .header-nav ul li.goods a:after {
    background: #3c61ac
}

.subpage .header-nav ul li.goods a:hover {
    color: #3c61ac
}

.subpage .header-nav ul li.recruit.hover a:after {
    color: #f39800;
    background: #f39800;
    transform: scale(1, 1);
}

.subpage .header-nav ul li.recruit.hover a {
    color: #f39800;
}

.subpage .header-nav ul li.recruit a:after {
    background: #f39800
}

.subpage .header-nav ul li.recruit a:hover {
    color: #f39800
}



.subpage .header-nav ul li a:hover:after {
    transform: scale(1, 1);
}

.subpage .header-nav ul li:last-of-type p {
    border-right: 1px solid #e8e9ec;
}

.subpage .header-nav ul li {
    display: flex;
    -webkit-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;

}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
　--spmenu
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

header .spmenu {
    z-index: 999999;
    width: 100%;
    height: 52px;
    top: 0;
    display: block;
    position: fixed;
    background: #fff;
}

@media print, screen and (min-width: 768px) {
    header .spmenu {
        display: none;
    }
}

@media print, screen and (min-width: 1040px) {
    header .spmenu {
        display: none;
    }
}

header .spmenu h2 {
    text-align: left;
}

header .spmenu h2 img {
    width: 230px;
    height: auto;
    padding-left: 5px;
    padding-top: 5px;
}

header .spmenu .drawer-hamburger {
    width: 2.6rem;
    padding: 16px 3% 8%;
    position: fixed;
    z-index: 99999;
}

header .spmenu .drawer-brand {
    max-width: 200px;
    margin-left: -15px;
}

header .spmenu .drawer-brand img {
    width: 84%;
    height: auto;
    margin-top: 7px;
}

header .spmenu .drawer-menu-item {
    border-bottom: 1px solid #aaa;
    text-align: left;
    padding: 12px 40px 12px 20px;
    background: #fff;
    position: relative;
    font-size: 15px;
    font-size: 1.5rem;
}

header .spmenu .color .drawer-menu-item {
    border-bottom: 1px solid #aaa;
    background: #fff;
}

header .spmenu li #acMenu dt {
    border-bottom: 1px solid #aaa;
    text-align: left;
    padding: 3% 4%;
    font-size: 15px;
    font-size: 1.5rem;
    background: #595555;
    color: #fff;
}

header .spmenu li #acMenu dd {
    background: #ffffff;
    text-align: center;
    display: none;
    margin: 0px;
    padding: 0px;
}

header .spmenu li #acMenu .accordion_icon,
.accordion_icon span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

header .spmenu li #acMenu .accordion_icon {
    position: relative;
    width: 20px;
    height: 20px;
    float: right;
    margin-right: -5px;
    top: 7px;
    margin-bottom: 0px !important;
}

header .spmenu li #acMenu .accordion_icon span {
    position: absolute;
    left: 6px;
    width: 50%;
    height: 1px;
    background-color: #fff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
}

header .spmenu li #acMenu .accordion_icon span:nth-of-type(1) {
    top: 5px;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

header .spmenu li #acMenu .accordion_icon span:nth-of-type(2) {
    top: 5px;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}


/*＋、－切り替え*/

header .spmenu li #acMenu .accordion_icon.active span:nth-of-type(2) {
    display: none;
}

#acMenu .accordion_icon.active span:nth-of-type(1) {
    top: 5px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

header .spmenu .inner {
    background-repeat: no-repeat;
    width: 100%;
    height: 1000px;

}

header .spmenu .drawer-menu-item:after {
    position: absolute;
    top: 50%;
    right: 4%;
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-top: 1px solid #aaa;
    border-right: 1px solid #aaa;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

header .spmenu .color .drawer-menu-item:after {
    border-top: 1px solid #aaa;
    border-right: 1px solid #aaa;
}

header .spmenu .drawer-menu-item:hover {
    text-decoration: underline;
}

header .spmenu .drawer-nav {
    background-color: rgba(0, 0, 0, 0.8) !important;
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
　--contents
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

#contents {
    text-align: left;
    width: 100%;
}


#page_single #contents {
    margin-bottom: 80px;

}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
　--pagetitle
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#pagetitle {
    margin: auto;
    background-position: 0 0, 5px 5px;
    background-size: 10px 10px;
}

#pagetitle {
    background-color: #5175bd;
    background-image: radial-gradient(#3c61ac 29%, transparent 32%),
        radial-gradient(#3c61ac 29%, transparent 32%);
}

#page_business #pagetitle {
    background-color: #71b85d;
    background-image: radial-gradient(#6db15b 29%, transparent 32%),
        radial-gradient(#6db15b 29%, transparent 32%);
}

#page_about #pagetitle {
    background-color: #f5a115;
    background-image: radial-gradient(#f39800 29%, transparent 32%),
        radial-gradient(#f39800 29%, transparent 32%);
}

#page_info #pagetitle {
    background-color: #eb6c73;
    background-image: radial-gradient(#e86068 29%, transparent 32%),
        radial-gradient(#e86068 29%, transparent 32%);
}

#page_contact #pagetitle {
    background-color: #71b85d;
    background-image: radial-gradient(#6db15b 29%, transparent 32%),
        radial-gradient(#6db15b 29%, transparent 32%);
}

#page_single.event #pagetitle {
    background-color: #eb6c73;
    background-image: radial-gradient(#e86068 29%, transparent 32%),
        radial-gradient(#e86068 29%, transparent 32%);
}

#page_goods #pagetitle {
    background-color: #5175bd;
    background-image: radial-gradient(#3c61ac 29%, transparent 32%),
        radial-gradient(#3c61ac 29%, transparent 32%);
}

#page_recruit #pagetitle {
    background-color: #f5a115;
    background-image: radial-gradient(#f39800 29%, transparent 32%),
        radial-gradient(#f39800 29%, transparent 32%);
}

.language #pagetitle {
    background-color: #f3f3f3 !important;
    background-image: none !important;
}

.language #pagetitle h2 {
    color: #000;
    font-weight: bold;
}


#pagetitle {
    padding: 60px 0;
}

#pagetitle h2 {
    color: #fff;
    font-size: 24px;
    letter-spacing: 4px;
    padding-top: 8px;

}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
　--メニュー一覧の背景
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
section.menu_wrap {
    padding: 60px 0 80px;

}

#page_about section.menu_wrap {
    background: url(../../images/about_menu.jpg) center center;
    background-size: cover;
}

#page_business section.menu_wrap {
    background: url(../../images/business_menu.jpg) center center;
    background-size: cover;
}

#page_info section.menu_wrap {
    background: url(../../images/info_menu.jpg) center center;
    background-size: cover;
}

#page_contact section.menu_wrap {
    background: url(../../images/contact_menu.jpg) center center;
    background-size: cover;
}

#page_goods section.menu_wrap {
    background: url(../../images/goods_menu.jpg) center center;
    background-size: cover;
}

#page_recruit section.menu_wrap {
    background: url(../../images/recruit_menu.jpg) center center;
    background-size: cover;
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
　--footer
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

footer {
    background: #e8e9ec;
    padding: 60px 0 0;
}


footer .footer_bottom .links .copy {
    text-align: right;
    font-size: 11px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-family: brandon-grotesque, sans-serif;
    font-weight: 500;
    margin-top: 40px;
}

#page_top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

#page_top img {
    width: 100px;
    height: 100px;
}

footer .footer-logo {
    float: left;
    width: 30%;
}

footer .footer-container {
    display: flex;
    float: left;
    width: 70%;
}

footer ul {
    margin-left: 40px;
}


footer ul li {
    display: block;
    position: relative;
    line-height: 1.6;
    padding-bottom: 6px;
}

footer ul li a {
    display: block;
    position: relative;
    padding-left: 25px;
}

footer ul li.root {
    padding-bottom: 13px;
}

footer ul li.root.pt {
    padding-top: 18px;
}

footer ul li.root a {
    font-size: 16px;
}

footer ul li.leaf a {
    font-size: 15px;
}

footer ul li a:hover {
    text-decoration: underline;
}

footer ul li.root.bl a:before {
    background: #3c61ac;
}

footer ul li.root.gr a:before {
    background: #4ca534;
}

footer ul li.root.or a:before {
    background: #f39800;
}

footer ul li.root.re a:before {
    background: #eb6c73;
}

footer ul li.root a:before {
    content: "";
    position: absolute;
    top: 9px;
    left: 1px;
    width: 17px;
    height: 17px;
    margin-top: -4px;
    border-radius: 50%;
    transition: .2s;
    display: block;
}

footer ul li.root a:after {
    content: "";
    position: absolute;
    top: 13px;
    left: 5px;
    width: 9px;
    height: 9px;
    margin-top: -4px;
    border-radius: 50%;
    transition: .2s;
    display: block;
    background: #e8e9ec;
}

footer .copy {
    text-align: left;
    background: #4b4e53;
    color: #fff;
    font-size: 13px;
    padding: 12px 0;
    margin-top: 60px;
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
　--pagination
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.pagination {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.pagination .page-numbers.current {
    background-color: #f1efef;
}

.pagination .page-numbers:hover {
    background-color: #f1efef;
}

.pagination .page-numbers {
    margin: 40px 3px;
    padding: 3px 12px;
    display: block;
    text-decoration: none;
    position: relative;
    border: 3px solid #ccc;
    background: #fff;
}

.pagination #page_single #sidebar select {
    display: block;
    width: 100%;
    padding: .5rem .8rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: 1px solid #111;
    border-radius: 0px;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

#page_single #sidebar .cat {
    border: 1px solid #000;
    margin-left: 8px;
    padding: 1px 16px 1.5px;
    font-size: 13px;
}

#page_single #sidebar .cat.event {
    border-color: #7e57a8;
    color: #7e57a8;
}

#page_single #sidebar .cat.kousya {
    border-color: #3c61ac;
    color: #3c61ac;
}

#page_single #sidebar .cat.tikatetsu {
    border-color: #4ca534;
    color: #4ca534;
}

#page_single #sidebar .cat.recruit_info {
    border-color: #f39800;
    color: #f39800;
}

#page_single #sidebar .cat.romen {
    border-color: #eb6c73;
    color: #eb6c73;
}

#page_single #sidebar .cat_list li {
    padding: 12px 12px 12px 20px;
    display: block;
    border-bottom: 1px solid #ddd;
    position: relative;
}

#page_single #sidebar .cat_list li:before {
    content: '';
    position: absolute;
    left: -2px;
    top: 24px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #3c61ac;
    border-right: 2px solid #3c61ac;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#page_single #sidebar .latest_list ul li {
    border-bottom: 1px solid #dddddd;
    padding: 12px 20px;
}

#page_single #sidebar .latest_list ul li a {
    font-size: 14px;
}

#page_single #sidebar .latest_list ul li:nth-child(2n) {
    background: #e8e9ec;
}

#page_single #sidebar .latest_list h3 {
    margin-top: 7px;
}

#page_single #sidebar .linkbtn {
    text-align: right;
    padding-top: 6px;
}

#page_single #sidebar .linkbtn a {
    color: #3c61ac;
    padding-right: 18px;
    position: relative;
    display: block;
}

#page_single #sidebar .linkbtn a:after {
    content: '';
    position: absolute;
    right: 4px;
    top: 12px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #3c61ac;
    border-right: 2px solid #3c61ac;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
　--pan
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#pan {
    font-size: 14px;
    line-height: 1.3;
    padding: 20px 0 20px;
}

#pan ul {
    display: flex;
    flex-direction: row;
}

#pan ul li {
    margin-right: 30px;
}

#pan ul li .home {
    display: inline-block;
    width: 23px;
    height: 20px;
    position: relative;
    top: -3px;
    background-size: contain;
    vertical-align: middle;
}

#pan ul li {
    position: relative;
}

#pan ul li:after {
    content: '';
    position: absolute;
    display: inline-block;
    right: -26px;
    width: 23px;
    height: 17px;
    top: 1px;
    background-size: contain;
    vertical-align: middle;
    background-image: url(../../images/arrow_pan.svg);
}

#pan ul li:last-of-type:after {
    content: none;
}

#pan ul li .home {
    background-image: url(../../images/home_pan.svg);
}


/* カラー部 */

/* 事業内容
==========================================*/
#page_business #pan a,
#page_business #pan {
    color: #4ca534;
}

#page_business #pan ul li .home {
    background-image: url(../../images/home_business_pan.svg);
}

#pan a:hover {
    text-decoration: underline;
}

/* 公社について
==========================================*/
#page_about #pan a,
#page_about #pan {
    color: #f39800;
}

#page_about #pan ul li .home {
    background-image: url(../../images/home_about_pan.svg);
}

/* イベント情報
==========================================*/
#page_info #pan a,
#page_info #pan {
    color: #eb6c73;
}

#page_info #pan ul li .home {
    background-image: url(../../images/home_info_pan.svg);
}

#pan a:hover {
    text-decoration: underline;
}

/* お問い合わせ
==========================================*/
#page_contact #pan a,
#page_contact #pan {
    color: #4ca534;
}

#page_contact #pan ul li .home {
    background-image: url(../../images/home_contact_pan.svg);
}

#pan a:hover {
    text-decoration: underline;
}

/* オリジナルグッズ販売
==========================================*/
#page_goods #pan a,
#page_goods #pan {
    color: #3c61ac;
}

#page_goods #pan ul li .home {
    background-image: url(../../images/home_goods_pan.svg);
}

#pan a:hover {
    text-decoration: underline;
}

/* 採用情報
==========================================*/
#page_recruit #pan a,
#page_recruit #pan {
    color: #f39800;
}

#page_recruit #pan ul li .home {
    background-image: url(../../images/home_about_pan.svg);
}
.advgb-columns.gutter-40>.editor-inner-blocks>.editor-block-list__layout>.wp-block, .advgb-columns.gutter-40>.advgb-column{
	margin-left: 0!important;
}
.recruit_btn .advgb-columns{justify-content: space-between;}
.recruit_btn.column-1 .advgb-columns{justify-content: space-around;}

/*sns*/
.footer-logo p.sns { display: flex; }
.footer-logo p.sns a { width: 10%;  margin: 20px 20px 0 0; }


