@charset "UTF-8";
body {
  font-family: sans-serif;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  margin: 0;
  font-size: 100%;
  margin-bottom: 60px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin-block-start: inherit;
  margin-block-end: inherit;
}

p {
  margin:0;
  padding:0;
}

a {
  text-decoration:none;
}
/*----------------------------------

SPとPCで画像分ける

---------------------------------- */
.bnr_sp{
  display: block;
}

.bnr_pc{
  display: none;
}

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

パーツ

---------------------------------- */
.enter {
  display: grid !important;
  /* 常に2列（50%ずつ）に分割 */
  grid-template-columns: repeat(2, 1fr) !important;
  /* アイテム間の隙間 */
  gap: 10px;
  /* 外側の余白 */
  margin: 15px;
  padding: 0;
}

.enter .img-item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.enter .img-item a {
  display: block;
  width: 100%;
}

.enter .img-item img {
  width: 100%;
  height: auto;
  display: block;
  /* 画像の歪みを防ぐ */
  object-fit: contain;
}



.margin-top{
  margin-top: 15px
}

.img img{
  width: 100%;
  text-align: center;
}

.n_frame{
  margin: 10px;
  padding: 15px 15px 0;
}

.center{
  text-align: center;
}

.size-small{
  font-size: 1.1rem;
  font-weight: bold;
}

.size-medium{
  font-size: 1.2rem;
  font-weight: bold;
}

.size-x-large {
  font-size: 1.7rem;
  font-weight: bold;
  display: flex;
  align-items: center;       /* ← 横方向の中央寄せ */
  justify-content: center;   /* ← 縦方向の中央寄せ */
  text-align: center;        /* ← テキスト中央 */
  gap: 8px; /* 画像とテキストの間隔 */
}

.btn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 全デバイスで2列固定 */
  gap: 4px;
  width: 100%;
  text-align: center;
}

.btn-grid img{
  width: 100%;
}

.img-grid {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  margin-bottom: 20px;
}

/* ▼ スマホ（〜767px）：1列 */
@media (max-width: 767px) {
  .img-grid {
    grid-template-columns: 1fr;
  }
}

/* ▼ タブレット・PC（768px〜）：2列 */
@media (min-width: 768px) {
  .img-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.img-grid img {
  width: 100%;
  height: auto;
  display: block;
}

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

スクロールすると下のエリアがヘッダーにかぶさる

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

#header{
	width:100%;
	height: 100vh;
	position: relative;
}

#header:before{
	content:"";
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	height: 100vh;
	background:url("/official/images/header.jpg") no-repeat center;
	background-size:cover;
}

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

スクロールダウン

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

.scrolldown{
  position:absolute;
  left:50%;
  bottom:170px;
  height:50px;
}


.scrolldown span{
  position: absolute;
  left:-30px;
  top: -30px;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.scrolldown::after{
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 30px;
  background: #fff;
    /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}

@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}
/*----------------------------------

h1

---------------------------------- */
.company{
  position: fixed;
  top: 55%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color:#fff;
  text-shadow: 0 0 15px #666;
  text-align: center;
  font-size: 2rem;
}

.company img{
  width: 320px;
  max-width: 90vw;
  height: auto;
}



#main_content {
  flex: 1;
  /*margin: 0 8px;*/
	position: relative;
	z-index:1;
	background:#fff;
}

.wraper{
  padding: 20px 10px;
}

.shoptitle_title{
  margin: 20px 10px 10px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #532c3a;
}

.shoptitle_introduction{
  padding: 10px 5px;
  font-size: 0.85rem;
}

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

全デバイス2列固定

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

.img-grid {
  display: grid;
  grid-template-columns: 1fr; /* スマホでは1列 */
  gap: 5px;
  justify-items: center; /* 中央配置 */
  margin: 15px;
}

.img-grid .img-item img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 1025px) {

.wraper{
  margin: 0 auto;
  width: 950px;
}

.img-grid {
    grid-template-columns: repeat(2, 1fr); /* ここで2列に変更 */
    gap: 5px;
  }

  .company img{
    width: 40%;
  }
}

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

フッダー

---------------------------------- */
#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;     /* 他の要素より上に表示 */
  background-color: #222;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 30px;
}

#footer .text {
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: 0.05em;
}

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

出勤情報

---------------------------------- */
/* 本日の出勤（画像カード） */
.todayGrid{
  display:grid;
  gap:10px;
}

