@charset "UTF-8";
/*
 Theme Name: SANGO Child
 Theme URI: https://saruwakakun.design
 Author: SARUWAKA
 Author URI: https://saruwakakun.com
 Template: sango-theme
 Version: 4.0
 ----------------
 2026.09.10 update プラグイン更新に伴う微調整
 2026.09.16 update SANGO3.12へ更新に伴う微調整
*/
/*こちらはSANGOの子テーマ用CSSです。以下にCSSを記入していきましょう。*/

:root{
    --main-color:#c54c82;
}
/* SANGO の設定を上書き start ------------------- */
.brec{
    background-color: #fff;
}
.brec a{
    color: #333;
}
.brec #breadcrumb li:first-child a:before{
    content: none;
}
.brec #breadcrumb li:first-child::before{
    font-family: "Font Awesome 5 Free";
    content: "\f015";/* fa-home 家 ホーム */
    font-weight: bold;
    font-size: 1.2em;
    color: #333;
    margin-right: 0.5em;
}

.brec .header{
    background-color: #fff;
    box-shadow: none;
}
.brec .footer{
    background-color: #fff;
}
.brec #logo{
    text-align: left;
}
.brec #logo img{
    height: 50px;
    padding: 0;
}
.brec #content{
    padding-bottom: 0;
}

.brec #entry{
    margin-bottom: 0;
}
.brec .entry-content ul {
    border:0;
    list-style-type: none;
    padding: 0;
}

.brec #breadcrumb{
    background: #fff;
    font-size: 0.9em;
    margin-top: 0.5em;
}
.brec #breadcrumb a{
    color:#333;
    
}
/* .brec #breadcrumb ul li:not(:first-of-type) a{ */
.brec #breadcrumb ul li a{
    text-decoration: underline;
}
.brec #breadcrumb ul li:last-of-type a{
    text-decoration: none;
}
.brec #breadcrumb ul li:last-of-type::after {
    content: '';
}

.brec .entry-content {
    padding: 0 2em 2em;
}

.brec .entry-content h3{
    border:0;
    margin: 1.5em 0 1.5em;
    text-align: center;
    padding: 10px 0;
    font-size: 1.4em;
    position: relative;
}
.brec .entry-content h3:after {
    font-family: "Font Awesome 5 Free";
    content: "\f0d7";/* fa-caret-down 下向き三角 */
    position: absolute;
    bottom: -20px;
    right: 0px;
    left: 0px;
    color: #ec729c;
    margin: 0 auto;
    font-size: 1.2em;
}

.brec .entry-content dd{
    color:#000;
}
.brec .entry-content p a {
    text-decoration: none;
}
.brec .entry-content p a:hover{
    text-decoration: underline;
}

/* ソーシャルアイコンは「Font Awesome 5 Brands」*/
.fa-twitter::before,
.fa-facebook::before,
.fa-line::before,
.fa-get-pocket::before {
    font-family: "Font Awesome 5 Brands";
}
/* アイコンのフォントファミリーが効いていない箇所があるようで */
.fa-angle-left:before,
.fa-angle-right:before{
    font-family: "Font Awesome 5 Free";
}
/* 管理者ツールバーのアイコンは「dashicons」*/
#wpadminbar .ab-icon:before{
    font: normal 20px/1 "dashicons";
}
/* SANGO の設定を上書き end ------------------- */

/** カスタム設定 -------------------------------------------------**/
.spc-br{
    display: none;
}
.hidden-xs {
    display: none;
}
/* header ------------------------------------------------------ */
/* -- ハンバーガーボタン -- */
nav#top-menu .hamburger-menu .menu-btn {
    position: absolute;
    top: 0;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    /* background-color: var(--main-color); */
    background-color: #fff;
}
nav#top-menu .hamburger-menu .menu-btn span,
nav#top-menu .hamburger-menu .menu-btn span:before,
nav#top-menu .hamburger-menu .menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background-color: #333;
    position: absolute;
}
nav#top-menu .hamburger-menu .menu-btn span:before {
    bottom: 8px;
}
nav#top-menu .hamburger-menu .menu-btn span:after {
    top: 8px;
}
/* -- ハンバーガーボタン 押下時 -- */
nav#top-menu .hamburger-menu #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
nav#top-menu .hamburger-menu #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
nav#top-menu .hamburger-menu #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
/* -- チェックボックスを隠す -- */
nav#top-menu .hamburger-menu #menu-btn-check {
    display: none;
}
/* -- メニュー本体 --*/
nav#top-menu .menu-content {
    width: 70%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;/* メニューを画面外へ */
    z-index: 80;
    background-color: #fff;
    transition: all 0.5s;/* アニメーション設定 */
    padding: 0 1em;
}
nav#top-menu .menu-content ul {
    padding: 45px 10px 0;
}
nav#top-menu .menu-content ul li:not(:last-of-type) {
    border-bottom: solid 1px #ddd;
    list-style: none;
}
nav#top-menu .menu-content ul li a {
    font-size: 0.7em;
    text-decoration: none;
    display: block;
}
nav#top-menu .menu-content ul li a:hover {
    transition: 0.3s;
    opacity: 0.7;
}

