@charset "UTF-8";

body {
    font-family: "Noto Sans JP", sans-serif;
}
main {
    overflow: auto;
}
.main-img img {
    width: 100%;
    height: auto;
    display: block;
}
.background {
    position: fixed;       /* 常に画面の背面に表示 */
    top: 0;
    left: 0;
    width: 100vw;          /* ビューポート幅全体 */
    height: 100vh;         /* ビューポート高さ全体 */
    background: #ffffff;   /* 現在の背景色 */
    z-index: -1;           /* 背面に配置 */
}
.inner {
    max-width: 850px;
    width: 100%;
    margin: 20px auto 0;
    padding: 0 10px;
    position: relative;
    overflow: visible;
}

header {
    border-bottom: 1px solid #c7c7c7;
}

.hamburger.special-page {
    display: flex;
    align-items: center;       /* 垂直方向の中央揃え（任意） */
    justify-content: space-between; /* スペース調整したいときに */
}

.logo {
    margin-right: auto;  /* 必要に応じて余白調整 */
    width: 100%;
    max-width: 145px;
    height: auto;
    max-height: 40px;
}

.headerMenuBtn a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 60px;
    color: #66251F;
    border-left: 1px solid #ff7dae;
    text-decoration: none;
}

.headerMenuBtn a i {
    color: #ff7dae;
    font-size: 22px;
    margin-bottom: 4px;
}

.headerMenuBtn a span {
    font-size: 12px;
}

/*** アイコン ***/
@font-face {
    font-family: 'icomoon';
    src: url('//img.girlsheaven-job.net/spfrontend_conventional/css/fonts/icomoon.eot?t5vj8g&cache01=20161201000000');
    src: url('//img.girlsheaven-job.net/spfrontend_conventional/css/fonts/icomoon.eot?t5vj8g#iefix&cache01=20161201000000') format('embedded-opentype'),
         url('//img.girlsheaven-job.net/spfrontend_conventional/css/fonts/icomoon.ttf?t5vj8g&cache01=20161201000000') format('truetype'),
         url('//img.girlsheaven-job.net/spfrontend_conventional/css/fonts/icomoon.woff?t5vj8g&cache01=20161201000000') format('woff'),
         url('//img.girlsheaven-job.net/spfrontend_conventional/css/fonts/icomoon.svg?t5vj8g&cache01=20161201000000#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-home:before {
    content: "\e900";
}
.icon-office:before {
    content: "\e903";
}
.icon-pencil2:before {
    content: "\e906";
}
.icon-play:before {
    content: "\e912";
}
.icon-mobile:before {
    content: "\e958";
}
.icon-bubbles2:before {
    content: "\e96d";
}
.icon-menu:before {
    content: "\e9bd";
}

#groupMenuTop .shopmenu {
    border-top: 1px solid #ccc;
    border-bottom: 5px solid #ff9ec2;
    clear: both;
    width: 100%;
    background-color: #FFFFFF;
}

.menuarea {
    display: flex;
    justify-content: space-around; /* 必要に応じて space-between や center に変更可 */
    list-style: none;
    padding: 0;
    margin: 0;
}

.menuarea li {
    text-align: center;
    padding: 9px 0;
}

.menuarea li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333; /* テキスト色（必要なら変更） */
}

.menuarea li i {
    font-size: 30px;
    color: #ff9ec2;
    margin-bottom: 5px;
    display: inline-block;
}

.menu-text {
    font-size: 11px;
    display: block;
    margin-top: 2px;
    color: #333;
}

/*** メインビジュアル ***/
main {
    overflow: auto;
}
.main-img img {
    width: 100%;
    height: auto;
    display: block;
}
/*** メインビジュアル ***/

/*** イントロ ***/
#intro_box .title {
    color: #CC9966;
    font-size: 16px;
    font-weight: bold;
    margin: 3px 0;
}

