@charset "UTF-8";
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 変数の定義
--------------------------------------------------*/
/* ホバーをPCでのみ有効
--------------------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 色の定義
--------------------------------------------------*/
/* フォントの定義
--------------------------------------------------*/
html,
body,
ul,
ol,
dl,
li,
dt,
dd,
a,
p,
div,
img,
svg,
table,
tr,
th,
td,
figure {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #001A24;
}

body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
img,
svg,
a,
table,
tr,
th,
td,
figure {
  font-size: 1.6rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 700;
  color: #001A24;
}

/* ポスターダウンロード
--------------------------------------------------*/
/* ポスターダウンロード
--------------------------------------------------*/
main {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  main {
    margin-bottom: 60px;
  }
}

#download {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  #download {
    margin-top: 60px;
  }
}
@media screen and (max-width: 449px) {
  #download {
    margin-top: 40px;
  }
}
#download .wrap_download .intro_text {
  border: solid 1px #00AEEF;
  margin-bottom: 40px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  #download .wrap_download .intro_text {
    margin-bottom: 30px;
  }
}
#download .wrap_download .intro_text p {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  #download .wrap_download .intro_text p {
    font-size: 1.6rem;
  }
}
#download .wrap_download .poster_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  align-items: stretch;
}
@media screen and (max-width: 999px) {
  #download .wrap_download .poster_list {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  #download .wrap_download .poster_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
#download .wrap_download .poster_list li {
  padding: 20px;
  border: solid 1px #EBECED;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #download .wrap_download .poster_list li {
    padding: 15px;
  }
}
#download .wrap_download .poster_list li .top {
  margin-bottom: 20px;
}
#download .wrap_download .poster_list li .top .poster_img {
  height: 300px;
  padding: 10px 0;
  background-color: #E5F5FB;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 999px) {
  #download .wrap_download .poster_list li .top .poster_img {
    height: 240px;
  }
}
@media screen and (max-width: 768px) {
  #download .wrap_download .poster_list li .top .poster_img {
    height: 200px;
  }
}
#download .wrap_download .poster_list li .top .poster_img img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#download .wrap_download .poster_list li .top .name {
  font-size: 2.2rem;
  font-weight: 500;
  padding-left: 16px;
  border-left: solid 1px #00AEEF;
}
@media screen and (max-width: 768px) {
  #download .wrap_download .poster_list li .top .name {
    font-size: 1.8rem;
  }
}
#download .wrap_download .poster_list li .dl_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #00AEEF;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  transition-duration: 0.3s;
}
@media screen and (max-width: 768px) {
  #download .wrap_download .poster_list li .dl_btn {
    font-size: 1.6rem;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
#download .wrap_download .poster_list li .dl_btn img {
  width: 22px;
}
@media screen and (max-width: 768px) {
  #download .wrap_download .poster_list li .dl_btn img {
    width: 20px;
  }
}
@media (hover: hover) {
  #download .wrap_download .poster_list li .dl_btn:hover {
    opacity: 0.8;
  }
}