@charset "utf-8";
* {
  font-style: normal;
}
html {
  font-style: normal;
  text-align: left;
  line-height: 1.6;
}
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  color: #333;
}
body * {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}
table {
  font-size: 1.4rem;
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset,
img {
  border: 0;
}
ol,
ul {
  list-style: none;
}
th {
  text-align: left;
}
th {
  font-weight: 100;
}
a {
  color: #333333;
  text-decoration: none;
}
/* 共通 */
html {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
.wrap {
  width: 100%;
  padding: 60px 0 30px 0; 
}
.contents {
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 2rem;
  color: rgb(26 26 26/var(--tw-text-opacity,1));
  display: block;
}

.contents h1{
  border-bottom: solid 3px rgb(255, 228, 188);
  position: relative;
  font-size: 30px;
  font-weight: bold;
  margin: 0 0 40px 0;
  padding: 0 0 5px 0;
  text-align: center;
}

.contents h1 span{
  display: block;
  font-size: 23px;
}

.contents h1:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #f68f11;
  bottom: -3px;
  width: 20%;
}

.header-container img {
  height: 41px;
  width: auto !important;
  object-fit: contain;
}

.card {
  position: relative;
  margin: 0 3.1%;
}
.card:not(:last-child) {
  margin-bottom: 4.68%;
}
.card:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #005baa transparent;
  content: "";
  position: absolute;
  bottom: 2px;
  right: 2px;
}
.card a:hover {
  opacity: .7;
}


/* パンくず */
#itemDetailMap{
  max-width: 1340px;
  margin: 0 auto;
  padding: 5px 10px;
  font-size: 11px;  
  color: #7A7A7A;
}

#itemDetailMap ul{
  overflow: hidden;
} 

#itemDetailMap ul li{
  float: left;
  margin: 0 2.5px 0 0;
}

#itemDetailMap a:hover{
  text-decoration: underline;
}/* Landing Pages List Styles */
.hidden {
  display: none;
}

#loading {
  text-align: center;
  padding: 40px;
  color: #808080;
}

.filter-bar {
  margin: 40px 0;
  text-align: center;
}

.filter-btn {
  margin: 0 10px;
  padding: 2.5px 25px;
  min-width: 120px;
  border: 1.5px solid #F68F11;
  background: white;
  color: #F68F11;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
  font-family: 'Noto Sans', sans-serif;
  border-radius: 15px;
}

.filter-btn:hover {
  background: #FFF5F0;
}

.filter-btn.active {
  border-color: #F68F11;
  background: #F68F11;
  color: white;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.landing-card {
  background: white;
  overflow: hidden;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-image {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
  overflow: hidden;
  background: #F6F6F6;
}

.card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-content {
  padding-top: 16px;
  padding-bottom: 16px;
}

.card-categories-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 5px;
}

.card-category {
  display: inline-block;
  padding: 4px 12px;
  min-width: 85px;
  text-align: center;
  font-size: 12px;
  font-weight: normal;
}

.card-category.column {
  background: #3C64B1;
  color: white;
}

.card-category.spot {
  background: #65C294;
  color: white;
}

.card-category.campaign {
  background: #FFCC4E;
  color: white;
}

.card-category.services {
  background: #FBBD8E;
  color: white;
}

.card-category.other {
  background: #b1b1b1;
  color: white;
}

.card-category.default {
  background: #646464;
  color: #333333;
}

.card-category.new {
  background: #FF0000;
  color: white;
}

.card-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px 0;
  line-height: 1.5;
  color: #1A1A1A;
}

.card-description {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #999999;
  font-size: 16px;
}

/* Pagination Styles */
.pagination-container {
  margin: 40px 0;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #E0E0E0;
  background: white;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled) {
  background: #F68F11;
  color: white;
  border-color: #F68F11;
}

.pagination-btn.active {
  background: #F68F11;
  color: white;
  border-color: #F68F11;
  font-weight: bold;
}

.pagination-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pagination-dots {
  padding: 0 4px;
  color: #999;
  font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }
  
  .filter-btn {
    width: calc(35% - 10px);
    min-width: unset;
    margin: 5px 10px;
    padding: 5px 10px;
    font-size: 12px;
  }
  
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .card-content {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  
  .card-title {
    font-size: 14px;
  }
  
  .card-description {
    font-size: 13px;
  }
    
  .card-category {
    min-width: 84px;
    font-size: 12px;
    font-weight: normal;
    padding: 2.5px 10px;
  }

  .pagination-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    font-size: 13px;
  }
  
  .pagination {
    gap: 4px;
  }
}

.mv {
  position: relative;
  width: 100%;
  margin: 0px auto 50px auto;
}
.mv-txt {
  position: absolute;
  top: 45%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin: 0 auto;
  padding: 0;
  display: inline-block;
  width: 100%;
  text-shadow: 2px 2px 4px #f3f3ea;
}
.mv-txt2 {
  position: absolute;
  top: 30%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 35px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin: 0 auto;
  padding: 0;
  display: inline-block;
  width: 100%;
  text-shadow: 2px 2px 4px #f3f3ea;
}
.txt-info {
  margin: 15px 0 50px 0;
  font-size: 16px;
}

.mv-txt3 {
  position: relative;
  width: 100%;
  margin: 0 auto 20px auto;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.pc-center {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  .contents h1{
    font-size: 20px;
  }

  .contents h1 span{
    font-size: 16px;
  }


  .header-container {
    padding: 0.75rem 1rem !important;
  }
  .header-container img {
    height: auto;
    width: 2.4rem !important;
    object-fit: contain;
  }
  .mv {
    width: 93%;
    height: auto;
    margin: 10px auto;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 100%;
  }
  .mv-txt {
    font-size: 12px;
  }
  .mv-txt2 {
    font-size: 18px;
  }
  .mv-txt3 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 20px auto;
  }
  .txt-info {
    margin: 15px 3.1% 0 3.1%;
    font-size: 14px;
  }
  .pc-center {
    text-align: center;
  }
  .pc-view {
    display: none !important;
  }
  .contents {
    font-size: 13px
  }
}

@media screen and (max-width: 767px) {
 .wrap{
  padding-top: 5px;
 }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .wrap {
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .contents {
    max-width: 1000px;
    margin: 0 auto 0 auto;
    padding: 0 0 4rem 0;
    box-sizing: border-box;
    font-size: 1.2rem;
  }
  .contents a:hover {
    opacity: .7;
  }
}