@charset "UTF-8";
/*
  Template: swell
  Theme Name: SWELL CHILD
*/

/* =========================
   共通カード画像
========================= */

.en-today-photo,
.en-cast-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #111;
  overflow: hidden;
}

.en-today-photo img,
.en-cast-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* =========================
   出勤情報カード
   PC 4列 / タブレット4列 / スマホ3列
========================= */

.en-today-section {
  max-width: 1400px;
  margin: 40px auto 100px;
  padding: 0 20px;
}

.en-today-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  padding-bottom: 80px;
}

.en-today-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #050505;
  border: 1px solid rgba(214,180,95,.55);
  color: #e6c878;
  text-decoration: none;
  overflow: hidden;
  transition: .25s;
}

.en-today-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(214,180,95,.25);
}

.en-today-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 10px 18px;
  text-align: center;
}

.en-today-name {
  margin-bottom: 7px;
  color: #fff3c4;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.en-today-name span {
  margin-left: 4px;
  color: #e6c878;
  font-size: 13px;
}

.en-today-size {
  margin-bottom: 10px;
  color: #f0d98d;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: .02em;
}

.en-today-status {
  margin: 8px 0 7px;
  padding: 7px 6px;
  background: rgba(214,180,95,.16);
  border: 1px solid rgba(214,180,95,.45);
  color: #e6c878;
  font-size: 13px;
  font-weight: 800;
  border-radius: 4px;
}

.en-today-guide {
  margin-bottom: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.en-today-time {
  margin-top: auto;
  padding-top: 9px;
  border-top: 1px solid rgba(214,180,95,.3);
  color: #e6c878;
  font-size: 15px;
  font-weight: 800;
}

/* TOP 出勤情報タイトル */
.en-top-heading {
  text-align: center;
  color: #e6c878;
  font-size: 34px;
  margin: 40px 0 25px;
  letter-spacing: .12em;
  font-family: "Yu Mincho","Hiragino Mincho ProN",serif;
  background: none;
  border: none;
  padding: 0;
}

.en-top-heading::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  background: #d6b45f;
  margin: 15px auto 0;
}

/* =========================
   在籍一覧
   PC 4列 / タブレット4列 / スマホ3列
========================= */

.en-cast-list {
  max-width: 1400px;
  margin: 40px auto 100px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.en-cast-card {
  width: 100%;
}

.en-cast-info {
  padding: 10px 8px 12px;
  text-align: center;
}

.en-cast-name,
.en-cast-info h3 {
  margin-bottom: 8px;
  font-size: 32px;
  line-height: 1.1;
}

.en-cast-name span {
  font-size: 18px;
}

.en-cast-size {
  font-size: 15px;
  letter-spacing: .03em;
}

/* =========================
   キャスト詳細：自然に左寄せ
========================= */

@media screen and (min-width: 769px) {
  .single-cast .en-profile {
    width: 1200px;
    max-width: 1200px;
    margin: 40px auto 80px;
    padding: 0;
  }

  .single-cast .en-profile-main {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    transform: none;
  }

  .single-cast .en-profile-left {
    width: 480px;
    flex: 0 0 480px;
  }

  .single-cast .en-profile-info {
    width: 580px;
    flex: 0 0 580px;
  }

  .single-cast .en-schedule-box {
    max-width: 1100px;
    margin-left: 0;
    margin-right: auto;
  }
}

/* =========================
   タブレット
========================= */

@media screen and (max-width: 1024px) {
  .en-today-section,
  .en-cast-list {
    padding-left: 12px;
    padding-right: 12px;
  }

  .en-today-grid,
  .en-cast-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .en-today-name {
    font-size: 15px;
  }

  .en-today-size,
  .en-today-status,
  .en-today-guide,
  .en-today-time {
    font-size: 11px;
  }
}

/* =========================
   スマホ
========================= */

@media screen and (max-width: 767px) {
  .en-today-section {
    margin: 30px auto 90px;
    padding: 0 8px;
  }

  .en-today-grid,
  .en-cast-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .en-cast-list {
    padding: 0 8px;
  }

  .en-top-heading {
    font-size: 24px;
    margin: 32px 0 22px;
  }

  .en-today-body,
  .en-cast-info {
    padding: 7px 4px 10px;
  }

  .en-today-name,
  .en-cast-name,
  .en-cast-info h3 {
    font-size: 13px;
  }

  .en-today-name span,
  .en-cast-name span {
    font-size: 10px;
  }

  .en-today-size,
  .en-today-status,
  .en-today-guide,
  .en-today-time,
  .en-cast-size {
    font-size: 10px;
  }
}

/* 在籍一覧 強制4列 */

.en-cast-list{
    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    gap:24px !important;
    max-width:1400px !important;
    margin:40px auto 100px !important;
    padding:0 20px !important;
}

@media screen and (max-width:1024px){
    .en-cast-list{
        grid-template-columns:repeat(4,minmax(0,1fr)) !important;
        gap:14px !important;
    }
}

@media screen and (max-width:767px){
    .en-cast-list{
        grid-template-columns:repeat(3,minmax(0,1fr)) !important;
        gap:8px !important;
        padding:0 8px !important;
    }
}

/* =========================
   在籍一覧：出勤情報カードと同じサイズ感
========================= */

.en-cast-list {
  max-width: 1200px !important;
  margin: 40px auto 100px !important;
  padding: 0 20px !important;
  display: grid !important;
  grid-template-columns: repeat(4, 220px) !important;
  gap: 24px !important;
  justify-content: flex-start !important;
}

.en-cast-card {
  width: 220px !important;
}

.en-cast-photo {
  width: 220px !important;
  height: 293px !important;
  aspect-ratio: auto !important;
}

.en-cast-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
}

