@layer reset, base, page, custom;
:root {
  --l-H-hero: 680px;
  --l-header: 80px;
  --l-header-: -80px;
  --l-header--mobile: 56px;
  --l-header--mobile-: -56px;
  --l-services-logo: 44px;
  --l-btnH: 36px;
  --c-text: #344867;
  --c-heading: #1e1e1e;
  --c-nav: #494949;
  --c-brand-text: #848492;
  --c-primary: #baa35b;
  --c-secondary: #1e3659;
  --c-hightlight: #ec4e00;
  --c-primary-start: #f0da98;
  --c-primary-stop: #cfab3b;
  --c-secondary-start: #ffdc23;
  --c-secondary-stop: #ffe972;
  --f-services-title: 18px;
  --f-services-title-lh: 20px;
  --f-services-title--ch: 13px;
  --f-services-title--ch-lh: 16px;
  --z-nav: 10;
  --z-hero: 8;
  --z-main: 9;
  --c-sdg1: #c74140;
  --c-sdg2: #cfa94d;
  --c-sdg3: #6b9e47;
  --c-sdg4: #aa3433;
  --c-sdg5: #df5330;
  --c-sdg6: #71b8e0;
  --c-sdg7: #edc843;
  --c-sdg8: #8d2c44;
  --c-sdg9: #df7538;
  --c-sdg10: #bf3767;
  --c-sdg11: #e6a441;
  --c-sdg12: #b28f40;
  --c-sdg13: #567c4b;
  --c-sdg14: #5794d5;
  --c-sdg15: #7fbc45;
  --c-sdg16: #3d669a;
  --c-sdg17: #2f4768;
  --c-zdg1: #a47903;
  --c-zdg2: #be9115;
  --c-zdg3: #d7aa2d;
}

:root {
  --l-inner: 1024px;
}

