body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9ebea; /* 背景色を追加 */
}

.header-container {
    background-color: #fcb2ab;
    padding: 20px;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* ヘッダーの影 */
}

main {
    padding: 65px 20px;
}

/* 年齢確認ポップアップ */
.age-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    z-index: 1001;
}
.age-popup-content {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 30px;
    text-align: center;
    width: 400px;
    max-width: 90%;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.age-popup h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}
.age-popup p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}
.button-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}
.age-popup-btn {
    display: flex;
    gap: 15px;
}
.age-yes-btn, .age-no-btn {
    font-size: 18px;
    padding: 16px 40px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    height: 50px;
    width: 100%;
    max-width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.age-yes-btn {
    background-color: #f7a9c5;
    color: white;
}
.age-no-btn {
    background-color: #f1c2a1;
    color: white;
}
.age-yes-btn:hover {
    background-color: #f8b7cc;
    transform: scale(1.05);
}
.age-no-btn:hover {
    background-color: #f2d0a4;
    transform: scale(1.05);
}
/* #age-check-popup内のボタンに対するスタイルを上書き */
#age-check-popup button {
    position: static;
    top: auto;
    transform: none;
}

/*ストア部分*/
.storename {
    text-align: center;
    margin: 130px 0 30px;
}
.storename h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.hero-image {
    text-align: center;
    margin-top: 75px;
}
/* PC版：PC用画像を表示 */
.pc-image {
    display: block;
    width: 100%;
    height: auto;
}
/* SP版：SP用画像を非表示に */
.sp-image {
    display: none;
}

.main-visual-wrapper {
    overflow: hidden;
    max-width: 450px;
    width: 100%;
    /*max-width: 1000px;*/
    margin: 0 auto;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}
.main-visual {
    display: flex;
    transition: transform 0.5s ease;
}
.main-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
figcaption {
    text-align: justify;
    font-size: 10px;
    margin-bottom: 20px;
}
/* ポップアップ背景 */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.popup-overlay.show {
    display: flex;
    opacity: 1;
}

/* ポップアップ内容 */
.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* ヘッダーのスタイル */
.popup-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1.5px;
}
/* ポップアップ内の説明文 */
.popup-content p {
    font-size: 14px;
    color: #555;
    margin: 10px 0 20px;
    text-align: center;
    letter-spacing: 1.3px;
}
p.popup-description {
    text-align: justify;
}
p.contact-name {
    text-align: start;
    margin-top: 10px;
}
/* 連絡先のアイテム */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* 各連絡先リンクのスタイル */
.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-link {
    font-size: 16px;
    font-weight: normal;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
/* ホバー時の色変更なし */
.contact-link:hover {
    color: #333;
}
.contact-icon {
    font-size: 24px;
}
/* 詳細情報のスタイル */
.contact-detail a {
    font-size: 14px;
    color: #777;
    margin-top: 5px;
    text-align: center;
}
.contact-detail a strong {
    font-weight: bold;
}

/* 閉じるボタン */
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

.popup-close:hover {
    color: #ff4d4d;
}

/* ポップアップのフェードインアニメーション */
.popup-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
}

/* フェードインのアニメーション定義 */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* コンテナ全体 */
.layout-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

/* サイドエリア（左・右）の基本設定 */
.sideArea {
    position: fixed;
    top: 0;
    bottom: 0;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 10; /* メインコンテンツより前に表示 */
}
.sideArea.left {
    left: 0;
    width: 250px; /* 左サイドエリアの幅 */
    border-right: #ccc 2px solid;
}
.sideArea.right {
    right: 0;
    width: 250px; /* 右サイドエリアの幅 */
    border-left: #ccc 2px solid;
}
.sideArea.left,
.sideArea.right {
    position: fixed;
    top: 0;
    height: 100%;
    width: calc((100% - 30rem)* 0.5);
}

/* サイドエリア内のコンテンツ */
.sideContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    /*padding-top: 100%;*/
}
/*.sideArea.right .sideContent {
    padding-top: 50%; 
}*/
/* ロゴ部分 */
.site-logo img {
    max-width: 250px;
    width: 100%;
    height: auto;
}
/* キャッチコピー */
.site-tagline {
    font-size: 1.1rem;
    color: #333;
    text-align: justify;
    margin-top: 15px;
    line-height: 1.5;
    font-weight: bold;
}
/* サイドエリア内の余白やレイアウト調整 */
.sideArea.left .sideContent {
    padding-bottom: 20px; /* 下部にも余白を追加 */
}
/* サイド専用ナビゲーション */
.sideNav-menu {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.sideNav-menu li {
    margin-bottom: 10px;
}
.sideNav-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    background-color: #f1d0d6;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1c0c0;
}
.sideNav-menu li a:hover {
    background-color: #f87a7a;
    color: #fff;
    transform: translateX(5px);
}

.inner {
    max-width: 450px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    z-index: 1;
}

.content {
    padding: 20px;
    background-color: #f9ebea;
    border-radius: 10px;
}

.job-section, .content-section, .requirements-section, .treatment-section, .store-features-container {
    background-color: #f9ebea;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 4px 4px 8px rgba(255, 0, 0, 0.1), 
                -4px -4px 8px rgba(255, 255, 255, 1);
}

.requirements-section {
    /*background-color: #ffffff;*/
    padding: 20px;
    border-radius: 12px;
    /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
}