.en-cast-info {
  padding: 10px 6px 14px !important;
}

.en-cast-name,
.en-cast-info h3 {
  font-size: 24px !important;
  line-height: 1.15 !important;
}

.en-cast-name span {
  font-size: 14px !important;
}

.en-cast-size {
  font-size: 12px !important;
  line-height: 1.4 !important;
}

/* タブレット：4列 */
@media screen and (max-width: 1024px) {
  .en-cast-list {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 14px !important;
  }

  .en-cast-card,
  .en-cast-photo {
    width: 100% !important;
  }

  .en-cast-photo {
    height: auto !important;
    aspect-ratio: 3 / 4 !important;
  }
}

/* スマホ：3列 */
@media screen and (max-width: 767px) {
  .en-cast-list {
	  
	  
	  .en-top-slider{
    width:100%;
    max-width:1400px;
    margin:0 auto 25px;
    overflow:hidden;
}

.en-banner-swiper img{
    width:100%;
    display:block;
    object-fit:cover;
    aspect-ratio:1920 / 800;
}
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    padding: 0 8px !important;
  }

  .en-cast-name,
  .en-cast-info h3 {
    font-size: 13px !important;
  }

  .en-cast-name span {
    font-size: 10px !important;
  }

  .en-cast-size {
    font-size: 10px !important;
  }
}


/* =========================
   TOP スライドバナー
========================= */

.en-top-slider{
    width:100%;
    max-width:1400px;
    margin:0 auto 50px;
    overflow:hidden;
}

.en-banner-swiper{
    width:100%;
}

.en-banner-swiper .swiper-slide{
    overflow:hidden;
}

.en-banner-swiper img{
    width:100%;
    display:block;
    object-fit:cover;
}

/* PC */
@media screen and (min-width:768px){

    .en-banner-swiper img{
        aspect-ratio:1920 / 800;
    }

}

/* スマホ */
@media screen and (max-width:767px){

    .en-top-slider{
        margin-bottom:30px;
    }

    .en-banner-swiper img{
        aspect-ratio:600 / 800;
    }

}

/* ページネーション */

.en-banner-swiper .swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#fff;
    opacity:.5;
}

.en-banner-swiper .swiper-pagination-bullet-active{
    background:#d6b45f;
    opacity:1;
}

/* =========================
   TOPスライドバナー余白調整
========================= */

.en-top-slider {
  max-width: 1400px !important;
  margin: 0 auto 20px !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.en-banner-swiper {
  margin-bottom: 0 !important;
}

.en-banner-swiper .swiper-wrapper {
  margin-bottom: 0 !important;
}

.en-banner-swiper .swiper-slide {
  margin-bottom: 0 !important;
}

.en-banner-swiper img {
  width: 100% !important;
  display: block !important;
  object-fit: cover !important;
  aspect-ratio: 1920 / 800 !important;
}

.en-top-heading {
  margin-top: 20px !important;
}


.en-work-form{
max-width:900px;
margin:40px auto;
}

.en-work-row{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
margin-bottom:15px;
background:#111;
border:1px solid #d6b45f;
border-radius:10px;
}

.en-work-cast-name{
font-size:22px;
font-weight:700;
color:#fff;
}

.en-work-times select{
padding:8px;
font-size:16px;
}

.en-work-times span{
color:#d6b45f;
margin:0 8px;
}

.en-work-save{
display:block;
width:100%;
padding:18px;
background:#d6b45f;
color:#000;
border:none;
border-radius:10px;
font-size:22px;
font-weight:700;
cursor:pointer;
}

.en-admin-success{
max-width:900px;
margin:20px auto;
padding:15px;
background:#142d14;
border:1px solid #5ab65a;
color:#fff;
border-radius:8px;
}