@charset "UTF-8";

.cmsDokoiko_modal,
.cmsDokoiko_modal * {
  box-sizing: border-box;
}
.cmsDokoiko_modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0,0,0,0.5);
  /* フェード時間はここで調整 */
  --cmsDokoiko_fade_duration: 300ms;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--cmsDokoiko_fade_duration) ease, visibility var(--cmsDokoiko_fade_duration) ease;
  display: block;
}
.cmsDokoiko_modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.cmsDokoiko_modal-content {
  --cmsDokoiko_modalheaderHeight: 60px;
  background: #fff;
  width: 840px;
  max-width: 90%;
  /* height: 480px; */
  height: auto;
  max-height: 80vh;
  border-radius: 20px;
  padding: 16px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: auto;
  opacity: 0;
  transition: opacity var(--cmsDokoiko_fade_duration) ease, transform var(--cmsDokoiko_fade_duration) ease;
  will-change: opacity, transform;
}
.cmsDokoiko_modal.active .cmsDokoiko_modal-content {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cmsDokoiko_modal-header {
  display: flex;
  align-items: center;
  height: var(--cmsDokoiko_modalheaderHeight);
}

.cmsDokoiko_modal-title{
  font-size: 28px;
  font-weight: bold;
  color: #482c16;
  display: flex;
  align-items: center;
  transform: translate(0px, -6px);
}

.cmsDokoiko_modal-title::before {
  content: '';
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.4em;
  height: 1.4em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 0.5em;
}

.cmsDokoiko_modal-cards {
  position: relative;
  height: calc(100% - var(--cmsDokoiko_modalheaderHeight) );
  overflow: auto;
}

.cmsDokoiko_modal-cardList {
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:8px;
}
/* カード共通 */
.cmsDokoiko_card {
  inset: 0;
  height: 100%;
  background-color: rgba(255,255,255,0.7);
  border-radius: 10px;
}
.cmsDokoiko_link {
  display: flex;
  gap: 10px;
  padding: 10px;
  color: #333;
  inset: 0;
  height: 100%;
  text-decoration: none;
}
.cmsDokoiko_link:hover {
  opacity: .7;
  text-decoration: none;
}
.cmsDokoiko_icon {
  width: 46px;
  height: 46px;
  padding: 4px;
  flex-shrink: 0;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #9f9f9f;
}
.cmsDokoiko_iconImg {
  width: 100%;
  height: auto;
}


.cmsDokoiko_info {
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cmsDokoiko_circle {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.2;
  color: #482c16;
}
.cmsDokoiko_meta {
  padding: 0;
  margin: 0;
}
.cmsDokoiko_meta li {
  font-size: 12px;
  color: #999;
  margin: 0;
  padding: 0;
}
.cmsDokoiko_meta li:empty {
  display: none;
}

/* クローズボタン */
.cmsDokoiko_modal-close {
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  line-height: 1;
  z-index: 3;
  border: none;
  padding: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
}
.cmsDokoiko_modal-close:before,
.cmsDokoiko_modal-close:after {
  content: "";
  position: absolute;
  display: block;
  width: 3.5px;
  height: 24px;
  background: #482c16;
}
.cmsDokoiko_modal-close:before { transform: rotate(45deg); }
.cmsDokoiko_modal-close:after  { transform: rotate(-45deg); }
.cmsDokoiko_modal-close:hover {
  opacity: 0.7;
}


/* data-display-type="sp" */
.cmsDokoiko[data-display-type="sp"] .cmsDokoiko_modal-content {
  --cmsDokoiko_modalheaderHeight: 40px;
  height: auto;
  max-width: 90vw;
  max-height: min(85vh, 640px);
  border-radius: 10px;
  padding: 8px;
}
.cmsDokoiko[data-display-type="sp"] .cmsDokoiko_modal-title{
  font-size: 18px;
}
.cmsDokoiko[data-display-type="sp"] .cmsDokoiko_modal-cardList {
  grid-template-columns:1fr 1fr;
  gap:5px;
}
.cmsDokoiko[data-display-type="sp"] .cmsDokoiko_card{
  border-radius: 6px;
}
.cmsDokoiko[data-display-type="sp"] .cmsDokoiko_link {
  gap: 6px;
  padding: 6px;
}
.cmsDokoiko[data-display-type="sp"] .cmsDokoiko_icon{
  width: 30px;
  height: 30px;
  padding: 3px;
  border-radius: 6px;
}
.cmsDokoiko[data-display-type="sp"] .cmsDokoiko_info {
  gap: 5px;
}
.cmsDokoiko[data-display-type="sp"] .cmsDokoiko_circle{
  font-size: 12px;
}
.cmsDokoiko[data-display-type="sp"] .cmsDokoiko_meta li {
  font-size: 10px;
}
.cmsDokoiko[data-display-type="sp"] .cmsDokoiko_modal-close{
  width: 24px;
  height: 24px;
}
.cmsDokoiko[data-display-type="sp"] .cmsDokoiko_modal-close:before,
.cmsDokoiko[data-display-type="sp"] .cmsDokoiko_modal-close:after {
  width: 2.4px;
  height: 16px;
}