@keyframes slide-f-right {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-f-left {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-f-top {
  from {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes reveal-up-20 {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@scope (.p-home) {
  .section {
    position: relative;
  }
  .section .l-inner {
    padding-block: 100px;
  }
  @media only screen and (max-width: 551px) {
    .section .l-inner {
      padding-block: 50px;
    }
  }
  .sec_subtitle {
    font-size: 16px;
    color: rgba(52, 72, 103, 0.75);
    font-weight: 400;
    text-align: center;
  }
  .sec_subtitle.light {
    color: #fff;
  }
  .sec__more {
    display: flex;
    justify-content: center;
  }
  .sec__more .btn-primary {
    margin: 0;
  }
  .s__title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #baa35b;
    display: flex;
    align-items: center;
    margin-block-end: 1.25rem;
  }
  .s__title:after {
    content: "";
    height: 1px;
    background: #baa35b;
    width: 100px;
    margin-inline-start: 6px;
  }
  .s__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
  }
}
.p-home {
  --l-H-hero: 710px;
}

@scope (.hero) {
  :scope {
    --l-H-hero: calc(720px + 80px);
    place-content: center;
    display: flex;
    width: 100%;
    overflow-x: clip;
  }
  :scope:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    z-index: 2;
  }
  :scope:before {
    content: "";
    position: absolute;
    inset: var(--l-header) 0 auto 0;
    height: calc(150px + var(--l-header));
    background: linear-gradient(to bottom, hsla(208, 51.28%, 45.88%, 0.9) 0%, hsla(208, 51.28%, 45.88%, 0.889) 8.1%, hsla(208, 51.28%, 45.88%, 0.856) 15.5%, hsla(208, 51.28%, 45.88%, 0.806) 22.5%, hsla(208, 51.28%, 45.88%, 0.742) 29%, hsla(208, 51.28%, 45.88%, 0.667) 35.3%, hsla(208, 51.28%, 45.88%, 0.583) 41.2%, hsla(208, 51.28%, 45.88%, 0.495) 47.1%, hsla(208, 51.28%, 45.88%, 0.405) 52.9%, hsla(208, 51.28%, 45.88%, 0.317) 58.8%, hsla(208, 51.28%, 45.88%, 0.233) 64.7%, hsla(208, 51.28%, 45.88%, 0.158) 71%, hsla(208, 51.28%, 45.88%, 0.094) 77.5%, hsla(208, 51.28%, 45.88%, 0.044) 84.5%, hsla(208, 51.28%, 45.88%, 0.011) 91.9%, hsla(208, 51.28%, 45.88%, 0) 100%);
    z-index: 2;
  }
  @media only screen and (max-width: 678px) {
    :scope:before {
      inset: var(--l-header--mobile) 0 auto 0;
    }
  }
  .l-inner {
    place-content: center;
    display: grid;
    height: 100%;
    z-index: 5;
  }
  .header {
    width: fit-content;
    place-content: center;
    text-align: center;
  }
  .hero-content {
    width: 500px;
    padding-bottom: 150px;
    color: #fff;
    display: flex;
    flex-direction: column;
  }
  .hero-title--sub {
    font-size: 1.5rem;
    line-height: 1.8;
    border-bottom: 1px solid #fff;
    padding-block-end: 16px;
    margin-block-end: 16px;
    width: fit-content;
    margin-inline: auto;
    opacity: 1;
    transition: 0.8s 0.4s;
  }
  @starting-style {
    .hero-title--sub {
      opacity: 0;
    }
  }
  @media only screen and (max-width: 860px) {
    .hero-title--sub {
      font-size: 1.125rem;
    }
  }
  .hero-desc {
    font-size: 16px;
    line-height: 1.8;
    opacity: 1;
    translate: 0 0;
    transition: 0.8s 0.7s;
  }
  @starting-style {
    .hero-desc {
      opacity: 0;
      translate: 0 35px;
    }
  }
  @media only screen and (max-width: 860px) {
    .hero-desc {
      font-size: 14px;
    }
  }
  @media only screen and (max-width: 678px) {
    .hero-desc {
      width: 300px;
      margin: 0 auto;
      font-size: 13px;
      overflow-x: clip;
    }
  }
  h1 {
    font-size: 3.25rem;
    color: #ffe185;
    line-height: 1.7;
    opacity: 1;
    translate: 0 0;
    transition: 0.8s;
  }
  @starting-style {
    h1 {
      opacity: 0;
      translate: 0 30px;
    }
  }
  @media only screen and (max-width: 1024px) {
    h1 {
      font-size: 2.25rem;
    }
  }
  @media only screen and (max-width: 431px) {
    h1 {
      font-size: 1.5rem;
    }
  }
  .spotlight {
    position: absolute;
    inset: auto 0 0 auto;
    padding: 33px 0;
    width: min(100%, 600px);
    display: flex;
  }
  @media only screen and (max-width: 1024px) {
    .spotlight {
      flex-direction: column;
      padding-block: 20px 10px;
    }
  }
  .spotlight:before {
    content: "";
    position: absolute;
    inset: 0 calc((1024px - 100vw) / 2) 0 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    z-index: 2;
    animation: slide-f-right 1s ease forwards;
  }
  @media only screen and (max-width: 1024px) {
    .spotlight:before {
      inset: 0;
    }
  }
  .spotlight:after {
    content: "";
    position: absolute;
    inset: -140px auto auto -220px;
    width: 140%;
    aspect-ratio: 2/1.2;
    background: url(../images/spotlight-bg.webp) no-repeat center/100% 100%;
    z-index: 1;
    opacity: 0;
    animation: fade-in 0.8s 0.8s ease forwards;
  }
  @media only screen and (max-width: 1024px) {
    .spotlight:after {
      inset: -100px 0 auto -25%;
    }
  }
  .spotlight-cat {
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
    width: 116px;
    padding: 20px 30px;
    background: #baa35b;
    transition: 0.3s;
    display: flex;
    opacity: 0;
    animation: fade-in 0.5s 1s ease forwards;
  }
  @media only screen and (max-width: 1024px) {
    .spotlight-cat {
      padding: 5px 20px 10px;
      width: fit-content;
    }
  }
  .spotlight-cat a {
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    display: block;
    line-height: 1.3;
    align-self: center;
  }
  @media only screen and (max-width: 1024px) {
    .spotlight-cat a {
      font-size: 1.125rem;
    }
  }
  .spotlight-cat:hover {
    box-shadow: 0 10px 30px rgba(186, 163, 91, 0.6);
  }
  .spotlight-list {
    position: relative;
    z-index: 4;
    padding-left: 30px;
    opacity: 0;
    animation: fade-in 1s 0.7s ease forwards;
  }
  @media only screen and (max-width: 1024px) {
    .spotlight-list {
      padding: 20px;
    }
  }
  .spotlight-title {
    display: block;
    font-size: 1.25rem;
    text-decoration: none;
    line-height: 1.6;
    color: #101a2c;
    font-weight: bold;
    margin-bottom: 5px;
    transition: 0.2s;
  }
  @media only screen and (max-width: 1024px) {
    .spotlight-title {
      font-size: 1rem;
    }
  }
  .spotlight-title:before {
    content: "";
    position: absolute;
    inset: 50% auto 50% 0;
    width: 0;
    height: 2px;
    background: #1e3659;
    opacity: 0;
    transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .spotlight-title:after {
    content: "";
    position: absolute;
    inset: 50% auto 50% 10px;
    height: 0;
    width: 0;
    background: #1e3659;
    opacity: 0;
    transition: 0.3s 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateX(-25px);
  }
  .spotlight-title:hover {
    color: #1e3659;
    transform: translateX(20px);
  }
  .spotlight-title:hover:before {
    opacity: 1;
    width: 12px;
    transform: translate3d(-20px, 50%, 0);
  }
  .spotlight-title:hover:after {
    opacity: 1;
    inset: 12px auto 8px 10px;
    width: 2px;
    height: auto;
  }
  @media only screen and (max-width: 1024px) {
    .spotlight-title:hover:after {
      inset: 8px auto 4px 10px;
    }
  }
  .spotlight-date {
    font-size: 0.8125rem;
    color: rgba(51, 51, 51, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0 0 10px;
    display: block;
  }
  @media only screen and (max-width: 1024px) {
    .spotlight-date {
      font-size: 0.75rem;
    }
  }
}
@scope (.section-intro) {
  :scope {
    scroll-timeline: --intro block;
  }
  .s__body {
    display: flex;
  }
  @media only screen and (max-width: 860px) {
    .s__body {
      display: block;
    }
  }
  .s__title {
    position: relative;
    z-index: 8;
    margin-bottom: -20px;
  }
  @supports (animation-timeline: view(block)) {
    .s__title {
      opacity: 0;
      animation: reveal-up-20 ease forwards;
      animation-timeline: view(block);
      animation-range: entry 20% entry 100%;
    }
  }
  @media only screen and (max-width: 860px) {
    .s__title {
      margin-bottom: -10px;
    }
  }
  .l-inner:before {
    content: "";
    position: absolute;
    inset: 0 300px 0 calc((1024px - 100vw) / 2);
    background: #F6F6F6;
    z-index: 3;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  }
  @media only screen and (max-width: 1024px) {
    .l-inner:before {
      inset: 0 300px 0 0;
    }
  }
  @media only screen and (max-width: 860px) {
    .l-inner:before {
      inset: 0 0 0 0;
    }
  }
  @media only screen and (max-width: 860px) {
    .l-inner {
      padding-block: 50px;
    }
  }
  .intro-content {
    padding-block-start: 2.25rem;
    padding-inline-end: 7.5rem;
    flex: 1 1 auto;
    line-height: 1.8;
    font-size: 1rem;
    color: #344867;
    position: relative;
    z-index: 6;
  }
  @supports (animation-timeline: view(block)) {
    .intro-content {
      opacity: 0;
      animation: reveal-up-20 ease forwards;
      animation-timeline: view(block);
      animation-range: entry 20% entry 100%;
    }
  }
  .intro-content p {
    margin-block-end: 1.5rem;
  }
  @media only screen and (max-width: 860px) {
    .intro-content {
      padding-block-start: 1.25rem;
      padding-inline-end: 0;
    }
  }
  .intro-img {
    flex: 0 0 300px;
    width: 300px;
    position: relative;
    z-index: 2;
  }
  @supports (animation-timeline: view(block)) {
    .intro-img {
      opacity: 0;
      animation: slide-f-left ease forwards;
      animation-timeline: view(block);
      animation-range: entry 20% entry 100%;
    }
  }
  @media only screen and (max-width: 860px) {
    .intro-img {
      display: none;
    }
  }
  .intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@scope (.section-services) {
  .l-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto 1fr auto auto;
  }
  @media only screen and (max-width: 860px) {
    .l-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media only screen and (max-width: 431px) {
    .l-grid {
      grid-template-columns: 1fr;
    }
  }
  .category-item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    gap: 0;
  }
  .category-info {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    padding: 20px;
    box-shadow: inset 0 0 0 6px #fff, inset 0 0 0 7px #baa35b;
  }
  .category-icon {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 1;
    text-align: center;
    place-content: center;
    padding-block: 8px;
  }
  .category-icon:before {
    content: "";
    display: inline-block;
    width: 32px;
    aspect-ratio: 1;
    background-size: contain;
    background-position: center;
  }
  .summit .category-icon:before {
    background-image: url(../images/icon-summit.svg);
  }
  .counseling .category-icon:before {
    background-image: url(../images/icon-counseling.svg);
  }
  .lecture .category-icon:before {
    background-image: url(../images/icon-lecture.svg);
    width: 25px;
    aspect-ratio: 25/30;
  }
  .overseas-exchange .category-icon:before {
    background-image: url(../images/icon-overseas-exchange.svg);
  }
  .category-title {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 2;
    text-align: center;
    color: #1e3659;
    font-size: 1.5rem;
    border-bottom: 1px solid #baa35b;
    padding-bottom: 12px;
    letter-spacing: 0.2em;
  }
  .category-desc {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 3;
    color: #1e3659;
    font-size: 0.8125rem;
    line-height: 1.7;
    padding-top: 16px;
  }
  .category-more {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 4;
    background: #baa35b;
    color: #101A2C;
    padding-block: 12px;
    text-align: center;
    margin-top: -7px;
    transition: 0.3s;
  }
  .category-more:hover {
    background: #1e3659;
  }
  .category-more:hover a {
    color: #fff;
  }
  .category-more a {
    color: #101A2C;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: 0.3s;
  }
  .service-latest {
    padding: 20px;
    background: #3A3A3A;
    color: #fff;
  }
  .service-new {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.625rem;
    padding: 2px 6px;
  }
  .service-url {
    display: block;
    color: #fff;
    margin-block: 10px;
    line-height: 1.4;
    transition: 0.3s;
  }
  .service-url:hover {
    color: #edd37c;
  }
  .service-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
  }
}
@scope (.section-impact) {
  .l-inner {
    z-index: 2;
  }
  .impact-content {
    margin: 20px auto;
    width: clamp(100% - 160px, 600px, 100%);
    text-align: center;
  }
  .impact-content .l-flex {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  @media only screen and (max-width: 678px) {
    .impact-content .l-flex {
      flex-wrap: wrap;
      gap: 10px;
    }
  }
  .impact-item {
    flex: 0 1 33%;
    padding-block: 40px;
  }
  @media only screen and (max-width: 678px) {
    .impact-item {
      flex: 0 1 100%;
      padding-block: 10px;
    }
  }
  .impact-item .number {
    text-align: center;
    font-size: 8.5rem;
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    background: linear-gradient(134deg, #FAE6A8 0, #9f7c10 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  @media only screen and (max-width: 1024px) {
    .impact-item .number {
      font-size: 6.25rem;
    }
  }
  @media only screen and (max-width: 860px) {
    .impact-item .number {
      font-size: 5.625rem;
    }
  }
  .impact-item .number span {
    font-size: 3.75rem;
    color: #9f7c10;
    margin-left: 10px;
  }
  .impact-item .text {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.3em;
  }
  .impact-text {
    color: #fff;
    line-height: 200%;
    text-align: left;
  }
  .s__bg {
    z-index: 1;
  }
  .s__bg:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 55, 0.8);
    z-index: 1;
    border-top: 10px solid #edd37c;
  }
}
@scope (.section-events, .section-news) {
  .s__title {
    margin-block-end: 2.5rem;
  }
  @media only screen and (max-width: 860px) {
    .s__title {
      margin-block-end: 1.25rem;
    }
  }
  @media only screen and (max-width: 860px) {
    :scope .l-inner {
      padding-block: 66px;
    }
  }
  .grid {
    display: grid;
    grid-template-columns: auto 1fr 45%;
    grid-template-rows: auto;
    grid-template-areas: "category content img";
  }
  @media only screen and (max-width: 860px) {
    .grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto;
      grid-template-areas: "img" "category" "content";
    }
  }
  .category {
    grid-area: category;
    writing-mode: vertical-lr;
  }
  @media only screen and (max-width: 860px) {
    .category {
      writing-mode: horizontal-tb;
      display: none;
    }
  }
  .category span {
    border: 1px solid rgba(19, 46, 94, 0.3);
    color: #132E5E;
    font-size: 0.875rem;
    padding-inline: 12px;
    padding-block: 4px;
    letter-spacing: 0.4em;
    transition: 0.3s;
  }
  @media only screen and (max-width: 860px) {
    .category span {
      margin-top: 20px;
    }
  }
  .content {
    grid-area: content;
    padding-inline: 40px 20px;
    color: #1e3659;
  }
  @media only screen and (max-width: 860px) {
    .content {
      padding-inline: 0;
      width: min(100%, 500px);
      margin-inline: auto;
    }
  }
  .title {
    font-size: 1.875rem;
    font-weight: 900;
    line-height: 1.4;
    padding-block-end: 0.5rem;
  }
  @media only screen and (max-width: 860px) {
    .title {
      font-size: 1.5rem;
      padding-block-start: 1rem;
    }
  }
  @media only screen and (max-width: 678px) {
    .title {
      font-size: 1.25rem;
    }
  }
  .title a {
    display: block;
    color: #1e3659;
  }
  .info {
    border-block: 1px solid rgba(30, 54, 89, 0.2);
    padding-block: 0.5rem;
    line-height: 1.8;
    font-wright: 600;
  }
  .introtext {
    font-size: 0.875rem;
    padding-block: 0.5rem;
    line-height: 1.8;
  }
  .img {
    grid-area: img;
    margin-top: 10px;
    margin-inline: auto;
    position: relative;
    width: min(100%, 500px);
    aspect-ratio: 2/1;
  }
  .img:before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 50%;
  }
  .img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  .btn-primary {
    margin-top: 30px;
  }
  @media only screen and (max-width: 678px) {
    .btn-primary {
      margin-top: 20px;
    }
  }
}
@scope (.section-testimonials) {
  .s__title {
    color: #fff;
  }
  .s__title:after {
    background: #fff;
  }
  .l-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr));
    grid-template-rows: auto 130px 1fr auto;
  }
  .item {
    padding-inline: 8px;
    margin-block-end: 16px;
    display: grid;
    gap: 0;
    grid-template-rows: subgrid;
    grid-row: span 4;
    grid-column: span 1;
  }
  .item-head {
    display: flex;
    grid-template-rows: subgrid;
    grid-row: 1/span 1;
    padding: 16px;
    padding-block-end: 6px;
    padding-inline-end: 12px;
    background: #fff;
    flex-wrap: wrap;
    align-items: flex-end;
    container: itemhead/inline-size;
  }
  .item-head .company,
  .item-head .position {
    font-size: 0.8125rem;
    margin-inline-end: 2px;
    white-space: nowrap;
  }
  .item-head .company > *,
  .item-head .position > * {
    display: inline-block;
    padding-bottom: 2px;
  }
  .item-head .name {
    font-size: 1.5rem;
    margin-inline-start: auto;
    white-space: nowrap;
    text-align: right;
  }
  @container itemhead (max-width: 200px) {
    .item-head .name {
      flex: 0 0 100%;
      margin-inline-start: 0;
      font-size: 1.25rem;
      text-align: left;
    }
  }
  .item-img {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 2/span 1;
    background: #fff;
    position: relative;
  }
  .item-img:after {
    content: "";
    aspect-ratio: 230/127;
    display: block;
    width: 100%;
  }
  .item-img:before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 16px;
    background: #fff;
    z-index: 2;
  }
  .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .item-desc {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 3/span 1;
    padding: 16px;
    background: #fff;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #69768b;
  }
  .item-more {
    display: grid;
    grid-row: 4/span 1;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    padding: 12px;
    transition: 0.3s;
  }
  .item-more:hover {
    background: rgba(30, 54, 89, 0.9);
  }
  .item-more:hover a {
    color: #fff;
  }
  .item-more a {
    color: #fff;
    transition: 0.3s;
    font-size: 0.8125rem;
  }
}
.section-feedback .s__bg {
  opacity: 0.75;
}
.section-feedback #feedback {
  display: grid;
  gap: 0 1.2rem;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto 1fr auto auto;
  padding-top: 50px;
}
@media only screen and (max-width: 860px) {
  .section-feedback #feedback {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 431px) {
  .section-feedback #feedback {
    grid-template-columns: repeat(1, 1fr);
  }
}
.section-feedback #feedback .member__item {
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 50px;
}
.section-feedback #feedback .member__avatar {
  max-width: 70%;
  aspect-ratio: 1/1;
  overflow: hidden;
  transform: translateY(-15px);
  box-shadow: 0 15px 25px rgba(186, 163, 91, 0.25);
  background-color: #aaa;
  border-radius: 3px;
}
.section-feedback #feedback .member__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-feedback #feedback .member__words {
  flex: 1;
  font-size: 15px;
  color: rgba(52, 72, 103, 0.95);
  line-height: 1.7;
}
.section-feedback #feedback .member__name {
  padding-top: 15px;
  border-top: 1px solid #baa35b;
  color: #344867;
  font-size: 22px;
  font-weight: 500;
}
.section-feedback #feedback .member__career {
  color: rgba(52, 72, 103, 0.65);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.section-peer .s__bg::after {
  content: "";
  inset: 0 0 0 0;
  position: absolute;
  background: linear-gradient(to bottom, #ffffff, rgba(136, 153, 173, 0.85));
  opacity: 1;
}
.section-peer #peer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  padding: 35px 0;
}
.section-peer .peer-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(186, 163, 91, 0.15);
  box-shadow: 0 10px 30px rgba(30, 30, 30, 0.15);
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
}
.section-peer .peer-item__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 25px 0;
  flex-direction: column;
  border: 1px solid rgba(186, 163, 91, 0.35);
  flex: 1;
  background-color: #fff;
  box-shadow: 0 3px 15px rgba(186, 163, 91, 0.35);
}
.section-peer .peer-flag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(186, 163, 91, 0.5);
  font-size: 22px;
  box-shadow: inset 0 3px 10px rgba(52, 72, 103, 0.15);
  background-color: #f6f6fa;
}
.section-peer .peer-flag img {
  width: 25px;
  box-shadow: 0 2px 13px rgba(186, 163, 91, 0.5);
}
.section-peer .peer-country {
  font-size: 13px;
  color: #848492;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
}
.section-peer .peer-country::before {
  content: "";
  width: 15px;
  height: 15px;
  background: url(/images/ic_map.png) no-repeat center center/contain;
}
.section-peer .peer-name {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: #344867;
  text-align: center;
  flex: 1;
  padding: 5px;
}
.section-peer .peer-president {
  display: flex;
  flex-direction: column;
  color: #848492;
  font-size: 14px;
  gap: 2px;
  line-height: 1.5;
  align-items: center;
  padding-top: 15px;
  width: 100%;
  position: relative;
}
.section-peer .peer-president::before {
  content: "";
  position: absolute;
  inset: 0 10px 0 10px;
  border-top: 1px solid rgba(186, 163, 91, 0.35);
}
.section-peer .peer-position {
  font-size: 12px;
  opacity: 0.55;
}
.section-peer .peer-more {
  height: 30px;
  display: flex;
  width: 100%;
  align-items: center;
}
.section-peer .peer-more .item-more {
  font-size: 12px;
  text-decoration: none;
  color: #baa35b;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: background-color 300ms;
}
.section-peer .peer-more .item-more:hover {
  background-color: rgba(186, 163, 91, 0.1);
}

/*# sourceMappingURL=home.css.map */