#intro_box .text {
    color: #CC9966;
    font-size: 16px;
    line-height: 20px;
}

#intro_box > .box {
    padding: 0 0 15px 0;
    position: relative;
}

.more_btn_l {
    background-color: #f1efef;
    border: 2px solid #b8b8b8;
    border-radius: 8px;
    box-shadow: 0 2px 0 #bfbfbf;
    color: #6a6a6a;
    display: block;
    font-size: 16px;
    font-weight: bold;
    height: 36px;
    line-height: 37px;
    margin: 0 auto;
    width: 65%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    text-align: center;
}

#intro_box .more-btn-wrap .more_btn_l img {
    margin-right: 4px;
    position: relative;
    top: 3px;
    width: 20px;
}

#intro_box .read-more + .more-btn-wrap .more_btn_l img {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}

#intro_box .read-more.open + .more-btn-wrap .more_btn_l img {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
.freebox {
    margin-bottom: 35px;
}
.free_img {
    position: relative;
    top: 35px;
    text-align: center;
}

.headerTitle {
        font-size: 20px;
    font-weight: 700;
    color: #ff7dae;
    border-bottom: 1px solid #ff9ec2;
    padding: 0 0 3px 0;
}

.headerTitle h2 {
    color: #ff7dae;
    font-size: 16px;
    font-weight: bold;
    height: 35px;
    line-height: 35px;
    padding-left: 5px;
    display: table-cell;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
}
/*** イントロ ***/

/*** info ***/
.info_box {
    margin-bottom: 10px;
}
#info_box h2 {
    color: #ff7dae;
    font-size: 16px;
    font-weight: bold;
    height: 35px;
    line-height: 35px;
    padding-left: 5px;
}
#info_box ul {
    font-size: 16px;
    width: 100%;
}
#info_box .title {
    color: #CC9966;
    border-left: 5px solid #ff9fc3;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 3px;
    padding-left: 5px;
}
#info_box .shop_name {
    color: #CC9966;
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
}
#info_box .shop_name span {
    font-size: 12px;
    padding-left: 2px;
}
#info_box .job {
    background-color: #98c6ff;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    margin-right: 5px;
    margin-bottom: 3px;
    padding: 2px 5px;
}
#info_box .btn_box {
    margin: 0 auto;
    width: 95%;
}
#info_box .group_info {
    font-size: 16px;
    margin: 5px auto 5px;
    width: 95%;
}
#info_box .more_btn_l {
    border-radius: 8px;
    color: #6a6a6a;
    display: block;
    font-size: 16px;
    font-weight: bold;
    height: 36px;
    line-height: 37px;
    margin: 0 auto;
    width: 99%;
}

.read-more-inner {
    position: relative;
    top: 35px;
}
/* メインスライダー全幅表示 */
.flexslider {
    border: none !important;
}
.flexslider.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
}

.flexslider.carousel img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* サムネイルナビ横並び3つ */
.flexslider.slider {
    width: 100%;
}

.flexslider.slider .flex-direction-nav {
    display: none;
}

.flexslider.slider .slides {
    display: flex !important;
    justify-content: center;
    gap: 10px;
}

.flexslider.slider .slides li {
    flex: 0 0 auto;
    width: 30%;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s, border 0.3s;
    border: 2px solid transparent;
}

.flexslider.slider .slides li.active,
.flexslider.slider .slides li:hover {
    opacity: 1;
    border: 2px solid #ff6600;
}
.flex-direction-nav a {
    top: 55% !important;
    height: 30px !important;
}

.flex-direction-nav a:before {
    font-size: 30px !important;
}

.flex-direction-nav a:before {
    font-size: 30px !important;
}

/*** 応募資格 ***/
.oubobox {
    position: relative;
    top: 35px;
    margin-bottom: 45px;
}