.requirements-banner {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #f9ebea;
    box-shadow: inset 4px 4px 1px rgba(255, 0, 0, 0.05), 
                inset -4px -4px 1px rgba(255, 255, 255, 1);
}

/*グループの強み*/
.group-profile {
    padding: 20px;
    background-color: #f9ebea;
    border-radius: 10px;
    box-shadow: 4px 4px 8px rgba(255, 0, 0, 0.1), 
                -4px -4px 8px rgba(255, 255, 255, 1);
    margin-bottom: 100px;
}

.profile-section h3 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #666;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

.profile-info {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.profile-info p {
    margin-bottom: 30px;
}

.sub_info_text, .sub_info_appeal {
    line-height: 2;
    text-align: justify;
}


/*募集要項*/
.job-overview {
    /*display: flex;*/
    margin-bottom: 40px;
}
.job-section {
    /*max-width: 600px;*/
    width: 100%;
    height: auto;
    /*margin-right: 20px;*/
}
.job-section h3 {
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 5px;
    color: #666;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.job-info {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}
.job-info p {
    margin-bottom: 10px;
}
.job-info strong {
    color: #333333;
    font-weight: 600;
    letter-spacing: 1.2px;
}
/*シェイプの奴
.job-shape-container {
    max-width: 700px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.job-shape {
    width: 100%;
    height: auto;
    padding-top: 100%;
    background-color: #ccc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}
.job-shape-container img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
*/

/*応募資格*/
.conditions-overview {
    margin-bottom: 40px;
}
.requirements-section h3 {
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 5px;
    color: #666;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.requirements-banner p{
    font-size: 0.875rem;
    letter-spacing: 1.9px;
    line-height: 1.9;
    text-align: justify;
}
/*待遇*/
.treatment-overview {
    margin-bottom: 40px;
}

/*数字で見るのセクション*/
.p-home-number {
    display: flex;
    position: relative;
    z-index: 1;
    gap: 2rem;
    flex-direction: column;
    align-items: center;
    margin:  0 0 40px;
}
.p-home-number__head {
    flex-shrink: 1;
    position: sticky;
    top: 20px;
    left: 0;
    max-width: 28rem;
    width: auto;
    min-width: 0;
    box-sizing: border-box;
}
.p-home-number__txt {
    font-size: 1rem;
    line-height: 2.8;
    text-align: justify;
}
.p-home-number__body {
    flex-grow: 1;
}
.p-home-number__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    row-gap: 2rem;
    max-width: 78rem;
    margin: 0 auto;
    padding-bottom: 10rem;
}
.p-home-number__items .item {
    transition: background .4s cubic-bezier(0.18, 0.06, 0.23, 1) 0s;
    transition-property: background,box-shadow;
    box-sizing: border-box;
    display: flex;
    position: relative;
    height: 15rem;
    padding: 2rem;
    border-radius: 1rem;
    background: linear-gradient(145deg, #ffd1d1, #ffe4ea);
    font-size: 1.2rem;
    line-height: 1.67;
    box-shadow: 1px 1px 0 rgba(0,0,0,.03) inset,-0.1rem -0.1rem 1rem rgba(255,255,255,.1),.4rem .4rem .6rem rgba(0,0,0,.18);
}
.p-home-number__items .item:nth-child(even) {
    top: 10rem;
}
.p-home-section__sttl {
    font-weight: 500;
    font-feature-settings: "palt" 1;
    transition: color .4s cubic-bezier(0.18, 0.06, 0.23, 1) 0s;
    margin-bottom: 2.7rem;
    font-size: 2.4rem;
    line-height: 1.4;
}
.p-home-section__sttl a{
    font-size: 1.2rem;
    font-weight: bold;
    color: #666;
}
.p-home-number__items .item__txt {
    position: relative;
}
.p-home-number__items .item__ttl {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.5;
    color: #666;
}
.p-home-number__items .item__num {
    margin: .5rem 0;
    font-family: "Montserrat",sans-serif;
    font-size: 2.5rem;
    font-weight: 100;
    line-height: 1;
    color: #666;
}
.item__num__max {
    font-size: 0.875rem;
    font-weight: bold;
}
.p-home-number__items .item__num .dot {
    font-size: 3rem;
}
.p-home-number__items .item__num .small {
    font-size: 1.6rem;
}
.p-home-number__items .item__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: .4;
    color: #666;
}
.page-home:not(.feature-inview) .p-home-number__items .item {
    background: #fff;
}
.page-home:not(.feature-inview) .p-home-number__items .item::before {
    background: #ebf0f2;
}
.p-home-number__head {
    width: 100%;
    margin-bottom: 50px;
    background-color: #f9ebea;
    z-index: 2;
    top: 5px;
}
.p-home-number__head::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background-color: #f9ebea;
    z-index: -1;
}
.p-home-section__sttl {
    margin-bottom: 1.4rem;
}
.p-home-number__txt {
    margin-bottom: 5px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.p-home-number__items {
    grid-template-columns: 1fr;
    padding-bottom: 5rem;
}

/* アイテムの初期位置を設定 */
.p-home-number__items .item {
    opacity: 0; /* 初期状態では非表示 */
    transform: translate(30px, 30px); /* 斜め下に配置 */
    transition: opacity 0.5s ease, transform 0.5s ease; /* アニメーション */
    position: relative;
    height: 200px;
    padding: 2rem;
    background: linear-gradient(145deg, #ffd1d1, #ffe4ea); /* 背景色 */
    border-radius: 8px;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, .03) inset, -0.1rem -0.1rem 0.1rem rgba(255, 255, 255, .1), .1rem .1rem 0.4rem rgba(0, 0, 0, .18);
}
.p-home-number__items .item:nth-child(even) {
    top: 0;
}
.p-home-number__items .item.visible {
    opacity: 1; /* 表示 */
    transform: translate(0, 0);
}
/* アイテムの数値やタイトルのフォントサイズ調整 */
.p-home-number__items .item__num {
    font-size: 1.8rem;
}
.p-home-number__items .item__ttl {
    font-size: 1rem;
}
.p-home-number__items .item__caption {
    font-size: 0.75rem;
}
/* アイテムごとの遅延設定 */
.p-home-number__items .item:nth-child(1) {
    transition-delay: 0.1s;
}
.p-home-number__items .item:nth-child(2) {
    transition-delay: 0.3s;
}
.p-home-number__items .item:nth-child(3) {
    transition-delay: 0.5s;
}
.p-home-number__items .item:nth-child(4) {
    transition-delay: 0.7s;
}
.p-home-number__items .item:nth-child(5) {
    transition-delay: 0.9s;
}
.p-home-number__items .item:nth-child(6) {
    transition-delay: 1.1s;
}

/*インフォグラフィックス*/
.infographics {
    display: flex;
    margin: 150px 0 200px;
}
.container {
    /*width: 100%;*/
    max-width: 350px;
    padding: 0 20px;
    margin: 0 auto;
    /*text-align: center;*/ /*コメントアウト取ったら.max-circのコメントアウト取る*/
}

.container h4 {
    text-align: center;
    margin: 0 0 -15px 0;
}

.pie-chart {
    /* max-width: 240px; */
    display: inline-block;
    position: relative;
    vertical-align: top;
}

.pie-chart + .pie-chart {
    margin-left: 30px;
}

.pie-chart .max-circ {
    width: 150px;
    height: 150px;
    /* margin: auto; */
    padding-top: 60px;
    border-radius: 50%;
    position: absolute;
    top: 75px;
    left: 75px; /* marginが生きているときは0 */
    right: 0;
    text-align: center;
    text-transform: uppercase;
    box-shadow: inset 0 0 40px 0 rgba(0, 0, 0, 0.1), 0 0 6px rgba(255, 255, 255, 0.8); /* シャドウも少し調整 */
}

.pie-chart .max-circ span {
    display: block;
}

.pie-chart .max-circ .label {
    font-size: 10px;
    margin: 0 0 8px;
}

.pie-chart .max-circ .value {
    font-size: 1.15rem;
    font-weight: 700;
    text-shadow: 4px 2px 22px rgba(137, 137, 137, 0.5);
    /* filter: brightness(1.4); */
}

.pie-chart .legend {
    margin: -25px 0 35px;
    font-size: 11px;
    text-align: center;
}

.pie-chart .legend li {
    margin: 0 4px 8px;
    padding: 6px 6px 4px;
    border-radius: 1px;
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    color: #ddd;
    text-shadow: 0 1px rgba(0, 0, 0, 0.5);
    transition: background 0.2s, opacity 0.2s;
    cursor: pointer;
    max-width: 120px;
    width: 100%;
}

.pie-chart .legend li span {
    color: #fff;
    font-weight: 700;
}

.pie-chart .slice {
    cursor: pointer;
    filter: brightness(1) grayscale(0.2);
    transition: transform 0.2s, filter 0.2s;
}

.pie-chart .slice path {
    opacity: 0.9;
    transition: opacity 0.2s;
}

.pie-chart .slice text {
    font-size: 12px;
}

.pie-chart .slice:hover,
.pie-chart .slice.max {
    transform: scale(1.05);
    /* filter: brightness(1.4) grayscale(0.2); */
}

.pie-chart .slice:hover path,
.pie-chart .slice.max path {
    opacity: 1;
}


/*稼げる理由のページ(アクセス数＿棒グラフのサイズ)＿*/
.accessinfo {
    max-width: 450px;
    margin: 0 auto;
    padding: 0 30px;
    border-radius: 12px;
}
.accessinfo h4 {
    word-wrap: break-word;
    hyphens: auto;
    width: 100%;
    display: inline-blocks;
    margin-top: 25px;
}
.bar-container {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    height: 300px;
    width: 100%;
    margin-top: 100px;
}
.bar {
    width: 25%;
    background-color: #FF8C8C;
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}
.bar-store {
    background-color: #FF8C8C;
}
#bar-label-store {
    color: #FF8C8C;
}
.bar-a {
    background-color: #ffc2c5;
}
#bar-label-a {
    color: #ffc2c5;
}
.bar-b {
    background-color: #ffabb0;
}
#bar-label-b {
    color: #ffabb0;
}
/* ラベル */
.bar-label {
    position: absolute;
    bottom: 100%;
    width: 100%;
    text-align: center;
    font-size: 1.2em;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}
