@charset "utf-8";


.container {
  margin: 100px 8% 0;
  position: relative;
  padding-top: 100px;
  padding-bottom: 5px;
}
.container::before {
  content: '';
  position: absolute;
  left: calc(33% - 1px);
  top: 0;
  bottom: 200px;
  width: 1px;
  background-color: #000;
}
.title {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 10px;
}
hr {
  border: none;
  border-top: 1px solid #000;
  margin: 0 0 20px 0;
}
.content-wrapper {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.left-section {
  flex: 0 0 33%;
}
.left-title {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}
.right-section {
  flex: 1;
  padding-left: 60px;
}
.right-section ul{
  font-size: 14px;
  text-align: justify;
  text-justify: inter-ideograph;
}
.section-bottom-line {
  margin: 0px 0 0 calc(33% - 1px);
}
/*-- Selected Publications by Masakazu Ishigure --*/
.publications-list {
  list-style: none;
}
.publication-item {
  margin-bottom: 20px;
  line-height: 1.8;
  color: black;
  cursor: pointer;
  transition: color 0.2s;
}
.publication-item a {
  color: black;
  text-decoration: none;
  transition: color 0.2s;
}
.publication-item:hover,
.publication-item:hover a {
  color: #666;
}

.section-divider {
  margin: 200px 0 20px 0;
}
/*-- Latest thesis 卒業制作 --*/
.cv-list {
  list-style: none;
  margin-bottom: 20px;
}
.cv-item {
  margin-bottom: 20px;
  line-height: 1.8;
  color: black;
}
.cv-item a {
  color: black;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.cv-item a:hover {
  color: #666;
}
/*-- Latest thesis 卒業論文 --*/
.thesis-list {
  list-style: none;
  margin-bottom: 20px;
}
.thesis-item {
  margin-bottom: 20px;
  line-height: 1.8;
  color: black;
}
.thesis-item a {
  color: black;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.thesis-item a:hover {
  color: #666;
}
/*-- Archives 卒業制作 --*/
.archives-design-list {
  list-style: none;
  margin-bottom: 20px;
}
.archives-design-item {
  margin-bottom: 20px;
  line-height: 1.8;
  color: black;
}
.archives-design-item a {
  color: black;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.archives-design-item a:hover {
  color: #666;
}
/*-- Archives 卒業論文 --*/
.archives-thesis-list {
  list-style: none;
  margin-bottom: 20px;
}
.archives-thesis-item {
  margin-bottom: 20px;
  line-height: 1.8;
  color: black;
}
.archives-thesis-item a {
  color: black;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.archives-thesis-item a:hover {
  color: #666;
}
/*-- Archives 修士論文 --*/
.archives-master-list {
  list-style: none;
  margin-bottom: 20px;
}
.archives-master-item {
  margin-bottom: 20px;
  line-height: 1.8;
  color: black;
}
.archives-master-item a {
  color: black;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.archives-master-item a:hover {
  color: #666;
}
/*-- Exhibition --*/
.exhibition-list {
  list-style: none;
}
.exhibition-item {
  margin-bottom: 20px;
  line-height: 1.8;
  color: black;
  cursor: pointer;
  transition: color 0.2s;
}
.exhibition-item a {
  color: black;
  text-decoration: none;
}
.exhibition-item a:hover {
  color: #666;
}
/*-- Works --*/
.works-list {
  list-style: none;
}
.works-item {
  margin-bottom: 20px;
  line-height: 1.8;
  color: black;
  cursor: pointer;
  transition: color 0.2s;
}
.works-item a{
  text-decoration: none;
  color: black;
}
.works-item a:hover {
  color: #666;
}
/*-- Academic Journal --*/
.journal-list {
  list-style: none;
}
.journal-item {
  margin-bottom: 20px;
  line-height: 1.8;
  color: black;
}
.journal-item a{
  text-decoration: none;
  color: black;
}
.journal-item a:hover {
  color: #666;
}

.book-image {
  position: fixed;

  pointer-events: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  transform: translate(0%, -43%);
}
.book-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.136);
}
.book-image.visible {
  opacity: 1;
}

.project-link{
  margin: 150px 0;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding-top: 50px;
  padding-left: calc(33% - 1px);
}
.project-link a {
  display: inline-block;
  transform: translateX(-50%);
  color: inherit;
  text-decoration: none;
}
.project-link a:hover{
  text-decoration: underline;
}
@media screen and (min-width: 1441px) {
  .book-image {
    width:13vw;
  }
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
  .content-wrapper {
      min-height: auto;
  }
  .book-image {
      display: none;
  }
}

@media (max-width: 750px), (hover: none) and (pointer: coarse) {
  .container {
    margin: 60px 8% 0;
    padding-top: 30px;
  }
  .container::before {
    left: 0;
    bottom: 200px;
  }
  .content-wrapper {
    flex-direction: column;
    min-height: auto;
  }
  .title {
    margin-left: 20px;
  }
  .left-section {
    flex: none;
    width: 100%;
    display: block;
    margin-left: 20px;
    margin-bottom: 0px;
  }
  .left-title {
    font-weight: 500;
    margin-bottom: 10px;
  }
  hr {
    margin-bottom: 20px;
  }
  .right-section {
    padding-left: 0;
  }
  .right-section ul{
    margin-left: 20px;
  }
  .section-bottom-line {
    margin: 0;
  }
  .project-link{
    margin: 200px 0;
    padding-left: 80px;
  }
  .book-image {
    display: none;
  }
 .cv-item {
    margin-top: 20px;
  }
  .thesis-item {
    margin-top: 20px;
  }
  .archives-design-item {
    margin-top: 20px;
  }
  .archives-thesis-item {
    margin-top: 20px;
  }
  .archives-master-item {
    margin-top: 20px;
  }
}
@media screen and (max-width: 600px) {
  .left-title {
    font-size: 14px;
  }
.right-section ul{
    font-size: 12px;
  }
}