nav#top-menu .menu-content ul li:not(:last-of-type) a {
    position: relative;
    width: 100%;
    padding: 9px 15px 10px 0;
    line-height: 1.3;
    font-weight: bold;
    color: #333;
}
nav#top-menu .menu-content ul li:not(:last-of-type) a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
nav#top-menu .menu-content ul li a:after {
    content: attr(title);
    color: #f4aeba;
    display: block;
    margin: 0 auto;
    right: 0px;
    left: 0px;
    font-weight: 100;
    line-height: 1.5;
}
nav#top-menu .menu-content ul li:last-of-type a{
    background-color: var(--main-color);
    border-radius: 5px;
    margin: 1em 0.5em;
    text-align: center;
    padding: 0.8em;
    color: #fff;
    font-weight: bold;
    position: relative;
}
nav#top-menu .menu-content ul li:last-of-type a:hover {
    background-color: #ec729c;
}
nav#top-menu .menu-content ul li:last-of-type a img{
    margin-right: 1em;
}
nav#top-menu .menu-content ul li:last-of-type a::after{
    color: #fff;
    font-weight: bold;
}

/* ボタン押下時にメニュー表示 */
nav#top-menu .hamburger-menu #menu-btn-check:checked ~ .menu-content {
    right: 0;/* メニューを画面内へ */
    overflow-y: auto;/* 表示しきれなければスクロールさせる */
}
/* header ------------------------------------------------------ */

/* Page main --------------------------------------------------- */
#content-header {
    background-image: url("./common/images/page_title_background.jpg");
    height: 220px;
    background-size: 113%;
    background-position: center right;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
#content-header::before{
    /* 透過した黒を上から重ね、色調整 */
    background-color: rgba(0,0,0,0.3);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: ' ';
  }
#content-header .page-title {
    color: #fff;
    font-size: 1.7em;
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

.brec .row-eq-height p{
    text-align: left;
    font-size: 0.9em;
}

.brec .col-sm-6 {
    margin: 1em 0;
    text-align: center;
}
.brec .name {
    text-align: right;
    line-height: 2;
    font-size: 0.9em;
}
.brec .name span {
    font-family: serif;
    font-size: 1.8em;
    margin-left: 0.5em;
    font-weight: bold;
}

/* ボタン */
.brec .btn-apply,
.brec .btn-detail 
{
    background-color: var(--main-color);
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    height: auto;
    padding: 1em 2em;
    font-size: 0.8em;
    display: block;
    text-align: center;
}
.brec .btn-apply:hover,
.brec .btn-detail:hover 
{
    text-decoration: none;
    transition: 0.3s;
    background-color: #ec729c;
}
.brec .btn-detail {
    background-color: #f4aeba;
}
/* Page main --------------------------------------------------- */

/* Page Front -------------------------------------------------- */
.brec .front #content-header {
    height: auto;
}
.brec .front #content-header img{
    /* background-image: url("./common/images/mainvisual_01.jpg");
    height: 320px;
    background-size: cover;
    background-position: top; */
    width: 100%;
}
.brec .front #content-header::before {
    background-color: rgba(0,0,0,0);
}

/* ページ先頭へ -------------------------------------------------- */
.brec #to-top {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
}
.brec #to-top a {
    font-weight: bold;
    position: relative;
    text-decoration: none;
    color: #333;
    font-size: 0.9em;
}
.brec #to-top a:hover {
    color: #666;
    transition: 0.3s;
}
.brec #to-top a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f106";/* fa-angle-up 上矢印 */
    font-weight: bold;
    position: absolute;
    top: -23px;
    right: 0px;
    left: 0px;
}
/* ページ先頭へ -------------------------------------------------- */

/* footer メニュー 〜 Copy Right --------------------------------- */
.brec #footer-menu {
    padding: 2em;
    text-align: left;
    /* background-color: #f4aeba !important; */
    background-color: #f4aeba;
}

.brec #footer-menu .col-4 {
    margin-bottom: 1em;
}
.brec #footer-menu nav {
    display: block;
}
.brec #footer-menu nav:first-of-type h4:before,
.brec #footer-menu nav:nth-of-type(2) h4:before{
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-size: contain;
    vertical-align: middle;
    margin-right: 0.3em;
}
.brec #footer-menu nav:first-of-type h4:before{
    background-image: url("./common/images/footer_icon_01.png");
}
.brec #footer-menu nav:nth-of-type(2) h4:before{
    background-image: url("./common/images/footer_icon_02.png");
}
.brec #footer-menu h4 {
    margin: 0;
    font-size: 0.9em;
    position: relative;
}
.brec #footer-menu h4::after{
    content: " ";
    position: absolute;
    bottom: 2px;
    left: 0px;
    width: 5em;
    height: 2px;
    background-color: var(--main-color);
}

.brec #footer-menu a{
    color: #333;
}
.brec #footer-menu ul {
    margin: 0 1em 0 0;
}
.brec #footer-menu li {
    display: block;
    font-size: 0.8em;
    line-height: 1.5;
    padding: 0;
    margin-bottom: 0.5em;
}
.brec #footer-menu li::before{
    font-family: "Font Awesome 5 Free";
    content:"\f105";/* fa-angle-right 右矢印 */
    font-weight: bold;
    padding-right: 0.5em;
}


.brec #footer-menu a.btn-apply {
    background-color: var(--main-color);
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    padding: 1em 2em;
    font-size: 1.2em;
    display: block;
    text-align: center;
}
.brec #footer-menu a.btn-apply img{
    margin: 0.5em;
}
.brec #footer-menu a.btn-apply p.en{
    font-size: 0.7em;
    line-height: 1;
}
.brec #footer-menu a.btn-contents{
    display: block;
    margin-top: 1em;
}

.brec #copyright{
    background-color: var(--main-color);
    color: #fff;
    padding: 1.3em;
    font-size: 0.8em;
    text-align: center;
}
/* footer メニュー 〜 Copy Right --------------------------------- */

