*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}:where([hidden]:not([hidden='until-found'])){display:none!important}:where(html){-webkit-text-size-adjust:none;color-scheme:dark light;tab-size:2;scrollbar-gutter:stable;interpolate-size:allow-keywords;line-height:1.5}:where(html:has(dialog:modal[open])){overflow:clip}@media (prefers-reduced-motion:no-preference){:where(html:focus-within){scroll-behavior:smooth}}:where(body){line-height:inherit;font-family:system-ui,sans-serif;-webkit-font-smoothing:antialiased}:where(button){all:unset}:where(input,button,textarea,select){font:inherit;color:inherit;letter-spacing:inherit;word-spacing:inherit;font-feature-settings:inherit;font-variation-settings:inherit}:where(textarea){resize:vertical;resize:block}:where(button,label,select,summary,[role='button'],[role='option']){cursor:pointer}:where(:disabled,label:has(>:disabled,+disabled)){cursor:not-allowed}:where(a){color:inherit;text-underline-offset:.2ex}:where(ul,ol){list-style:none}:where(img,svg,video,canvas,audio,iframe,embed,object){display:block}:where(img,picture,svg,video){max-inline-size:100%;block-size:auto}:where(p,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(h1,h2,h3){line-height:calc(1em + 0.5rem);font-weight:600;text-wrap:wrap}:where(hr){border:none;border-block-start:1px solid;color:inherit;block-size:0;overflow:visible}:where(dialog,[popover]){border:none;background:none;color:inherit;inset:unset;max-width:unset;max-height:unset;overflow:unset}:where(dialog:not([open],[popover]),[popover]:not(:popover-open)){display:none!important}:where(:focus-visible){outline:3px solid CanvasText;box-shadow:0 0 0 5px Canvas;outline-offset:1px}:where(:focus-visible,:target){scroll-margin-block:8vh}:where(.visually-hidden:not(:focus-within,:active)){clip-path:inset(50%)!important;height:1px!important;width:1px!important;overflow:hidden!important;position:absolute!important;white-space:nowrap!important;border:0!important;user-select:none!important}

:root {
  --font-jp: 'Noto Sans JP', Hiragino Kaku Gothic ProN, 'メイリオ', sans-serif;
  --font-en: 'Roboto', sans-serif;
  --font-point: 'Montserrat', sans-serif;
  --font-10px: 0.625rem;
  --font-11px: 0.6875rem;
  --font-12px: 0.75rem;
  --font-13px: 0.8125rem;
  --font-14px: 0.875rem;
  --font-16px: 1rem;
  --font-18px: 1.125rem;

  --ease: cubic-bezier(0.65, 0, 0.35, 1);

  --header-height: 64px;
  --primary-color: #4B7798;
  --secondary-color: #5D6A79;
  --link-color: #5D6A79;
  --link-color-blue: #0076FF;
  --bg-color: #F8F9FC;
  --box-shadow:  0px 0px 16px 0px rgba(0, 0, 0, 0.16);
}
html {
  background-color: #fff;
}
body {
  font-family: var(--font-jp);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .02em;
  color: #333;
  overflow-wrap: break-word;
}
@media screen and (width <= 768px) {
  .pcDisp { display: none;}
  body { font-size: var(--font-14px);}
}
@media screen and (width > 1024px) {
  :root {
    --header-height: 80px;
  }
}
@media screen and (width > 768px) {
  /* body {min-width: calc(1040px + 2rem); } */
  .spDisp { display: none;}
}

/* ----- template */
/* siteHeader */
.l-siteHeader {
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 2rem;
  width: 100%;
  height: var(--header-height);
  padding-inline: 1rem;
  z-index: 2;
  background-color: rgba(255, 255, 255, 1);
  transition: all 360ms var(--ease);
}
.l-siteHeader {
  background-color: rgba(255, 255, 255, 0);
}
.l-siteHeader.is-scroll {
  background-color: rgba(255, 255, 255, 1);
}
.header-logo {
  width: 140px;
  transition: width 360ms var(--ease),height 360ms var(--ease);
  z-index: 3;
}
.l-siteHeader.is-scroll #statement {
  opacity: 1;
}
.header-logo a,
.header-logo img { display: block; }
.header-logo svg {
  width: 100%;
  height: auto;
  max-width: 100%;
}

