@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;
}

#contact {
  background-size: cover;
min-height:330px;
  width: 100%;
  background-image: url("../img/case-bk.png");
  background-repeat: no-repeat;
}
.contact-main {
  width: 100%;
  height: auto;
min-height: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}
.contact-area {
  text-align: center;
  height: auto;
}
.contact-main h1 {
  font-family: var(--font-main);
  font-size: 25px;
  font-weight: 900;
  color: var(--color-white);
  display: inline-block;
  margin: 150px 0 0 0;
  padding-bottom: 0px;
  position: relative;
  border-bottom: solid 2px;
  width: 226px;
  text-align: center;
}
.contact-main h2 {
font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 500;
  color: var(--color-white);
  margin-top: 5px;
}


#case {
  background: #dadbdb;
}


.case-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}
/* manufacturer-list */
.manufacturer-list {
  width: 100%;
  display: flex;
  justify-content: center;
   align-items: center; 
}
.manufacturer-list ul {
  width: 100%;
  max-width: var(--container-max);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 18px 50px;
}
.manufacturer-list li{
  list-style: none;
  padding: 10px 18px;
  text-align: center;
 border-left: 0.5px solid var(--color-sub);
}
.manufacturer-list li:last-child {
      border-right: 0.5px solid var(--color-sub);
}

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



.post-list {
    width: 100%;
    max-width: var(--container-max);
  margin: 0 auto;
    padding: 40px 20px;
}

/* 1記事ブロック */
.post-item {
    display: flex;
    gap: 25px;
    background: var(--color-white);
    border: 1px solid var(--color-white);
    padding: 24px;
     margin: 0 auto;
    margin-bottom: 35px;
    max-width: 744px;
}

/* サムネイル画像 */
.post-thumb img {
    width: 264px;
    height: 190px;
    object-fit: cover;
    border-radius: 3px;
}

/* テキストエリア */
.post-content {
    flex: 1;
    text-align: left;
}

/* 日付 */
.post-date {
    font-size: 12px;
    color: var(--color-sub);
    margin-bottom: 8px;
    font-family: var(--font-main);
}

/* タイトル */
.post-title {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-main);
    margin-bottom: 10px;
}

.post-title a {
    font-family: var(--font-main);
    text-decoration: none;
}

/* 抜粋 */
.post-excerpt {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 412px;
}

/* ボタン */
.post-btn {
    display: inline-block;
    border: 1px solid var(--color-sub);
    padding: 10px 60px;
    border-radius: 20px;
    font-size: 13px;
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--color-sub);
    text-decoration: none;
    transition: .2s;
}

.post-btn:hover {
    background: #000;
    color: #fff;
}

/* ▼レスポンシブ ▼ */
@media (max-width: 768px) {
    .post-item {
        flex-direction: column;
        text-align: center;
    }

    .post-thumb img {
        width: 100%;
        height: auto;
    }
    .post-excerpt {
      text-align: left;
      line-height: 1.5;
      margin:0 auto;
      margin-bottom: 19px;
  }
    .post-content {
      text-align: center;
    }
}



