@charset "Shift-JIS";

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f2f5f7;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1.0s ease-out;
}

#loading-title {
  opacity: 0; /* 最初は透明 */
  transition: opacity 0.8s ease-in-out; /* フェードインのアニメーション設定 */
  font-family: Georgia,游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
}

#loading-title.is-visible {
  opacity: 1;
}

#loading-screen.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.Column_hero {
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .Column_hero {
     margin: 70px auto 10px;
  }
}

.Main_Inner_Pickup a {
  text-decoration: none;
}
@media screen and (max-width: 750px) {
  .Main_Inner_Pickup {
    padding: 0;
  }
}

.Column_Card_Pickup_item {
  width: 100%;
  height: 70vh;
  position: relative;
  background-color: rgba(255, 255, 255, 1);
  box-sizing: content-box;
}
@media screen and (max-width: 750px) {
  .Column_Card_Pickup_item {
    height: 130vw;
  }
}

.Column_Card_Pickup_information {
  width: 100%;
  height: 90%;
  position: relative;
  overflow: hidden;
  top: 5%;
}

.Column_Card_Pickup_link {
  width: 70%;
  margin: 0 auto;
  display: flex;
  background-color: #fff;
  text-decoration: none;
  color: #000;
  height: 100%;
  border: 1px solid #f2f5f7;
}
@media screen and (max-width: 750px) {
  .Column_Card_Pickup_link {
    width: 85%;
    display: block;
  }
}

.Column_Card_Pickup_thumbnail {
  width: 50%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .Column_Card_Pickup_thumbnail {
    width: 100%;
    border-right: none;
    height: auto;
  }
}

.Column_Card_Pickup_thumbnail.thumb_left img{
  object-position: left;
}

.Column_Card_Pickup_thumbnail.thumb_littleleft img{
  object-position: 25%;
}

.Column_Card_Pickup_thumbnail.thumb_littleright img {
  object-position: 75%;
}

.Column_Card_Pickup_thumbnail.thumb_right img {
  object-position: right;
}


.Column_Card_Pickup_thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1.42 / 1;
}

.Column_Card_Pickup_text {
  padding: 3.3em 2em 2em 3em;
  width: 50%;
}
@media screen and (max-width: 750px) {
  .Column_Card_Pickup_text {
    padding: 0.8em;
    width: 100%;
  }
}

.Column_Card_Pickup_meta {
  margin: 0 0 1em;
}

.Column_Card_Pickup_category a {
  display: inline-block;
  text-decoration: none;
  padding: 0.3em 1em;
  border-radius: 50px;
  color: #fff;
  font-size: clamp(10px, 3vw, 18px);
  font-family: "Yu Gothic Pr6N D", "Yu Gothic Medium", YuGothic, Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
}

.-skin-troubles .Column_Card_Pickup_category a {
  background: #AABDCD;
}
.-lifestyle .Column_Card_Pickup_category a {
  background: #79AE92;
}
.-story .Column_Card_Pickup_category a {
  background: #A2733B;
}
.-healthcare .Column_Card_Pickup_category a {
  background: #6a729d;
}

.Column_Card_Pickup_date {
  padding: 0 1em 0 0;
  margin: 0 1em 0;
  font-size: clamp(10px, 3vw, 16px);
  font-family: "Yu Gothic Pr6N D", "Yu Gothic Medium", YuGothic, Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
}
@media screen and (max-width: 750px) {
  .Column_Card_Pickup_date {
    padding: 0 0.7em 0 0;
    margin: 0 0.7em 0;
  }
}

.-skin-troubles .Column_Card_Pickup_date {
  color: #AABDCD;
}
.-lifestyle .Column_Card_Pickup_date {
  color: #79AE92;
}
.-story .Column_Card_Pickup_date {
  color: #A2733B;
}
.-healthcare .Column_Card_Pickup_date {
  color: #6a729d;
}

.Column_Card_Pickup_create_date {
  display: none;
}

.Column_Card_Pickup_title {
  font-size: clamp(14px, 4vw, 30px);
  font-weight: normal;
  line-height: 1.5;
  margin: 0 0 1.3em;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, Georgia, serif;
}
@media screen and (max-width: 750px) {
  .Column_Card_Pickup_title {
    -webkit-line-clamp: 2;
    line-height: 1.3;
    margin: 0 0 0.5em;
  }
}

.Column_Card_Pickup_tag {
  font-size: clamp(11px, 3vw, 14px);
  margin: 0 0 1.7em;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, Georgia, serif;
}
@media screen and (max-width: 750px) {
  .Column_Card_Pickup_tag {
    margin: 0 0 1em;
  }
}

.Column_Card_Pickup_tag a {
  display: inline-block;
  margin: 0.3em 0.3em;
  padding: 0.3em 0.7em;
  color: #5e82a1;
  border: 1px solid #5e82a1;
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.2s;
}

.Column_Card_Pickup_tag a:hover {
  color:#FFFFFF;
  background:#5e82a1;
}

.Column_Card_Pickup_headline {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 3em;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, Georgia, serif;
}
@media screen and (max-width: 750px) {
  .Column_Card_Pickup_headline {
    display: none;
  }
}

.Column_Card_Pickup_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: clamp(12px, 3vw, 16px);
  height: 44px;
  width: 156px;
  border: 1px solid #666;
  text-decoration: none;
  position: relative;
  padding: 0 1em 0 0;
  user-select: none;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, Georgia, serif;
}
@media screen and (max-width: 750px) {
  .Column_Card_Pickup_btn {
    width: 80%;
    margin: 0 auto;
    height: auto;
    padding: 0.8em 0;
  }
}

.Column_Card_Pickup_btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 17px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-45deg);
}
@media screen and (max-width: 750px) {
  .Column_Card_Pickup_btn:after {
    width: 7px;
    height: 7px;
  }
}