/* TOPページ ---------------------------------------------------- */
#introduction a {
    color: #f4aeba;
    text-decoration: underline;
}
#introduction .btn {
    background: none;
    padding: 0.3em 0.5em;
    font-size: 0.8em;
    margin-bottom: 10px;
    border-radius: 3px;
    border: 1px #333 solid;
}
#introduction .container h2{
    text-align: center;
}
#introduction .container h2 + p{
    text-align: center;
}
#introduction button[data-toggle='collapse'] ~ .collapse{
    display: none;
}
#introduction .top-youtube-box {
    padding-top: 56.25%;
    position: relative;
}
#introduction .top-youtube-box iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
#topics {
    padding-top: 1.5em;
    padding-bottom: 1em;
    background-color: #f5f5f5;
    margin: 1.5em 0;
}
#topics .container {
    width: 95%;
    margin: 0 auto;
}
#topics h2 {
    text-align: center;
    font-weight: bold;
    font-size: 1.5em;
}
#topics ul li {
    margin-bottom: 30px;
}
#topics ul li a.btn {
    display: block;
    margin: 0 auto;
    border: solid 1px #000;
    position: relative;
    min-width: 240px;
    max-width: 100%;
    padding: 5px 30px;
    white-space: inherit;
    border-radius: 4px;
    line-height: 1.3;
    text-align: center;
}
#topics ul li a.btn:hover {
    color: #c54c82;
    border-color: #c54c82;
}
#topics ul li a.btn:after {
    font-family: "Font Awesome 5 Free";
    content:"\f105";/* fa-angle-right 右矢印 */
    font-weight: bold;
    position: absolute;
    right: 10px;
    font-size: 1.1em;
}
#topics ul li div{
    margin-top: 0.5em;
    line-height: 1.5;
}

.wide-content {
    height: 380px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: #fff;
}
.wide-content .container {
    height: 100%;
    width: 95%;
    margin: 0 auto;
}
.wide-content .container .content {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    text-align: center;
    margin: 0;
}
.wide-content .container .content h3 {
    margin: 0;
    padding: 5em 0.5em 1em;
}
.wide-content .container .content h3::after {
    content: "";
}
.wide-content .container .content .viewdetail {
    position: relative;
    color: #fff;
    background-color: var(--main-color);
    font-weight: bold;
    text-align: center;
    display: block;
    width: 280px;
    border-radius: 50px;
    padding: 1em 0px;
    margin: 0 auto;
    border: solid var(--main-color) 2px;
}
.wide-content .content .viewdetail:hover {
    color: var(--main-color);
    background-color: #fff;
    text-decoration: none;
}
.wide-content .container .content .viewdetail:after {
    font-family: "Font Awesome 5 Free";
    content:"\f105";/* fa-angle-right 右矢印 */
    font-weight: bold;
    position: absolute;
    right: 20px;
    font-size: 18px;
    top: 18px;
}
.wide-content#mission-vision-value {
    background-image: url(common/images/widecontent-01.jpg);
}
.wide-content#know-b {
    background-image: url(common/images/widecontent-02.jpg);
}
.wide-content#message {
    background-image: url(common/images/widecontent-03.jpg);
}
.wide-content#interview {
    background-image: url(common/images/widecontent-04.jpg);
}

/* TOPページ ---------------------------------------------------- */


/* bを知ろう / bのミッション・ビジョン・バリュー ページ 用 -------------- */
.company .image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.company #company-01 ul,
.company #company-02 ul,
.company #company-03 ul  {
    padding: 0;
    list-style: none;
    border: 0;
}
.company #company-01 ul li{
    margin-top: 0;
}
.company #company-01 ul li .box {
    text-align: center;
    border-radius: 4px;
    height: 100%;
    box-shadow: 0px 0px 10px #ddd;
}
.company #company-01 ul li .box .top {
    background-color: var(--main-color);
    color: #fff;
    padding: 20px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.company #company-01 ul li .box .top h4 {
    margin: 0.5em 0;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1.5;
}
.company #company-01 ul li .box .top p {
    text-align: center;
    font-weight: bold;
    font-size: 0.8em;
    margin-bottom: 0.5em;
    line-height: 1.4;
}
.company #company-01 ul li .box .detail {
    padding: 20px;
    text-align: left;
    font-size: 0.9em;
    line-height: 1.5;
}

.company #company-02 ul li {
    margin-bottom: 1em;
}
.company #company-02 ul li a {
    background-color: #ec729c;
    position: relative;
    color: #fff;
    display: block;
    font-weight: bold;
    font-size: 0.9em;
    padding: 30px 45px;
}
.company #company-02 ul li a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f35d";/* fa-external-link-alt 外部リンク 矢印 */
    position: absolute;
    font-weight: bold;
    right: 5px;
    bottom: 2px;
    font-size: 0.7em;
}

.company #company-03 ul li .image {
    height: 180px;
    margin: 0 auto;
    /* background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; */
}
.company #company-03 ul li:nth-child(1) .image {
    background-image: url("./common/images/company_01.jpg");
}
.company #company-03 ul li:nth-child(2) .image {
    background-image: url("./common/images/company_02.jpg");
}
.company #company-03 ul li:nth-child(3) .image {
    background-image: url("./common/images/company_03.jpg");
}
.company #company-03 ul li h4 {
    color: var(--main-color);
    margin: 1em 0 0.5em;
}
.company #company-03 ul li p {
    line-height: 1.6;
}