/* 店舗名 */
.bar-name {
    position: absolute;
    bottom: -50px;
    width: 100%;
    text-align: center;
    font-size: 1em;
    color: #333;
    font-weight: bold;
    margin-top: 5px;
}
/* ホバー効果 */
.bar:hover {
    opacity: 0.85;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
/* テキスト */
.info-text {
    font-size: 1.1em;
    color: #555;
    margin-top: 20px;
    line-height: 1.6;
}
/***/


/* CTAの部分 */
.cta-section {
    padding: 40px 0;
    text-align: center;
}
.cta-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.cta-item {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 300px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}
.cta-item.visible {
    opacity: 1;
    transform: translateY(0); /* 通常位置に戻す */
}
.cta-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.cta-item:hover {
    transform: scale(1.05);
}
.cta-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}
.cta-item.disabled {
    pointer-events: none;
}
/**/

/* ストア特徴コンテナ */
/* 基本スタイル */
.store-features-container {
    width: 100%;
    max-width: 1200px;
    padding: 40px;
    border-radius: 8px;
}

.store-features-title {
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 5px;
    color: #666;
    margin-bottom: 25px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* 特徴アイテムのレイアウト */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* タブボタン全般 */
.region-tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    gap: 10px;
}
/* ホバー時のスタイル */
.region-tab:hover {
    background-color: #f06292;
    color: white;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
/* アクティブなタブ（選択されたタブ） */
.region-tab.active {
    background-color: #f06292;
    color: white;
    border: 2px solid #f06292; 
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
/* クリックした時に軽く押し込まれる感じのエフェクト */
.region-tab:active {
    transform: scale(0.98); /* クリック時に縮む */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.region-tab:hover {
    background-color: #f0a;
}

.region-tab.active {
    background-color: #f06292;
    color: white;
}

/* 地域アイテムの名前 */
.region-name {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-top: 10px;
    font-weight: bold;
    text-align: justify;
}

/* 地域ごとの詳細説明 */
.feature-description {
    font-size: 1rem;
    color: #555;
    margin: 10px 0;
    line-height: 1.6;
    text-align: justify;
}

/* 詳細情報 */
.region-details {
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
    line-height: 1.6;
    text-align: justify;
}

/* 各地域に異なるカラーリング */
.feature-item[data-region="地域A"] {
    border-left: 5px solid #f06292; /* 明るいピンク */
}
.feature-item[data-region="地域B"] {
    border-left: 5px solid #ec407a; /* ピンクより少し深みのある色 */
}
.feature-item[data-region="地域C"] {
    border-left: 5px solid #d81b60; /* 濃いピンク */
}
.feature-item[data-region="地域D"] {
    border-left: 5px solid #c2185b; /* 暗いピンク */
}
.feature-item[data-region="地域E"] {
    border-left: 5px solid #ad1457; /* 濃い紫がかったピンク */
}

/* 地域ごとのイメージ */
.feature-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}
.feature1 {
    background-image: url('../img/shin-okubo.jpg');
}
.feature2 {
    background-image: url('../img/gotanda.jpg');
}
.feature3 {
    background-image: url('../img/kamata.jpg');
}
.feature4 {
    background-image: url('../img/kinshityo.jpg');
}
/*
.feature5 {
    background-image: url('地域Eの画像URL');
}
*/

/*キャストカルーセル*/
.carousel-container {
    padding: 40px 0;
    box-shadow: 4px 4px 8px rgba(255, 0, 0, 0.1), 
                -4px -4px 8px rgba(255, 255, 255, 1);
    border-radius: 8px;
    margin: 30px 0;
}
/* Testimonialsセクション全体 */
.testimonials {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.testimonials h3 {
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 5px;
    color: #666;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
/* カルーセルアイテムの配置 */
#customers-testimonials {
    justify-content: center;
    align-items: center;
    gap: 0px;
    width: 100%;
}
/* 各アイテム */
#customers-testimonials .item {
    position: relative;
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    opacity: 0.6;
    transform: scale(0.9);
}
#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    margin: 10px 0;
    padding: 0;
}
/* アイテム内のシャドウ効果 */
.shadow-effect {
    padding: 15px;
    border-radius: 10px;
    box-shadow: 3px 3px 1px rgba(0, 0, 0, 0.1),
                -3px -3px 1px rgba(255, 255, 255, 0.8);
}
/* 画像のスタイル */
.shadow-effect img {
    width: 100% !important;
    height: 250px;
    object-fit: cover;
    object-position: top;
    margin-bottom: 20px;
}
/* テキストのスタイル */
.shadow-effect p {
    font-size: 16px;
    color: #555;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: justify;
}
/* 名前のスタイル */
.testimonial-name {
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #fcb2ab;
    padding: 10px 25px;
    margin-top: 15px;
    border-radius: 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    background-color: #fcb2ab;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot.active,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover {
    transform: scale(1.3);
    background-color: #ff7d72;
}
#customers-testimonials {
    display: block;
}
#customers-testimonials .owl-item.active.center .item {
    margin: 5px 0;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 15px;
}
#customers-testimonials.owl-carousel .owl-dots {
    display: block;
    text-align: center;
}
/*end*/