.splide__controller {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  z-index:3;
}
.splide__toggle {
  align-items: center;
  background: #AABDCD;
  border-radius: 50%;
  display: inline-flex;
  height: 1.8rem;
  justify-content: center;
  margin-right: .5rem;
  transition: background-color .2s ease;
  width: 1.8rem;
}

.splide__controller .splide__pagination {
  bottom: auto;
  left: auto;
  position: relative;
  transform: none;
  width: auto;
}

.splide__pagination__page.is-active {
  background: #AABDCD;
}

.Main_bgInner {
  position: relative;
  padding: 0 0 75px;
  background: #f2f5f7;
}
.Main_bgInner a {
  text-decoration: none;
}

.Slider {
  position: relative;
}
@media screen and (min-width: 751px) {
  .Slider {
    padding: 55px 0 0;
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .Slider {
    padding: 35px 0 0;
  }
}

.Slider_title {
  font-family: "Yu Gothic Pr6N B", "Yu Gothic Medium", YuGothic, Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #000;
}
@media screen and (min-width: 751px) {
  .Slider_title {
    padding-left: 80px;
  }
}
@media screen and (max-width: 750px) {
  .Slider_title {
    margin: auto;
    width: 81.3333333333vw;
    font-size: 18px;
  }
}

.Slider_link {
  color: #000;
}

.Slider_link::after {
  content: "";
  transform: translate(4px, -3px) rotate(45deg);
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
@media screen and (max-width: 750px) {
  .Slider_link::after {
    transform: translate(4px, -0.2666666667vw) rotate(45deg);
  }
}

.Column_Card {
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .Column_Card {
    padding: 20px 0 25px 20px;
  }
}
@media screen and (max-width: 750px) {
  .Column_Card {
    padding: 15px 0 25px 5.3333333333vw;
  }
}

@media screen and (max-width: 750px) {
  .Column_Card_list {
    position: relative;
  }
}

.Column_Card_item {
  margin: 0 20px 0 0;
  min-width: 330px;
  max-width: 330px;
  background: #fff;
}
@media screen and (max-width: 750px) {
  .Column_Card_item {
    margin: 0 2.6666666667vw 0 0;
    min-width: 77.6vw;
    max-width: 77.6vw;
  }
}

.Column_Card_link {
  position: relative;
  display: block;
  padding: 10px;
  width: 100%;
  min-height: 450px;
}
@media screen and (max-width: 750px) {
  .Column_Card_link {
    min-height: 97.0666666667vw;
  }
}

.Column_Card_thumbnail {
  width: 100%;
  height: 219px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .Column_Card_thumbnail {
    width: 100%;
    height: auto;
  }
}

.Column_Card_item.new .Column_Card_thumbnail:before {
  content: "";
  display: block;
  position: absolute;
  top: -15px;
  left: -15px;
  width: 68px;
  height: 68px;
  background-image: url(/domo/column/common/images/NEW.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 3;
}

.Column_Card_thumbnail img {
  width: 310px;
  height: 219px;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 750px) {
  .Column_Card_thumbnail img {
    width: 100%;
    height: auto;
  }
}

.Column_Card_thumbnail img:hover {
  transform: scale(1.08);
}

.Column_Card_information {
  width: 100%;
  padding: 10px;
}
@media screen and (max-width: 750px) {
  .Column_Card_information {
    padding: 10px 5px;
  }
}

.Column_Card_title {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 10px 0 0;
  width: 100%;
  overflow: hidden;
  line-height: 1.5;
  text-overflow: ellipsis;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, Georgia, serif;
  font-size: 20px;
  color: #000;
}
@media screen and (max-width: 750px) {
  .Column_Card_title {
    margin: 5px 0 0;
    font-size: 4.5333333333vw;
  }
}

.Column_Card_meta {
  position: absolute;
  bottom: 20px;
}
@media screen and (max-width: 750px) {
  .Column_Card_meta {
    bottom: 5.3333333333vw;
  }
}

.Column_Card_tag {
  display: inline-block;
  padding: 6px 13px;
  font-family: "Yu Gothic Pr6N D", "Yu Gothic Medium", YuGothic, Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 12px;
  color: #fff;
  border-radius: 50vh;
}
@media screen and (max-width: 750px) {
  .Column_Card_tag {
    font-size: 2.9333333333vw;
  }
}

.Column_Card_meta.-skin-troubles .Column_Card_tag {
  background: #AABDCD;
}
.Column_Card_meta.-lifestyle .Column_Card_tag {
  background: #79AE92;
}
.Column_Card_meta.-story .Column_Card_tag {
  background: #A2733B;
}
.Column_Card_meta.-healthcare .Column_Card_tag {
  background: #6a729d;
}

.Column_Card_date {
  padding: 6px 13px;
  font-family: "DM Sans", "Yu Gothic Pr6N R", "Yu Gothic Medium", YuGothic, Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 12px;
}
@media screen and (max-width: 750px) {
  .Column_Card_date {
    font-size: 3.2vw;
  }
}

.Column_Card_meta.-skin-troubles .Column_Card_date {
  color: #AABDCD;
}
.Column_Card_meta.-lifestyle .Column_Card_date {
  color: #79AE92;
}
.Column_Card_meta.-story .Column_Card_date {
  color: #A2733B;
}
.Column_Card_meta.-healthcare .Column_Card_date {
  color: #6a729d;
}

.Column_Card_entry_date {
  display: none;
}

.Breadcrumb_top {
  max-width: 1090px;
  width: 100%;
  margin: 1em auto 3em;
}
@media screen and (max-width: 750px) {
  .Breadcrumb_top {
    padding: 0 20px;
  }
}

.hidden {
  display: none;
}

