@charset "UTF-8";
/** @format */
/*-------------------------------------------
Base Setting
-------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  font-family: "メイリオ", 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 h2 {
  font-size: 1.8rem;
}

.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: 40px;
  margin: 10px;
}

.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 20px;
}

@media screen and (min-width: 768px) {
  .catalog__content-title {
    width: 92%;
  }
}
.catalog__content-title h2 {
  color: #fff;
  background-color: #6eb92b;
  padding: 10px;
}

.catalog__section {
  background-color: #fffcc1;
  padding: 5px 5px 10px 5px;
  margin-bottom: 40px;
}
.catalog__section + .catalog__section {
  background-color: #ffe4c1;
}

@media screen and (min-width: 768px) {
  .catalog__section {
    width: 49%;
  }
}
.catalog__section h3 {
  border-bottom: solid 3px #ed6d34;
  margin: 15px 20px 25px;
}

.area h3 {
  border-bottom: solid 3px #ed6d34;
  margin: 15px 0 25px;
}

.catalog__column {
  width: 90%;
  margin: 0 auto;
}

.catalog__card {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 5px 10px 0 rgba(79, 72, 0, 0.3);
  margin-bottom: 40px;
  padding: 20px 0px 0;
  transition: all 0.5s ease;
}

.catalog__card a {
  text-decoration: none;
}

.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__img:hover {
    transform: scale(1.1);
  }
}
.catalog__title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #333;
  padding: 15px;
  transition: 0.3s ease-in;
}

.catalog__title::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  transform-origin: 50% 40%;
  margin-left: 1rem;
  vertical-align: middle;
}

.catalog-size {
  font-size: 1.4rem;
  font-weight: 300;
}

.catalog__info {
  width: 100%;
  background-color: #efefef;
  margin-bottom: 30px;
  padding: 10px 10px 1px 10px;
}

.catalog__info-title {
  color: #666;
  border-bottom: 2px solid #666;
}

.catalog__info ul {
  margin-left: -20px;
}

.catalog__info ul li {
  margin-bottom: 1rem;
}

.osechi {
  background-color: #8c343c;
  color: #fff;
}

.xmas {
  background-color: #d0b843;
}

.osechi:hover,
.xmas:hover {
  opacity: 0.8;
}

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

.footer__catalog__logo {
  height: 20px;
  margin-right: 20px;
}


.button_content {
  width: 92%;
  margin: 0 auto;
  margin-bottom: 40px;
}
.button_content .areas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .button_content .areas {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.button_content .areas .area {
  padding: 5%;
  background-color: #fffcc1;
}
@media screen and (max-width: 767px) {
  .button_content .areas .area {
    margin-bottom: 20px;
  }
}
.button_content .areas .area + .area {
  background-color: #ffe4c1;
}
.button_content .areas .area .buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .button_content .areas .area .buttons {
    flex-direction: column;
  }
  .button_content .areas .area .buttons + .buttons {
    margin-top: 10px;
  }
}
.button_content .areas .area .buttons .button {
  width: 100%;
  margin-bottom: 0;
  max-width: calc(50% - 5px);
}
@media screen and (max-width: 767px) {
  .button_content .areas .area .buttons .button {
    margin-bottom: 0;
    max-width: 100%;
  }
}
.button_content .areas .area .buttons .button a {
  background-color: #d0b843;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #333;
  padding: 15px 0;
  transition: 0.3s ease-in;
  text-decoration: none;
  border-radius: 10px;
}
.button_content .areas .area .buttons .button a::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  transform-origin: 50% 40%;
  margin-left: 1rem;
  vertical-align: middle;
}
.button_content .areas .area .buttons .button a:hover {
  opacity: 0.8;
}
.button_content .areas .area .buttons.buttons_osechi {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .button_content .areas .area .buttons.buttons_osechi .button {
    margin-bottom: 0;
  }
}
.button_content .areas .area .buttons.buttons_osechi .button a {
  background-color: #8c343c;
  color: #fff;
}/*# sourceMappingURL=style.css.map */