.company #company-03 .child-content {
    margin: 0 auto;
    background-color: #eee;
    padding: 20px;
    position: relative;
}
.company #company-03 .child-content dl dd:first-of-type{
    letter-spacing: -0.1em;
    line-height: 1.5;
}
.company #company-03 .child-content h5 {
    font-weight: 800;
    font-size: 16px;
    padding-left: 5px;
    border-left: solid var(--main-color) 5px;
    margin-bottom: 15px;
}
.company #company-03 .child-content dl {
    margin: 0.5em 0;
}
.company #company-03 .child-content dl dt {
    font-size: 0.9em;
    font-weight: bold;
    text-align: left;
}
.company #company-03 .child-content dl dd{
    text-align: left;
    margin-bottom: 0;
}
.company #company-03 .child-content dl dd b {
    font-weight: bold;
    color: var(--main-color);
    font-size: 1.3em;
}
/* bを知ろう / bのミッション・ビジョン・バリュー ページ 用 -------------- */

/* 仕事の流れ ----------------------------------------------------- */
.brec.work .row-eq-height p{
    margin-bottom: 1em;
}
.work .flow li h4 {
    margin: 0;
    font-weight: bold;
    font-size: 1.4em;
    color: var(--main-color);
    text-align: left;
}
.work .flow li h5 {
    margin: 0;
    font-weight: bold;
    text-align: left;
}
.work .interview {
    padding: 20px;
    display: block;
    margin: 0 auto;
    width: 240px;
    background-color: #ec729c;
    color: #fff;
    text-align: center;
    position: relative;
}
.work .interview:after {
    font-family: "Font Awesome 5 Free";
    content: "\f35d";/* fa-external-link-alt 外部リンク 矢印 */
    position: absolute;
    font-weight: bold;
    right: 5px;
    bottom: 2px;
    font-size: 0.7em;
}
.brec.work  .col-sm-6{
    text-align: left;
    padding: 0 1em;
    margin-top: 0;
}
/* 仕事の流れ ----------------------------------------------------- */

/* 人事制度＆キャリアパス ページ 用 --------------------------------- */
#system-02 dl {
    margin: 0 auto;
    margin-bottom: 30px;
}
#system-02 dt,
#system-02 dd {
    padding: 10px 20px;
}
#system-02 dt {
    background-color: var(--main-color);
    color: #fff;
    font-weight: bold;
}
#system-02 dd {
    background-color: #eee;
}

#system-03 ul,
#system-04 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 0;
}
#system-03 ul li h4 {
    font-weight: bold;
    color: var(--main-color);
    margin: 0.5em 0 0.1em;
}
#system-03 p,
#system-04 p{
    text-align: left;
    font-size: 0.9em;
}

#system-04 h5{
    margin-top: 0;
}

#system-04 > ul > li ul li{
    position: relative;
    font-size: 0.9em;
}
#system-04 > ul > li ul li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0da";/* fa-caret-right 右向き三角 */
    font-weight: bold;
    margin-right: 0.5em;
}
/* 人事制度＆キャリアパス ページ 用 --------------------------------- */

/* FAQ ページ 用 ------------------------------------------------ */
.faq dl {
    border: solid 1px #ddd;
    margin-bottom: 30px;
}
.faq dl dt {
    background-color: #96c384;
    padding: 10px 20px 5px;
    color: #fff;
    font-weight: bold;
}
.faq dl dt:before {
    font-family: "Font Awesome 5 Free";
    content: "\f27a";/* fa-comment-alt コメント 吹き出し*/
    margin-right: 10px;
    font-size: 1.4em;
    vertical-align: middle;
    font-weight: bold;
    transform: scaleX(-1);
}
.faq dl dd {
    padding: 1.5em;
    margin-bottom: 0;
    line-height: 1.5;
}
.faq dl dd a {
    color: #ec729c;
    text-decoration: underline;
}

/* FAQ ページ 用 ------------------------------------------------ */

/* 中途採用情報/新卒採用 ページ用 ---------------------------------- */
.job-find .entry-content ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    border: 0;
}
.job-find .content-box ul li {
    border: solid #ddd 3px;
    margin-bottom: 30px;
    padding: 20px;
    /* position: relative; */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.job-find .content-box ul li h4 {
    width: 100%;
    margin: 0;
    font-weight: normal;
    font-size: 0.95em;
    line-height: 1.5;
}
.job-find .content-box ul li p {
    display: flex;
    flex-wrap: wrap;
    /* padding: 1em; */
    margin: 0;
}
.job-find .content-box ul li p a {
    margin: 1em 1em 0.5em 0;
    height: 50px;
    width: 160px
}
.job-find .content-box ul li a.btn-detail:before,
.job-find .content-box ul li a.btn-apply:before {
    margin-right: 10px;
    font-weight: bold;
    font-size: 1.1em;
}
.job-find .content-box ul li a.btn-detail:before {
    font-family: "Font Awesome 5 Free";
    content: "\f46d";/* fa-clipboard-list コピー クリップボード リスト */
}
.job-find .content-box ul li a.btn-apply:before {
    font-family: "Font Awesome 5 Free";
    content: "\f044";/* fa-edit 編集 */
}

/* 中途採用情報/新卒採用 ページ用 ---------------------------------- */

/* 求人詳細 ページ 用 -------------------------------------------- */
.brec.container {
    letter-spacing: 0.03em;
}
.brec .concierge ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 0;
    text-align: left;
}

.brec .concierge .concierge-title{
    text-align: left;
    border-left: solid 3px #ec729c;
    padding: 0 0 0 0.5em;
    line-height: 1.2;
    margin: 0;
}
.brec .concierge .concierge-title:after{
    content:'';
}
.brec .concierge .subtitle{
    text-align: left;
    margin: 0.5em 0;
    padding-bottom: 0.5em;
    font-size: 0.8em;
    line-height: 1.4;
    border-bottom: solid 1px #ddd;
}
.brec .concierge .detail{
    margin-bottom: 2em;
}