.apply_bottombtn {
    text-align: center;
}
.apply-button {
    display: inline-block;
    background-color: #fcb2ab;
    color: white;
    padding: 12px 24px; /* パディングを調整 */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s; /* ホバー効果 */
}

.apply-button:hover {
    background-color: #fba198; /* ホバー時の色 */
}


.kyuyo {
    padding-top: 100px;
}
/*title*/
.kyuyo h2 {
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    letter-spacing: 1px;
}
.mix {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
    margin-top: 40px;
}
.flipcard {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 350px;
    perspective: 1000px;
    margin: auto;
}
.flipcard-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}
/* front & back 共通 */
.cardfront, .cardback {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    padding: 10px;
    box-sizing: border-box;
}
.cardfront {
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 2px solid #ccc;

    overflow: hidden;           /* ← 波紋がはみ出さないように */
    cursor: pointer;            /* ← スマホ用タップ感（PCでは非表示にしてもOK） */
}
.tap-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 20;
}
.tap-indicator span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    animation: ripple-loop 1.6s ease-out infinite;
    transform: scale(0.5);
    opacity: 1;
}
/* 2つ目、3つ目を少し遅らせる */
.tap-indicator span:nth-child(2) {
    animation-delay: 0.5s;
}
.tap-indicator span:nth-child(3) {
    animation-delay: 1s;
}
@keyframes ripple-loop {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
.ripple-wrapper {
    position: relative; /* ← 波紋の親要素として必要 */
    width: 100%;
    height: 100%;
}
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
    background-color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: 10;
}
@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
@media (min-width: 768px) {
    .cardfront {
        cursor: default;
    }
    .tap-indicator {
        display: none;
    }
    .ripple {
        display: none;
    }
}
.cardback {
    background-color: #f7f7f7;
    transform: rotateY(180deg);
    text-align: left; /* 左揃えにすることで項目を整列 */
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* 項目間のスペースを均等にする */
    height: 100%;
}
.cardback-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

