@charset "UTF-8";

html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, strong, sub, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, input, textarea {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
  font-weight: normal;
  font-style: normal;
  font-size: 100%;
  font-size: 16px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, strong, sub, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, input, textarea {
    font-size: 14px;
  }
}

body {
  font-family: 'Noto Serif JP', serif;
  line-height: 1.6;
  background-color: #fff;
  color: #222;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;

}

body.en {
  letter-spacing: normal;
}

img {
  width: 100%;
  text-decoration: none;
  vertical-align: top;
  font-size: 0px;
  object-fit: contain;
}

article,aside,main,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ========== UTILITY CLASSES ========== */

/* Layout & Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.col2 {
  display: flex;
  justify-content: space-evenly;
}

.flex {
  display: flex;
}

.flex2 {
  display: block;
}

.inner-wrap {
  margin: 0 auto;
}

/* Alignment */
.tac {
  text-align: center;
}

/* Spacing */
.pdt20 {
  padding-top: 20px;
}

.mgt20 {
  margin-top: 20px;
}

.mgt15 {
  margin-top: 15px;
}

.mgb30 {
  margin-bottom: 30px;
}

/* Typography */
.font-bold {
  font-weight: bold;
}

.font_big {
  font-size: 1.2em;
}

.text {
  font-size: 18px;
  line-height: 1.6;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}



@media screen and (max-width: 1260px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}


a {
  box-sizing: border-box;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}

a:hover {
  opacity: 0.7;
}
a.no_link:hover {opacity: 1;cursor: default;}

/* ローディング */
#js-loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: rgb(0, 0, 0, 0.75);
  text-align: center;
}

#js-loading::after {
  content: "now loading";
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding-top: 80px;
  color: #ffe900;
}

/* ========== HEADER ========== */

header.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 75px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    padding: 50px 50px;
    font-family: 'Noto Sans JP', sans-serif;
}

header.header .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

header.header .menu li {
    margin-right: 20px;
    font-weight: bold;
    line-height: 1.5;
}

header.header .menu li a {
    color: #fff;
    text-decoration: none;
}

header.header .menu li.en {
    background: #fff;
    color: #000;
    padding: 0px 10px;
}

header.header .menu li.en a {
    color: #000;
}

header.header .logo h1 {
    color: white;
    font-weight: bold;
    font-size: clamp(14px, 1.2vw, 20px);
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    cursor: pointer;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    padding: 8px;
    user-select: none;
    position: relative;
    width: 30px;
    height: 30px;
    z-index: 100;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn .close-icon {
    display: none;
    font-size: 28px;
    line-height: 1;
}

.hamburger-btn.active .hamburger-icon {
    display: none;
}

.hamburger-btn.active .close-icon {
    display: block;
}

/* 1066px以上：フォントサイズを自動調整 */
@media screen and (min-width: 1066px) {
    header.header .menu li {
        font-size: clamp(12px, 1.1vw, 16px);
    }
    
    header.header .menu li a {
        font-size: clamp(12px, 1.1vw, 16px);
    }
    
    header.header .logo h1 {
        font-size: clamp(14px, 1.2vw, 20px);
    }
}

/* 1065px以下：ハンバーガーメニュー */
@media screen and (max-width: 1065px) {
    .hamburger-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    header.header .menu {
        position: fixed;
        top: 0;
        left: auto;
        right: -80vw;
        width: 80vw;
        max-width: 400px;
        height: 100vh;
        background: rgba(51, 51, 51, 0.9);;
        flex-direction: column;
        padding: 0;
        transition: right 0.3s ease;
        z-index: 99;
        overflow-y: auto;
        display: flex;
    }
    
    header.header .menu.active {
        right: 0;
    }
    
    /* 右側の金色グラデーションストリップ */
    header.header .menu::before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #D8B53A 0%, #FBF0C9 13.48%, #E2B61A 32.4%, #FFF2C6 50.6%, #BDA13B 78.63%, #FFF0B9 98.68%);
        z-index: 1;
    }
    
    header.header .menu li {
        margin-right: 0;
        margin-bottom: 0;
        width: 100%;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255);
        padding-left: 30px;
        list-style: none;
    }
    
    header.header .menu li:first-child {
        margin-top: 80px;
    }
    
    header.header .menu li:last-child {
        border-bottom: none;
    }
    
    header.header .menu li a {
        display: block;
        padding: 20px 0;
        color: #fff;
        text-decoration: none;
        width: 100%;
        font-weight: normal;
    }
    
    header.header .menu li.en {
        background: transparent;
        color: #fff;
        padding-left: 30px;
    }
    
    header.header .menu li.en a {
        color: #fff;
    }
    
    /* オーバーレイ */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 98;
    }
    
    .menu-overlay.active {
        display: block;
    }
}

