/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

 /* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: Arial, sans-serif; */
  line-height: 1.6;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
}

/* Layout */
header, main, footer {
  /* padding: 1rem; */
}

 a{
  text-decoration: none;  /* 下線を消す */
  color: inherit;         /* 親要素から色を継承 */
}

main {
  padding-top: 60px; /* ヘッダーの高さに応じて調整 */
  height: 100vh; /* フッターを確認するために十分な高さを設定 */
  text-align: center;
}

@media (min-width: 1025px) {
  main {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Navigation */
nav ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

nav li {
  margin: 0.5rem;
}

.txt {
  font-size: 22px;
}

.mini-font {
  font-size: 12px;
  color: #383A42;
}

.small-font {
  font-size: 14px;
  color: #383A42;
}

.middle-font {
  font-size: 16px;
  color: #383A42;
}

.big-font {
  font-size: 22px;
  font-weight: 700;
  color: #383A42;
}

.lightgray-font {
  color: #AFB0B3;
}

.pink-font {
  color:#F76174;
}

.text-lightgray {
  width: 80%; height: 50px; padding: 10px; border-radius: 10px; border: 1px solid #AFB0B3;
}

.gradient-text {
  background-image: linear-gradient(45deg, #F76174
  , #4F72E5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.centerlize {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.border-circle {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid #EFEFF0;
  border-radius: 20px;
}

.border-radius {
  border-radius: 10px;
}

.border-gray {
  border: 1px solid #EFEFF0;
}

.kiyaku {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 14px;
  line-height: 18.2px;
  letter-spacing: 1%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: Auto;
  text-decoration-thickness: Auto;
}

.hitsudoku{
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 11px;
  line-height: 11px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--Color-NG-error, #EE3333);
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid #EE3333;
  border-radius: 5px;
}

.overlay-header {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 1000;
  height: 60px;
  background-color: white;
}

.overlay-header nav ul {
  list-style-type: none;
  display: flex;
  justify-content: space-around;
  padding: 0;
}

.overlay-header nav a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

.header-pt-area {
  display: flex;
      align-items: center;
      border: 1px solid #D9D9D9;
      padding-left: 10px;
      padding-right: 10px;
      border-radius: 10px;
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
}


.overlay-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  color: gray;
  padding: 10px;
  text-align: center;
  height: 60px;
  border-top: 1px solid #AFB0B3;
}

.footer {
  width: 100%;
  /* height: 160px; */
  /* margin-bottom: 60px; */
  background-color: #EFEFF0;
  color: white;
  padding: 1rem;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.horizontal-list {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.horizontal-list li {
  margin-right: 10px; /* リスト項目間の間隔 */
}

.horizontal-list a {
  color: gray;
  text-decoration: none;
  margin-left: 5px; /* リンク間のスペース */
}


/* Responsive grid */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.col {
  flex: 1;
  padding: 0 1rem;
  margin-bottom: 1rem;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
}

/* Media queries */
@media (max-width: 768px) {
  .col {
    flex: 0 0 100%;
  }

  nav ul {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .col {
    flex: 0 0 50%;
  }
}


.checkboxes {
  text-align: left;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 40px;
  padding-left: 40px;
}

.checkbox {
  display: flex;
  margin-bottom: 10px;
  padding: 5px;
}

.checkbox-background-2 {
  background: #F2F2F3BF;
}

.submit-enable{
  padding-top:10px;
  padding-bottom:10px;
  width: 70%;
  background-color: #F76174;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 20px;
}

.submit-disable{
  padding-top:10px;
  padding-bottom:10px;
  width: 70%;
  background-color: #CDCED0;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 20px;
}

.button-white {
  display: inline-block;
  padding-top:10px;
  padding-bottom:10px;
  width: 70%;
  background-color: white;
  color: #F76174;
  font-size: 16px;
  border: 1px solid #F76174;
  border-radius: 20px;
}

.event-background {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.blur-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  /* background-image: url(/your-background-image.jpg); */
  background-color: red;
  background-size: cover;
  background-position: center;
  filter: blur(14px);
  z-index: 1;
}

.event-background-child{
  z-index: 2;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.event-title {
  color: white;
}

.event-image {
  width: 95%;
  height: 200px;
  border-radius: 15px;
}

.event-desc{
  margin-left: 40px;
  margin-right: 40px;
  text-align: left;
}

.scroll-container {
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  /* border-bottom: 3px solid gray; */
  background-color: #EFEFF0;
  height: 80px;
  align-items: end;
  display: flex;
}

.scroll-content {
  display: flex;
}

.scroll-content a{
  text-decoration: none;  /* 下線を消す */
  color: inherit;         /* 親要素から色を継承 */
}

.item {
  flex: 0 0 auto;
  width: 150px; /* アイテムの幅を調整 */
  height: 60px; /* アイテムの高さを調整 */
  /* margin-left: 20px; アイテム間の間隔 */
  background-color: white; /* アイテムの背景色 */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.item-header {
  font-size: 10px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 30%;
  background-color: #F76174;
  color: white;
  border: none;
  border-radius: 20px;
  margin-top: -10px;
}

.item-body {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-disable {
  flex: 0 0 auto;
  width: 150px; /* アイテムの幅を調整 */
  height: 60px; /* アイテムの高さを調整 */
  background-color: #f0f0f0; /* アイテムの背景色 */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.item-header-disable {
  font-size: 10px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 30%;
  background-color: #AFB0B3;
  color: white;
  border: none;
  border-radius: 20px;
  margin-top: -10px;
}

.item-body-disable {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #AFB0B3;
}

.ranking-header {
  display: flex;
  align-items: center;
}

.department{
  padding: 15px;
  margin-top: 30px;
}

.content-box {
  background-color: #EFEFF0;
  border-radius: 10px;
  text-align: left;
}

.content-box p {
  padding: 10px;
}

.content-box span {
  font-weight: bold;
  padding: 10px;
}

.rule-box {
  /* border: 1px solid gray; */
  margin-top: 10px;
  text-align: left;
  border-radius: 10px;
}

.rule-box-inline {
  border: 1px solid #AFB0B3;
  margin: 10px;
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  /* background-color: #EFEFF0; */
}

.rule-box p {
  padding: 10px;
  background-color: #EFEFF0;
  border-radius: 10px;
}

.category {
  display: flex;
  margin-top: 20px;
}

.enable-category{
  border-bottom: 2px solid #F76174;
}

.disable-category{
  border-bottom: 2px solid #EFEFF0;
}

.enable-category-text{
  color: #F76174;
  font-size: 14px;
  font-weight: bold;
}

.disable-category-text{
  color: #EFEFF0;
  font-size: 14px;
  font-weight: bold;

}

.category-button-select {
  padding: 5px;
  background-color: #FF9902;
}

.category-button {
  padding: 5px;
  border: 1px solid #FF9902;
}

.page {
  margin-top: 10px;
}

.artist-item {
  display: flex;
  /* height: 100px; */
  align-items: center;
  border-bottom: 1px solid #AFB0B3;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.artist-icon {
  width: 64px;
  height: 64px;
  border-radius: 10px;
}

.artist-body {
  text-align: left;
  /* padding-left: 10px; */
}

.artist-show-icon{
  width: 200px;
  height: 200px;
  border-radius: 20px;

}

.pink-font{
  color: #F76174;
}

.pink-btn {
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
  border: 2px solid #F76174;
  background: white;
  background-clip: padding-box, border-box;
  border-radius: 40px;
  font-size: 14px;
  font-weight: bold;
  color: #F76174;
  display: inline-block;
}

.pink-btn-fill {
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
  /* border: 2px solid #F76174; */
  background: #F76174;
  background-clip: padding-box, border-box;
  border-radius: 40px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  display: inline-block;
}

.grad-btn {
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
  linear-gradient(45deg, #F76174
  , #4F72E5) border-box;
  background-clip: padding-box, border-box;
  border-radius: 40px;
  font-size: 12px;
  color: black;
  display: inline-block;
}

.grad-btn-fill {
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
  border: 2px solid transparent;
  background: 
  linear-gradient(45deg, #F76174
  , #4F72E5) border-box;
  border-radius: 40px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  display: inline-block;
}

.oshi-btn {
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
  linear-gradient(45deg, #F76174
  , #4F72E5) border-box;
  background-clip: padding-box, border-box;
  border-radius: 20px;
  font-size: 12px;
  color: black;
}

.oshi-btn-fin {
  padding-top: 8px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 8px;
  border: 1px solid #AFB0B3;
  border-radius: 20px;
  font-size: 12px;
  color: #AFB0B3;
}

.artist-item-show {
  display: flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  justify-content: center;
  flex-direction: column;
}


.artist-item-show .artist-icon {
  width: 150px;
  height: 150px;
  border-radius: 30px;
}

.artist-rule-box {
  border: 1px solid #AFB0B3;
  border-radius: 5px;
  margin: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.artist-rule-box .under-line {
  border-bottom: 1px solid #AFB0B3;
}
.under-line {
  border-bottom: 1px solid #AFB0B3;
}
.artist-rule-box div {
  padding-top: 10px;
  padding-bottom: 10px;
}

.mypage-header {
  /* height: 150px; */
  background: red;
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: linear-gradient(45deg, #F76174
  , #4F72E5);
  /* -webkit-background-clip: text;
  background-clip: text; */
  color: white;
  padding-top: 20px;
  padding-bottom: 20px;
}

.mypage-icon {
  height: 62px;
  width: 62px;
  border-radius: 50%;
}

.mypage-image-background {
  background: white;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mypage-header-pt-area {
  display: flex;
  background: white;
  color: black;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 20px;
}

.mypage-history{
  background-color: #EFEFF0;
  display: flex;
  width: 100%;
  height: 150px;
}

.block-area{
  background-color: white;
  margin: 10px;
  background: white;
  height: 130px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.charge-button {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 20px;
  border: 1px solid white;
  font-size: 12px;
}

.logout-button {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 50px;
  padding-right: 50px;
  border-radius: 20px;
  border: 1px solid #AFB0B3;
  color: black;
  font-size: 14px;

}

.topic-box {
  border-bottom: 1px solid #AFB0B3;
}

.artist-background{
  width: 100%;
  height: 200px;
  background-color: red;
}

/* .artist-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px; 
} */

.artist-pics {
  margin-top:20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.artist-pic {
  width: 80px;
  height: 80px;
  border-radius: 15px; 
}

.artist-pics > div {
  margin-left: 10px;
  margin-right: 10px;
}

.artist-desc {
  margin-top: 10px;
}


.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 95%;
  border-radius: 10px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.sidebar{
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  background-color: #f1f1f1;
  padding: 20px;
}

.main-content {
  margin-left: 250px;
  padding: 20px;
}

.admin-btn{
  padding: 10px;
  border: 1px solid black;
}

.admin-table{
  margin-top: 20px
}

.slide{
  margin: 10px;
}

.slick-slide {
  border-radius: 15px;
}

.slick-slide img {
  border-radius: 15px;
}

.topic-new {
  padding-top: 2px;
  padding-left: 4px;
  padding-right: 4px;
  padding-bottom: 2px;
  border: 2px solid transparent;
  background:  #F76174;
  background-clip: padding-box, border-box;
  border-radius: 10px;
  color: white;
  font-size: 10px;
  display: inline-block;
}

.topic-recommend {
  padding-top: 2px;
  padding-left: 4px;
  padding-right: 4px;
  padding-bottom: 2px;
  border: 2px solid transparent;
  background: 
  linear-gradient(45deg, #F76174
  , #4F72E5) border-box;
  background-clip: padding-box, border-box;
  border-radius: 10px;
  color: white;
  font-size: 10px;
  display: inline-block;
}

.topic-breaking {
  padding-top: 2px;
  padding-left: 4px;
  padding-right: 4px;
  padding-bottom: 2px;
  border: 2px solid transparent;
  background:  #4F72E5;
  background-clip: padding-box, border-box;
  border-radius: 10px;
  color: white;
  font-size: 10px;
  display: inline-block;
}


.parger-prev{
  padding: 10px;
  border: 1px solid #AFB0B3;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.parger-next{
  padding: 10px;
  border: 1px solid #AFB0B3;
  border-left: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.parger-number{
  padding: 10px;
  border-top: 1px solid #AFB0B3;
  border-bottom: 1px solid #AFB0B3;
  border-right: 1px solid #AFB0B3;
  border-left: 1px solid #AFB0B3;
}

.pagination {
  display: flex;
    align-items: center;
    justify-content: center;
}

.pagination>span {
  color: #696969;	/*文字の色を変える*/
  padding: 8px;
  border: 1px solid #AFB0B3;
  display: inline-flex;
      justify-content: center;
      align-items: center;
      height: 30px;
      width: 30px;
  font-size: 12px;
}

.pagination>.current {		
  background: white !important;
  color: black !important;
  /* border-radius: 15px; */
}

.pagination>.page {		
  background: #E3E3E5;
  color: #CDCED0;
  margin-top: 0px;
}

.pagination>.next {		
  color: #F76174 !important;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.pagination>.prev {		
  color: #F76174 !important;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.artist-success-background{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url(/assets/background.png);
  background-size: cover; /* 画像を要素全体にフィットさせる */
}

.artist-success-content{
  position: relative;
  z-index: 0;
}

.required{
  color: red;
}

.form-group {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;  /* Flexboxを使用 */
  align-items: center;  /* 縦方向の中央揃え */
}

.form-group label {
  width: 200px;  /* ラベルの幅を固定 */
  text-align: left;  /* ラベルのテキストを右揃え */
  padding-right: 20px;  /* 入力欄との間隔 */
}

.form-group input,
.form-group textarea {
  flex: 1;  /* 残りのスペースを入力欄が占める */
  max-width: 400px;  /* 入力欄の最大幅 */
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-group textarea {
  min-height: 100px;  /* テキストエリアの最小の高さ */
}

.form-group select,
.form-select {
  flex: 1;
  max-width: 400px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 35px;
}

.form-group input[readonly],
.form-group textarea[readonly],
.form-group select[readonly] {
  background-color: #f8f9fa;
  cursor: not-allowed;
}

th[data-sort] {
  cursor: pointer;
  position: relative;
}

th[data-sort]:hover {
  background-color: #f5f5f5;
}

th[data-sort].asc::after {
  content: '▲';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

th[data-sort].desc::after {
  content: '▼';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

#contents-table {
  width: 100%;
  border-collapse: separate;  /* border-collapseをseparateに変更 */
  border-spacing: 0;  /* セル間のスペースを0に */
}

#contents-table thead {
  border-bottom: 1px solid #ccc;
}

#contents-table thead tr {
  border-bottom: 1px solid #ccc;
}

#contents-table th {
  padding: 20px 0;
  font-weight: normal;
}
