@charset "UTF-8";
/* =====================
	トップページ
 ======================= */
/** -------------------- MV -------------------- **/
.p-index_mv {
  margin: 10px 0 40px;
}
.p-index_mvSlider .fs-pt-carousel__slide {
  margin: 0 8px;
  display: block !important;
}
.p-index_mvSlider .fs-pt-carousel__slide img {
  width: 75dvw;
  max-width: 650px;
  display: block;
}
.p-index_mvSlider .slick-dots {
  padding: 0;
  margin: 8px 0 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 2px;
}
.p-index_mvSlider .slick-dots li {
  width: 16px;
  height: 12px;
  padding: 2px 4px;
  margin: 0;
}
.p-index_mvSlider .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  background: #CCD2E2;
  border-radius: 50%;
}
.p-index_mvSlider .slick-dots li button::before {
  display: none;
}
.p-index_mvSlider .slick-dots li button:hover {
  opacity: 1;
}
.p-index_mvSlider .slick-dots li.slick-active button {
  background: var(--c_text);
}
.p-index_mvSearchForm {
  background: var(--c_blue);
  padding: 20px;
  position: relative;
}
.p-index_mvSearchFormInput {
  width: 100%;
  height: 40px;
  background: var(--c_wht);
  border: 0;
  border-radius: 100px;
  padding: 8px 44px 4px 15px;
}
.p-index_mvSearchFormInput::-webkit-input-placeholder {
  font-size: 1.3rem;
}
.p-index_mvSearchFormBtn {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 44px;
  height: 40px;
  appearance: none;
  background: none;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-index_mvSearchFormBtn img {
  width: 24px;
}
.p-index_mvSearchKeywords {
  padding: 15px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--c_blue);
}
.p-index_mvSearchKeywords > li + li {
  margin-top: 0;
}
.p-index_mvSearchKeywords a {
  color: var(--c_blue);
}
.p-index_mvSearchKeywords a::before {
  content: "#";
}
.p-index_mvPr {
  background: #F6F7FA;
  padding: 15px 20px 20px;
}
.p-index_mvPrList {
  display: flex;
  justify-content: center;
  gap: 0 10px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
}
.p-index_mvPrListItem {
  flex: 0 1 100px;
}
.p-index_mvPrList img {
  width: 32px;
  display: block;
  margin: 0 auto;
}

/** -------------------- カテゴリー -------------------- **/
.p-index_categoryHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 40px;
  padding-left: 80px;
  margin-bottom: 20px;
}
.p-index_categoryHeader .p-common_heading01 {
  margin-bottom: 0;
}
.p-index_categoryHeaderHint {
  flex: 0 1 60px;
}
@media (min-width: 660px) {
  .p-index_categoryHeaderHint {
    display: none;
  }
}
.p-index_categoryScroll {
  overflow-y: hidden;
  overflow-x: auto;
  margin: 0 -20px;
  padding: 0 20px;
}
.p-index_categoryScroll::-webkit-scrollbar {
  height: 4px;
}
.p-index_categoryScroll::-webkit-scrollbar-track {
  background-color: var(--c_wht);
}
.p-index_categoryScroll::-webkit-scrollbar-thumb {
  background-color: #CCD2E2;
}
.p-index_categoryList {
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(7, 80px);
  gap: 10px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2;
}
.p-index_categoryList img {
  border-radius: 15px;
  display: block;
  margin: 0 auto 10px;
}
@media (min-width: 660px) {
  .p-index_categoryList {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    width: 100%;
  }
}

/** -------------------- おすすめ特集 -------------------- **/
.p-index_featureList {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(auto, 390px));
  gap: 10px;
  justify-content: center;
}
.p-index_featureList > li {
  width: 100%;
}
.p-index_featureList a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 10px;
  border: 1px solid var(--c_border);
  border-radius: 12px;
  overflow: hidden;
  padding-left: 30px;
  font-size: 1.5rem;
  font-weight: 700;
}
.p-index_featureList a img {
  width: 78px;
  flex-shrink: 0;
  margin-left: auto;
}

/** -------------------- お知らせ -------------------- **/
.p-index_newsList .item {
  border-bottom: 1px solid var(--c_border);
  display: grid;
  grid-template-columns: 100px 1fr;
}
.p-index_newsList .item:nth-child(n+3) {
  display: none;
}
.p-index_newsList .link {
  grid-column: span 2;
  display: grid;
  grid-template-columns: subgrid;
  position: relative;
}
.p-index_newsList .link::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent var(--c_blue);
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.p-index_newsList .date {
  background: #F7F8FB;
  font-size: 1.3rem;
  color: var(--c_blue);
  padding: 15px 10px;
  display: flex;
  align-items: center;
}
.p-index_newsList .title {
  padding: 15px 20px 15px 10px;
}