/* External link icon */
.external-link {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.external-link:before {
    content: "\f08e" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    padding-left: 5px;
}


/* =====layout===== */

#main .page-content {
  width: 100%;
  order: 2;
}


/*　h3 h4 h5 h6　*/
.page-content h3 {
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 30px;
}

.page-content h4 {
  font-size: 22px;
  font-weight: 700;
}

.page-content h5 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 3px;
}
.page-content h5::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to right, var(--ceatecblue), var(--ai));
}

.page-content h6 {
  font-size: 18px;
  font-weight: 700;
  color: #646464;
}


@media screen and (max-width: 767px) {
  .page-content h3 {
    font-size: 22px;
  }

  .page-content h4 {
    font-size: 20px;
  }

  .page-content h5 {
    font-size: 18px;
  }

  .page-content h6 {
    font-size: 16px;
  }
}

/*　ページ内部白背景ブロック要素　*/





/* ========== MERIT SECTION COMPONENTS ========== */

/* Merit Item Base */
.merit-item {
    position: relative;
    width: 32%;
    display: flex;
    flex-direction: column;
}

.merit-item .flex2 {
    display: block;
    background: #d3b146;
    border-radius: 25px 25px 0 0;
}

.merit-item ul {
    padding: 20px;
    border-radius: 0 0 25px 25px;
    background: #fff;
    height: 100%;
}

.merit-item ul li {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
}

.merit-item ul li:not(:first-of-type) {
    margin-top: 0.5vw;
}

.merit-item h4 {
    margin: 12px 16px;
    font-weight: 600;
    letter-spacing: 0em;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
}

.merit-item figure {
    margin: auto 0;
    height: auto;
    line-height: 0;
}

/* Merit Badge */
.merit-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 38px;
    z-index: 2;
    filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.25));
}

/* 1100px以下：参加のメリットを左右分割レイアウトに、縦並び */
@media screen and (max-width: 1100px) {
    .inner-wrap .flex {
        flex-direction: column;
        gap: 30px;
    }
    
    section#merit .merit-item {
        width: 90%;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .merit-item .flex2 {
        display: flex;
        background: transparent;
        border-radius: 25px 25px 0 0;
        overflow: hidden;
        position: relative;
    }
    
    .merit-item h4 {
        margin: 0;
        padding: 40px 20px;
        font-weight: 600;
        letter-spacing: 0em;
        color: #1a1a1a;
        font-size: 1.2rem;
        text-align: center;
        width: 50%;
        background: #d3b146;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border-radius: 0 25px 0 0;
        height: 200px;
        box-sizing: border-box;
    }
    
    .merit-item figure {
        margin: 0;
        height: 200px;
        line-height: 0;
        width: 50%;
        flex-shrink: 0;
        overflow: hidden;
    }
    
    .merit-item figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .merit-badge {
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%) rotate(-5deg);
        width: 130px;
        height: 50px;
        z-index: 10;
        filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.25));
    }
}

.merit-badge path {
    fill: #d3b146;
}

/* Merit Inner Wrap */
.inner-wrap .flex {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 900px) {
    .merit-item .flex2 {
        display: flex;
        justify-content: space-around;
        align-items: center;
        /* padding-top: 2.3rem; */
    }

    section#merit .merit-item figure {
        width: 50%;
        margin: auto;
    }

    section#merit .merit-item {
        width: 100%;
        margin-top: 3vw;
    }
}

@media screen and (max-width: 600px) {
    section#merit .merit-item .merit-badge {
        width: 95px;
        height: 30px;
        top: 0;
    }

    section#merit .merit-item h4 {
        margin: auto;
    }

    section#merit .merit-item .merit-badge {
        width: 95px;
        height: 30px;
        top: 0;
    }
}

/*mv*/

#mv h2 {
  font-size: 50px;
  color: #000000;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