/* スマホ：2列 */
@media (max-width: 767px){
  .todayGrid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* タブレット以上：5列 */
@media (min-width: 768px){
  .todayGrid{
    grid-template-columns: repeat(5, 1fr);
  }
}

.todayCard{
  display:block;
  text-decoration:none;
  border:1px solid rgba(0,0,0,.08);
  border-radius:10px;
  overflow:hidden;
  background:#fff;
}

.todayImg{
  width:100%;
  object-fit: cover;
  display:block;
}

.todayImg--empty{
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  color:#666;
  background:#f3f3f3;
}

.todayName{
  padding:8px 10px;
  font-size: 0.9rem;
  line-height:1.35;
  color:#111;
  text-align: left!important;
}

/* 時間・ステータス強調表示 */
.todayTime,
.todayStatus{
  display:inline;
  color: rgb(246, 80, 156);
  font-weight: bold;
}

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

女の子ページ

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


/* --- Base Layout --- */
.wrap {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
    overflow-x: hidden; /* 横はみ出し防止 */
}

.content {
    padding: 15px;
    box-sizing: border-box;
}

/* --- Typography & Colors --- */
.profile-name {
    font-size: 20px; /* スマホ向け */
    font-weight: bold;
    color: #f6509c;
    border-bottom: 3px solid #f6509c;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.todayStatus {
    display: inline;
    color: #f6509c;
    font-weight: bold;
    /*margin-left: 10px;*/
}

/* --- Main Slider --- */
.slider-container {
    position: relative;
    background: #000;
    overflow: hidden;
    width: 100%;
    padding-top: 15px;
}

.slider-inner {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.slider-inner img {
    width: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    height: auto;          /* 高さ固定しない */
    max-height: 70vh;      /* 画面に収まる高さ制限 */
    object-fit: contain;
}

/* --- Thumbnails --- */
.thumbs {
    display: flex;
    gap: 8px;
    padding: 12px;
    overflow-x: auto;
    background: #1a1a1a;
    justify-content: flex-start; /* 左詰めでスワイプ可能に */
}

.thumbs img {
    width: 50px; /* スマホで押しやすい */
    height: 70px;
    object-fit: cover;
    opacity: 0.5;
    border-radius: 4px;
    border: 1px solid #333;
    flex-shrink: 0;
}

.thumbs img.active {
    opacity: 1;
    border: 2px solid #f6509c;
}

/* --- Card & Table --- */
.card {
    border: 1px solid #ffdae9;
    border-radius: 15px;
    margin-bottom: 25px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.card-h2 {
    margin: 0;
    padding: 12px;
    background: #fff0f5;
    font-size: 15px;
    color: #f6509c;
    font-weight: bold;
}

/* ===== Table (スマホ/PCで比率を変える) ===== */
.tbl {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed; /* %指定を確実に効かせる */
}

/* スマホ（デフォルト） th:td = 45:55 */
.tbl th {
    width: 45%;
    background: #fff9fb;
    color: #000;
    font-weight: normal;
    text-align: left;
    padding: 12px 8px;
    border-bottom: 1px solid #fdf2f6;
    font-size: 14px;
    word-break: break-all;
}

.tbl td {
    width: 55%;
    padding: 12px 8px;
    border-bottom: 1px solid #fdf2f6;
    font-size: 14px;
    word-break: break-all;
}

/* PC th:td = 35:65 */
@media screen and (min-width: 900px) {
    .tbl th {
        width: 35%;
        font-size: 15px;
    }
    .tbl td {
        width: 65%;
        font-size: 15px;
        word-break: normal; /* PCでは無理な改行を抑える */
    }
}

/* --- Comment Area --- */
.comment-area {
    /*white-space: pre-line;*/
    padding: 5px 0;
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
}

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

見出し

---------------------------------- */
.heading{
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #e5b150;
  text-align: center;
  padding: 0.25em;
  border-top: solid 2px #e5b150;
  border-bottom: solid 2px #e5b150;
  background: -webkit-repeating-linear-gradient(-45deg, #fffcf5, #fffcf5 3px, #fdf2d8 3px, #fdf2d8 7px);
  background: repeating-linear-gradient(-45deg, #fffcf5, #fffcf5 3px, #fdf2d8 3px, #fdf2d8 7px);
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
}

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

女の子詳細

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

/* 全体のグリッド設定を更新 */
.todayGrid {
  display: grid;
  gap: 12px;
  padding: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

/* スマホ：2列 */
@media screen and (max-width: 767px) {
  .todayGrid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }
}

/* PC：5列 */
@media screen and (min-width: 768px) {
  .todayGrid {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}

/* 本日出勤側の1行目（時間・ステータス）がない場合でも高さを保つ設定 */
.todayName {
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* スリーサイズの表示調整 */
.todaySizeLine,
.recSizeLine {
  font-size: 0.9em;
  letter-spacing: -0.02em;
  line-height: 1.2;
  word-break: break-all;
  margin-top: 4px;
  color: #666;
}

/* 名前と年齢の調整 */
.todayNameLine,
.recNameLine {
  font-size: 0.95em;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* PC（5列）の時の微調整 */
@media screen and (min-width: 768px) {
  .todayName {
    padding: 8px 4px;
  }
}

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

ボタン

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

.button_list {
    display: flex;
    justify-content: center;
    align-items: center;
    /*width: 95%;*/
    margin:0 auto 20px;
    padding: .9em 2em;
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 3px rgb(0 0 0 / 25%), 0 2px 3px -2px rgb(0 0 0 / 15%);
    background-color: #e5b150;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.button_list::after {
    transform: rotate(45deg);
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}

.button_list:hover {

}

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

サイトメニュー

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

/* メニュー全体のコンテナ */
.main-menu {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 10px;
}

/* グリッドレイアウトの設定 */
.menu-grid {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* PC：5列 */
@media screen and (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* スマホ：2列 */
@media screen and (max-width: 767px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 各ボタンのデザイン */
.menu-grid li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background: #fff;
  border: 1px solid #e5b150; /* ゴールド */
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  min-height: 30px;
}

/* ホバー（マウスを乗せた時）の動き */
.menu-grid li a:hover {
  background: #fdf2d8;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(229, 177, 80, 0.2);
}

/* アイコンとテキストの調整 */
.menu-grid li a .icon {
  color: #e5b150;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.menu-grid li a .text {
  font-size: 0.9rem;
  font-weight: bold;
}

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

店舗情報

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

/* 全体のラッパー */
.shop-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 20px 0;
}

/* 店舗情報ボックス */
.shop-info-box {
  padding: 10px;
  background: #fff;
  /*border: 1px solid #F6509C;*/
  border-radius: 12px;
  /*box-shadow: 0 3px 10px rgba(246, 80, 156, 0.15);*/
  /*margin: 0 10px;*/
  font-weight: bold;
}

/* 行レイアウト */
.shop-info-row {
  display: flex;
  margin-bottom: 10px;
}

.shop-info-label {
  width: 110px;
  font-weight: bold;
  color: #333;
}

.shop-info-value {
  flex: 1;
  color: #444;
  line-height: 1.6;
}

/* aタグの下線（指定したリンクだけ） */
.link-underline {
  position: relative;
  text-decoration: none;
  color: #F6509C;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #F6509C;
}

/* 右側のマップボックス */
.shop-map-box iframe {
  width: 100%;
  height: 300px;
  /*border-radius: 12px;*/
}

/* ▼ PC：左右均一 50% - 50% */
@media (min-width: 1024px) {

  .shop-info-box {
    font-size: 1rem;
    /*font-weight: bold;*/
  }

  .shop-info-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 4px; /* 任意：左右の余白調整 */
  }

  .shop-info-box,
  .shop-map-box {
    flex: 0 0 48.5%; /* ← 完全に半分ずつ */
    max-width: 50%; /* ← 念のためのガード */
  }

  .shop-map-box iframe {
    height: 380px;
  }
}

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

追従バナー

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

.floating-banner {
  position: fixed;
  z-index: 100000;
  bottom: 0;
  background-color: rgba(0, 0, 0, .5);
  display: flex;
  text-align: center;
  padding: 5px 0;

  /*デフォルトで非表示にする*/
  cursor: pointer;
  transition: .3s;
  opacity: 0;
  /*visibility: hidden;*/
}

.floating-banner_only {
  position: fixed;
  z-index: 99999;
  bottom: 0;
  background-color: rgba(0, 0, 0, .5);
  margin: auto;
  text-align: center;
  padding: 5px 0;

  /*デフォルトで非表示にする*/
  cursor: pointer;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
}

.floating-banner_only{
  margin-bottom: -7px;
}

.floating-banner{
  margin-bottom: -5px;
}

/*このクラスが付与されると表示する*/
.active {
  opacity: 1 !important;
  visibility: visible !important;
  /* フッター(margin-bottom: 60px)の真上にぴったり配置 */
  bottom: 60px !important;
}

.floating-banner img{
  width: 95%;
}


/*.pc {
    width: 300px;
}*/

.floating-banner:hover {
    opacity: .9;
}

.sp {
    display: none;/* PCではスマホ用のバナーは非表示に */
}

@media screen and (max-width: 560px) {
    .sp {
        display: inline-block;/* 消していたスマホ用のバナーを表示させる */
        width: 100%;
    }
    .sp_web_only {
        display: inline-block;/* 消していたスマホ用のバナーを表示させる */
        width: 100%;
    }
}

@media screen and (max-width: 990px) {
    .pc {
        display: none;/* タブレットサイズ以下でPC用のバナーを非表示に */
    }
}




/* ==================================================================================== */
/*  PC用&タブレット
/* ==================================================================================== */


@media screen and (min-width:768px){
  .bnr_sp{
    display: none;
  }

  .bnr_pc,
  .footer{
    display: block;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }

  .bnr_pc{
    width: 100vw!important;
  }
}