.brec .concierge .detail dl dt {
    background-color: #eee;
    border: solid 1px #eee;
    padding: 10px;
    display: table-cell;
    font-weight: bold;
    white-space: nowrap;
    font-size:0.9em;
}
.brec .concierge .detail dl dd {
    border: solid 1px #eee;
    padding: 10px;
    margin-left: -5px;
    display: table-cell;
    line-height: 1.4;
    font-size:0.9em;
    text-align: left;
}
.brec .concierge .detail ul li {
    display: inline-block;
    padding: 0.5em 0.8em;
    background-color: #f4aeba;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    margin: 0.4em 0.5em 0 0;
    font-size: 0.7em;
}
.brec .concierge .detail ul li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f02b";/* fa-tag タグ ラベル */
    margin-right: 5px;
    font-weight: bold;
    font-size: 0.7em;
}

.brec .concierge .child-content h4 {
    text-align: center;
    color: var(--main-color);
    font-weight: bold;
}
.brec .concierge .child-content dl dt{
    font-weight: bold;
    text-align: left;
}
.brec .concierge .child-content dl dd{
    line-height: 1.4;
}
.brec .concierge .child-content p{
    line-height: 1.4;
    text-align: left;
    font-size: 0.9em;
}
.brec .concierge .child-content ul.point{
    line-height: 1.4;
    font-size: 0.9em;
}
.brec .concierge .child-content ul.point li{
    padding: 0;
}

.brec .concierge table {
    border: solid #ddd 1px;
    margin-bottom: 30px;
    font-size: 0.95em;
    line-height: 1.5;
}
.brec .concierge table tr {
    border-bottom: solid #ddd 1px;
}
.brec .concierge table tr td {
    padding: 20px;
    padding: 1em;
    text-align: left;
    font-size: 0.9em;
}
.brec .concierge table tr td p{
    text-align: left;
    margin-bottom: 0.5em;
}
.brec .concierge table tr td:first-child {
    background-color: #eee;
    width: 30%;
    font-weight: bold;
}
/* 求人詳細 ページ 用 -------------------------------------------- */

/* 求人詳細 ページ(英語) 用 --------------------------------------- */
.brec .concierge.en .entry-content {
    padding: 0 2em 1em;
}

.brec .concierge.en .panel {
    margin-bottom: 1em;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}
.brec .concierge.en .panel-heading {
    padding: 0.5em 1em;
    border-bottom: 1px solid #ddd;
    background-color: #f5f5f5;
}
.brec .concierge.en .panel-body {
    padding: 1em;
    line-height: 1.5;
    font-size: 0.9em;
}
.brec .concierge.en .panel-body p {
    text-align: left;
    margin-bottom: 1em;
}
.brec .concierge.en .column {
    margin-bottom: 1.5em;
}
/* 求人詳細 ページ(英語) 用 --------------------------------------- */

/* 先輩インタビュー 用 -------------------------------------------- */
.brec.interview .col-sm-6{
    margin: 0;
    text-align: left;
}
.interview .image .row-eq-height img[loading="lazy"] + p{
    margin: 0 0 1em;
}

.interview dl dt {
    font-size: 1.3em;
    font-weight: bold;
}
.interview dl dt .from{
    font-size: 0.6em;
    font-weight: normal;
    margin-left: 1.5em;
}
.interview dl dd {
    /* font-size: 1em; */
    line-height: 1.5;
}

/* 先輩インタビュー 用 -------------------------------------------- */

/* 投稿一覧 ページ 用 -------------------------------------------- */
.brec .post .entry-content h3:after{
    content:"";
}
.brec .contents-box .card-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 1em;
}
.brec .contents-box .card-list li {
    width: 333px;
    animation: fadeIn 0.7s ease 0s 1 normal;
    border-radius: 2px;
    margin-bottom: 44px;
    background: #fff;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
    cursor: pointer;
    transition: 0.2s ease-in-out;
    padding: 0;
}
.brec .contents-box .card-list li:hover {
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
}
.brec .contents-box .card-list li .card-list-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.brec .contents-box .card-list li a {
    text-decoration: none;
}
.brec .contents-box .card-list li .card-list-img-box img {
    position: absolute;
    top: 0;
    left: 0;
}
.brec .contents-box .card-list li .card-list-img-box .cat-icon {
    padding: 12px;
    position: absolute;
    z-index: 1;
}
.brec .contents-box .card-list li .card-list-img-box .cat-icon a {
    display: inline-block;
    background-color: #f4aeba;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 12px;
    letter-spacing: 1.2px;
    margin-right: 6px;
    margin-bottom: 6px;
}
.brec .contents-box .card-list li .card-list-txt-box {
    padding: 12px;
}
.brec .contents-box .card-list li .card-list-txt-box time {
    color: #b5b5b5;
    font-size: 0.9em;
    font-weight: bold;
}
.brec .contents-box .card-list li .card-list-txt-box .card-list-ttl-box h3 {
    text-align: left;
    font-size: 1.1em;
    color: #555;
    margin: 0;
    line-height: 1.5;
    padding: 0;
}
.brec .contents-box .card-list li .card-list-txt-box .card-list-ttl-box h3::after{
    content:"";
}

/* --ページング-- */
.paginate-links-list-num-on {
    text-align: center;
    margin-bottom: 1em;
}
.paginate-links-list-num-on a:hover {
    text-decoration: none;
}
.paginate-links-list-num-on .page-numbers {
    background-color: #f4aeba;
    display: inline-block;
    height: 46px;
    width: 46px;
    margin: 4px;
    line-height: 46px;
    color: var(--main-color);
    border-radius: 50%;
    font-weight: bold;
    font-size: 17px;
}
.paginate-links-list-num-on .page-numbers.current {
    color: #fff;
    background-color: var(--main-color);
}
.paginate-links-list-num-on .page-numbers.next,
.paginate-links-list-num-on .page-numbers.prev {
    background: none;
}
/* 投稿一覧 ページ 用 -------------------------------------------- */