#mv figure {
    margin: 0 auto;
}

/*About*/

.about-text {
    line-height: 1.6;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    border: solid 2px;
    border-image-source: linear-gradient(101.59deg, #D8B53A 0%, #FBF0C9 13.48%, #E2B61A 32.4%, #FFF2C6 50.6%, #BDA13B 78.63%, #FFF0B9 98.68%);
    border-image-slice: 1;
    padding: 50px;
    box-sizing: border-box;
}

/* 1065px以下：about-textの幅を小さく */
@media screen and (max-width: 1065px) {
    .about-text {
        max-width: 90%;
        padding: 40px 30px;
    }
}

/* 768px以下：さらに小さく */
@media screen and (max-width: 768px) {
    .about-text {
        max-width: 95%;
        padding: 30px 20px;
    }
}

.about-text p {
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #ffffff;
  font-weight: bold;
}


/* ========== BUTTON COMPONENTS ========== */

/* Ecodesign Link Button */
.ecodesign_link .link-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 80px;
    background: linear-gradient(135deg, #67b169 0%, #01a5ba 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.ecodesign_link {
  padding-top: 10px;
}
.ecodesign_link .link-btn:hover {
    background: linear-gradient(135deg, #7bc47d 0%, #02b8d0 100%);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
    opacity: 0.95;
}

.ecodesign_link .link-btn i {
    font-size: 18px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
}

/* Button Base Classes */
.btn {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

/*表彰の種類*/

#award h3 {
    position: relative;
}

#award h3::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 40%;
    width: 30%;
    height: 2px;
    background: linear-gradient(101.59deg, #D8B53A 0%, #FBF0C9 13.48%, #E2B61A 32.4%, #FFF2C6 50.6%, #BDA13B 78.63%, #FFF0B9 98.68%);
    transform: translate(-100%, -50%) translateX(-20px);
    z-index: 1;
}

#award h3::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 60%;
    width: 30%;
    height: 2px;
    background: linear-gradient(101.59deg, #D8B53A 0%, #FBF0C9 13.48%, #E2B61A 32.4%, #FFF2C6 50.6%, #BDA13B 78.63%, #FFF0B9 98.68%);
    transform: translate(0%, -50%) translateX(20px);
}

/* 1000px以下：表彰の種類の棒を調整 */
@media screen and (max-width: 1000px) {
    #award h3::before {
        left: 30%;
        width: 30%;
        transform: translate(-100%, -50%) translateX(-10px);
    }
    
    #award h3::after {
        left: 70%;
        width: 30%;
        transform: translate(0%, -50%) translateX(10px);
    }
}


#award ul li {
    width: 100%;
}

#award ul li p.tac {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

#award figure {
    width: 70%;
    margin: 0 auto;
}

/* スマホサイズ：表彰の種類を縦並びに、画像を100%に */
@media screen and (max-width: 768px) {
    #award .flex.col2 {
        flex-direction: column;
        gap: 30px;
    }
    
    #award ul li {
        width: 100%;
    }
    #award ul li p.tac {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 15px;
  }
    
}

/*参加メリット*/

#merit h3 {
    color: #ffffff;
}

#merit h4 {
  font-size: 24px;
  line-height: 1.4;
  color: #fff;
}


#merit img {
    border-radius: 1.5rem 1.5rem 0 0;
}

section#merit .merit-item figure {
    margin: auto 0;
    height: auto;
    line-height: 0;
}

/* 1100px以下：merit-itemのfigureとh4の高さを揃える */
@media screen and (max-width: 1100px) {
    section#merit .merit-item figure,
    section#merit .merit-item h4 {
        height: 200px;
        min-height: 200px;
    }
    
    section#merit .merit-item figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

section#merit .merit-item .merit-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 130px;
    height: 50px;
    filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.25));
}

section#merit .merit-item {
    position: relative;
    width: 32%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 1100px以下：merit-itemのwidthを調整 */
@media screen and (max-width: 1100px) {
    section#merit .merit-item {
        width: 90%;
        max-width: 800px;
        margin: 0 auto;
    }
}

/* 768px以下：merit-itemのwidthをさらに調整 */
@media screen and (max-width: 768px) {
    section#merit .merit-item {
        width: 95%;
    }
}

section#merit .inner-wrap .flex {
    display: flex;
    justify-content: space-between;
}

