@charset "utf-8";
/* ヘッダータイトル*/
.head-title{
    font-size: 0.8em;
}

main{
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* インタビューリクエストのボタン */
.gradient-button {
  display: block;
  margin: 0 auto;
  padding: 10px 24px;
  font-weight: bold;
  color: #000;
  background: linear-gradient(90deg, #ffd89b, #ffb2f3);
  border: none;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s ease-in-out;
}

.gradient-button:hover {
  opacity: 0.85;
}

.footer-main {
  z-index: 10001 !important; /* footerを前面に表示 */
}



/* メイン部 */
.main-contents{
    margin-top:10px;
}

/* TOP画像 */
.top-img{
  text-align: center;
}
.top-img img{
  width: 100%;
/*  max-width: 400px;*/
}
/* 四角いボタン風 */
.search-flex{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

.square-button{  
  border-radius: 15px;
  height: 70px;
  width: 30%;
  max-width: 200px;
  border: none;
  box-shadow: 0 0 0 1px #383838;
}
.square-button a {
  display: flex;
  padding-bottom: 5px;
  flex-direction: column; /* アイテムを縦に並べる */
  align-items: center;    /* 水平方向中央揃え */
  justify-content: center; /* 垂直方向中央揃え */
  text-decoration: none;
  color: #000;
  width: 100%;
  height: 100%;
}
.square-button i.bi-search {
  font-size: 2em;
/*  margin-bottom: 5px;*/
}
.square-button span {
  text-align: center;
  font-size: 0.7em;
  font-weight: bold;
}

/* メイン部 */
main{
  margin-bottom: 80px;
}
.section {
  padding-left: 16px;
  width: 70%;
  margin: 0 auto;
}


.section-title {
  font-weight: bold;
  font-size: 0.8em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 5px;
  padding-right: 16px;
}
.section-title a {
  font-size: 0.8em;
  text-decoration: none;
  color: #007bff;
  font-weight: normal;
}


/********************************
* カルーセル
**********************************/
#report-spot-list-slider,
#report-company-list-slider {
  overflow: visible; /* 途中まで見せたいので必要 */
}

#report-spot-list-slider .slick-track,
#report-company-list-slider .slick-track{
  display: flex;
  flex-wrap: nowrap;  /* スライダーが横幅をはみ出さないように */
}
#report-spot-list-slider .slick-track .slick-slide,
#report-company-list-slider .slick-track .slick-slide{ 
/*  border: 1px solid #ddd;*/
  margin: 0px 3px;
}


#report-spot-list-slider .slick-list,
#report-company-list .slick-list {
  overflow: hidden;
}

.report-slider-content{
  padding:0 !important;
}
.slider {
  width: 100%;
}
.slick-slide img {
  width: 100%;
}

/* コンテンツの幅制限（レスポンシブ対応） */
.report-content{
  max-width: 100%;
  overflow-x: hidden;
}


/* 各イベントのカード */
.report-box {
  display: inline-block;
/*  width: 33.33vw !important;*//* ここで「1スライド」の幅を定義 */
/*  max-width: 250px;*/
}

.image-box, .report-box {
  font-size: 1em;
}

.image-box a, .report-box a {
  text-decoration: none;
  color: #000;
}
.report-box img {
  width: 100%;
/*  height: 55px !important;*/
  display: block;
}
/* 画像無し */
.report-box a .no-image{
  height: 55px !important;
  display: inline-block;
  text-align: center;
  background-color: #f0f0f0;
  height: auto; /* または固定値 */
  width: 100%;
  box-sizing: border-box;
  font-size: 1.5em;
  color: #555;  
}

/* 記事の枠 */
.report-info {
  font-size: 14px;
  height: 20px;
  text-align: center;
}

/* 記事の詳細 */
.report-description {
/*  display: inline-block;*/
  margin-right: 3px;
  padding-left: 2px;
  color:#333;
  width: 70%;
  font-size: 0.7em;
}

/* ページ下部固定が表示されるように設定 */
.page-end{
  margin-bottom: 100px !important;
}

@media screen and (max-width: 767px) {
  .report-box {
/*    width: 30vw !important;*/
  }
  .section {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .report-box {
/*    width: 45vw !important;*/
  }
}
@media screen and (min-width: 1025px) {
  .section {
    padding-left: 16px;
    width: 90%;
    margin: 0 auto;
  }
}
/*@media screen and (max-width:1600px) {*/
@media screen and (min-width: 576px) {
  .section {
    padding-left: 16px;
    width: 90%;
    margin: 0 auto;
  }
}