/* 申し込み ページ 用 -------------------------------------------- */
.brec form .title {
    margin-top: 1.5em;
    font-size: 0.9em;
    text-align: center;
}
.brec form .row-eq-height>div input:not([type="file"]):not([type="checkbox"]),
.brec form .row-eq-height>div textarea {
    background-color: #eee;
    width: 100%;
    padding: 0.3em;
    border: solid 1px #ddd;
}
.brec form .row-eq-height>div input[type="file"]{
    font-size: 0.8em;
}
.brec form .col-sm-8 span{
    width: 100%;
    margin: 0;
}
.brec form .col-sm-8 span label{
    display: table;
    width: 100%;
    border: 1px solid #eee;
    padding: 8px 0;
}
.brec form .col-sm-8 span label input{
    display: table-cell;
    width: 30px;
}
.brec form .col-sm-8 span label span{
    font-weight: bold;
}
.brec form .col-sm-8 .memo{
    background: none;
    margin: 0;
    padding: 0;
}
/* 2026.09.10 add start SANGO設定を上書き */
.brec form fieldset{
    margin:0;
    padding: 0;
    border: 0;
}
/* 2026.09.10 add end */

.entry-content p.apply  {
    margin-bottom: 0;
    position: relative;
}
.apply .content-box input[type="submit"] {
    margin: 0 auto;
    display: block;
    background-color: #ec729c;
    border: none;
    padding: 15px 0px 25px;
    color: #fff;
    width: 240px;
    font-weight: bold;
}
.apply .content-box p.apply:before {
    content: "apply";
    color: #fff;
    text-align: center;
    display: block;
    position: absolute;
    bottom: 35px;
    /* font-size: 0.9em; 2026.09.16 update */
    font-size: 0.7em;
    right: 0px;
    left: 0px;
    z-index: 5;
}
/* 申し込み ページ 用 -------------------------------------------- */

/* 投稿用 ------------------------------------------------------ */
/* 2026.09.16 add*/
.single .brec p.post-thumbnail {
    padding: 0 1em;
}
.single .brec .fab-btn {
    margin-right: 30px;
}
.single .brec .entry-content{
    margin-top: 2em;
}
.single .brec .entry-content > p{
    line-height: 1.5;
}
.single .brec .entry-content h2{
    margin: 1em 0 0.7em;
    line-height: 1.1;
    font-weight: normal;
}
/* -- 投稿日付欄 2026.09.16 add --*/
.single .brec .entry-meta.vcard {
    text-align: right;
    margin: 3em 1em 1em 0;
}
/* -- サイドバー --*/
.single .brec .sidebar{
    display: none;/* 非表示 */
}
/* 投稿用 ------------------------------------------------------ */


@media only screen and (min-width: 700px){
    /* 中途採用情報/新卒採用 ページ用 ---------------------------------- */
    .job-find .content-box ul li h4 {
        max-width: 40%;
    }
    .job-find .content-box ul li p a {
        margin: 0 1em 0.5em 0;
    }
    /* 中途採用情報/新卒採用 ページ用 ---------------------------------- */
}