section#mv {
      background-image: linear-gradient(rgb(255 255 255 / 15%), rgb(255 255 255 / 75%)), url(../images/mv_bg.webp);
      background-size: cover;
      background-position: center;
      padding: 175px 0px 100px; /* top: 100px + header75px, bottom: 100px */
}

/* 全セクション共通：レスポンシブ時のパディング調整 */
@media screen and (max-width: 1065px) {
    .page-block {
        padding: 80px 20px !important;
    }
    
    section#mv {
        padding: 145px 20px 0px !important; /* top: 70px + header75px */
    }
}

@media screen and (max-width: 768px) {
    .page-block {
        padding: 60px 15px !important;
    }
    
    section#mv {
        padding: 115px 15px 20px !important; /* top: 40px + header75px */
    }
}

@media screen and (max-width: 480px) {
    .page-block {
        padding: 40px 10px !important;
    }
    
    section#mv {
        padding: 120px 10px 0px !important; /* top: 25px + header75px */
    }
}

/* MV Header Layout */
.mv-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.mv-header .page-title {
    flex: 1;
    margin: 0;
}

.page-title .mv-title {
  font-size: 42px;
  font-weight: bold;
  padding-top: 15px;
}

.mv-logo {
    flex-shrink: 0;
    margin: 0;
}

/* 1185px以下：page-titleの文字サイズを小さく */
@media screen and (max-width: 1185px) {
    #mv h2 {
        font-size: 38px;
    }
    
    .page-title .mv-title {
        font-size: 32px;
    }
}

/* 1000px以下：figureが上、page-titleが下に、文字サイズをさらに小さく */
@media screen and (max-width: 1000px) {
    .mv-header {
        flex-direction: column-reverse;
        align-items: center;
    }
    
    .mv-header .page-title {
        text-align: center;
        width: 100%;
        order: 2;
    }
    
    .mv-logo {
        width: 100%;
        text-align: center;
        order: 1;
    }
    
    #mv h2 {
        font-size: 32px;
    }
    
    .page-title .mv-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
  h3 {
      font-size: 22px;
  }
  
  #merit h4 {
      font-size: 20px;
  }
  
  #mv h2 {
      font-size: 26px;
  }
  
  .about-text p {
      font-size: 16px;
  }
  
  .testimonial-text {
      font-size: 14px;
  }
  
  .ecodesign_link .link-btn {
      padding: 10px 55px;
  }
  
  .merit-item ul li {
      font-size: 14px;
  }
  
  .mv-logo img {
      width: 300px;
  }
}


.mv-logo img {
    max-width: 400px;
    height: auto;
}

section#about {
        /* background-image: linear-gradient(rgb(255 255 255 / 15%), rgb(255 255 255 / 100%)), url(../images/about_bg.webp); */
        padding: 100px 0px;
        background-color: #527699;
}

section#award {
      background-image: linear-gradient(rgb(255 255 255 / 15%), rgb(255 255 255 / 100%)), url(../images/award_bg.webp);
      background-size: cover;
      background-position: 0% 70%;
      padding:100px;
}

/* レスポンシブ時：表彰の種類の背景をcontainに */
@media screen and (max-width: 768px) {
    section#award {
        background-image: none;
        background-color: #f9f9f9;
        padding: 60px 30px;
    }
}
section#merit {
    /* 淡い水色のベールを背景画像の上に重ねる */
    background-image: linear-gradient(rgb(210 235 255 / 50%), rgb(172 208 233)), url(../images/merit_bg.webp);
    background-size: cover;
    background-position: center;
    filter: brightness(1.1);
}

section#jury {
    background-color: #f3f5dd;
  }

section#jury ul.flex {
    gap: 20px;
    justify-content: center;
}

section#jury ul.flex img {
    max-width: 330px;
    height: auto;
}

@media screen and (max-width: 768px) {
    section#jury ul.flex {
        flex-direction: column;
        align-items: center;
    }
    section#jury ul.flex img {
        max-width: 280px;
    }
}

section#past {
    position: relative;
    padding: 100px 0px;
    color: #fff;
    overflow: hidden;
}