.cardback-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 20px 0 0 0;
}

.cardback-left .name {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin: 0 0 5px;
}

.cardback-left .store {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.cardback-right {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 10px;
    margin: 20px 0 0 0;
}

.details p {
    font-size: 13px;
    margin: 5px 0 20px;
    color: #444;
    display: flex;
    justify-content: space-between;
}
.details p strong {
    font-size: 18px;
    font-weight: normal;
    color: #666;
    margin-right: 4px;
}

.details p .value {
    font-size: 15px;
    font-weight: bold;
    color: #000;
}


.links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.link-buttons {
    display: flex;
    gap: 10px;
}
.btn {
    padding: 6px 10px;
    font-size: 12px;
    background-color: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s;
}
.btn:hover {
    background-color: #444;
}

.social-icons {
    margin-top: 8px;
}

.social-icons a img {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    opacity: 0.8;
}

@media (hover: hover) and (pointer: fine) {
    .flipcard:hover .flipcard-inner {
        transform: rotateY(180deg);
    }
}
.flipcard.flipped .flipcard-inner {
    transform: rotateY(180deg);
}
/*
.store_girl {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
.store {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    text-align: center;
}
.kyuyo_image {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 50px;
}
.face_name {
    display: flex;
    flex-direction: column;
}
.kyuyo_face {
    width: 85%;
    height: auto;
    box-sizing: border-box;
    border-radius: 50%;
}
.face_name .name {
    font-size: 0.875rem;
    color: #333;
    margin: 10px 0 20px;
    font-weight: bold;
}
.work_time {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}
.work_time .highlight {
    font-size: 1.125rem;
    color: #ff6347;
    letter-spacing: 1.2px;
}
.work_time .weight {
    font-weight: bold;
}
.extra_image {
    width: 100%;
    height: auto;
}
.kyuyo_detail {
    width: 50%;
    height: auto;
    box-sizing: border-box;
}
.time, .day_money, .mo_money {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
}
.work_days {
    font-size: 24px;
    font-weight: bold;
    margin-right: 8px;
}
.weekly_days {
    font-size: 18px;
    font-weight: bold;
}
.time_day_money {
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
}
.day_money {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}
.amount {
    font-size: 30px;
    font-weight: bold;
    margin: 0 10px;
}
.mo_money {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    text-align: center;
}
.mo_money .money_number {
    font-size: 3rem;
    color: #FF6347;
}
.mo_money .money_unit {
    font-size: 1.2rem;
    color: #999;
    margin-left: 5px;
}
.mo_money .money_month {
    font-size: 1.2rem;
    color: #999;
    margin-left: 2px;
}
.girl_text {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
}
*/
.kyuryo_btn {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.kyuryo_btn a {
    display: inline-block;
    padding: 12px 25px;
    max-width: 100%;
    width: 100%;
    background-color: #FF8C8C;
    color: white;
    font-size: 1.125rem;
    text-align: justify;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.kyuryo_btn a:hover {
    background-color: #f8b6b6;
}


/* 男性スタッフ紹介 */
.staff-introduction {
    padding: 100px 0 0;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}
h2.staff {
    /*font-size: clamp(20px, 2vw, 40px);
    font-size: 36px;*/
    font-weight: 600;
    display: flex;
    align-items: center; /* 垂直中心 */
    justify-content: center; /* 水平中心 */
    text-align: justify;
    margin-bottom: 30px;
}
h2.staff:before, h2.staff:after {
    border-top: 1px solid;
    content: "";
    width: 3em; /* 線の長さ */
}
.staff:before {
    margin-right: 1em; /* 文字の右隣 */
}
.staff:after {
    margin-left: 1em; /* 文字の左隣 */
}
.staff-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
    margin-top: 40px;
    margin-bottom: 80px;
}
.store_staff {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}
.shop-staff {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.staff-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0 0;
    height: 100%;
}
.staff-card h2 {
    text-align: left;
    width: 100%;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 0.8rem;
}
.shop-staff .staff-card:last-child {
    margin-bottom: 30px;
}
.modal {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(200, 200, 200, 0.8);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.show {
    visibility: visible;
    opacity: 1;
}
.modal-content {
    margin: 10% auto;
    padding: 10px 0;
    background: #fff;
    max-width: 450px;
    width: 30%;
    height: auto;
    border-radius: 8px;
    z-index: 10;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding: 0 5px 0 0;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
#modalImage {
    width: 100%;
    max-width: 500px;
    height: auto;
}
#modalTitle {
    margin-bottom: 10px;
    font-size: 0.7rem;
    font-weight: bold;
    color: #333;
    padding: 0 0 0 5px;
}
/*
.staff-face {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.staff-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
    text-align: center;
}
.staff-info .name {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}
.highlighted-name {
    font-size: 1.2rem;
    font-weight: bold;
}
.staff-name {
    color: #4A90E2;
    letter-spacing: 2.3px;
}
.staff-text {
    font-size: 1rem;
    color: #666;
    margin: 10px 0 20px;
    text-align: justify;
    line-height: 1.7;
}
.working-img {
    margin-top: auto;
    width: 100%;
}
.working-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
*/

/**女の子の奴**/
.nameforth {
    color: #FF6347;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 2.3px;
}

/*** waitroom.html_待機室の紹介 ***/
.office-envn {
    padding: 100px 0 0;
    max-width: 1200px;
    margin: 0 auto;
    /*display: flex;*/
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.office-envn h2 {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    letter-spacing: 1px;
}
.waitroom {
    /* 基本のタイトルスタイル */
    padding: 10px 0;
    font-size: 2rem;
    text-align: center;
}
/* セクションのスタイル */
.image-section {
    overflow-x: hidden;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 40px 0;
    margin-bottom: 20px;
    position: relative;
}
.image-section h3 {
	font-size: 18px;
	font-weight: bold; 
	color: #333;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 2px;
	border-bottom: 3px solid #fcb2ab;
	padding-bottom: 10px;
}
.image-section .image-block {
    flex-shrink: 0;
}

.images {
    display: flex;
    padding: 20px 0;
    gap: 20px;
}
.image-block {
    max-width: 450px;
    width: 100%;
}
.image-block img {
    width: 100%;
    height: auto;
}
/* h4タイトルとimage-textの初期状態 */
.image-block h4,
.image-text p {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.image-text {
    text-align: justify;
    padding: 10px 0;
    font-size: 14px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.8);
}
.image-block h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 15px 0 10px;
    text-transform: capitalize;
    text-align: justify;
    white-space: normal;
}
.image-text p {
    white-space: normal;  /* テキストの折り返しを許可 */
    word-wrap: break-word; /* 長い単語を強制的に改行 */
    font-size: 1rem;
    color: #666;
    margin: 0;
    padding: 0 20px;
    line-height: 1.5;
}

.voice {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    letter-spacing: 1px;
}
.girlvoice {
	position: relative;
	margin-top: 100px;
	width: 100%;
	height: 370px;
	overflow: hidden;
}
.voiceitem {
	position: absolute;
	width: 250px;
	height: auto;
	text-align: justify;
	background-color: #fff;
	border-radius: 10px;
	padding: 20px;
	transition: 0.5s;
	left: calc(50% - 120px);
	top: 0;
}
.voiceitem h5 {
    font-size: 18px;
	font-weight: bold;
	color: #333;
	margin-bottom: 10px;
	line-height: 1.4;
}
.voiceitem p {
	font-size: 15px;
	line-height: 1.8;
	color: #555;
	text-align: justify;
}
#next {
	position: absolute;
	right: 15px;
	top: 40%;
}
#prev {
	position: absolute;
	left: 15px;
	top: 40%;
}
#prev,
#next {
	color: #a8a8a8;
	background: none;
	border: none;
	font-size: xxx-large;
	font-family: monospace;
	font-weight: bold;
	opacity: 0.5;
	transition: opacity 0.5s;
}
#prev:hover,
#next:hover {
	opacity: 1;
}