@media screen and (1210px >= width) {
  html:has(nav.siteNav.is-open) {
      overflow: hidden;
      overscroll-behavior: none
  }
  .c-menuBtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    background-color: #fff;
    /* background-image: radial-gradient( circle farthest-corner at 10% 20%, #205072 42%, #a4ce49 93.6% ); */
    z-index: 3;
  }
  .c-menuBtn span {
    position: relative;
    display: block;
    width: 20px;
    height: 1px;
    background-color: #707070;
  }
  .c-menuBtn span::before,
  .c-menuBtn span::after {
    position: absolute;
    display: block;
    width: 20px;
    height: 1px;
    background-color: #707070;
    content: '';
    transition: top .3s var(--ease);
  }
  .c-menuBtn span::before {
    top: -6px;
  }
  .c-menuBtn span::after {
    top: 6px;
  }
  .c-menuBtn[aria-expanded="true"] span::before,
  .c-menuBtn[aria-expanded="true"] span::after {
    top: 0;
  }

  .siteNav {
    width: 100%;
    height: 100svh;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    visibility: hidden;
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
    opacity: 0;
    transform: translateY(.2rem);
    transition: opacity .4s var(--ease), transform .3s var(--ease);
    font-weight: 500;
  }
  .siteNav.is-open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .siteNav.is-open > ul {
    margin: 0 0 0 auto;
    padding: var(--header-height) 2rem 2rem;
    width: fit-content;
    background: linear-gradient(135deg, rgba(58, 129, 200, .8) 50%,rgba(0, 173, 235, .8));
    overflow-y: scroll;
    height: 100svh;
    /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
    -ms-overflow-style: none;
    /*Firefoxへの対応*/
    scrollbar-width: none;
  }
  .siteNav.is-open > ul::-webkit-scrollbar{
    display: none;
  }
  .siteNav ul ul {
    padding-left: 1em;
  }
  .siteNav a,
  .menu-toggle {
    display: block;
    padding: 1em;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    color: #fff;
  }
  .siteNav a:hover,
  .menu-toggle:hover { color: #233951;}

  .menu-toggle {
    position: relative;
  }
  .menu-toggle::after {
    position: absolute;
    right: 0;
    content: '＋';
  }
  .menu-toggle[aria-expanded="true"]::after {
    content: '－';
  }
  /* アコーディオン */
  .subMenu {
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: opacity .4s var(--ease);
  }
  .subMenu.is-open {
    visibility: visible;
    height: auto;
    opacity: 1;
    transition: opacity .4s var(--ease);
  }

}
@media screen and (1210px < width) {
  /* siteHeader */
  .l-siteHeader {
    padding-inline: 2rem;
    height: var(--header-height);
  }
  .l-siteHeader.is-scroll,
  .l-siteHeader.is-scroll .siteNav > ul > li {
    height: calc(var(--header-height) - 12px);
  }
  .header-logo {
    align-self: flex-start;
    width: 172px;
    padding-top: 22px;
  }
  .l-siteHeader.is-scroll .header-logo {
    width: 160px;
  }
  .l-siteHeader.is-scroll #statement {
    opacity: 0;
  }
  .c-menuBtn {
    display: none;
  }
  .siteNav > ul {
    display: flex;
    align-items: center;
    width: fit-content;
    font-size: var(--font-14px);
    font-weight: 500;
    line-height: 1.3;
  }
  .siteNav > ul > li {
    position: relative;
    display: flex;
    align-items: center;
    height: var(--header-height);
  }
  .siteNav > ul > li:hover::after {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    content: '';
  }

  .siteNav > ul > li > a,
  .siteNav > ul > li > button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em 1.5em;
    text-decoration: none;
  }
  .siteNav a:hover,
  .siteNav > ul > li button:hover {
    color: var(--primary-color);
  }

  /* アコーディオン */
  .subMenu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100vw;
    height: 54px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .4s var(--ease);
    background: linear-gradient(135deg, rgba(58, 129, 200, .8) 50%,rgba(0, 173, 235, .8));
    transition: opacity .4s var(--ease);
  }
  .l-siteHeader.is-scroll .subMenu  {
    top: calc(var(--header-height) - 12px);
    transition: opacity .4s var(--ease);
    background-color: rgba(239, 239, 239, 1);
  }
  .parentMenu:hover .subMenu,
  .subMenu.is-open {
    visibility: visible;
    opacity: 1;
    transition: opacity .4s var(--ease);
  }
  .subMenu > ul {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
  }
  .subMenu > ul.about {
    max-width: 795px;
  }
  .subMenu > ul.achievements {
    max-width: 638px;
  }
  .subMenu a {
    display: inline-block;
    padding: .5em 1em;
    text-decoration: none;
    color: #fff;
  }
  .subMenu a:hover {
    color: #fff;
    text-decoration: underline;
  }
}