/** -------------------- コラム -------------------- **/
.p-index_columnScroll {
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 -20px;
  padding: 0 20px 20px;
}
.p-index_columnScroll::-webkit-scrollbar {
  height: 4px;
}
.p-index_columnScroll::-webkit-scrollbar-track {
  background-color: var(--c_wht);
}
.p-index_columnScroll::-webkit-scrollbar-thumb {
  background-color: #CCD2E2;
}
.p-index_columnList {
  display: flex;
  column-gap: 20px;
  width: fit-content;
  margin: 0 auto;
}
.p-index_columnList .item {
  flex: 0 0 168px;
  font-weight: 700;
  color: var(--c_blue);
}
.p-index_columnList .item:nth-child(n+4) {
  display: none !important;
}
.p-index_columnList .link {
  font-weight: 700;
  color: var(--c_blue);
}
.p-index_columnList .thumb {
  margin-bottom: 10px;
}
.p-index_columnList .thumb img {
  border: 1px solid var(--c_border);
  border-radius: 12px;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.p-index_columnList .date {
  font-size: 1rem;
  margin-bottom: 5px;
}
.p-index_columnList .title {
  font-size: 1.2rem;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.p-index_columnMore {
  margin-top: 40px;
}

/** -------------------- DANDORU8とは -------------------- **/
.p-index_aboutHeading {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c_blue);
}
.p-index_aboutHeading img {
  width: 248px;
  margin-right: 6px;
  vertical-align: bottom;
}
.p-index_aboutLead {
  text-align: center;
  line-height: 1.8;
}
.p-index_aboutCatchcopy {
  color: #1B2C58;
  font-weight: 700;
}
.p-index_aboutMore {
  margin-top: 40px;
}

/** -------------------- バナー -------------------- **/
.p-index_bnrList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(auto, 162px));
  gap: 10px;
  justify-content: center;
}
@media (max-width: 374px) {
  .p-index_bnrList {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-index_bnrList .link {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: var(--c_bg);
  color: var(--c_blue);
  text-align: center;
  border-radius: 30px;
  overflow: hidden;
  line-height: normal;
  font-weight: 700;
}
.p-index_bnrList .link .text, .p-index_bnrList .link .more {
  display: none;
}
.p-index_bnrList .link .title {
  display: block;
  padding: 11px 10px;
  position: relative;
  order: 2;
}
.p-index_bnrList .link .title::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent currentColor;
  position: absolute;
  right: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* スマホのみ
  ------------------------ */
/* PC
  ------------------------ */
@media (min-width: 1200px) {
  /** -------------------- MV -------------------- **/
  .p-index_mv {
    margin: 0 0 80px;
    display: flex;
    flex-direction: column;
  }
  .p-index_mvSlider .fs-pt-carousel__slide {
    margin: 0 15px;
  }
  .p-index_mvSlider .slick-dots {
    margin: 28px 0 0;
    gap: 7px;
  }
  .p-index_mvSlider .slick-dots li {
    width: 18px;
    height: 18px;
    padding: 4px;
  }
  .p-index_mvSearch {
    order: -1;
  }
  .p-index_mvSearchKeywords {
    padding: 20px;
    max-width: 1240px;
    margin: 0 auto;
    font-size: 1.5rem;
    gap: 16px;
  }
  /** -------------------- カテゴリー -------------------- **/
  .p-index_category + .l-section {
    margin-top: 0;
  }
  /** -------------------- おすすめ特集 -------------------- **/
  .p-index_featureList {
    grid-template-columns: repeat(3, minmax(auto, 390px));
    gap: 30px 40px;
  }
  /** -------------------- お知らせ -------------------- **/
  .p-index_newsList .item {
    grid-template-columns: 160px 1fr;
  }
  .p-index_newsList .link::after {
    right: 20px;
  }
  .p-index_newsList .date {
    font-size: 1.5rem;
    padding: 20px;
    background: none;
  }
  .p-index_newsList .title {
    letter-spacing: 0.05em;
    padding: 20px 40px 20px 20px;
  }
  /** -------------------- コラム -------------------- **/
  .p-index_columnScroll {
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  .p-index_columnList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
  }
  .p-index_columnList .thumb {
    margin-bottom: 15px;
  }
  .p-index_columnList .thumb img {
    border-radius: 30px;
  }
  .p-index_columnList .date {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .p-index_columnList .title {
    font-size: 1.5rem;
  }
  .p-index_columnMore {
    margin-top: 60px;
  }
  /** -------------------- DANDORU8とは -------------------- **/
  .p-index_aboutHeading {
    margin-bottom: 40px;
    font-size: 2.8rem;
  }
  .p-index_aboutHeading img {
    width: 400px;
    margin-right: 10px;
  }
  .p-index_aboutCatchcopy {
    font-size: 1.8rem;
  }
  .p-index_aboutList {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    column-gap: 30px;
  }
  .p-index_aboutListItem {
    flex: 0 1 300px;
    background: #F7F8FB;
    border-radius: 30px;
    padding: 30px;
    line-height: 1.8;
  }
  .p-index_aboutListItemHeading {
    text-align: center;
    font-weight: 700;
    color: var(--c_blue);
    margin-bottom: 10px;
  }
  /** -------------------- バナー -------------------- **/
  .p-index_bnrList {
    display: grid;
    grid-template-columns: repeat(2, minmax(auto, 610px));
    justify-content: center;
    gap: 30px;
  }
  .p-index_bnrList .link {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    min-height: 240px;
    color: var(--c_text);
  }
  .p-index_bnrList .link .image {
    flex: 0 0 50%;
    height: 100%;
  }
  .p-index_bnrList .link .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .p-index_bnrList .link .txtbox {
    margin: 0 auto;
    padding: 20px;
  }
  .p-index_bnrList .link .title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--c_blue);
    order: initial;
    margin-bottom: 20px;
    padding: 0;
  }
  .p-index_bnrList .link .title::after {
    display: none;
  }
  .p-index_bnrList .link .title .sub {
    font-size: 1.5rem;
    line-height: 1;
  }
  .p-index_bnrList .link .text {
    display: block;
  }
  .p-index_bnrList .link .more {
    display: block;
  }
  .p-index_bnrList .link .more::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 6px;
    border-color: transparent transparent transparent currentColor;
    display: inline-block;
    margin-left: 8px;
  }
}