@charset "utf-8";
/* CSS Document */ :root {
  --color-main: #E56C21;
  --color-sub: #231815;
  --color-bg-light: #E7C297;
  --color-bg-gray: #CCCCCC;
  --color-white: #ffffff;
  --color-black: #333333;
  /* Fonts */
  --font-main: "Noto Sans JP", sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-deco: 'Cinzel', serif;
  /* Sizes */
  --header-height: 60px;
  --container-max: 1024px;
}
a {
  background-color: transparent;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: var(--font-main);
}
a {
  text-decoration: none;
  color: var(--color-sub);
  background: transparent;
}

#manufacturer {
  background-size: cover;
  height: auto;
  width: 100%;
  background-image: url("../img/manufacturer-bk.png");
  background-repeat: no-repeat;
}


.manufacturer-main {
  width: 100%;
  height: auto;
  min-height: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}
.manufacturer-area {
  text-align: center;
  height: auto;
}
.manufacturer-main h1 {
  font-family: var(--font-main);
  font-size: 25px;
  font-weight: 900;
  color: #000;
  display: inline-block;
  margin: 220px 0 0 0;
  padding-bottom: 0px;
  position: relative;
  border-bottom: solid 2px;
  width: 226px;
  text-align: center;
}
.manufacturer-main h2 {
font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 500;
  color: #000;
  margin-top: 5px;
}
.manufacturer-main h3 {
font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-main);
  margin-top: 86px;
}
.manufacturer-main dl {
  margin: 25px 0;
}
.manufacturer-main dl dt {
  font-family: var(--font-main);
  color: var(--color-sub);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  line-height: 250%;
}
.manufacturer-main dl dd {
  font-family: var(--font-main);
  color: var(--color-sub);
  font-size: 16px;
  text-align: center;
  line-height: 1.75;
}
.manufacturer-main .sp-only {
  display: none;
}


/* pickup*/
.pickup {
  width: 100%;
  height: 100%;
  background-color: rgba(231, 194, 151, 0.6);
  margin: 0 auto;
  padding: 44px 0 0 0;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
.pickup h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  border-bottom: 1px solid var(--color-sub);
  display: inline-block;
  padding-bottom: 0px;
}
.pickup-block {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
  max-width: var(--container-max);
}
.pickup-box {
  width: 50%;
  padding: 10px 20px;
}
.pickup-box img {
  max-width: 100%;
    height: auto;
}
.pickup-h4 {
  font-size: 19px;
  margin-top: 18.3px;
  font-family: var(--font-main);
}
.pickup-box p {
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.4;
  margin: 15px 0;
}
.pickup-btn {
  margin: 0 auto;
  margin-bottom: 30px;
	}
.pickup-btn a {
  border-radius: 9999px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  padding: 10px 60px;
  font-family: var(--font-main);
  color: var(--color-sub);
  border: 1px solid var(--color-sub);
  line-height: 1.8;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-size: 13px;	
  max-width: 200px;
}
.pickup-btn a:hover {
  background: #333333;
  color: var(--color-white);
}
/* list */
#list .container {
  max-width: var(--container-max);
  margin: auto;
}
.manufacturer-list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center; 
  margin: auto;
}
.category {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 18px auto;
}
.category li{
  list-style: none;
  padding: 10px 18px;
  text-align: center;
 border-right: 0.5px solid var(--color-sub);
}
.category li:first-child {
      border-left: 0.5px solid var(--color-sub);
}
.manufacturer-list li:last-child {
      border-right: 0.5px solid var(--color-sub);
}

.category li a {
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--color-sub);
  text-decoration: none;
  font-weight: 700;
}
.category li a:hover {
  border-bottom:1px solid var(--color-sub);
}

/* ここからlist */
.detail-wrap {
  width: 90.419921%;
  margin: auto;
  margin-bottom: 50px;
}
.detail-wrap h4 {
  padding: 1rem 0rem;
  margin-bottom: 0.2rem;
  border-bottom: 3px solid var(--color-main);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-main);
}
.detail-block {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
}
.detail-list li {
  margin: 8px;
}

@media screen and (max-width: 1023px) {
  .detail-block {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 559px) {
  .manufacturer-main h1 {
    margin: 216px 0 0 0;
  }
  .manufacturer-main h3 {
    margin-top: 40px;
  }
  .manufacturer-main .sp-only {
    display: block;
  }
  .manufacturer-main dl dt {
    margin-bottom: 20px;
  }
  .manufacturer-main dl dt {
    line-height: 1.4;
  }
}

@media screen and (max-width: 765px) {
  .pickup-block {
    display: block;
  }
  .pickup-box {
    margin: 10px auto;
  }
}
@media screen and (max-width: 559px) {
  .pickup h4 {
    font-size: 16px;
    font-weight: 900;
  }
  .pickup-box {
    width: 90%;
  }
  .pickup-box {
    margin: auto;
    padding: 0;
  }
  .pickup-block {
    padding-bottom: 20px;
  }
  .category {
    width: 96%;
    gap: 16px;
  }
  .category li {
    padding: 0px 12px;
  }
  .category li a {
    font-size: 12px;
  }
  .detail-wrap h4 {
    font-size: 18px;
  }
  .detail-list {
    font-size: 12px;
  }
}





/* 
.detail-area {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding:  0 49.5px;
}
.detail-area h4 {
  padding: 1rem 0rem;
    margin-bottom: 0.2rem;
    border-bottom: 3px solid var(--color-main);
    font-weight: 700;
    font-size: 22px;
    color: var(--color-main);
}
.detail-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.detail-list {
  width: 50%;
   display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.detail-box ul {
   display: flex;
  flex-wrap: wrap;
  margin: 30px 0 68px 0;
}
.sessaku {
height: 330px;
}
.hojo {
height: 250px;
}
.kousaku {
  height: 350px;
}
.sokutei {
  height: 200px;
}
.yuatsu {
  height: 130px;
}
.matehan {
  height: 230px;
}
.detail-list li {
  width: 200px;
  padding: 5px 0;
  font-size: 15px;
  font-family: var(--font-main);
  font-weight: 700;
} */
/* @media screen and (max-width: 950px) {
  .detail-box ul {
    width: 100%;
  }
  .detail-list li {
    width: 50%;
  }
} */