section#past::before {
    content: '';
    position: absolute;
    top: -7%;
    left: -7%;
    width: 115%;
    height: 115%;
    background-image: linear-gradient(rgb(255 255 255 / 50%), rgb(196 241 248 / 60%)), url(../images/past_bg.webp);
    background-size: cover;
    background-position: top;
    filter: blur(8px);
    z-index: -1;
}

section#past > * {
    position: relative;
    z-index: 1;
}
section#past h3,
section#past .black {
  color: #000000;
}


/* Section ID margins */
#award,
#merit,
#jury,
#past {
    padding: 80px 0;
}

/* ========== TESTIMONIAL COMPONENTS ========== */

/* Testimonial Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    list-style: none;
}

/* Testimonial Card */
.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Card Top: Photo / Coming Soon パネル */
.testimonial-photo img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.comingsoon-panel {
    background: #6b6b6b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 230px;
    font-weight: bold;
}

.comingsoon-title {
    font-size: 22px;
    letter-spacing: 0.05em;
}

/* Card Bottom: Body */
.testimonial-body {
    background: #ffffff;
    padding: 0px 26px;
}

.testimonial-card:last-child .testimonial-body {
    padding: 20px 26px;
}

.company-name {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    padding-top: 10px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.company-logo {
    text-align: center;
    margin-bottom: 20px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo h4 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

/* Testimonial Content */
.testimonial-content {
    color: #333;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    color: #000;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Award Elements */
.award-year {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.award-type {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #D8B53A 0%, #F5E5A3 50%, #C9A227 100%);
    color: #6d490f;
    padding: 6px 20px 16px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 75%, 0 100%);
    min-width: 80px;
}

/* Coming Soon Variant */
.testimonial-card.coming-soon {
    border: 2px dashed #ccc;
    background: rgba(248, 249, 250, 0.95);
}

.testimonial-card.coming-soon .company-logo {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
}

.testimonial-card.coming-soon .testimonial-text {
    color: #6c757d;
}

.testimonial-card.coming-soon .award-type {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: #fff;
}

/* 募集中のステータスバッジ */
.award-status {
    display: inline-block;
    background: #6b6b6b;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: bold;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-meta {
        align-items: flex-start;
    }
}


/* 審査委員会ブロックの中央配置 */
.unit-table {
  text-align: center;
  margin: 0 auto;
  max-width: 640px;
}

.unit-table dd {
  text-align: left;
}

/* ========== FOOTER ========== */

.footer-section {
  padding: 50px 0px;
  align-items: center;
  font-family: 'Noto Sans JP', sans-serif;
}

.footer-bottom {
    background: #303030;
    color: #fff;
    padding: 30px 0px;
    text-align: center;
    font-size: 18px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
}

.footer-bottom p {
    font-weight: bold;
}

.footer-links ul li h5{
    color: #000;
    font-size: 16px;
    font-weight: bold;
}

.footer p.footer-logo {
  font-size: 32px;
  font-weight: bold;
}

.footer .link1,
.footer .link2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer .footer-links {
  gap: 30px;
}

/* Footer external link styling */
.footer-links .external-link {
    color: inherit;
}

.footer-links .external-link:before {
    color: inherit;
}

/* フッターのレスポンシブ対応 */
@media screen and (max-width: 1065px) {
    .footer p.footer-logo {
        font-size: 28px;
    }
    
    .footer-links ul li h5 {
        font-size: 16px;
    }
    
    .footer-bottom {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .footer p.footer-logo {
        font-size: 24px;
    }
    
    .footer-bottom {
        font-size: 14px;
    }
    
    .footer-section {
        padding: 30px 20px;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .footer-section.col2 {
        flex-direction: column;
    }
    
    .footer p.footer-logo {
        order: -1;
        text-align: center;
        margin-bottom: 20px;
        width: 100%;
        max-width: 400px;
    }
    
    .footer .footer-links {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer .footer-links.col2 {
        flex-direction: column;
    }
    
    .footer .link1,
    .footer .link2 {
        gap: 15px;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-links ul li h5 {
        text-align: left;
    }
}

@media screen and (max-width: 480px) {
    .footer p.footer-logo {
        font-size: 20px;
    }
    
    .footer-links ul li h5 {
        font-size: 14px;
    }
    
    .footer-bottom {
        font-size: 12px;
        padding: 20px 0px;
    }
}

/* メリットセクションのh4要素の高さ統一 */
section#merit .merit-item h4 {
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
