@charset "UTF-8";
/*****************************
* 研究活動 リニューアル
******************************/
body {
  font-size: min(3vw, 16px);
}

body:not(.index) .main-visual {
  margin-bottom: 0;
}

.head-page.lev2 {
  color: var(--main_color);
  font-size: min(5vw, 30px);
  margin-top: min(8.5vw, 40px);
  margin-bottom: min(8vw, 40px);
}

.project-list figure img {
  width: 100%;
}

.icon-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
.icon-wrapper .img {
  flex: 0 1 66px;
}
.icon-wrapper .txt {
  flex: 1;
}
.icon-wrapper .txt p {
  line-height: 1.6;
  font-size: min(3vw, 16px);
}
.icon-wrapper .txt .link a {
  margin-top: 10px;
}
@media screen and (max-width: 608px) {
  .icon-wrapper .txt .link a {
    width: 100%;
  }
}

.current {
  padding-top: min(7vw, 20px);
}

.past {
  margin-top: min(12vw, 80px);
}

a.btn-black {
  display: inline-block;
  color: #333333;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #bebebe;
  padding: 5px 10px;
}

@media (609px <= width) {
  a.btn-black {
    background: transparent;
    position: relative;
    z-index: 1;
    transition: 0.3s;
  }

  a.btn-black::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #333;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease 0.3s;
  }

  a.btn-black:hover {
    color: #fff;
  }

  a.btn-black:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
  }
}
a.btn-blue {
  text-decoration: none;
  border: 1px solid var(--main_color);
  border-radius: 50px;
  padding: 10px 30px;
  transition: 0.3s;
  color: var(--main_color);
}
a.btn-blue:hover {
  background-color: var(--main_color);
  color: #ffffff;
}

/*****************************
* 個別ページ
******************************/
body.project .main-visual a {
  color: #ffffff;
  text-decoration: none;
}

@media (width <= 900px) {
  .release {
    margin: 0 calc(50% - 50vw);
  }
}

.page-ttl-wrapper {
  display: flex;
  gap: 20px;
}
@media (901px < width) {
  .page-ttl-wrapper {
    margin-top: min(8.5vw, 40px);
  }
}
@media (width <= 900px) {
  .page-ttl-wrapper {
    padding: min(4.5vw, 30px);
    background-color: #ececec;
  }
}
.page-ttl-wrapper .left-line-out {
  font-size: min(4vw, 24px);
  line-height: 1.5;
  margin-bottom: 0;
}
@media (width <= 900px) {
  .page-ttl-wrapper .left-line-out {
    padding: 0 min(3vw, 1.3rem);
  }
}
.page-ttl-wrapper .left-line-out .sub-ttl {
  font-size: min(3.3vw, 16px);
}
@media (901px < width) {
  .page-ttl-wrapper {
    margin-bottom: min(8vw, 40px);
  }
}
.page-ttl-wrapper .txt {
  flex: 1;
}
.page-ttl-wrapper .img {
  flex: 0 1 140px;
  text-align: center;
}
@media (width <= 900px) {
  .page-ttl-wrapper .thumb {
    display: block;
    margin-top: 10px;
  }
}

.back-color-arrow {
  padding: min(2vw, 0.5rem) min(2.5vw, 1rem);
  font-size: min(4vw, 24px);
  margin-top: min(14vw, 80px);
}

.project-table {
  width: 100%;
  line-height: 1.5;
  font-size: min(3.3vw, 16px);
  margin: 0 0 min(7vw, 20px);
}
.project-table caption {
  text-align: left;
  color: var(--main_color);
  font-size: min(4vw, 24px);
}
.project-table tr {
  background-color: #fff;
  border-bottom: 1px dotted #b8b8b8;
  margin-top: 20px;
}
.project-table th, .project-table td {
  padding: 1em 10px 1em 1em;
}
.project-table th {
  color: var(--main_color);
}
@media (width <= 640px) {
  .project-table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .project-table tr {
    display: block;
    margin-bottom: 0.625em;
  }
  .project-table td {
    border-bottom: 1px solid #bbb;
    display: block;
    position: relative;
    padding: 1em 1em 1em 5.5em;
    border-right: none;
  }
  .project-table td:first-child {
    padding-left: 0.625em;
  }
  .project-table td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
    color: var(--main_color);
  }
  .project-table td:last-child {
    border-bottom: 0;
  }
}

.to-project-list {
  text-align: center;
  margin-top: min(20vw, 120px);
}
.to-project-list a {
  padding: 10px 40px;
}

.project-ttl-lev3 {
  color: var(--main_color);
  font-size: min(4vw, 24px);
  margin-top: min(8vw, 40px);
}

.project-ttl-lev4 {
  font-size: min(4vw, 24px);
  font-weight: bold;
  border-left: 5px solid var(--main_color);
  padding-left: 1rem;
  margin-top: min(8vw, 40px);
  margin-bottom: min(6vw, 20px);
  line-height: 1.1;
}

.project-ttl-member {
  color: var(--main_color);
  margin-top: min(10vw, 50px);
}

.btn-download-wrapper {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 40px;
  margin: 40px 0 20px;
  padding: 0;
}