/** 集合部分のレイアウト **/
.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto; /* 中央寄せ */
}

/* スライダーのキャプション */
.slider-caption {
    position: absolute;
    bottom: -9%;
    left: -2%;
    width: auto;
    padding: 10px 20px;
    text-align: left;
    background: rgba(255, 255, 255, 0.6);
    color: rgba(0, 0, 0, 0.7);
    z-index: 2;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.slider-caption h3 {
    font-size: 1.4rem;
    margin: 0;
    font-weight: normal;
}
.slider-caption p {
    font-size: 1rem;
    margin: 5px 0 0;
    font-weight: normal;
}
.slider-container {
    position: relative;
    overflow: hidden;
}
.mob-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.mob-image-container {
    flex: 0 0 100%;
    max-width: 100%;
}
.mob-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.mob-image-container {
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}



/* 給与情報セクション */
.salary-info {
    margin-top: 20px;
}

.time_day_money .day_money {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2f3a47;
}

.time_day_money .time {
    margin-top: 10px;
    font-size: 1rem;
    color: #888;
}

.mo_money .money_month {
    font-size: 1.5rem;
    color: #2f3a47;
}

.staff_text {
    font-size: 1rem;
    margin-top: 15px;
    color: #555;
}


/* よくある質問セクション */
.staff-qa {
    margin-top: 50px;
}

.staff-qa h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.qa-item {
    margin-bottom: 15px;
}

.qa-item .question {
    font-weight: bold;
    color: #555;
}

.qa-item .answer {
    color: #777;
}


@media (min-width: 769px) {
    .region-tabs {
        display: none;
    }
    .feature-item {
        display: block;
    }
    #moreInfo {
        display: block;  /* PC版では常に表示 */
        opacity: 1;
        max-height: 1000px;  /* 高さを自由に */
    }
}
@media (max-width: 1000px) {
    .sideArea {
        display: none;
    }
}
@media (max-width: 900px) {
    .features {
        grid-template-columns: 1fr;
    }
    .store-features-container {
        padding: 20px;
    }
    
}
@media (max-width: 865px) {
    .p-home-number__items .item {
        padding: 1rem;
    }
}
@media (max-width: 768px) {
    .sideArea {
        display: none;
    }
    .inner {
        padding: 0;
    }
    .age-yes-btn, .age-no-btn {
        font-size: 0.9rem;
        padding: 16px 25px;
    }
    /*header↓*/
    .storename {
        margin: 30px 0 30px;
    }
    .storename h2{
        font-size: 1.6rem;
    }
    .hero-image {
        margin-top: 15px;
    }
    /* SP用画像を表示 */
    .sp-image {
        display: block;
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
    /* PC用画像を非表示に */
    .pc-image {
        display: none;
    }
    figcaption {
        text-align: left;
        font-size: 10px;
        margin-bottom: 20px;
    }
    .content {
        padding: 0;
    }
    /*強み*/
    .group-profile {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    .profile-section h3 {
        font-size: 1.3rem;
        text-align: left;
        letter-spacing: 1px;
    }
    .profile-info {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
    }
    .profile-info p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    .infographics {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 25px;
    }
    .container {
        /*width: 100%;*/
        /*max-width: 300px;  最大幅を調整 */
        padding: 0 20px;
        margin: 0;
    }
    .bar-container {
        margin-top: 25px;
        margin-bottom: 100px;
    }

    /* 初期状態 */
    #moreInfo {
        display: block;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.3s ease, max-height 0.5s ease;
    }
    .center-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    /* ボタンのスタイル */
    .toggle-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background-color: #fd9a8a;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
        position: relative;
    }
    /* アクティブ時のボタン */
    .toggle-button.active {
        background-color: #f2a7a2;
        transform: scale(1.1);
    }
    /* アイコンのスタイル */
    .icon {
        position: relative;
        width: 20px;
        height: 20px;
        border: 2px solid white;
        border-radius: 50%;
        transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
    }
    /* 横線の位置と回転（通常時） */
    .icon::before,
    .icon::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 2px;
        background-color: white;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: transform 0.3s ease;
    }
    /* 横線（アクティブ前） */
    .icon::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }
    /* アクティブ時のアイコン */
    .toggle-button.active .icon {
        width: 30px;
        height: 30px;
    }
    .toggle-button.active .icon::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .toggle-button.active .icon::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    /*募集要項*/
    .job-overview {
        flex-direction: column;
    }
    .job-section {
        max-width: none;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .job-section h3 {
        font-size: 1.1rem;
    }
    .job-info {
        font-size: 1rem;
    }
    .job-shape-container {
        max-width: 100%;
    }
    .job-shape {
        height: 200px;
    }

    /*数字で見るセクション*/
    .p-home-number {
        flex-direction: column;
        align-items: center;
        margin:  0 0 40px;
    }

    .p-home-number__head {
        width: 100%;
        margin-bottom: 50px;
        background-color: #f9ebea;
        z-index: 2;
        top: 5px;
    }
    .p-home-number__head::before {
        content: '';
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        height: 40px;
        background-color: #f9ebea;
        z-index: -1;
    }
    .p-home-section__sttl {
        margin-bottom: 1.4rem;
    }
    .p-home-number__txt {
        margin-bottom: 5px;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .p-home-number__items {
        grid-template-columns: 1fr;
        padding-bottom: 5rem;
    }

    /* アイテムの初期位置を設定 */
    .p-home-number__items .item {
        opacity: 0; /* 初期状態では非表示 */
        transform: translate(30px, 30px); /* 斜め下に配置 */
        transition: opacity 0.5s ease, transform 0.5s ease; /* アニメーション */
        position: relative;
        height: 200px;
        padding: 2rem;
        background: linear-gradient(145deg, #ffd1d1, #ffe4ea); /* 背景色 */
        border-radius: 8px;
        box-shadow: 1px 1px 0 rgba(0, 0, 0, .03) inset, -0.1rem -0.1rem 0.1rem rgba(255, 255, 255, .1), .1rem .1rem 0.4rem rgba(0, 0, 0, .18);
    }
    .p-home-number__items .item:nth-child(even) {
        top: 0;
    }
    .p-home-number__items .item.visible {
        opacity: 1; /* 表示 */
        transform: translate(0, 0); /* 元の位置に戻す */
    }
    /* アイテムの数値やタイトルのフォントサイズ調整 */
    .p-home-number__items .item__num {
        font-size: 1.8rem; /* 数字のサイズ調整 */
    }
    .p-home-number__items .item__ttl {
        font-size: 1rem; /* タイトルのサイズ調整 */
    }
    .p-home-number__items .item__caption {
        font-size: 0.75rem; /* キャプションのサイズ調整 */
    }
    /* アイテムごとの遅延設定 */
    .p-home-number__items .item:nth-child(1) {
        transition-delay: 0.1s;
    }
    .p-home-number__items .item:nth-child(2) {
        transition-delay: 0.3s;
    }
    .p-home-number__items .item:nth-child(3) {
        transition-delay: 0.5s;
    }
    .p-home-number__items .item:nth-child(4) {
        transition-delay: 0.7s;
    }
    .p-home-number__items .item:nth-child(5) {
        transition-delay: 0.9s;
    }
    .p-home-number__items .item:nth-child(6) {
        transition-delay: 1.1s;
    }

    .store-features-title {
        font-size: 1.1rem;
    }
     /* 初期状態ではすべての地域を非表示にする */
    .feature-item {
        display: none;
    }
    /* 最初のタブをクリックしたときにアクティブな地域だけ表示 */
    .feature-item.active {
        display: block;
    }
    /* 地域タブを表示 */
    .region-tabs {
        display: block; /* SP版では地域タブを表示 */
        margin-bottom: 20px;
    }
    .region-tab {
        padding:  7px 15px;
        margin: 0 5px 10px;
        font-size: .8rem;
        cursor: pointer;
        background-color: #f3f3f3;
        border-radius: 5px;
        transition: background-color 0.3s;
        border: 2px solid transparent;
        font-weight: bold;
        text-transform: capitalize;
        color: #333;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .region-tab:hover {
        background-color: #f0a;
    }
    .region-tab.active {
        background-color: #f06292;
        color: white;
    }
    .region-name {
        font-size: 1.2rem;
    }
    /* 最初の地域を最初に表示 */
    .feature-item:first-child {
        display: block;
    }

    /*キャスト給与セクション（変更の可能性あり*/
    .testimonials h3 {
        font-size: 1.1rem;
    }
    #customers-testimonials .item {
        padding: 20px;
        max-width: 100%;
    }
    .shadow-effect {
        padding: 20px;
    }
    .testimonial-name {
        padding: 15px 20px;
        font-size: 14px;
    }
    /*↑からのCTAでページ移動する、女の子給料ページ*/
    .kyuyo {
        padding-top: 30px;
    }
    .kyuyo h2 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    .store_girl {
        width: 100%;
    }

    .details p strong {
        font-size: 15px;
    }

    /*staff*/
    .staff-introduction {
        padding-top: 30px;
    }
    .staff-introduction h2 {
        /*font-size: 1.4rem;*/
        margin-bottom: 25px;
    }
    .staff-list {
        margin-top: 20px;
    }
    /* 待機室の紹介 */
    .office-envn {
        padding: 50px 0 0;
    }
    .facilties {
        padding: 20px;
    }
    .facilties h3 {
        margin: 0 0 30px;
        font-size: 1.1rem;
        text-align: justify;
    }
    .office-body {
        flex-direction: column;
        margin-bottom: 70px;
        justify-content: flex-start;
    }
    .office-text-leftbox,
    .office-text-rightbox {
        width: 90%;
        margin: 0;
        margin-bottom: -25px;
        padding: 25px 20px;
        order: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 340px
    }
    /* 'camera-section' クラスのセクションに別の高さを設定 */
    .facilties.camera-section .office-text-leftbox, 
    .facilties.camera-section .office-text-rightbox {
        min-height: 255px;
    }
    .office-text h4 {
        font-size: 1.05rem;
        font-weight: bold;
        line-height: 1.4;
        margin: 0 0 16px;
    }
    .office-text p {
        font-size: 1rem;
        line-height: 1.8;
        margin: 0 0 16px;
    }
    .office-photo {
        width: 95%;
        order: 1;
        z-index: 3;
        margin-bottom: -15px;
    }
    #waiting-room-reviews {
        padding: 20px;
    }
    .office-box {
        display: flex;
        flex-wrap: nowrap;
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        scrollbar-width: none;
    }
    .office-box::-webkit-scrollbar {
        display: none;
    }

    .office-body {
        display: flex;
        scroll-snap-align: start;
        flex: 0 0 auto;
        width: 100%;
    }
    .office-photo img {
        width: 100%;
        height: 165px;
        border-radius: 8px;
    }
    .office-text {
        display: grid;
        grid-template-rows: auto 1fr;  /* 見出しと段落を別の行に分ける */
        gap: 10px;
        flex-grow: 1;  /* テキスト部分を余った高さで拡張 */
    }
    .office-box {
        overflow-x: auto;  /* 横スクロールを有効にする */
    }
    .office-box::-webkit-scrollbar {
        display: none;
    }
    .reviews-container {
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    /* キャプションの位置を調整 */
    .slider-caption {
        left: -2%;
        bottom: -8%;
        padding: 8px 15px;
    }
    .slider-caption h3 {
        font-size: 1.2rem;
    }
    .slider-caption p {
        font-size: 0.9rem;
    }
    .slider-wrapper {
        max-width: 100%;
    }
    .mob-image {
        object-fit: contain;
    }
}
@media (max-width: 480px) {
    .shadow-effect img {
        height: 200px;
    }

    #customers-testimonials .item {
        padding: 15px;
        /*max-width: 250px;*/
    }
    .shadow-effect {
        padding: 15px;
    }
    .testimonial-name {
        padding: 15px 15px;
        font-size: 12px;
    }
    #customers-testimonials.owl-carousel .owl-dots .owl-dot {
        width: 8px;
        height: 8px;
    }
    .kyuryo_btn a {
        font-size: 0.875rem;
    }
    .kyuyo h2 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    .mix {
        margin-top: 0;
    }
    .staff-introduction h2 {
        /*font-size: 1.2rem;*/
        margin-bottom: 20px;
    }
    .office-envn h2 {
        /*font-size: 1.2rem;*/
        margin-bottom: 20px;
    }
    .modal-content {
        margin: 25% auto;
        width: 80%;
    }
}
@media (max-width: 374px) {
    .infographics {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 25px;
    }
    .container {
        /*width: 100%;*/
        padding: 0 20px;
        text-align: left;
    }
}