@media only screen and (min-width: 769px){
    .brec .one-column #main{
        max-width: 100%;
    }
    .spc-br{
        display: block;
    }
    .hidden-xs {
        display: block;
    }
    .only-xs {
        display: none;
    }
    /* header ------------------------------------------------------ */
    .brec #inner-header {
        display: flex;
        justify-content: space-between;
    }

    .brec #logo {
        height: auto;
        width: auto;
        padding-left: 0;
        margin: auto 0;
    }
    .brec #logo img{
        height: 60px;
    }

    nav#top-menu {
        margin-left: auto;
    }
    nav#top-menu .hamburger-menu .menu-btn{
        display: none;
    }

    nav#top-menu .menu-content {
        right: auto;
        width: auto;
        height: auto;
        position: unset;
        padding: 0;
        font-size: 0.7em;
    }
    nav#top-menu .menu-content ul {
        padding: 0;
        margin: 0;
        display: flex;
    }
    nav#top-menu .menu-content ul li {
        display: flex;
    }
    nav#top-menu .menu-content ul li:not(:last-of-type) {
        border-bottom: 0;
        padding: 1.3em 0;
        text-align: center;
        height: 78px;
        font-size: 0.9em;
    }
    nav#top-menu .menu-content ul li a:after {
        position: absolute;
        bottom: 0;
    }
    nav#top-menu .menu-content ul li:not(:last-of-type) a{
        padding: 1em 0.7em;
        height: 100%;
    }
    nav#top-menu .menu-content ul li:not(:last-of-type):not(:nth-last-of-type(2)) a{
        border-right: solid 1px #ddd;
    }
    nav#top-menu .menu-content ul li:nth-of-type(5) a{
        padding: 1em 3.3em;
    }

    nav#top-menu .menu-content ul li:not(:last-of-type) a::before{
        display: none;
    }
    nav#top-menu .menu-content ul li:last-of-type a img{
        display: none;
    }
    nav#top-menu .menu-content ul li:last-of-type a{
        margin: 1.5em 0.5em;
        padding: 1em 0.8em;
    }
    nav#top-menu .menu-content ul li:last-of-type a::after{
        bottom:1em;
    }
    /* header ------------------------------------------------------ */

    /* Page main --------------------------------------------------- */
    .brec .article-header{
        margin-top: 0;
    }
    #content-header {
        height: 240px;
    }
    #content-header .page-title {
        font-size: 2em;
        padding: 0 1em;
    }

    .brec .entry-content {
        padding: 0 3em 0;
    }

    .brec .row-eq-height {
        display: flex;
        flex-wrap: wrap;
        line-height: 1.5;
        font-size: 0.9em;
    }
    .brec .col-sm-6 {
        width: 50%;
        padding: 1em;
    }
    /* Page main --------------------------------------------------- */

    /* footer メニュー 〜 Copy Right --------------------------------- */
    .brec #footer-menu {    
        display: flex;
        justify-content: space-between;
    }
    .col-4 {
        width: 25%;
    }
    .brec #footer-menu a.btn-apply {
        padding: 0.8em 1em;
        font-size: 0.9em;
    }
    .brec #footer-menu,
    .brec #copyright{
        width: 96%;
        margin: 0 auto;
    }
    /* footer メニュー 〜 Copy Right --------------------------------- */

    /* TOPページ ---------------------------------------------------- */
    .front .col-sm-4 {
        width: 33%;
    }
    .brec .front .col-sm-6 {
        padding: 0;
        margin: 0;
    }
    #topics ul li {
        padding: 1em;
    }
    #topics ul li a.btn {
        min-width: 100%;
        padding: 0.5em 1em 0.5em 0.3em;
    }
    .wide-content .container {
        display: flex;
    }
    /* TOPページ ---------------------------------------------------- */

    /* bを知ろう / bのミッション・ビジョン・バリュー ページ 用 -------------- */
    .company #company-03 ul li {
       margin-bottom: 1em;
    }
    .company #company-03 ul li .image{
        width: 15%;
        height: auto;
    }
    .company #company-03 ul li .detail {
        width: 85%;
        padding: 0 1em;
        font-size: 1.1em;
    }
    .company #company-03 ul li h4 {
        margin: 0.5em 0;
    }
    .company #company-03 .child-content .row {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;/* 折り返して流し込む */
    }

    /* bを知ろう / bのミッション・ビジョン・バリュー ページ 用 -------------- */

    /* 仕事の流れ ----------------------------------------------------- */
    .brec.work .row-eq-height p{
        font-size: 1em;
    }
    .work .flow li h4 {
        font-size: 1.6em;
    }
    .work .flow li h5 {
        font-size: 1.1em;
    }
    /* 仕事の流れ ----------------------------------------------------- */

    /* 中途採用情報/新卒採用 ページ用 ---------------------------------- */
    .job-find .content-box ul li{
        flex-wrap: nowrap;
    }
    .job-find .content-box ul li p a{
        margin: 0 1em 0 0;
    }

    /* 中途採用情報/新卒採用 ページ用 ---------------------------------- */

    /* 求人詳細 ページ 用 -------------------------------------------- */
    .brec .concierge .content-box {
        padding: 2em 0;
    }
    .brec .concierge .content-box:first-of-type {
        padding-bottom: 0;
    }
    .brec .concierge .detail{
        margin-bottom: 0;
    }
    .brec .concierge .detail dl{
        margin-top: 0;
    }
    .brec .concierge .row {
        display: flex;
        justify-content: space-between;
        padding-top: 0;
    }
    .brec .concierge .entry-content h3{
        margin: 0em 0 1em;
    }
    .brec .concierge .child-content h4{
        text-align: left;
        line-height: 1.2;
        margin: 1.5em 0 0.5em;
    }
    .brec .concierge table tr td:first-child{
        padding: 0.8em;
    }

    /* 求人詳細 ページ 用 -------------------------------------------- */

    /* 申し込み ページ 用 -------------------------------------------- */
    .brec form .title {
        text-align: left;
        width: 37%;
        height: 4em;
        margin: 0;
    }
    .brec form .col-sm-8{
        width: 60%;
    }
    /* 申し込み ページ 用 -------------------------------------------- */

    
    /* 先輩インタビュー 用 -------------------------------------------- */
    .interview .image {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
    .brec.interview .col-sm-6{
        margin: 0;
        padding: 0;
    }
    .brec.interview .row-eq-height p {
        font-size: 1.1em;
    }

    .interview dl {
        padding: 20px;
        color: #fff;
    }
    .interview dl dd {
        margin-bottom: 0;
        font-weight: bold;
    }
    .interview dl dt,
    .interview dl dd {
        padding: 0.5em 0.7em;
        background-color: rgba(0, 0, 0, 0.5);
    }
    .interview dl dt .from {
        margin-left: 20px;
        font-weight: 400;
        font-size: 14px;
        vertical-align: bottom;
    }
    .brec.interview  .entry-content dd {
        color: #fff;
    }

    /*--インタビュー 1人目--*/
    .interview #interview-01 {
        background-image: url(common/images/interview_01.jpg);
        background-position: right 30% center;
    }
    .interview #interview-01 .col-sm-6:first-of-type{
        width: 60%;
    }
    .interview #interview-01 .col-sm-6:last-of-type{
        width: auto;
    }

    /*--インタビュー 2人目--*/
    .interview #interview-02 {
        background-image: url(common/images/interview_02.jpg);
        background-position: left 40% center;
    }
    .interview #interview-02 .col-sm-6:first-of-type{
        width: 40%;
    }
    .interview #interview-02 .col-sm-6:last-of-type{
        width: 60%;
    }

    /*--インタビュー 3人目--*/
    .interview #interview-03 {
        background-image: url(common/images/interview_03.jpg);
        background-position: right 30% center;
    }
    .interview #interview-03 .col-sm-6:first-of-type{
        width: 60%;
    }

    /*--インタビュー 4人目--*/
    .interview #interview-04 {
        background-image: url(common/images/interview_04.jpg);
        background-position: left 55% center;
    }
    /* 先輩インタビュー 用 -------------------------------------------- */

    /* 投稿用 ------------------------------------------------------ */
    .single .brec #content{
        margin-top: 0;
    }
    .single .brec .article-header{
        /* width: 96%; 2026.09.16 del */
        margin: 0 auto 1em;
    }
    .single .brec .t-2of3{
        width: 70%;
        padding-right: 0;
    }
    .single .brec .t-1of3{
        width: 30%;
    }
    .single .brec .entry-content {
        padding: 0 1em;
    }
    
    /* -- サイドバー --*/
    .single .brec .sidebar{
        display: block;/* 表示*/
        
    }
    .single .brec .sidebar .btn-apply img{
        margin: 0.5em;
    }
    .single .brec .sidebar .btn-apply .en{
        margin: 0;
        font-size: 0.8em;
    }
    .single .brec .sidebar #contents-list {
        margin: 0.7em;
        font-size: 0.8em;
        line-height: 1.7;
    }
    .single .brec .sidebar #contents-list li::before{
        font-family: "Font Awesome 5 Free";
        content:"\f105";/* fa-angle-right 右矢印 */
        font-weight: bold;
        padding-right: 0.5em;

    }
    /* 2026.09.14 add SANGO設定を調整:サイドバーウィジェット化に伴い。 */
    .single .brec .sidebar .fixed-sidebar .widget#block-2{
        margin-bottom: 1em;
    }
    .single .brec .sidebar .widget ul li a{
        display: inline;
        line-height: 1.5;
        font-weight: normal;
        font-size: 1.2em;
    }
    .single .brec .sidebar .widget ul li{
        margin-bottom: 0.5em;
    }
    .single .brec .sidebar .widget ul li:nth-of-type(4){
        margin-top:2em;
    }
    /* 投稿用 ------------------------------------------------------ */
}