/* footer */
.footer {
  line-height: normal;
  border-top: 5px solid #adadad;
  padding-bottom: 20px;
  position: relative;
}
.footer:before {
  background-color: #ff0000;
  content: "";
  display: inline-block;
  height: 5px;
  left: 0;
  position: absolute;
  top: -5px;
  width: 30px;
}
.footer-link {
  margin-bottom: 5px;
}
.footer-link-list {
  margin: 0;
  padding: 0;
}
.footer-link-list-item {
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif !important;
  background-color: #d8d8d8;
  border-bottom: 1px solid #adadad;
  line-height: 12px;
}
.footer-link-list-item-link {
  color: inherit;
  display: block;
  padding: 28px 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
}
.footer-link-list-item-link:before {
  border: 0;
  content: "";
  display: inline-block;
  height: 8px;
  position: relative;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 8px;
  border-right: solid 1px #dd0000;
  border-top: solid 1px #dd0000;
}
.footer-link-list-item-link:before {
  position: absolute;
  right: 20px;
  top: 45%;
}
.footer-copyright {
  margin-bottom: 30px;
  text-align: center;
}
.footer-copyright img {
  height: auto;
  width: 280px;
  display: inline;
}
.footer .container .footer-link .footer-link-list li a:link, .footer .container .footer-link .footer-link-list li a:visited, .footer .container .footer-link .footer-link-list li a:hover {
  text-decoration: none;
  color: inherit;
}
.footer-pageTop {
  text-align: center;
}
.footer-pageTop-button {
  display: block;
}
.footer-pageTop-button:before {
  border: 0;
  content: "";
  display: inline-block;
  height: 22px;
  position: relative;
  width: 22px;
  border-right: solid 1px #111111;
  border-top: solid 1px #111111;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.pageTop {
  display: none;
}
.footer {
  margin-top: 0;
}
@media screen and (768px < width) {
  .footer {
    border-top: 5px solid #adadad;
    padding-bottom: 16px;
    position: relative;
  }
  .footer:before {
    background-color: #ff0000;
    content: "";
    display: inline-block;
    height: 5px;
    left: 0;
    position: absolute;
    top: -5px;
    width: 30px;
  }
  .footer-link-list {
    margin: 0;
    padding: 0;
  }
  .footer-link-list-item {
    font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif !important;
    background-color: #d8d8d8;
    border-bottom: 1px solid #adadad;
  }
  .footer-link-list-item-link {
    color: inherit;
    display: block;
    padding: 25px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
  }
  .footer-link-list-item-link:before {
    border: 0;
    content: "";
    display: inline-block;
    height: 8px;
    position: relative;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 8px;
    border-right: solid 1px #dd0000;
    border-top: solid 1px #dd0000;
  }
  .footer-link-list-item-link:before {
    position: absolute;
    right: 20px;
    top: 45%;
  }
  .footer-copyright {
    margin-bottom: 25px;
    text-align: center;
  }
  .footer-pageTop {
    text-align: center;
  }
  .footer-pageTop-button {
    display: block;
  }
  .footer-pageTop-button:before {
    border: 0;
    content: "";
    display: inline-block;
    height: 22px;
    position: relative;
    width: 22px;
    border-right: solid 1px #111111;
    border-top: solid 1px #111111;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .footer {
    background-color: #ebebeb;
    padding: 12px 0 13px;
  }
  .footer .container {
    position: relative;
    margin: 0 auto;
    max-width: 1040px;
    line-height: 0;
  }
  .footer-link {
    margin-bottom: 0;
  }
  .footer-link-list-item {
    background-color: transparent;
    border-bottom: none;
    display: inline-block;
    font-size: 13px !important;
  }
  .footer-link-list-item-link {
    border-right: 1px solid #111111;
    color: #004ecc !important;
    display: inline-block;
    line-height: 1;
    padding: 0 15px 0 16px;
    font-size: 13px !important;
  }
  .footer-link-list-item:first-of-type .footer-link-list-item-link {
    padding: 0 15px 0 15px;
  }
  .footer-link-list-item:last-of-type .footer-link-list-item-link {
    padding: 0 15px 0 16px;
  }
  .footer-link-list li:nth-type-child(2) .footer-link-list-item-link {
    padding: 0 10px;
  }
  .footer-link-list-item-link:hover {
    text-decoration: underline;
  }
  .footer-link-list-item-link:before {
    content: none;
  }
  .footer-link-list-item:first-child .footer-link-list-item-link {
    border-left: 1px solid #111111;
  }
  .footer-copyright {
    float: right;
    margin-bottom: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  .footer-copyright img {
    width: 383px;
    height: 13px;
    vertical-align: middle;
  }
  .footer-pageTop {
    display: none;
  }
  .footer .container .footer-link .footer-link-list li a:link, .footer .container .footer-link .footer-link-list li a:visited {
    text-decoration: none;
  }
  .footer .container .footer-link .footer-link-list li a:hover {
    text-decoration: underline;
  }
  .pageTop {
    position: fixed;
    display: block;
    width: 55px;
    height: 54px;
    bottom: 90px;
    right: 25px;
    z-index: 20;
    opacity: 0;
    transition: all .4s;
  }
  .pageTop.is-scroll {
    opacity: 1;
  }
}


/* -----  layout*/
.l-sec {
  padding-bottom: 4rem ;
}
.l-sec.u-bg {
  padding: 4rem 0;
  background-color: var(--bg-color);
}
.l-sec.u-bg + .l-sec {
  padding-top: 4rem;
}
.l-sec__inner {
  width: 100%;
  max-width: calc(1040px + 3.2em);
  margin-inline: auto;
  padding: 0 1.6em;
}
.l-sec__inner + .l-sec__inner {
  margin-top: 3rem;
}



/* -----  conponents*/

.c-pageTitle {
  display: grid;
  grid-template-columns: 1fr;
  place-content: center;
  width: 100%;
  min-height: 140px;
  padding: 1.6em;
  background: var(--bg-color) url(../img/pagetitle_bg.png) no-repeat center right;
  background-size: 39%;
}
.c-pageTitle h1 {
  width: 49%;
  font-size: clamp(1.375rem, 1.264rem + 0.56vw, 1.625rem);
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.4;
}
.c-pageTitle h1 span {
  white-space: nowrap;
}

.c-topicPath {
  padding: 1em 0 3em 0;
}
.c-topicPath > ul {
  font-size: var(--font-11px);
  display: flex;
  gap: .5em;
}
.c-topicPath > ul > li + li::before {
  display: inline-block;
  margin-right: .5em;
  content: '>';
}

.c-h2 {
  margin-bottom: 1.75em;
  font-size: clamp(1.5rem, 1.023rem + 2.04vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: .1em;
}
.c-h2 span {
  display: block;
  margin-top: .5em;
  font-size: 0.4em;
  font-family: var(--font-point);
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: .1em;
}
.c-h3 {
  position: relative;
  margin-bottom: 1.2em;
  padding-left: 1em;
  letter-spacing: 0;
  font-size: clamp(1.25rem, 1.139rem + 0.56vw, 1.5rem);
  font-weight: 400;
}
.c-h3:before {
  position: absolute;
  left: 0;
  display: block;
  width: 0.33em;
  height: 1.5em;
  border-radius: 0.5em;
  background-color: var(--primary-color);
  content: '';
}
.c-h4 {
  color: var(--primary-color);
  margin-top: 2em;
  margin-bottom: 1.2em;
}

.c-txt01 + .c-txt01 {
  margin-top: 1em;
}
.c-lead {
  line-height: 2;
  font-size: var(--font-16px);
}
.c-lead + .c-lead {
  margin-top: 2em;
}
.c-txtLink01 {
  text-decoration: underline;
  color: var(--link-color);
}
.c-txtLink01:hover {
  text-decoration: none;
}
.c-txtLink01 .icon-win {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: .5em;
  fill: var(--link-color);
}
.c-txtLink02 {
  text-decoration: underline;
  color: var(--link-color-blue);
}
.c-txtLink02:hover {
  text-decoration: none;
}
.c-txtLink02 .icon-win {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: .5em;
  fill: var(--link-color-blue);
}
.c-btn01 {
  position: relative;
  display: block;
  width: fit-content;
  padding: .8em 2.5em .9em;
  color: #fff;
  line-height: 1.2;
  text-decoration: none;
  border-radius: .4em;
  background-color: var(--secondary-color);
}
.c-btn01 .u-arr {
  padding-left: 3em;
}
.c-btn01.u-arr::before {
  position: absolute;
  top: .9em;
  left: 1em;
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color .2s var(--ease);
  content: '';
}
.c-btn01.u-arr::after {
  position: absolute;
  top: 1.3em;
  left: 1.29em;
  display: block;
  width: .3em;
  height: .3em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transform-origin: center center;
  content: '';
}
.c-btn01.u-arr:hover::before {
  background-color: rgba(255, 255, 255, 1);
}
.c-btn01.u-arr:hover::after {
  border-color: var(--secondary-color);
}
.c-btn01.u-list {
  padding-left: 5em;
}
.c-btn01.u-list::before {
  position: absolute;
  left: 2em;
  top: .9em;
  width: 1.5em;
  height: 1em;
  background: url(../img/icon_list.svg) no-repeat center center;
  background-size: 100%;
  content: '';
}

.c-video {
  aspect-ratio: 16/9;
  width: 100%;
  margin-inline: auto;
}
.c-video > iframe {
  width: 100%;
  height: 100%;
}


.mod-ulList01 > li {
  position: relative;
  padding-left: 1em;
}
.mod-ulList01 > li + li { margin-top: .8em; }
.mod-ulList01 > li:before {
  display: block;
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--primary-color);
  content: '';
}
.c-boxBlue {
  border-radius: 1.5em;
  padding: 2em;
  background-color: var(--bg-color);
}
.c-boxBlue img { margin-inline: auto;}
@media screen and (width > 768px) {
  .c-pageTitle {
    min-height: 180px;
    padding: 3rem 2rem;
    background-size: 300px auto;
  }
  .c-pageTitle > h1{
    width: 100%;
    max-width: 1040px;
    margin-inline: auto;
  }
  .c-topicPath > ul {
    font-size: var(--font-13px);
  }




  .c-lead {
    font-size: var(--font-18px);
  }
  .l-sec {
    padding-bottom: 6rem;
  }
  .l-sec__inner + .l-sec__inner {
    margin-top: 3rem;
  }
}




@media screen and (768px >= width) {
  .p-mv {
    display: grid;
    align-items: flex-end;
    justify-content: center;
    height: 80svh;
    min-height: 540px;
  }
  .p-mv__title img {
    height: 22svh;
    min-height: 149px;
  }

  .p-mv__img {
    position: fixed;
    z-index: -1;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: 38svh;
    min-height: 257px;
    margin-inline: auto;
  }
}
@media screen and (768px < width) {
  .p-mv {
    display: grid;
    align-items: center;
    height: 550px;
  }
  .p-mv__title {
    padding-top: 40px
  }

  .p-mv__img {
    position: fixed;
    left: calc(50% - 123px);
    top: -50px;
    z-index: -1;
    width: 660px;
  }
}

/* -----  index*/

@scope(.home) {
  .p-pickup  {
    container-type: inline-size;
  }

  .p-pickup > ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(154px, 1fr));
    grid-auto-rows: 1fr;
    gap: 1em;
  }

  /* 564pxまでは3col固定のがいいかも */
  .p-pickup > ul > li {
    display: grid;
    grid-template-rows: subgrid;
    color: #fff;
  }
  .p-pickup > ul > li > a {
    display: grid;
    grid-template-rows: 3.5em auto;
    gap: .8em;
    padding: .8em 1.6em;
    color: #fff;
    text-decoration: none;
    line-height: 1.3;
    border-radius: .5em;
    font-size: clamp(0.875rem, 0.764rem + 0.56vw, 1.125rem);
    transition: box-shadow .2s var(--ease);
    box-shadow: 6px 6px 24px 0px rgba(17, 88, 123, 0);
  }
  .p-pickup > ul > li > a > img {
    margin-inline: auto;
    width: 3.5em;
  }

  .p-pickup > ul > li > a:hover {
    box-shadow: 6px 6px 24px 0px rgba(35, 59, 70, 0.3);
  }
  .p-pickup > ul > li > a > span {
    text-align: center;
  }
  .p-pickup > ul > li > a > span::before {
    display: block;
    margin-bottom: .5em;
    font-family: var(--font-point);
    font-size: var(--font-10px);
  }

  .p-pickup__research {
    background: linear-gradient(135deg, #068FDB 50%,#57C0E6);
  }
  .p-pickup__research > span::before {
    content: 'MISSION';
  }
  .p-pickup__member {
    background: linear-gradient(135deg, #1682B8 50%,#3EBCDB);
  }
  .p-pickup__member > span::before {
    content: 'MEMBER';
  }
  .p-pickup__pubs {
    background: linear-gradient(135deg, #3B52C1 50%,#6AA9E0);
  }
  .p-pickup__pubs > span::before {
    content: 'PUBLICATIONS';
  }
  .p-pickup__proj {
    background: linear-gradient(135deg, #0946A3 50%,#834FBF);
  }
  .p-pickup__proj > span::before {
    content: 'PROJECT';
  }
  .p-pickup__inst {
    background: linear-gradient(135deg, #1587D3 50%,#5DB6F9);
  }
  .p-pickup__inst > span::before {
    content: 'INSTRUMENT';
  }
  .p-pickup__news {
    background: linear-gradient(135deg, #068FDB 50%,#CCB3BC);
  }
  .p-pickup__news > span::before {
    content: 'NEWS';
  }

  @container (845px >= width) {
    .p-pickup > ul {
      max-width: 600px;
      margin-inline: auto;
    }
  }
  @container (845px < width) {
    .p-pickup > ul {
      grid-template-columns: repeat(auto-fit, minmax(249px, 1fr));
    }
    .p-pickup > ul > li > a {
      grid-template-columns: 3.5em auto;
      grid-template-rows: initial;
      gap: 1.3em;
      align-items: center;
    }
    .p-pickup > ul > li > a > span {
      text-align: initial;
    }
  }

  /* news */
  .sec-news {
    padding: 2em;
    border-radius: 1.5em;
    box-shadow: var(--box-shadow);
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }
  .sec-news .c-h2 {
    margin-bottom: 1em;
    font-family: var(--font-point);
    letter-spacing: 0;
  }
  .sec-news dl + dl {
    margin-top: 1em;
    padding-top: 1em;
    background-image: linear-gradient(to right, #9A9A9A, #9A9A9A 1px, transparent 1px, transparent 4px);
    background-size: 4px 1px;
    background-position: left top;
    background-repeat: repeat-x;
  }
  .sec-news dt {
    color: var(--primary-color);
    font-family: var(--font-point);
  }

  /* policy */
  .sec-policy {
    background-color: var(--bg-color);
  }
  .sec-policy .c-h2 {
    text-align: center;
  }
  .sec-policy .policy__content {
    margin-top: 2em;
    padding-top: 2em;
  }
  .policy__title {
    font-size: clamp(1rem, 0.944rem + 0.28vw, 1.125rem);
    font-weight: 400;
    text-align: center;
  }
  .policy__title span {
    display: inline-block;
    margin-top: .2em;
    font-family: var(--font-point);
    font-size: 2.4em;
    font-weight: 100;
    line-height: 1;
  }
  .policy__content-body {
    margin-top: 3em;
    padding-bottom: 4rem;
  }

  .policy__univ-title,
  .policy__shimadzu-title {
    width: 50vw;
    margin-inline: auto;
    max-width: 250px;
  }
  .policy__univ-body,
  .policy__shimadzu-body {
    margin-top: 2em;
  }

  /* access */
  .sec-access {
    background-color: #fff;
  }
  .sec-access .c-h2 {
    text-align: center;
  }
  .access__content {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
  .access__content-body h3 {
    margin-bottom: 1.3em;
  }
  .access__img {
    display: flex;
    gap: 1em;
    width: fit-content;
    margin-inline: auto;
  }

  @media screen and (768px >= width) {
    .policy__cross {
      width: 12%;
      max-width: 4em;
      margin-inline: auto;
      margin-top: 2em;
      margin-bottom: 2em;
    }
  }

  @media screen and (768px < width) {
    .sec-news {
      padding: 3em 2.5em;
    }
    .sec-news dl {
      display: grid;
      grid-template-columns: 6em auto;
      gap: 2em;
    }

    .sec-policy {
      background-image: url(../img/home/policy_bg.svg);
      background-position: center bottom 8rem;
      background-repeat: no-repeat;
    }
    .policy__content {
      padding-top: 3rem;
    }
    .policy__content-body {
      display: grid;
      grid-template-columns: 2fr 1fr 2fr;
      grid-column-gap: 0px;
      grid-row-gap: 0px;
      padding-bottom: 8rem;
    }

    .policy__univ-title {
      grid-area: 1 / 1 / 2 / 2;
      display: grid;
      align-items: center;
      justify-content: center;
    }
    .policy__univ-body {
      grid-area: 2 / 1 / 3 / 2;
      margin-top: 3em;
    }
    .policy__cross {
      grid-area: 1 / 2 / 3 / 3;
      display: grid;
      align-items: center;
      justify-content: center;
    }
    .policy__shimadzu-title {
      grid-area: 1 / 3 / 2 / 4;
      display: grid;
      align-items: center;
      justify-content: center;
    }
    .policy__shimadzu-body {
      grid-area: 2 / 3 / 3 / 4;
      margin-top: 3rem;
    }


    .access__content {
      flex-direction: row-reverse;
      gap: 4em;
    }
    .access__content-body {
      flex: 1;
    }
    .access__content figure {
      flex: 1.2;
    }
    .access__img {
      gap: 2em;
    }
  }


}

@scope (.about) {
  .p-mission {
    display: grid;
    gap: 3em;
    grid-template-columns: 1fr;
  }
  .p-mission__img {
    overflow: hidden;
    border-radius: 1.5em;
  }
  .p-mission__img img {
    object-fit: cover;
    border-radius: 1.5em;
    object-position:70% center;
  }
  .p-mission__title {
    font-size: clamp(2.4rem, 2.133rem + 1.33vw, 3rem);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: .02em;
    margin-bottom: 1em
  }
  .p-mission__title > span {
    font-size: .9em;
  }
  @media screen and (768px >= width) {
    .p-mission__img {
      width: 100%;
      aspect-ratio: 2/1;
    }
    .p-mission__img img {
      aspect-ratio: 2/1;
    }
  }
  @media screen and (768px < width) {
    .p-mission {
      display: grid;
      gap: 6em;
      grid-template-columns: 5fr 7fr;
    }
    .p-mission__img img {
      height: 100%;
      max-height: 620px;
    }
  }
}

@scope(.member) {
  .p-memberList {
    display: grid;
    gap: .5em 1em;
    grid-template-columns: 1fr 1fr;
  }
  .p-memberList dl {
    width: 100%;
    padding: .8em;
    border: 1px solid #cecece;
    border-radius: .5em;
  }
  .p-memberList > div > dl {
    margin-bottom: .5em;
  }
  .p-memberList > div > dl:nth-of-type(2n){
    background-color: var(--bg-color)
  }
  .p-memberList > dl:nth-of-type(4n+3),
  .p-memberList > dl:nth-of-type(4n+4){
    background-color: var(--bg-color)
  }
  .p-memberList dd {
    margin-top: .5em;
    font-size: var(--font-12px);
    line-height: 1.4;
    display: flex;
    flex-direction: column;
  }
  .p-memberList dd span.icon {
    font-size: var(--font-11px);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 1em;
    padding: 0 .6em .1em;
    display: inline-block;
    margin-right: auto;
    margin-bottom: .3em;
    white-space: nowrap;
  }
  @media screen and (768px < width) {
    .p-memberList {
      gap: 0.5em 2.5em;
    }

    .p-memberList dl {
      display: grid;
      grid-template-columns: 2fr 3fr;
      align-items: center;
      padding: 1em 2em;
      border: 1px solid #cecece;
      border-radius: .5em;
    }

    .p-memberList dd {
      margin: 0;
      font-size: var(--font-14px);
      display: flex;
      flex-direction: row;
      align-items: flex-start;
    }
    .p-memberList dd span.icon {
      display: inline-block;
      margin-right: .5em;
    }
  }
}

@scope(.achievements) {

  .titleYear.c-h3 {
    scroll-margin-top: 80px;
  }
  .c-achieveSelector {
    margin-top: -2em;
    width: fit-content;
    margin-left: auto;
  }
  .c-achieveSelector__selector {
    display: inline-flex;
    align-items: center;
    position: relative;
  }
  .c-achieveSelector__selector::after{
      position: absolute;
      right: 15px;
      width: 10px;
      height: 7px;
      background-color: #535353;
      clip-path: polygon(0 0, 100% 0, 50% 100%);
      content: '';
      pointer-events: none;
  }
  .c-achieveSelector__selector select {
      outline: none;
      appearance: none;
      max-width: 8em;
      height: 2.8em;
      padding: .4em calc(.8em + 30px) .4em .8em;
      border: 1px solid #d0d0d0;
      border-radius: 3px;
      background-color: #fff;
      color: #333333;
      font-size: 1em;
      cursor: pointer;
  }

  .accordion-toggle[aria-expanded="true"]::after {
    display: inline-block;
    margin-left: 1em;
    content: '－';
  }  .accordion-toggle[aria-expanded="false"]::after {
    display: inline-block;
    margin-left: 1em;
    content: '＋';
  }

  .c-achievementBlock {
    padding: 1em;
  }
  .c-achievementBlock + .c-achievementBlock {
    border-top: 1px solid #CECECE;
  }
  .c-achievementBlock time {
    font-family: var(--font-point);
    color: var(--primary-color);
  }
  .c-achievementBlock h3 {
    margin-bottom: .5em;
    padding-bottom: .5em;
    background-image: linear-gradient(to right, #9A9A9A, #9A9A9A 1px, transparent 1px, transparent 4px);
    background-size: 4px 1px;
    background-position: left bottom;
    background-repeat: repeat-x;
  }
  .c-achievementBlock .author {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1em;
    margin-bottom: 1em;
  }
  .c-achievementBlock .author > li {
    margin-right: 1em;
  }
  .c-achievementBlock button {
    font-family: var(--font-point);
    font-size: var(--font-13px);
    padding: 0 2em;
    color: #fff;
    border-radius: 1em;
    background-color: var(--secondary-color);
    margin-inline: auto;
    width: fit-content;
  }
  .achievement__more {
    visibility: hidden;
    height: 0;
    opacity: 0;
    transition: opacity .3s var(--ease), height .3s var(--ease);
    padding-top: 1em;
  }
  .achievement__more.is-open {
    visibility: visible;
    height: fit-content;
    opacity: 1;
  }

  .achievement__more > ol > li sup {
    display: inline-block;
    margin-right: .4em;
  }

  @media screen and (768px < width) {

  }
}

@scope(.reach) {
  .p-reachCards {
    display: grid;
    gap: 1em;
    grid-template-columns: 1fr;
  }


  .p-reachCards > dl {
    padding: 1.5em 1em;
    border: 1px solid #CECECE;
    border-radius: 1em;
  }
  .p-reachCards > dl dt {
    margin-bottom: 1em;
    font-weight: 600;
    color: var(--primary-color);
  }

  .c-video {
    max-width: 736px;
  }
  @media screen and (768px < width) {
    .p-reachCards {
      display: grid;
      gap: 2.5em;
      grid-template-columns: 1fr 1fr;
    }
  .p-reachCards > dl {
    padding: 2em;
  }

  }

}

@scope(.instruments) {
  .c-video {
    margin-top: 2em;
  }
  .p-quantitative,
  .p-imaging {
    display: grid;
    gap: 2em;
    grid-template-columns: 1fr;
    margin-top: 2.5em;
  }
  .c-img-border {
    border: 1px solid #cecece; border-radius: 1em;
  }
  .p-prdLink {
    margin-top: .8em;
    text-align: center;
  }
  .p-imaging__ex h4 {
    margin: 0;
    text-align: center;
    margin-bottom: 1em;
  }
  .p-imaging__ex__imgs {
    display: grid;
    gap: 1em;
    grid-template-columns: 1fr 1fr;
    width: fit-content;
    margin-inline: auto;
  }
  .p-imaging__ex__imgs figure {
    max-width: 160px;
  }
  .p-imaging__ex__imgs figcaption {
    margin-top: .5em;
    font-size: var(--font-12px);
    text-align: center;
  }

  @media screen and (768px < width) {
    .p-quantitative {
      grid-template-columns: 1fr 1fr 1fr;
    }
    .p-imaging {
      grid-template-columns: 1fr 2fr;
    }
  }
}

@scope(.news) {
  .sec-news dl + dl {
    margin-top: 1em;
    padding-top: 1em;
    background-image: linear-gradient(to right, #9A9A9A, #9A9A9A 1px, transparent 1px, transparent 4px);
    background-size: 4px 1px;
    background-position: left top;
    background-repeat: repeat-x;
  }
  .sec-news dt {
    color: var(--primary-color);
    font-family: var(--font-point);

  }


  @media screen and (768px < width) {
    .sec-news dl {
      display: grid;
      grid-template-columns: 6em auto;
      gap: 2em;
    }
  }
}