#ouboInfo_box {
    margin-bottom: 10px;
    color: #CC9966;
}
#ouboInfo_box .box {
    margin: 0 auto;
    width: 95%;
}
#ouboInfo_box li {
    border-bottom: 1px solid #9c9b9b;
    font-size: 12px;
    line-height: 15px;
    padding: 9px 0 7px;
}
#ouboInfo_box li p {
    font-size: 12px;
    line-height: 1.4;
}
#ouboInfo_box .title {
    border-left: 5px solid #ff9fc3;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
    padding-left: 5px;
}
#ouboInfo_box .salary {
    font-size: 16px;
    font-weight: bold;
    line-height: 18px;
}
#shop_box {
    padding-bottom: 10px;
}
#shop_box .area_position {
    display: inline-block;
    position: absolute;
    font-size: 11px;
    padding: 2px 3px;
    top:0;
    left:2px;
}

.info-table table {
    table-layout: auto;
    width: 100%;
    border-collapse: collapse;
}

.info-table table th {
    width: 180px;
    background: #e6e6e6;
    text-align: center;
    vertical-align: middle;
    padding: 10px;
}

.info-table table td {
    background: #f6f6f6;
    padding: 10px;
}

.info-table table td {
    background:#F6F6F6;
    border:2px solid white;
    padding:10px;
}
.info-table table td div {
    word-break: break-all;
    word-wrap: break-word;
}
.sns-link-open .telicn {
    height: 40px;
    position: relative;
    width: auto;
}
#ouboInfo_box .bx-wrapper .bx-viewport {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    left: 0;
    background: none;
    -webkit-transform: translatez(0);
    -moz-transform: translatez(0);
    -ms-transform: translatez(0);
    -o-transform: translatez(0);
    transform: translatez(0);
}
#ouboInfo_box .inquiryList li {
    float: left;
    line-height: 20px;
    margin: 1px 0;
}
#ouboInfo_box .inquiryList li span {
    background: #ff6600 none repeat scroll 0 0;
    border: 1px solid #f30;
    border-radius: 3px;
    color: #fff;
    margin-right: 3px;
    padding: 0 3px;
}
#ouboInfo_box .inquiryList li span.off {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #aaa;
    color: #aaa;
}
#ouboInfo_box .info-table a {
    color: #833a19;
}
#shop_box .item .shop_img {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 173px;
}
#shop_box .item .shop_img img {
    width: 230px;
}
#shop_box .item .title {
    color: #444;
    display: table;
    margin: 12px 12px 8px;
}
#shop_box .item .title i {
    color: #31c68e;
    display: table-cell;
    font-size: 36px;
    vertical-align: middle;
}
#shop_box .name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#shop_box .area {
    height: 14px;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#shop_box .catch {
    font-size: 12px;
    height: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*** 応募メニュー ***/