@media only screen and (min-width: 850px){
    .spc-br{
        display: none;
    }
    /* header ------------------------------------------------------ */
    nav#top-menu .menu-content ul li:not(:last-of-type):not(:nth-of-type(5)) a{
        padding: 1em 0.8em;
    }
    nav#top-menu .menu-content ul li:last-of-type a img{
        display: inline-block;
        margin-right: 0.3em;
    }
    /* header ------------------------------------------------------ */
    /* Page main --------------------------------------------------- */
    #content-header .page-title {
        font-size: 2.5em;
    }
    /* Page main --------------------------------------------------- */

    /* 中途採用情報/新卒採用 ページ用 ---------------------------------- */
    .job-find .content-box ul li h4 {
        max-width: 50%;
    }
    /* 中途採用情報/新卒採用 ページ用 ---------------------------------- */

    /* 先輩インタビュー 用 -------------------------------------------- */
    /*--インタビュー 2人目--*/
    .interview #interview-02 {
        background-position: left 42% center;
    }
    .interview #interview-02 .col-sm-6:first-of-type{
        width: 45%;
    }
    .interview #interview-02 .col-sm-6:last-of-type{
        width: 55%;
    }
    /* 先輩インタビュー 用 -------------------------------------------- */
}

@media only screen and (min-width: 1030px){
    .brec #logo img{
        height: 100%;
    }
    /* header ------------------------------------------------------ */
    nav#top-menu .menu-content ul li:not(:last-of-type):not(:nth-of-type(5)) a{
        padding: 1em 1.3em;
    }
    nav#top-menu .menu-content ul li:last-of-type a{
        padding: 1em 2em;
    }
    /* header ------------------------------------------------------ */

    /* Page main --------------------------------------------------- */
    .brec .article-header {
        margin-left: 0;
        margin-right: 0;
    }
    /* Page main --------------------------------------------------- */
    
    /* footer メニュー 〜 Copy Right --------------------------------- */
    .brec #footer-menu,
    .brec #copyright{
        width: 92%;
    }
    /* footer メニュー 〜 Copy Right --------------------------------- */


    /* 先輩インタビュー 用 -------------------------------------------- */
    /*--インタビュー 1人目--*/
    .interview #interview-01 {
        background-position: right 40% center;
    }
    .interview #interview-01 .col-sm-6:first-of-type{
        width: 50%;
    }

    /*--インタビュー 2人目--*/
    .interview #interview-02 .col-sm-6:first-of-type{
        width: 50%;
    }
    .interview #interview-02 .col-sm-6:last-of-type{
        width: 50%;
    }
    .interview #interview-04 {
        background-position: right 40% center;
    }
    /* 先輩インタビュー 用 -------------------------------------------- */

    /* 投稿用 ------------------------------------------------------ */
    .single .brec .article-header{
        /* width: 92%; 2026.09.16 del */
        margin: 0 auto 1em;
    }
    /* 投稿用 ------------------------------------------------------ */
}

@media only screen and (min-width: 1240px){
    /* 先輩インタビュー 用 -------------------------------------------- */
    /*--インタビュー 2人目--*/
    .interview #interview-03 .col-sm-6:first-of-type{
        width: 50%;
    }
    .interview #interview-03 {
        background-position: right 25% center;
    }
    /* 先輩インタビュー 用 -------------------------------------------- */

    /* 投稿用 ------------------------------------------------------ */
    .single .brec .article-header{
        width: 1180px;
    }
    /* 投稿用 ------------------------------------------------------ */
}

/*20250526form用追加*/

.content-box .acceptance-660 input[type="checkbox"] {
transform: scale(1.4);
-webkit-transform: scale(1.4);
}
#main .content-box .apply input[type="submit"] {
background-color: #4CAF50;
width: 100%

}
#main .content-box p.apply-submit:before {
width: 6em;
left: 50%;
top:3em;/* 2026.09.10 add*/
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
}


/*20250526form用追加*/