.btn-download {
  border: 2px solid var(--main_color);
  color: #3e3a39;
  border-radius: 5px;
  padding: 7px 10px 7px 13px;
  transition: 0.5s;
  text-decoration: none;
}
.btn-download:visited {
  color: #3e3a39;
}
.btn-download:after {
  margin-left: 5px;
  content: "";
  display: inline-block;
  width: 12px;
  height: 11px;
  background-color: var(--main_color);
  -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="10.89" viewBox="0 0 12 10.89"><polyline stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" fill="none" points="1 7.94 1 9.89 11 9.89 11 7.94"/><line stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" fill="none" x1="6" y1="7.67" x2="6" y2="1"/><line stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" fill="none" x1="6" y1="7.67" x2="9.06" y2="4.61"/><line stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" fill="none" x1="6" y1="7.67" x2="2.94" y2="4.61"/></svg>');
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="10.89" viewBox="0 0 12 10.89"><polyline stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" fill="none" points="1 7.94 1 9.89 11 9.89 11 7.94"/><line stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" fill="none" x1="6" y1="7.67" x2="6" y2="1"/><line stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" fill="none" x1="6" y1="7.67" x2="9.06" y2="4.61"/><line stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" fill="none" x1="6" y1="7.67" x2="2.94" y2="4.61"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: background-color 0.3s ease;
}
.btn-download:hover {
  background-color: var(--main_color);
  color: #ffffff;
}
.btn-download:hover:after {
  background-color: white;
}

.btn-related-link {
  display: inline-block;
  background-color: #f2cc6d;
  border: 2px solid #f2cc6d;
  color: #3e3a39;
  padding: 20px 15px;
  border-radius: 7px;
  text-decoration: none;
  opacity: 1;
  transition: 0.5s;
}
.btn-related-link:hover {
  background-color: #ffffff;
}
.btn-related-link:hover:after {
  background-color: #f2cc6d;
}
.btn-related-link:visited {
  color: #3e3a39;
}
.btn-related-link:after {
  margin-left: 10px;
  content: "";
  display: inline-block;
  width: 9px;
  height: 16px;
  background-color: #ffffff;
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="16" viewBox="0 0 9 16"><polyline stroke="black" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" points="1 15 8 8 1 1"/></svg>');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: background-color 0.3s ease;
}

.link-txt-hover {
  position: relative;
  padding: 3px 5px;
  transition: all 0.3s ease;
  color: #3e3a39;
  text-decoration: none;
}

.link-txt-hover::before,
.link-txt-hover::after {
  position: absolute;
  left: 0;
  content: "";
  transition: all 0.3s ease;
}

.link-txt-hover::before {
  bottom: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  background-color: var(--main_color);
  border-radius: 50px;
}

.link-txt-hover:hover::before {
  height: 100%;
  opacity: 0.4;
}

.link-txt-hover::after {
  bottom: -1px;
  width: 100%;
  height: 2px;
  border-bottom: 2px solid var(--main_color);
  opacity: 1;
}

.link-txt-hover:hover::after {
  left: 50%;
  right: 50%;
  width: 0;
  opacity: 0;
}

.link-txt-hover:visited {
  color: #3e3a39;
}

.list-style li {
  position: relative;
  padding-left: min(4vw, 1.05rem);
  line-height: 1.55;
  margin-bottom: 5px;
}
.list-style li::before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 2px;
  width: min(1.9vw, 12px);
  height: auto;
  aspect-ratio: 1;
  background: var(--main_color);
  border-radius: 15px;
}

.sicat ol li {
  padding-left: 2rem;
}

@media (901px < width) {
  .layout-half {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media (901px < width) {
  .layout-img-left {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: min(5vw, 70px);
  }
}
@media (width <= 900px) {
  .layout-img-left .txt {
    margin-top: 20px;
  }
  .layout-img-left .img {
    text-align: center;
  }
}
@media (901px < width) {
  .layout-img-right {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: min(5vw, 70px);
  }
  .layout-img-right .img {
    order: 1;
  }
}
@media (width <= 900px) {
  .layout-img-right .txt {
    margin-top: 20px;
  }
  .layout-img-right .img {
    text-align: center;
  }
}
.w-100 {
  width: 100%;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-150 {
  margin-top: 150px;
}

.f-bold {
  font-weight: bold;
}

.main-color {
  color: var(--main_color);
}

.f-13 {
  font-size: min(3vw, 13px);
}

.f-24 {
  font-size: min(4vw, 24px);
}

.inline-c {
  text-align: center;
}

.border-left {
  border-left: 5px solid var(--main_color);
  padding-left: 1rem;
  line-height: 1.3;
}

/*****************************
* レスポンシブ対応
******************************/
/*****************************
メモ
@media (width < 600px)
@media (600px <= width < 1200px)
@media (1200px <= width)
@media (width >= 609px)
@media (width <= 640px)
@media (641px < width)
@media (width <= 900px)
@media (901px < width)

style.cssの設定
@media screen and (min-width: 1001px)
@media screen and (max-width:1000px)
@media screen and (min-width: 901px){
.sp {
    display: none;
}
@media screen and (max-width: 900px){
.pc{
    display: none;
}
@media screen and (max-width:1000px) and (min-width: 641px)
@media screen and (min-width: 641px)
@media screen and (max-width:640px)


デフォルトのフォントサイズ指定
body font-size: min(3.3vw,17px);

table min(3.3vw, 15px);
caption min(3.3vw, 20px);
.time-post min(3.2vw, 14px);
.category-post min(3vw, 14px);
.back-color-arrow min(4.8vw, 30px);
.left-line-out font-size: min(4.3vw, 22px);
.color-title font-size: min(4.5vw, 22px);
.box-3column .color-title  font-size: min(4vw, 22px);
.global-nav > li > a  font-size: min(3.8vw, 17px);
.footer-logo span  font-size: min(2.7vw, 14px);
.info-footer font-size: min(3vw, 14px);
min(2.5vw, 14px);
min(4.8vw, 20px);
min(4.8vw, 20px);
min(5.5vw, 32px);
min(3.2vw, 13px);
min(3.3vw, 16px);
min(3.5vw,13px);
min(4.5vw, 20px);
min(4.8vw, 28px);
min(3.6vw, 16px);

******************************/

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