#ouboMenu_box {
    background-color: #feffbb;
    font-size: 16px;
    position: relative;
}
#ouboMenu_box .menubox {
    font-weight: bold;
    margin: 6px auto 45px;
    padding-top: 35px;
    padding-bottom: 10px;
    width: 95%;
}
#ouboMenu_box P {
    margin: 6px 0;
    color: #66251F;
}
#ouboMenu_box .tel {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.88, #ff7bad), color-stop(0.00, #ffa5c9));
    background: -webkit-linear-gradient(top, #ffa5c9 0%, #ff7bad 88%);
    background: -moz-linear-gradient(top, #ffa5c9 0%, #ff7bad 88%);
    background: -o-linear-gradient(top, #ffa5c9 0%, #ff7bad 88%);
    background: -ms-linear-gradient(top, #ffa5c9 0%, #ff7bad 88%);
    background: linear-gradient(to bottom, #ffa5c9 0%, #ff7bad 88%);
    text-align: center;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    color: #fff;
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #ffa5c9 0%, #ff7bad 88%) repeat scroll 0 0;
    border-radius: 7px;
    margin-bottom: 7px;
    min-height: 50px;
    position: relative;
    text-align: center;
    padding: 2.5px 0;
    display: block;
    width: 99%;
    cursor: inherit;
    text-decoration: none;
}
#ouboMenu_box .tel.tel-modal span {
    font-size: 4.5vw;
    line-height: 50px;
}
#ouboMenu_box .tel img {
    left: 10px;
    position: absolute;
    top: 7px;
    width: 30px;
}
#ouboMenu_box .tel.tel-modal img {
    top: 6px;
}
#ouboMenu_box .tel a {
    color: #fff;
}
#ouboMenu_box .mail {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.88, #ff7bad), color-stop(0.00, #ffa5c9));
    background: -webkit-linear-gradient(top, #ffa5c9 0%, #ff7bad 88%);
    background: -moz-linear-gradient(top, #ffa5c9 0%, #ff7bad 88%);
    background: -o-linear-gradient(top, #ffa5c9 0%, #ff7bad 88%);
    background: -ms-linear-gradient(top, #ffa5c9 0%, #ff7bad 88%);
    background: linear-gradient(to bottom, #ffa5c9 0%, #ff7bad 88%);
    text-align: center;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    color: #fff;
    height: 50px;
    line-height: 50px;
    font-size: 12px;
    position: relative;
    display: inline-block;
    width: 49%;
    cursor: inherit;
    text-decoration: none;
}
#ouboMenu_box .mail img {
    left: -2px;
    position: relative;
    top: 4px;
    width: 25px;
    vertical-align: baseline;
}

#ouboMenu_box .sns {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.88, #43e242), color-stop(0.00, #70f36d));
    background: -webkit-linear-gradient(top, #70f36d 0%, #43e242 88%);
    background: -moz-linear-gradient(top, #70f36d 0%, #43e242 88%);
    background: -o-linear-gradient(top, #70f36d 0%, #43e242 88%);
    background: -ms-linear-gradient(top, #70f36d 0%, #43e242 88%);
    background: linear-gradient(to bottom, #70f36d 0%, #43e242 88%);
    text-align: center;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    color: #fff;
    height: 50px;
    line-height: 50px;
    font-size: 13px;
    font-size: 3.4vw;
    position: relative;
    display: inline-block;
    width: 49%;
}

#ouboMenu_box .sns img {
    left: -2px;
    position: relative;
    top: 8px;
    width: 25px;
}

/*** footer ***/
#footer {
    background: #f5f5f5;
    text-align: center;
    padding: 15px;
    color: #666;
}

#footer p {
    font-size: 11px;
}


/*** ポップアップ ***/
.age-modal {
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-modal-content {
    background: #fff;
    padding: 30px 20px;
    max-width: 300px;
    width: 90%;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.age-modal-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ff52a4;
}

.age-modal-content p {
    font-size: 15px;
    margin-bottom: 20px;
}

.age-buttons {
    display: flex;
    justify-content: space-around;
}

.age-buttons button {
    padding: 10px 20px;
    border: none;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.age-buttons .yes {
    background-color: #ff52a4;
    color: white;
}

.age-buttons .yes:hover {
    background-color: #e84994;
}

.age-buttons .no {
    background-color: #ccc;
}

.age-buttons .no:hover {
    background-color: #aaa;
}

#ageCheckModal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

@media screen and (max-width: 768px) {
    .headerTitle {
        display: table;
        position: absolute;
        left: 0;
        background: linear-gradient(#ff9ec2, #ff7dae);
        width: 100%;
        height: 35px;
        overflow: hidden;
        table-layout: fixed;
    }
    .headerTitle h2 {
        background: linear-gradient(#ff9ec2, #ff7dae);
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        height: 35px;
        line-height: 35px;
        padding-left: 5px;
        display: table-cell;
        white-space: nowrap;
        text-overflow: ellipsis;
        width: 100%;
        overflow: hidden;
    }
        #info_box h2 {
        color: #fff;
    }
        .info-table table th {
        width: 100px;
    }
}