@charset "UTF-8";
/*-------------------------------------------
Base Setting
-------------------------------------------*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 539px) {
  html {
    font-size: 2.67vw;
  }
}

body {
  font-size: 1.4rem;
  font-family: "Noto Sans JP","メイリオ", Meiryo, sans-serif;
  line-height: 1.5;
  color: #333;
}

.font-sm {
  font-size: 1.4rem;
}

.font-md, .catalog__info-title, .catalog__title, .catalog__content-title h1 ,.font-md, .catalog__info-title, .catalog__title, .catalog__content-title h2 {
  font-size: 1.7rem;
}

.font-lg, .catalog__section h2 {
  font-size: 2.2rem;
}

.font-xl {
  font-size: 2.6rem;
}

a {
  color: #333;
  cursor: pointer;
}
a:link {
  text-decoration: underline;
}
a:visited {
  color: #333;
  text-decoration: underline;
}
a:hover {
  color: #ed6d34;
}

/*-------------------------------------------
Base
-------------------------------------------*/
.header__catalog {
  border-bottom: solid 5px #6eb92b;
  margin-bottom: 20px;
}
.header__catalog__logo {
  width: auto;
  height: 4rem;
  margin: 1rem;
}

.catalog__container {
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .catalog__container {
    max-width: 900px;
  }
}
.catalog__content {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .catalog__content {
    display: flex;
    justify-content: space-between;
    width: 92%;
  }
}
.catalog__content-title {
  width: 90%;
  margin: 0 auto 2rem;
}
@media screen and (min-width: 768px) {
  .catalog__content-title {
    width: 92%;
  }
}
.catalog__content-title h1 {
  color: #fff;
  background-color: #6eb92b;
  padding: 1rem 0.8rem;
  white-space: pre;
}
.catalog__section {
  background-color: #fffcc1;
  padding: 0.5rem 0.5rem 1rem 0.5rem;
  margin-bottom: 40px;
}
.catalog__section_online {
  padding: 1rem ;
}

@media screen and (max-width: 767px) {
  .catalog__section_online.catalog__section {
    margin-bottom: 20px;
  }
  .catalog__section_online.catalog__section + .catalog__section_online.catalog__section {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 768px) {
  .catalog__section {
    width: 49%;
  }
}
.catalog__section h2 {
  border-bottom: solid 3px #ed6d34;
  margin: 1.5rem 2rem 2.5rem;
}
.catalog__column {
  width: 90%;
  margin: 0 auto;
}
.catalog__card {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem 0 rgba(79, 72, 0, 0.3);
  margin-bottom: 4rem;
  padding: 2rem 0 0;
  transition: all 0.5s ease;
}
.catalog__card a {
  text-decoration: none;
}
.catalog__column_online  a{
  text-decoration: none;
  transition: 0.3s ease-in;
}
.catalog__column_online  a:hover {
  opacity: 0.7;
}
.catalog__img {
  width: 90%;
  margin: 10px auto 30px;
  box-shadow: 0 5px 10px 0 rgba(79, 72, 0, 0.3);
  transition: 0.3s ease-in;
}
@media screen and (min-width: 576px) {
  .catalog__img {
    width: 70%;
  }
}
@media screen and (min-width: 768px) {
  .catalog__card a:hover .catalog__img {
    transform: scale(1.1);
  }
}
.catalog__title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #333;
  background: #D7BE6D;
  padding: 1.5rem;
  transition: 0.3s ease-in;
}
.catalog__card a:hover .catalog__title {
  opacity: 0.7;
}
/* .catalog__title::after {
  content: url(../img/icon_pdf.svg);
    display: inline-block;
    width: 2rem;
    vertical-align: middle;
} */
.catalog__column_online .catalog__title::after  {
  content: none;
}
.catalog-size {
  font-size: 1.4rem;
  font-weight: 300;
}
.catalog__info {
  width: 100%;
  background-color: #efefef;
  margin-bottom: 3rem;
  padding: 1rem 1rem 1px 1rem;
}
.catalog__info-title {
  color: #666;
  border-bottom: 0.2rem solid #666;
}
.catalog__info ul {
  margin-left: -2rem;
}
.catalog__info ul li {
  margin-bottom: 1rem;
}

.footer__catalog {
  display: flex;
  justify-content: center;
  border-top: solid 5px #6eb92b;
  align-items: center;
  margin-top: 2rem;
  padding: 2rem 0;
}
.footer__catalog__logo {
  height: 2rem;
  margin-right: 2rem;
}