@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-style: none;
}

video,
iframe {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

.main-container {
  margin: 0 auto;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .inner-container {
    max-width: 800px;
    margin: 0px auto;
  }
}

.hamburger-menu {
  width: 48px;
  height: 48px;
  z-index: 1000;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background-color: #FDD000;
  border-radius: 50%;
}
.hamburger-menu span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
}
.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
@media (min-width: 768px) {
  .hamburger-menu {
    right: 32px;
  }
}
@media (min-width: 1024px) {
  .hamburger-menu {
    right: 48px;
  }
}

.footer {
  background-color: #ffffff;
  padding: 22px 4px;
}
.footer .footer-content {
  max-width: 342px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer .footer-content {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0px 30px;
  }
}
@media (min-width: 1024px) {
  .footer .footer-content {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.footer .footer-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.footer .footer-title h3 {
  font-size: 15px;
  font-weight: bold;
  line-height: 32px;
  flex: 1;
}
.footer .social-icon {
  width: 32px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.footer .social-icon:hover {
  opacity: 0.7;
}
.footer .social-icon svg {
  width: 100%;
  height: auto;
}
.footer .footer-nav {
  margin-bottom: 11px;
}
@media (min-width: 768px) {
  .footer .footer-nav {
    display: flex;
    gap: 60px;
  }
}
.footer .footer-nav ul {
  margin-bottom: 26px;
}
@media (min-width: 768px) {
  .footer .footer-nav ul {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 90px;
    gap: 0px 40px;
  }
}
.footer .footer-nav ul li {
  font-size: 15px;
  line-height: 26px;
  padding-left: 22.5px;
  position: relative;
}
.footer .footer-nav ul li::before {
  content: "";
  display: block;
  position: absolute;
  content: "•";
  left: 7px;
}
.footer .footer-copyright {
  padding-top: 11px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}
.footer .footer-copyright p {
  font-size: 11px;
  line-height: 26px;
}
@media (min-width: 768px) {
  .footer .footer-copyright {
    width: 100%;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 22px;
  border: 1px solid #000000;
  width: 160px;
  height: 40px;
  border-radius: 20px;
  background-color: transparent;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn--center {
  display: flex;
  margin: 0 auto;
}
.btn:hover {
  background-color: #f7eee8;
}
.btn--small {
  padding: 0px;
  width: 127px;
  height: 28px;
  font-size: 13px;
}
.btn--small::after {
  position: relative;
  top: -1px;
}
.btn--large {
  padding: 14px 28px;
  font-size: 18px;
}
.btn--wide {
  width: 226px;
}
.btn--toggle-open::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/arrow-down.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.btn--toggle-close::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/arrow-up.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.btn--primary {
  border-color: #703e0c;
  color: #703e0c;
}
.btn--primary:hover {
  background-color: #f7eee8;
}
.btn--detail::after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 6px;
  background-image: url(../images/arrow-right.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.btn--filled {
  background-color: #f7eee8;
  color: #ffffff;
}
.btn--filled:hover {
  background-color: white;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn:disabled:hover {
  background-color: transparent;
  color: inherit;
}
@media (min-width: 768px) {
  .btn.--color-w-md {
    background-color: #fff;
  }
  .btn.--color-w-md:hover {
    opacity: 0.75;
  }
}

.slider-btn {
  width: 28px;
  height: 28px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.slider-btn:hover {
  opacity: 0.6;
}
.slider-btn-prev {
  transform: rotate(45deg);
}
.slider-btn-next {
  transform: rotate(-135deg);
}
@media (min-width: 768px) {
  .slider-btn {
    width: 32px;
    height: 32px;
  }
}

.--hide {
  display: none !important;
}

.section-title {
  font-family: "Alumni Sans SC", sans-serif;
  font-size: 50px;
  font-weight: 400;
  color: #703e0c;
  line-height: 1;
  margin-bottom: 36px;
}
.section-title--small {
  font-size: 36px;
}
.section-title--large {
  font-size: 60px;
}
.section-title--center {
  text-align: center;
}
.section-title--left {
  text-align: left;
}
.section-title--dark {
  color: #333;
}
.section-title--white {
  color: #ffffff;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 60px;
  }
  .section-title--small {
    font-size: 40px;
  }
  .section-title--large {
    font-size: 72px;
  }
}

.arrow-icon {
  width: 20px;
  height: 20px;
}
.arrow-icon-inline {
  width: 17px;
  height: 6px;
  margin-left: 5px;
}
.arrow-icon--small {
  width: 16px;
  height: 16px;
}
.arrow-icon--large {
  width: 24px;
  height: 24px;
}

.social-icon {
  width: 32px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.social-icon:hover {
  opacity: 0.7;
}
.social-icon svg {
  width: 100%;
  height: auto;
}
.social-icon--facebook:hover svg {
  fill: #1877f2;
}
.social-icon--twitter:hover svg {
  fill: #1da1f2;
}
.social-icon--instagram:hover svg {
  fill: #e4405f;
}

.tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 30px;
  border: 1px solid;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.tag-event {
  border-color: #e1872e;
  color: #000000;
}
.tag-event:hover {
  background-color: rgba(225, 135, 46, 0.1);
}
.tag-notice {
  border-color: #bae12e;
  color: #000000;
}
.tag-notice:hover {
  background-color: rgba(186, 225, 46, 0.1);
}
.tag-journal {
  border-color: #83dacf;
  color: #000000;
}
.tag-journal:hover {
  background-color: rgba(131, 218, 207, 0.1);
}
.tag-other {
  border-color: #e27374;
  color: #000000;
}
.tag-other:hover {
  background-color: rgba(226, 115, 116, 0.1);
}
.tag--small {
  padding: 2px 6px;
  font-size: 10px;
}
.tag--large {
  padding: 6px 12px;
  font-size: 15px;
}

.tags-container {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.tags-container--left {
  justify-content: flex-start;
}
.tags-container--right {
  justify-content: flex-end;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.header .header-content {
  margin: 0 auto;
  padding: 10px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .header .header-content {
    padding: 18px 32px;
  }
}
@media (min-width: 1024px) {
  .header .header-content {
    padding: 36px 78px;
  }
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 9px;
  background-color: #FDD000;
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
  padding: 6px 12px 6px 20px;
}
@media (min-width: 768px) {
  .header .logo {
    padding: 10px 20px 10px 78px;
    margin-left: -78px;
  }
}
.header .logo img {
  width: 168px;
  height: 36px;
}
@media (min-width: 768px) {
  .header .logo img {
    width: 200px;
    height: 40px;
  }
}

.navigation-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
  pointer-events: none;
}
.navigation-menu.active {
  pointer-events: auto;
}
.navigation-menu.active .navigation-overlay {
  opacity: 1;
}
.navigation-menu.active .navigation-content {
  transform: translateY(0);
}

.navigation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navigation-content {
  position: relative;
  background-color: #f7eee8;
  width: 100%;
  height: 101vh;
  margin: 0 auto;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navigation-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 432px;
    height: 785px;
  }
}

.navigation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 26px;
  width: 100%;
  height: 70px;
  background-color: #f7eee8;
}
.navigation-header .logo {
  display: flex;
  align-items: center;
  gap: 9px;
}
.navigation-header .logo svg {
  width: 21.7px;
  height: 25px;
  fill: #703e0c;
}
.navigation-header .logo-text {
  font-size: 9px;
  font-weight: 500;
  line-height: 1.4;
}
.navigation-header .logo-text p {
  margin: 0;
}
@media (min-width: 768px) {
  .navigation-header .logo {
    display: none;
  }
}

.menu-close {
  position: absolute;
  top: 11px;
  right: 20px;
  width: 48px;
  height: 48px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.menu-close:hover {
  opacity: 0.7;
}
.menu-close svg {
  width: 20px;
  height: 20px;
  stroke: #333;
}
@media (min-width: 768px) {
  .menu-close {
    top: 44px;
    right: 75px;
    background-color: #fff;
    border-radius: 50%;
  }
}

.navigation-list {
  padding: 34px 42px;
  list-style: none;
  margin: 0;
}
@media (min-width: 768px) {
  .navigation-list {
    padding: 40px 60px;
  }
}

.navigation-item {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(-20px);
  animation: slideDown 0.5s forwards;
}
.navigation-item:nth-child(1) {
  animation-delay: 0.05s;
}
.navigation-item:nth-child(2) {
  animation-delay: 0.1s;
}
.navigation-item:nth-child(3) {
  animation-delay: 0.15s;
}
.navigation-item:nth-child(4) {
  animation-delay: 0.2s;
}
.navigation-item:nth-child(5) {
  animation-delay: 0.25s;
}
.navigation-item:nth-child(6) {
  animation-delay: 0.3s;
}
.navigation-item:nth-child(7) {
  animation-delay: 0.35s;
}
.navigation-item:nth-child(8) {
  animation-delay: 0.4s;
}
.navigation-item:last-child {
  margin-bottom: 0;
}
.navigation-item a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  font-size: 17px;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
}
.navigation-item a:hover {
  color: #703e0c;
}
.navigation-item a:hover .arrow-icon {
  transform: translateX(5px);
}
.navigation-item a .arrow-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.menu-open {
  overflow: hidden;
}

.home .hero-section {
  position: relative;
  padding: 0 16px 21px;
}
@media (min-width: 768px) {
  .home .hero-section {
    width: 100vw;
    height: 875px;
    background-image: url(../images/hero-bg-lg.png);
    background-size: cover;
    background-repeat: repeat-x;
    background-position: center bottom;
  }
}
.home .hero-section .hero-image {
  width: 100vw;
  height: 168.8405797101vw;
  margin: 0 -16px 21px;
  overflow: hidden;
}
.home .hero-section .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .home .hero-section .hero-image {
    width: 344px;
    height: 516px;
    position: absolute;
    top: 132px;
    left: calc(50% - 440px);
  }
}
.home .hero-section .hero-illust {
  display: none;
}
@media (min-width: 768px) {
  .home .hero-section .hero-illust {
    display: block;
    position: absolute;
    width: 795px;
    height: 645px;
    top: 90px;
    left: calc(50% - 660px);
    z-index: 0;
  }
}
.home .hero-section .hero-lead {
  display: none;
}
@media (min-width: 768px) {
  .home .hero-section .hero-lead {
    display: block;
    position: absolute;
    top: 275px;
    left: calc(50% - 54px);
    z-index: 1;
  }
}
.home .description h1 {
  font-size: 22.8px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 21px;
  text-align: center;
}
@media (min-width: 768px) {
  .home .description h1 {
    display: none;
  }
}
@media (min-width: 768px) {
  .home .description {
    top: 132px;
    left: calc(50% + 20px);
  }
}
@media (min-width: 1024px) {
  .home .description {
    top: 194px;
    left: calc(50% + 20px);
  }
}
.home .description .content {
  font-size: 15px;
  font-weight: 350;
  line-height: 32px;
  margin: 0 auto 21px;
  padding: 0px 32px;
}
@media (min-width: 768px) {
  .home .description .content {
    max-width: 800px;
    padding: 0px;
    margin: 50px auto 20px;
    font-size: 16px;
  }
}
.home .description .hero-kyosei-image {
  width: 218px;
  height: 264px;
  margin: 0 auto 21px;
  position: relative;
  z-index: 1;
}
.home .description .hero-kyosei-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .home .description .hero-kyosei-image {
    display: none;
  }
}
@media (min-width: 768px) {
  .home .description .btn--detail {
    font-size: 14px;
    height: 28px;
  }
}
@media (min-width: 768px) {
  .home .description .read-more {
    display: none;
  }
}
.home .photo-gallery {
  padding: 90px 18px;
  text-align: center;
}
@media (min-width: 768px) {
  .home .photo-gallery {
    max-width: 420px;
    margin: 0px auto;
  }
}
@media (min-width: 1024px) {
  .home .photo-gallery {
    max-width: 1050px;
  }
}
.home .photo-gallery .section-title {
  font-size: 36px;
}
.home .photo-gallery .gallery-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.home .photo-gallery .swiper-slide {
  display: flex;
  justify-content: center;
}
.home .photo-gallery .gallery-image-container {
  width: 288px;
  height: 177px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.home .photo-gallery .gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .photo-gallery .gallery-indicators {
  display: flex;
  gap: 15px;
  justify-content: center;
  position: relative;
}
.home .photo-gallery .gallery-indicators .indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #424040;
  background-color: #fff;
}
.home .photo-gallery .gallery-indicators .indicator.swiper-pagination-bullet-active {
  background-color: #424040;
}
.home .photo-gallery .indicator {
  width: 30px;
  height: 14px;
  background-color: #e0e0e0;
  border-radius: 7px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.home .photo-gallery .indicator.active {
  background-color: #703e0c;
}
.home .photo-gallery .indicator:hover:not(.active) {
  background-color: rgb(198.5, 198.5, 198.5);
}
.home .news-section {
  position: relative;
  padding: 27px 25px;
  padding-bottom: 160px;
}
@media (min-width: 768px) {
  .home .news-section {
    padding: 40px 40px 160px;
  }
}
@media (min-width: 1024px) {
  .home .news-section {
    padding: 60px 60px 160px;
  }
}
.home .news-section::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #fff4f4;
  border-top-right-radius: 80px;
  z-index: 0;
}
@media (min-width: 1024px) {
  .home .news-section::after {
    width: calc(100% - 190px);
  }
}
.home .news-section .inner-container {
  position: relative;
  z-index: 1;
}
.home .news-section .news-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 36px;
}
.home .news-section .news-tags .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 4px 8px;
  border: 1px solid;
  border-radius: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 32px;
  color: #000000;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.home .news-section .news-tags .tag.tag-all {
  border-color: #666;
}
.home .news-section .news-tags .tag.tag-all:hover, .home .news-section .news-tags .tag.tag-all.active {
  background-color: #666;
  border-color: #666;
  color: #fff;
}
.home .news-section .news-tags .tag.tag-event {
  border-color: #e1872e;
}
.home .news-section .news-tags .tag.tag-event:hover, .home .news-section .news-tags .tag.tag-event.active {
  background-color: #e1872e;
  border-color: #e1872e;
  color: #fff;
}
.home .news-section .news-tags .tag.tag-notice {
  border-color: #bae12e;
}
.home .news-section .news-tags .tag.tag-notice:hover, .home .news-section .news-tags .tag.tag-notice.active {
  background-color: #bae12e;
  border-color: #bae12e;
  color: #fff;
}
.home .news-section .news-tags .tag.tag-journal {
  border-color: #83dacf;
}
.home .news-section .news-tags .tag.tag-journal:hover, .home .news-section .news-tags .tag.tag-journal.active {
  background-color: #83dacf;
  border-color: #83dacf;
  color: #fff;
}
.home .news-section .news-tags .tag.tag-paper {
  border-color: #e27374;
}
.home .news-section .news-tags .tag.tag-paper:hover, .home .news-section .news-tags .tag.tag-paper.active {
  background-color: #e27374;
  border-color: #e27374;
  color: #fff;
}
.home .news-section .news-tags .tag:not(.active):not(:hover) {
  background-color: transparent;
}
.home .news-section .news-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 0;
}
.home .news-section .news-item {
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}
.home .news-section .news-item:last-child {
  border-bottom: none;
}
.home .news-section .news-item:hover .news-title {
  color: #703e0c;
}
.home .news-section .news-meta {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 12px;
}
.home .news-section .news-meta time {
  font-size: 15px;
  color: #666666;
}
.home .news-section .news-title {
  font-size: 15px;
  font-weight: normal;
  line-height: 32px;
  transition: color 0.3s ease;
}
.home .journal-section {
  padding: 38px 36px;
  margin-top: -80px;
  padding-bottom: 160px;
  position: relative;
}
@media (min-width: 768px) {
  .home .journal-section {
    padding: 50px 50px 160px;
  }
}
@media (min-width: 1024px) {
  .home .journal-section {
    padding: 70px 70px 160px;
  }
}
.home .journal-section::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-right-radius: 80px;
  z-index: 0;
}
@media (min-width: 1024px) {
  .home .journal-section::after {
    width: calc(100% - 190px);
  }
}
.home .journal-section .inner-container {
  position: relative;
  z-index: 1;
}
.home .journal-section .journal-content {
  display: flex;
  gap: 27px;
  align-items: center;
  justify-content: center;
  margin-bottom: 65px;
}
@media (min-width: 768px) {
  .home .journal-section .journal-content {
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .home .journal-section .journal-content {
    gap: 60px;
  }
}
.home .journal-section .journal-image {
  width: 127px;
  height: 166px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 7px;
}
.home .journal-section .journal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .home .journal-section .journal-image {
    width: 180px;
    height: 235px;
  }
}
@media (min-width: 1024px) {
  .home .journal-section .journal-image {
    width: 220px;
    height: 290px;
  }
}
.home .journal-section .journal-text h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 32px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .home .journal-section .journal-text h3 {
    font-size: 20px;
  }
}
.home .journal-section .journal-text p {
  font-size: 15px;
  line-height: 26px;
}
@media (min-width: 768px) {
  .home .journal-section .journal-text p {
    font-size: 16px;
  }
}
.home .access-section {
  padding: 46px 28px;
  margin-top: -80px;
  position: relative;
}
@media (min-width: 768px) {
  .home .access-section {
    padding: 60px 40px;
  }
}
@media (min-width: 1024px) {
  .home .access-section {
    padding: 80px 60px;
  }
}
.home .access-section::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #f7eee8;
  border-top-right-radius: 80px;
  z-index: 0;
}
@media (min-width: 1024px) {
  .home .access-section::after {
    width: calc(100% - 190px);
  }
}
.home .access-section .inner-container {
  position: relative;
  z-index: 1;
}
.home .access-section .access-content {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.home .access-section .location-info h3,
.home .access-section .contact-info h3 {
  font-size: 15px;
  font-weight: bold;
  line-height: 32px;
  margin-bottom: 15px;
}
.home .access-section .location-info p,
.home .access-section .contact-info p {
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 15px;
}
.home .access-section .access-link {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  line-height: 32px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.home .access-section .access-link:hover {
  opacity: 0.7;
}
.home .access-section .access-link:hover {
  color: #703e0c;
}

.about-page {
  padding-top: 104px;
}
@media (min-width: 768px) {
  .about-page {
    padding-top: 184px;
  }
}
.about-page .about-content {
  padding: 0 26px;
  max-width: 393px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about-page .about-content {
    max-width: 768px;
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .about-page .about-content {
    max-width: 1060px;
    padding: 0 30px;
  }
}

.page-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 47px;
}
@media (min-width: 768px) {
  .page-title {
    font-size: 24px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .page-title {
    font-size: 28px;
    margin-bottom: 90px;
  }
}

.concept-section {
  margin-bottom: 72px;
}
@media (min-width: 768px) {
  .concept-section {
    margin-bottom: 90px;
  }
}
.concept-section .concept-intro {
  font-size: 15px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 4.5px;
  margin-bottom: 29px;
}
.concept-section .concept-intro p {
  margin: 0;
}
@media (min-width: 768px) {
  .concept-section .concept-intro {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
.concept-section .concept-circles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 29px 17px;
  margin-bottom: 29px;
}
@media (min-width: 768px) {
  .concept-section .concept-circles {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
  }
}
.concept-section .concept-item {
  position: relative;
  width: 159px;
  height: 159px;
}
@media (min-width: 768px) {
  .concept-section .concept-item {
    width: 180px;
    height: 180px;
  }
}
.concept-section .concept-item .circle-bg {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background-image: url(../images/ellipse.png);
  background-size: cover;
  background-position: center;
}
.concept-section .concept-item .circle-text {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.concept-section .concept-item .circle-text p {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .concept-section .concept-item .circle-text {
    font-size: 15px;
  }
}
.concept-section .concept-description {
  font-size: 15px;
  font-weight: 350;
  line-height: 32px;
  text-align: center;
  margin: 0;
}
@media (min-width: 768px) {
  .concept-section .concept-description {
    font-size: 16px;
  }
}

.section-title-with-icon {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .section-title-with-icon {
    font-size: 20px;
    margin-bottom: 70px;
  }
}
.section-title-with-icon .icon-square {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-square.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.research-fields {
  margin-bottom: 72px;
}
@media (min-width: 768px) {
  .research-fields {
    margin-bottom: 90px;
  }
}
@media (min-width: 768px) {
  .research-fields .field-item-container {
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0px auto;
  }
}
.research-fields .field-item {
  margin-bottom: 79px;
}
@media (min-width: 768px) {
  .research-fields .field-item {
    margin-bottom: 90px;
    width: 335px;
  }
}
.research-fields .field-item:last-child {
  margin-bottom: 0;
}
.research-fields .field-image-container {
  position: relative;
  width: 100%;
  height: 190px;
  border-radius: 0px;
  overflow: hidden;
  margin: 0 auto 23px;
}
@media (min-width: 768px) {
  .research-fields .field-image-container {
    width: 100%;
    margin-bottom: 30px;
  }
}
.research-fields .field-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.research-fields .field-image-container .field-label {
  position: absolute;
  top: 24px;
  left: 0;
  background-color: #ffffff;
  padding: 7px 19px;
  border-radius: 0 20px 20px 0;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 5.4px;
}
@media (min-width: 768px) {
  .research-fields .field-image-container .field-label {
    width: 190px;
    font-size: 20px;
    white-space: nowrap;
  }
}
.research-fields .field-image-container .field-label--welfare {
  color: #fd5757;
}
.research-fields .field-image-container .field-label--regional {
  color: #0887d6;
}
.research-fields .field-image-container .field-label--international {
  color: #cd790a;
}
.research-fields .field-image-container .field-label--environment {
  color: #028906;
}
.research-fields .field-description {
  font-size: 15px;
  font-weight: 350;
  line-height: 32px;
  margin: 0 0 23px;
}
@media (min-width: 768px) {
  .research-fields .field-description {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

.what-to-learn {
  margin-bottom: 160px;
}
@media (min-width: 768px) {
  .what-to-learn {
    margin-bottom: 200px;
  }
}
.what-to-learn .learn-description {
  font-size: 15px;
  font-weight: 350;
  line-height: 32px;
  margin: 0 0 25px;
}
@media (min-width: 768px) {
  .what-to-learn .learn-description {
    font-size: 16px;
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
  }
}

.faculty-page {
  padding-top: 104px;
}
@media (min-width: 768px) {
  .faculty-page {
    padding-top: 184px;
  }
}
.faculty-page .faculty-content {
  padding: 0 26px;
  max-width: 393px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .faculty-page .faculty-content {
    max-width: 768px;
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .faculty-page .faculty-content {
    max-width: 1060px;
    padding: 0 30px;
  }
}

.page-intro {
  font-size: 15px;
  font-weight: 350;
  line-height: 32px;
  margin-bottom: 47px;
}
@media (min-width: 768px) {
  .page-intro {
    font-size: 16px;
    margin-bottom: 60px;
  }
}

.field-nav {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .field-nav {
    flex-direction: column;
    bottom: auto;
    left: auto;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

.field-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  padding: 10px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.field-nav-item:hover {
  opacity: 0.85;
}
.field-nav-item img {
  flex-shrink: 0;
}
.field-nav-item span {
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .field-nav-item {
    flex: none;
    flex-direction: row;
    gap: 8px;
    padding: 12px 16px;
  }
  .field-nav-item span {
    text-align: left;
  }
}
.field-nav-item--welfare {
  background-color: #fd5757;
}
.field-nav-item--regional {
  background-color: #0887d6;
}
.field-nav-item--international {
  background-color: #cd790a;
}
.field-nav-item--environment {
  background-color: #028906;
}

.field-section {
  padding-top: 50px;
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .field-section {
    padding-top: 70px;
    margin-bottom: 90px;
  }
}
.field-section--welfare .field-accent {
  background-image: url(../images/icon-title-accent-welfare.png);
}
.field-section--welfare .field-title {
  color: #fd5757;
}
.field-section--welfare .faculty-name-en {
  color: #fd5757;
}
.field-section--welfare .accent-bar {
  background-color: #fd5757;
}
.field-section--welfare .faculty-detail-fields {
  background-color: #fff5f5;
}
.field-section--welfare .faculty-detail-publications {
  background-color: #fff5f5;
}
.field-section--regional .field-accent {
  background-image: url(../images/icon-title-accent-regional.png);
}
.field-section--regional .field-title--regional {
  color: #0887d6;
}
.field-section--regional .faculty-name-en--regional {
  color: #0887d6;
}
.field-section--regional .accent-bar {
  background-color: #0887d6;
}
.field-section--regional .faculty-detail-fields {
  background-color: #DFF5FF;
}
.field-section--regional .faculty-detail-publications {
  background-color: #DFF5FF;
}
.field-section--international .field-accent {
  background-image: url(../images/icon-title-accent-international.png);
}
.field-section--international .field-title--international {
  color: #CD790A;
}
.field-section--international .faculty-name-en--international {
  color: #CD790A;
}
.field-section--international .accent-bar {
  background-color: #CD790A;
}
.field-section--international .faculty-detail-fields {
  background-color: #F4EAE3;
}
.field-section--international .faculty-detail-publications {
  background-color: #F4EAE3;
}
.field-section--environment .field-accent {
  background-image: url(../images/icon-title-accent-environment.png);
}
.field-section--environment .field-title--environment {
  color: #028906;
}
.field-section--environment .faculty-name-en--environment {
  color: #028906;
}
.field-section--environment .accent-bar {
  background-color: #028906;
}
.field-section--environment .faculty-detail-fields {
  background-color: #F0FBF0;
}
.field-section--environment .faculty-detail-publications {
  background-color: #F0FBF0;
}

.field-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 27px;
}
@media (min-width: 768px) {
  .field-header {
    gap: 20px;
    margin-bottom: 35px;
  }
}

.field-accent {
  width: 54px;
  height: 21px;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.field-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 6px;
  line-height: 1;
}
@media (min-width: 768px) {
  .field-title {
    font-size: 24px;
  }
}

.field-description,
.field-description-expanded {
  font-size: 15px;
  font-weight: 350;
  line-height: 32px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .field-description,
  .field-description-expanded {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.read-more {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 27px;
}
@media (min-width: 768px) {
  .read-more {
    margin-bottom: 40px;
  }
}

.faculty-list-section {
  margin-bottom: 47px;
}
@media (min-width: 768px) {
  .faculty-list-section {
    margin-bottom: 60px;
  }
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  row-gap: 55px;
  justify-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .faculty-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
}
@media (min-width: 1024px) {
  .faculty-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.faculty-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 150px;
}
@media (min-width: 768px) {
  .faculty-card {
    width: 180px;
  }
}

.faculty-photo {
  width: 100%;
  aspect-ratio: 133/97;
  background-color: #d9d9d9;
  overflow: hidden;
}
.faculty-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faculty-info {
  text-align: center;
}

.faculty-name-ja {
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 5px;
}
@media (min-width: 768px) {
  .faculty-name-ja {
    font-size: 18px;
  }
}

.faculty-name-en {
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}
@media (min-width: 768px) {
  .faculty-name-en {
    font-size: 11px;
  }
}

.faculty-detail {
  margin-top: 47px;
}
@media (min-width: 768px) {
  .faculty-detail {
    margin-top: 60px;
  }
}

.faculty-detail-header {
  display: flex;
  gap: 17px;
  align-items: flex-start;
  margin-bottom: 47px;
}
@media (min-width: 768px) {
  .faculty-detail-header {
    margin-bottom: 60px;
  }
}

.accent-bar {
  width: 5px;
  align-self: stretch;
  flex-shrink: 0;
}

.faculty-tagline {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 768px) {
  .faculty-tagline {
    font-size: 19px;
  }
}

@media (min-width: 768px) {
  .faculty-detail-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .faculty-detail-content {
    gap: 60px;
  }
}

.faculty-detail-profile {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 47px;
}
@media (min-width: 768px) {
  .faculty-detail-profile {
    gap: 30px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

.faculty-detail-photo {
  width: 167px;
  height: 122px;
  background-color: #d9d9d9;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .faculty-detail-photo {
    width: 200px;
    height: 150px;
  }
}
.faculty-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faculty-detail-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faculty-detail-info .faculty-name-ja {
  margin: 0;
}
.faculty-detail-info .faculty-name-en {
  margin: 0;
}

.btn-external {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 12px;
  border: 1px solid #000000;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-external:hover {
  background-color: #000000;
  color: #ffffff;
}
.btn-external:hover svg {
  stroke: #ffffff;
}
.btn-external svg {
  width: 13px;
  height: 13px;
}

.faculty-detail-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 10px;
  padding: 10px;
  margin-bottom: 47px;
}
@media (min-width: 768px) {
  .faculty-detail-fields {
    gap: 20px;
    padding: 15px;
    margin-bottom: 60px;
    flex: 1;
  }
}

.detail-field {
  width: 140px;
}
@media (min-width: 768px) {
  .detail-field {
    width: 180px;
  }
}
.detail-field--wide {
  width: 290px;
}
@media (min-width: 768px) {
  .detail-field--wide {
    width: 100%;
  }
}

.detail-field-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
.detail-field-title svg {
  width: 16px;
  height: 16px;
}

.detail-field-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin-bottom: 10px;
}

.detail-field-content {
  font-size: 13px;
  font-weight: 350;
  line-height: 20px;
}

.faculty-detail-research {
  margin-bottom: 47px;
}
@media (min-width: 768px) {
  .faculty-detail-research {
    margin-bottom: 60px;
  }
}
.faculty-detail-research h4 {
  font-size: 15px;
  font-weight: 500;
  margin: 20px 0 10px;
}
.faculty-detail-research h4:first-child {
  margin-top: 0;
}
.faculty-detail-research p {
  font-size: 15px;
  font-weight: 350;
  line-height: 32px;
  margin: 0 0 20px;
}

.faculty-detail-publications {
  padding: 10px;
  margin-bottom: 47px;
}
@media (min-width: 768px) {
  .faculty-detail-publications {
    padding: 15px;
    margin-bottom: 60px;
  }
}
.faculty-detail-publications .detail-field-title {
  margin-bottom: 10px;
}

.publications-list {
  list-style: disc;
  margin: 0;
  padding-left: 19.5px;
}
.publications-list li {
  font-size: 13px;
  font-weight: 350;
  line-height: 20px;
  margin-bottom: 13px;
}
.publications-list li:last-child {
  margin-bottom: 0;
}

.section-divider {
  height: 27px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="358" height="27" fill="none"><path stroke="%23e0e0e0" stroke-dasharray="8 8" stroke-width="2" d="M0 13.5h358"/></svg>') center no-repeat;
  margin: 47px 0;
}
@media (min-width: 768px) {
  .section-divider {
    margin: 60px 0;
  }
}

.arrow-icon--down {
  transform: rotate(90deg);
}
.arrow-icon--up {
  transform: rotate(-90deg);
}

.ethics-page {
  padding-top: 104px;
  min-height: 100vh;
  background: #ffffff;
}
@media (min-width: 768px) {
  .ethics-page {
    padding-top: 184px;
  }
}
.ethics-page .content-wrapper {
  margin: 0 auto;
  padding: 0 26px;
  max-width: 393px;
}
@media (min-width: 768px) {
  .ethics-page .content-wrapper {
    max-width: 768px;
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .ethics-page .content-wrapper {
    max-width: 1060px;
    padding: 0 30px;
  }
}
.ethics-page .page-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #000000;
  margin-bottom: 72px;
}
@media (min-width: 768px) {
  .ethics-page .page-title {
    font-size: 24px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .ethics-page .page-title {
    font-size: 28px;
    margin-bottom: 90px;
  }
}
@media (min-width: 768px) {
  .ethics-page .section-title-with-icon {
    margin-bottom: 40px;
  }
}
.ethics-page .content-section {
  margin-bottom: 56px;
}
.ethics-page .content-section:last-child {
  margin-bottom: 160px;
}
.ethics-page .content-section .section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.ethics-page .content-section .section-header .section-icon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 20px;
  height: 20px;
}
.ethics-page .content-section .section-header .section-icon span {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #000000;
}
.ethics-page .content-section .section-header .section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}
.ethics-page .content-section .section-content {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 350;
  line-height: 32px;
  color: #000000;
}
.ethics-page .content-section .section-content p {
  margin: 0 0 1em 0;
}
.ethics-page .content-section .section-content p:last-child {
  margin-bottom: 0;
}
.ethics-page .content-section .section-content p strong {
  font-weight: 700;
}
.ethics-page .content-section .section-content .note-paragraph {
  margin-top: 1em;
}
.ethics-page .content-section .section-content .result-item {
  margin: 1em 0;
}
.ethics-page .subsection-title {
  margin-bottom: 22px;
}
.ethics-page .subsection-title h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #000000;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 14px;
}
.ethics-page .section-divider {
  height: 1px;
  background-color: #e0e0e0;
  width: 100%;
}
.ethics-page .file-link {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 350;
  line-height: 32px;
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid #000000;
  transition: opacity 0.3s ease;
}
.ethics-page .file-link:hover {
  opacity: 0.7;
}
.ethics-page .submit-link {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 350;
  line-height: 32px;
  color: #000000;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.ethics-page .submit-link:hover {
  opacity: 0.7;
}
.ethics-page .footer {
  margin-top: 0;
}

@media (max-width: 393px) {
  .ethics-page .content-wrapper {
    padding: 0 20px;
  }
  .ethics-page .page-title {
    font-size: 18px;
  }
  .ethics-page .content-section .section-header .section-title {
    font-size: 16px;
  }
  .ethics-page .content-section .section-content {
    font-size: 14px;
    line-height: 28px;
  }
}
.papers-page {
  padding-top: 109px;
  min-height: 100vh;
  background: #ffffff;
}
@media (min-width: 768px) {
  .papers-page {
    padding-top: 184px;
  }
}
.papers-page .content-wrapper {
  margin: 0 auto;
  padding: 0 26px;
}
@media (min-width: 768px) {
  .papers-page .content-wrapper {
    max-width: 768px;
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .papers-page .content-wrapper {
    max-width: 1060px;
    padding: 0 30px;
  }
}
.papers-page .page-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #000000;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .papers-page .page-title {
    font-size: 24px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .papers-page .page-title {
    font-size: 28px;
    margin-bottom: 90px;
  }
}
.papers-page .filter-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}
.papers-page .dropdown {
  position: relative;
  flex: 1;
}
.papers-page .dropdown .dropdown-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 5px 16px;
  background: #dddddd;
  border: 1px solid #dddddd;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  cursor: pointer;
  transition: background-color 0.2s;
}
.papers-page .dropdown .dropdown-button:hover {
  background: #d0d0d0;
}
.papers-page .dropdown .dropdown-button.active {
  background: #cccccc;
}
.papers-page .dropdown .dropdown-button.active .arrow-icon {
  transform: rotate(180deg);
}
.papers-page .dropdown .dropdown-button .arrow-icon {
  width: 12px;
  height: 9px;
  transition: transform 0.2s;
  position: relative;
  top: 1px;
}
.papers-page .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 8px 0;
  z-index: 1000;
}
.papers-page .dropdown .dropdown-menu.active {
  display: block;
}
.papers-page .dropdown .dropdown-menu .dropdown-item {
  padding: 8px 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  cursor: pointer;
  transition: background-color 0.2s;
}
.papers-page .dropdown .dropdown-menu .dropdown-item:hover {
  background: #f5f5f5;
}
.papers-page .dropdown .dropdown-menu .dropdown-item.selected {
  background: #e8e8e8;
}
.papers-page .section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}
.papers-page .section-header .section-icon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 20px;
  height: 20px;
}
.papers-page .section-header .section-icon span {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #000000;
}
.papers-page .section-header .section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}
.papers-page .papers-table {
  width: 100%;
  margin-bottom: 100px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.papers-page .papers-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  border: 1px solid #979191;
}
.papers-page .papers-table table thead th {
  padding: 8px;
  text-align: left;
  font-weight: 500;
  color: #000000;
  border-bottom: 1px solid #979191;
  border-right: 1px solid #979191;
}
.papers-page .papers-table table thead th:first-child {
  text-align: center;
  width: 30px;
}
.papers-page .papers-table table thead th:nth-child(3), .papers-page .papers-table table thead th:nth-child(4) {
  font-size: 11px;
}
.papers-page .papers-table table tbody tr:hover {
  background: #fafafa;
}
.papers-page .papers-table table tbody tr td {
  padding: 8px;
  color: #000000;
  font-weight: 400;
  border-bottom: 1px solid #979191;
  border-right: 1px solid #979191;
}
.papers-page .papers-table table tbody tr td:first-child {
  text-align: center;
  width: 30px;
}
.papers-page .papers-table table tbody tr td:nth-child(3), .papers-page .papers-table table tbody tr td:nth-child(4) {
  font-size: 11px;
}
.papers-page .footer {
  margin-top: 0;
}

@media (max-width: 393px) {
  .papers-page .content-wrapper {
    padding: 0 15px;
  }
  .papers-page .page-title {
    font-size: 18px;
  }
  .papers-page .filter-buttons .dropdown .dropdown-button {
    font-size: 14px;
    padding: 6px 12px;
  }
  .papers-page .section-header .section-title {
    font-size: 16px;
  }
  .papers-page .papers-table {
    font-size: 11px;
  }
  .papers-page .papers-table table th,
  .papers-page .papers-table table td {
    padding: 6px;
  }
}
.news-page {
  padding-top: 109px;
  min-height: 100vh;
  background: #ffffff;
}
@media (min-width: 768px) {
  .news-page {
    padding-top: 184px;
  }
}
.news-page .content-wrapper {
  margin: 0 auto;
  padding: 0 26px;
}
@media (min-width: 768px) {
  .news-page .content-wrapper {
    max-width: 768px;
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .news-page .content-wrapper {
    max-width: 1060px;
    padding: 0 30px;
  }
}
.news-page .page-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #000000;
  margin-bottom: 72px;
}
@media (min-width: 768px) {
  .news-page .page-title {
    font-size: 24px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .news-page .page-title {
    font-size: 28px;
    margin-bottom: 90px;
  }
}
.news-page .news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.news-page .news-tags .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 4px 8px;
  border: 1px solid;
  border-radius: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 32px;
  color: #000000;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.news-page .news-tags .tag.tag-all {
  border-color: #666;
}
.news-page .news-tags .tag.tag-all:hover, .news-page .news-tags .tag.tag-all.active {
  background-color: #666;
  border-color: #666;
  color: #fff;
}
.news-page .news-tags .tag.tag-event {
  border-color: #e1872e;
}
.news-page .news-tags .tag.tag-event:hover, .news-page .news-tags .tag.tag-event.active {
  background-color: #e1872e;
  border-color: #e1872e;
  color: #fff;
}
.news-page .news-tags .tag.tag-notice {
  border-color: #bae12e;
}
.news-page .news-tags .tag.tag-notice:hover, .news-page .news-tags .tag.tag-notice.active {
  background-color: #bae12e;
  border-color: #bae12e;
  color: #fff;
}
.news-page .news-tags .tag.tag-journal {
  border-color: #83dacf;
}
.news-page .news-tags .tag.tag-journal:hover, .news-page .news-tags .tag.tag-journal.active {
  background-color: #83dacf;
  border-color: #83dacf;
  color: #fff;
}
.news-page .news-tags .tag.tag-paper {
  border-color: #e27374;
}
.news-page .news-tags .tag.tag-paper:hover, .news-page .news-tags .tag.tag-paper.active {
  background-color: #e27374;
  border-color: #e27374;
  color: #fff;
}
.news-page .news-tags .tag:not(.active):not(:hover) {
  background-color: transparent;
}
.news-page .news-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 72px;
}
.news-page .news-list .news-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 1px solid #979191;
}
.news-page .news-list .news-item:last-child {
  border-bottom: none;
}
.news-page .news-list .news-item .news-meta {
  display: flex;
  align-items: center;
  gap: 13px;
}
.news-page .news-list .news-item .news-meta time {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 32px;
  color: #000000;
  white-space: nowrap;
}
.news-page .news-list .news-item .news-meta .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 4px 8px;
  min-width: 69px;
  border: 1px solid;
  border-radius: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 32px;
  color: #000000;
  text-align: center;
  white-space: nowrap;
}
.news-page .news-list .news-item .news-meta .tag.tag-event {
  border-color: #e1872e;
}
.news-page .news-list .news-item .news-meta .tag.tag-notice {
  border-color: #bae12e;
}
.news-page .news-list .news-item .news-meta .tag.tag-journal {
  border-color: #83dacf;
  min-width: 104px;
}
.news-page .news-list .news-item .news-meta .tag.tag-paper {
  border-color: #e27374;
}
.news-page .news-list .news-item .news-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 32px;
  color: #000000;
  margin: 0;
}
.news-page .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 160px;
}
.news-page .pagination .page-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 32px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  color: #000000;
  cursor: pointer;
  transition: all 0.2s;
}
.news-page .pagination .page-number:hover {
  background: #f5f5f5;
}
.news-page .pagination .page-number.active {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
.news-page .pagination .page-ellipsis {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  color: #000000;
}
.news-page .pagination .page-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.news-page .pagination .page-next svg {
  width: 10px;
  height: 21px;
}
.news-page .pagination .page-next:hover {
  opacity: 0.7;
}
.news-page .footer {
  margin-top: 0;
}
.news-page .news-detail .news-detail-header {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .news-page .news-detail .news-detail-header {
    margin-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  .news-page .news-detail .news-detail-header {
    margin-bottom: 56px;
  }
}
.news-page .news-detail .news-meta {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}
.news-page .news-detail .news-meta time {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 32px;
  color: #000000;
  white-space: nowrap;
}
.news-page .news-detail .news-meta .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 4px 8px;
  min-width: 69px;
  border: 1px solid;
  border-radius: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 32px;
  color: #000000;
  text-align: center;
  white-space: nowrap;
}
.news-page .news-detail .news-meta .tag.tag-event {
  border-color: #e1872e;
}
.news-page .news-detail .news-meta .tag.tag-notice {
  border-color: #bae12e;
}
.news-page .news-detail .news-meta .tag.tag-journal {
  border-color: #83dacf;
  min-width: 104px;
}
.news-page .news-detail .news-meta .tag.tag-paper {
  border-color: #e27374;
}
.news-page .news-detail .news-meta .tag.tag-default {
  border-color: #666666;
}
.news-page .news-detail .news-detail-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #000000;
  margin: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid #979191;
}
@media (min-width: 768px) {
  .news-page .news-detail .news-detail-title {
    font-size: 20px;
    padding-bottom: 28px;
  }
}
@media (min-width: 1024px) {
  .news-page .news-detail .news-detail-title {
    font-size: 22px;
    padding-bottom: 32px;
  }
}
.news-page .news-detail .news-detail-content {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .news-page .news-detail .news-detail-content {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 56px;
  }
}
@media (min-width: 1024px) {
  .news-page .news-detail .news-detail-content {
    margin-bottom: 64px;
  }
}
.news-page .news-detail .news-detail-content p {
  margin: 0 0 1.5em;
}
.news-page .news-detail .news-detail-content p:last-child {
  margin-bottom: 0;
}
.news-page .news-detail .news-detail-content h3 {
  font-size: 17px;
  font-weight: 500;
  margin: 2em 0 1em;
  color: #000000;
}
@media (min-width: 768px) {
  .news-page .news-detail .news-detail-content h3 {
    font-size: 18px;
  }
}
.news-page .news-detail .news-detail-content h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 1.8em 0 0.8em;
  color: #000000;
}
@media (min-width: 768px) {
  .news-page .news-detail .news-detail-content h4 {
    font-size: 17px;
  }
}
.news-page .news-detail .news-detail-content ul, .news-page .news-detail .news-detail-content ol {
  margin: 0 0 1.5em;
  padding-left: 1.5em;
}
.news-page .news-detail .news-detail-content li {
  margin-bottom: 0.5em;
}
.news-page .news-detail .news-detail-content a {
  color: #0066cc;
  text-decoration: underline;
}
.news-page .news-detail .news-detail-content a:hover {
  text-decoration: none;
}
.news-page .news-detail .news-detail-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em 0;
}
.news-page .news-detail .news-detail-content blockquote {
  margin: 2em 0;
  padding: 1em 1.5em;
  border-left: 4px solid #979191;
  background: #f8f8f8;
  font-style: italic;
}
.news-page .news-detail .news-detail-image {
  margin-bottom: 32px;
}
.news-page .news-detail .news-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}
.news-page .news-detail .news-back-button {
  text-align: center;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .news-page .news-detail .news-back-button {
    margin-bottom: 96px;
  }
}
@media (min-width: 1024px) {
  .news-page .news-detail .news-back-button {
    margin-bottom: 112px;
  }
}
.news-page .news-detail .news-back-button .btn-back-to-list {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid #000000;
  border-radius: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .news-page .news-detail .news-back-button .btn-back-to-list {
    padding: 12px 32px;
    font-size: 15px;
  }
}
.news-page .news-detail .news-back-button .btn-back-to-list:hover {
  background-color: #000000;
  color: #ffffff;
}
.news-page .news-detail .news-back-button .btn-back-to-list .arrow-left {
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 393px) {
  .news-page .content-wrapper {
    padding: 0 20px;
  }
  .news-page .page-title {
    font-size: 18px;
    margin-bottom: 60px;
  }
  .news-page .news-tags {
    margin-bottom: 28px;
  }
  .news-page .news-tags .tag {
    font-size: 11px;
  }
  .news-page .news-list {
    margin-bottom: 60px;
  }
  .news-page .news-list .news-item .news-meta {
    gap: 10px;
  }
  .news-page .news-list .news-item .news-meta time {
    font-size: 14px;
  }
  .news-page .news-list .news-item .news-meta .tag {
    font-size: 11px;
    min-width: 60px;
  }
  .news-page .news-list .news-item .news-meta .tag.tag-journal {
    min-width: 90px;
  }
  .news-page .news-list .news-item .news-title {
    font-size: 14px;
    line-height: 28px;
  }
  .news-page .pagination {
    gap: 8px;
    margin-bottom: 120px;
  }
  .news-page .pagination .page-number {
    width: 28px;
    height: 30px;
    font-size: 14px;
  }
  .news-page .pagination .page-ellipsis {
    font-size: 14px;
  }
}
.journal-page {
  padding-top: 109px;
  min-height: 100vh;
  background: #ffffff;
}
@media (min-width: 768px) {
  .journal-page {
    padding-top: 184px;
  }
}
.journal-page .content-wrapper {
  margin: 0 auto;
  padding: 0 26px;
}
@media (min-width: 768px) {
  .journal-page .content-wrapper {
    max-width: 768px;
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .journal-page .content-wrapper {
    max-width: 1060px;
    padding: 0 30px;
  }
}
.journal-page .page-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #000000;
  margin-bottom: 72px;
}
@media (min-width: 768px) {
  .journal-page .page-title {
    font-size: 24px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .journal-page .page-title {
    font-size: 28px;
    margin-bottom: 90px;
  }
}
.journal-page .anchor-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 29px 32px;
  margin-bottom: 72px;
}
.journal-page .anchor-buttons .anchor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 28px;
  padding: 0 16px;
  border: 1px solid #000000;
  border-radius: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 32px;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  cursor: pointer;
}
.journal-page .anchor-buttons .anchor-button:hover {
  background-color: #f5f5f5;
}
.journal-page .anchor-buttons .anchor-button .arrow-icon {
  width: 20px;
  height: 20px;
  transform: rotate(0);
  transition: transform 0.2s;
}
.journal-page .anchor-buttons .anchor-button:hover .arrow-icon {
  transform: translateY(2px);
}
.journal-page .journal-section {
  margin-bottom: 72px;
}
.journal-page .journal-section:last-child {
  margin-bottom: 160px;
}
.journal-page .journal-section .section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.journal-page .journal-section .section-header .section-icon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 20px;
  height: 20px;
}
.journal-page .journal-section .section-header .section-icon span {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #000000;
}
.journal-page .journal-section .section-header .section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}
.journal-page .journal-section .section-content {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 350;
  line-height: 32px;
  color: #000000;
}
.journal-page .journal-section .section-content p {
  margin: 0 0 0.5em 0;
}
.journal-page .journal-section .section-content p:last-child {
  margin-bottom: 0;
}
.journal-page .journal-section .section-content strong {
  font-weight: 700;
}
.journal-page .journal-thumbnail {
  display: flex;
  gap: 27px;
  align-items: center;
  margin-bottom: 50px;
}
.journal-page .journal-thumbnail > img {
  width: 127px;
  height: 166px;
  object-fit: cover;
}
.journal-page .journal-thumbnail .journal-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.journal-page .journal-thumbnail .journal-info h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 32px;
  color: #000000;
  margin: 0;
}
.journal-page .journal-thumbnail .journal-info .publish-date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 32px;
  color: #000000;
}
.journal-page .sub-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.journal-page .sub-section .sub-section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #000000;
  margin: 0;
}
.journal-page .sub-section .sub-section-line {
  height: 1px;
  background-color: #e0e0e0;
}
.journal-page .note-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 350;
  line-height: 20px;
  color: #000000;
  margin-bottom: 22px;
}
.journal-page .paper-category {
  margin-bottom: 40px;
}
.journal-page .paper-category h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 32px;
  color: #000000;
  margin: 0 0 8px 0;
}
.journal-page .paper-category .paper-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px 0px;
}
.journal-page .paper-category .paper-table thead tr th {
  padding: 5px;
  background-color: #f7eee8;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  color: #000000;
}
.journal-page .paper-category .paper-table thead tr th.author-column {
  width: 87px;
}
.journal-page .paper-category .paper-table tbody tr td {
  padding: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 350;
  line-height: 24px;
  color: #000000;
}
.journal-page .paper-category .paper-table tbody tr td a {
  color: #000000;
  text-decoration: underline;
}
.journal-page .paper-category .paper-table tbody tr td a:hover {
  opacity: 0.7;
}
.journal-page .paper-category .paper-table tbody tr td.author-column {
  width: 87px;
}
.journal-page .paper-category .paper-table tbody tr.even {
  background-color: #f7eee8;
}
.journal-page .archive-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 40px;
  margin-top: 15px;
}
.journal-page .archive-list a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 32px;
  color: #000000;
  text-decoration: underline;
}
.journal-page .archive-list a:hover {
  opacity: 0.7;
}
.journal-page .deadline {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 32px;
  color: #c80303;
  margin-bottom: 18px;
}
.journal-page .form-button-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.journal-page .download-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 32px;
}
.journal-page .btn-pdf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  gap: 9px;
  height: 41px;
  padding: 0 22px;
  border: 1px solid #000000;
  border-radius: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 32px;
  color: #000000;
  text-decoration: none;
  transition: all 0.2s;
}
.journal-page .btn-pdf:hover {
  background-color: #000000;
  color: #ffffff;
}
.journal-page .btn-pdf:hover .pdf-icon {
  fill: #ffffff;
}
.journal-page .btn-pdf .pdf-icon {
  width: 20px;
  height: 20px;
  fill: #000000;
  transition: fill 0.2s;
}
.journal-page .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 243px;
  gap: 9px;
  height: 41px;
  padding: 0 22px;
  border: 1px solid #000000;
  border-radius: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 32px;
  color: #000000;
  text-decoration: none;
  transition: all 0.2s;
}
.journal-page .btn-primary:hover {
  background-color: #000000;
  color: #ffffff;
}
.journal-page .btn-primary:hover .arrow-icon path {
  stroke: #ffffff;
}
.journal-page .btn-primary .arrow-icon {
  width: 20px;
  height: 20px;
}
.journal-page .template-list {
  margin: 0;
  padding-left: 22.5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 32px;
  color: #000000;
}
.journal-page .template-list li {
  margin-bottom: 14px;
  list-style-type: decimal;
}
.journal-page .template-list li:last-child {
  margin-bottom: 0;
}
.journal-page .template-list li a {
  color: #000000;
  text-decoration: underline;
}
.journal-page .template-list li a:hover {
  opacity: 0.7;
}
.journal-page .footer {
  margin-top: 0;
}

.journal-archive-page {
  padding-top: 104px;
  min-height: 100vh;
  background: #ffffff;
}
.journal-archive-page .content-wrapper {
  margin: 0 auto;
  padding: 0 26px;
}
@media (min-width: 768px) {
  .journal-archive-page .content-wrapper {
    max-width: 768px;
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .journal-archive-page .content-wrapper {
    max-width: 1060px;
    padding: 0 30px;
  }
}
.journal-archive-page .page-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #000000;
  margin-bottom: 72px;
}
.journal-archive-page .journal-volume {
  margin-bottom: 72px;
}
.journal-archive-page .journal-volume .section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.journal-archive-page .journal-volume .section-header .section-icon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 20px;
  height: 20px;
}
.journal-archive-page .journal-volume .section-header .section-icon span {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #000000;
}
.journal-archive-page .journal-volume .section-header .section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}
.journal-archive-page .journal-volume .journal-thumbnail {
  display: flex;
  gap: 27px;
  align-items: center;
  margin-bottom: 50px;
}
.journal-archive-page .journal-volume .journal-thumbnail .journal-cover-placeholder {
  width: 129px;
  height: 165px;
  background-color: #d9d9d9;
  flex-shrink: 0;
}
.journal-archive-page .journal-volume .journal-thumbnail .journal-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.journal-archive-page .journal-volume .journal-thumbnail .journal-info h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 32px;
  color: #000000;
  margin: 0;
}
.journal-archive-page .journal-volume .journal-thumbnail .journal-info .publish-date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 32px;
  color: #000000;
}
.journal-archive-page .journal-volume .journal-thumbnail .journal-info .btn-pdf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 41px;
  padding: 0 22px;
  border: 1px solid #000000;
  border-radius: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 32px;
  color: #000000;
  text-decoration: none;
  transition: all 0.2s;
}
.journal-archive-page .journal-volume .journal-thumbnail .journal-info .btn-pdf:hover {
  background-color: #000000;
  color: #ffffff;
}
.journal-archive-page .journal-volume .journal-thumbnail .journal-info .btn-pdf:hover .pdf-icon {
  fill: #ffffff;
}
.journal-archive-page .journal-volume .journal-thumbnail .journal-info .btn-pdf .pdf-icon {
  width: 20px;
  height: 20px;
  fill: #000000;
  transition: fill 0.2s;
}
.journal-archive-page .journal-volume .sub-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.journal-archive-page .journal-volume .sub-section .sub-section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #000000;
  margin: 0;
}
.journal-archive-page .journal-volume .sub-section .sub-section-line {
  height: 1px;
  background-color: #e0e0e0;
}
.journal-archive-page .journal-volume .note-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 350;
  line-height: 20px;
  color: #000000;
  margin-bottom: 22px;
}
.journal-archive-page .journal-volume .paper-category {
  margin-bottom: 40px;
}
.journal-archive-page .journal-volume .paper-category h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 32px;
  color: #000000;
  margin: 0 0 8px 0;
}
.journal-archive-page .journal-volume .paper-category .paper-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px 0px;
}
.journal-archive-page .journal-volume .paper-category .paper-table thead tr th {
  padding: 5px;
  background-color: #f7eee8;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  color: #000000;
}
.journal-archive-page .journal-volume .paper-category .paper-table thead tr th.author-column {
  width: 87px;
}
.journal-archive-page .journal-volume .paper-category .paper-table tbody tr td {
  padding: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 350;
  line-height: 24px;
  color: #000000;
}
.journal-archive-page .journal-volume .paper-category .paper-table tbody tr td a {
  color: #000000;
  text-decoration: underline;
}
.journal-archive-page .journal-volume .paper-category .paper-table tbody tr td a:hover {
  opacity: 0.7;
}
.journal-archive-page .journal-volume .paper-category .paper-table tbody tr td.author-column {
  width: 87px;
}
.journal-archive-page .journal-volume .paper-category .paper-table tbody tr.even {
  background-color: #f7eee8;
}
.journal-archive-page .back-button-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 72px;
}
.journal-archive-page .back-button-wrapper .btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 41px;
  padding: 0 22px;
  border: 1px solid #000000;
  border-radius: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 32px;
  color: #000000;
  text-decoration: none;
  transition: all 0.2s;
}
.journal-archive-page .back-button-wrapper .btn-back:hover {
  background-color: #000000;
  color: #ffffff;
}
.journal-archive-page .back-button-wrapper .btn-back:hover .arrow-icon path {
  stroke: #ffffff;
}
.journal-archive-page .back-button-wrapper .btn-back .arrow-icon {
  width: 20px;
  height: 20px;
}
.journal-archive-page .archive-section {
  margin-bottom: 160px;
}
.journal-archive-page .archive-section .section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.journal-archive-page .archive-section .section-header .section-icon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 20px;
  height: 20px;
}
.journal-archive-page .archive-section .section-header .section-icon span {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #000000;
}
.journal-archive-page .archive-section .section-header .section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}
.journal-archive-page .archive-section .archive-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 40px;
  align-items: center;
}
.journal-archive-page .archive-section .archive-list a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 32px;
  color: #000000;
  text-decoration: underline;
}
.journal-archive-page .archive-section .archive-list a:hover {
  opacity: 0.7;
}
.journal-archive-page .archive-section .archive-list a.active {
  color: #703E0C;
  font-weight: 700;
}
.journal-archive-page .footer {
  margin-top: 0;
}

@media (max-width: 393px) {
  .journal-page .content-wrapper {
    padding: 0 20px;
  }
  .journal-page .page-title {
    font-size: 18px;
    margin-bottom: 60px;
  }
  .journal-page .anchor-buttons {
    gap: 20px;
    margin-bottom: 60px;
  }
  .journal-page .anchor-buttons .anchor-button {
    font-size: 12px;
    height: 26px;
    padding: 0 14px;
  }
  .journal-page .journal-section {
    margin-bottom: 60px;
  }
  .journal-page .journal-section:last-child {
    margin-bottom: 120px;
  }
  .journal-page .journal-section .section-header .section-title {
    font-size: 16px;
  }
  .journal-page .journal-section .section-content {
    font-size: 14px;
    line-height: 28px;
  }
  .journal-page .journal-thumbnail {
    flex-direction: column;
    align-items: flex-start;
  }
  .journal-page .journal-thumbnail > img {
    width: 100px;
    height: 130px;
  }
  .journal-page .journal-thumbnail .journal-info h3 {
    font-size: 14px;
  }
  .journal-page .journal-thumbnail .journal-info .publish-date {
    font-size: 11px;
  }
  .journal-page .paper-category .paper-table {
    font-size: 13px;
  }
  .journal-page .paper-category .paper-table thead tr th {
    font-size: 13px;
    padding: 4px;
  }
  .journal-page .paper-category .paper-table tbody tr td {
    font-size: 13px;
    padding: 8px;
  }
  .journal-page .archive-list {
    gap: 20px;
  }
  .journal-page .archive-list a {
    font-size: 14px;
  }
  .journal-page .template-list {
    font-size: 14px;
    line-height: 28px;
  }
  .journal-page .btn-pdf,
  .journal-page .btn-primary {
    font-size: 15px;
    height: 38px;
    padding: 0 18px;
  }
}
.bibliography-page {
  padding-top: 104px;
  min-height: 100vh;
  background: #ffffff;
}
@media (min-width: 768px) {
  .bibliography-page {
    padding-top: 184px;
  }
}
.bibliography-page .content-wrapper {
  margin: 0 auto;
  padding: 0 26px;
}
@media (min-width: 768px) {
  .bibliography-page .content-wrapper {
    max-width: 768px;
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .bibliography-page .content-wrapper {
    max-width: 1060px;
    padding: 0 30px;
  }
}
.bibliography-page .page-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #000000;
  margin-bottom: 72px;
}
@media (min-width: 768px) {
  .bibliography-page .page-title {
    font-size: 24px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .bibliography-page .page-title {
    font-size: 28px;
    margin-bottom: 90px;
  }
}
.bibliography-page .page-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 350;
  line-height: 32px;
  color: #000000;
  margin-bottom: 72px;
}
.bibliography-page .page-description p {
  margin: 0 0 0.5em 0;
  word-break: break-all;
}
.bibliography-page .page-description p:last-child {
  margin-bottom: 0;
}
.bibliography-page .category-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 29px;
  margin-bottom: 160px;
}
@media (min-width: 394px) {
  .bibliography-page .category-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 29px 32px;
  }
}
.bibliography-page .category-buttons .btn-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 41px;
  padding: 0 22px;
  border: 1px solid #000000;
  border-radius: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 32px;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.bibliography-page .category-buttons .btn-category:hover {
  background-color: #000000;
  color: #ffffff;
}
.bibliography-page .category-buttons .btn-category:hover .arrow-icon path {
  stroke: #ffffff;
}
.bibliography-page .category-buttons .btn-category .arrow-icon {
  width: 20px;
  height: 20px;
}
.bibliography-page .footer {
  margin-top: 0;
}

.bibliography-subpage {
  padding-top: 104px;
  min-height: 100vh;
  background: #ffffff;
}
@media (min-width: 768px) {
  .bibliography-subpage {
    padding-top: 184px;
  }
}
.bibliography-subpage .content-wrapper {
  margin: 0 auto;
  padding: 0 26px;
}
@media (min-width: 768px) {
  .bibliography-subpage .content-wrapper {
    max-width: 768px;
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .bibliography-subpage .content-wrapper {
    max-width: 1060px;
    padding: 0 30px;
  }
}
.bibliography-subpage .page-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #000000;
  margin-bottom: 72px;
}
.bibliography-subpage .section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.bibliography-subpage .section-header .section-icon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 20px;
  height: 20px;
}
.bibliography-subpage .section-header .section-icon span {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #000000;
}
.bibliography-subpage .section-header .section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}
.bibliography-subpage .bibliography-list {
  margin-bottom: 72px;
}
.bibliography-subpage .bibliography-list .bibliography-item {
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}
.bibliography-subpage .bibliography-list .bibliography-item:first-child {
  padding-top: 0;
}
.bibliography-subpage .bibliography-list .bibliography-item:last-child {
  border-bottom: none;
}
.bibliography-subpage .bibliography-list .bibliography-item .book-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 8px;
}
.bibliography-subpage .bibliography-list .bibliography-item .book-author {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #666666;
  margin-bottom: 8px;
}
.bibliography-subpage .bibliography-list .bibliography-item .book-info {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 350;
  line-height: 1.5;
  color: #666666;
}
.bibliography-subpage .bibliography-list .bibliography-item .book-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 350;
  line-height: 1.6;
  color: #333333;
  margin-top: 10px;
}
.bibliography-subpage .literature-section {
  margin-bottom: 72px;
}
.bibliography-subpage .literature-section .literature-table {
  width: 100%;
}
.bibliography-subpage .literature-section .literature-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px 0px;
}
.bibliography-subpage .literature-section .literature-table table thead tr th {
  padding: 5px;
  background-color: #f7eee8;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  color: #000000;
}
.bibliography-subpage .literature-section .literature-table table thead tr th.book-info-header {
  width: 180px;
}
.bibliography-subpage .literature-section .literature-table table thead tr th.comment-header {
  width: 153px;
}
.bibliography-subpage .literature-section .literature-table table tbody tr td {
  padding: 10px 5px;
  vertical-align: top;
}
.bibliography-subpage .literature-section .literature-table table tbody tr td.book-info-cell {
  width: 180px;
}
.bibliography-subpage .literature-section .literature-table table tbody tr td.book-info-cell .book-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bibliography-subpage .literature-section .literature-table table tbody tr td.book-info-cell .book-details .book-author,
.bibliography-subpage .literature-section .literature-table table tbody tr td.book-info-cell .book-details .book-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 350;
  line-height: 24px;
  color: #000000;
  margin: 0;
}
.bibliography-subpage .literature-section .literature-table table tbody tr td.book-info-cell .book-details .btn-related-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 28px;
  padding: 0 16px;
  border: 1px solid #000000;
  border-radius: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 32px;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
  align-self: flex-start;
  transition: all 0.2s;
}
.bibliography-subpage .literature-section .literature-table table tbody tr td.book-info-cell .book-details .btn-related-link:hover {
  background-color: #000000;
  color: #ffffff;
}
.bibliography-subpage .literature-section .literature-table table tbody tr td.book-info-cell .book-details .btn-related-link:hover .arrow-icon path {
  stroke: #ffffff;
}
.bibliography-subpage .literature-section .literature-table table tbody tr td.book-info-cell .book-details .btn-related-link .arrow-icon {
  width: 20px;
  height: 20px;
}
.bibliography-subpage .literature-section .literature-table table tbody tr td.comment-cell {
  width: 153px;
}
.bibliography-subpage .literature-section .literature-table table tbody tr td.comment-cell p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 350;
  line-height: 24px;
  color: #000000;
  margin: 0;
}
.bibliography-subpage .literature-section .literature-table table tbody tr.even .book-info-cell {
  background-color: #f7eee8;
}
.bibliography-subpage .literature-section .literature-table table tbody tr.even .comment-cell {
  background-color: #f7eee8;
}
.bibliography-subpage .literature-section .literature-table .ellipsis-dots {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.bibliography-subpage .literature-section .literature-table .ellipsis-dots span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #999999;
  letter-spacing: 5px;
}
.bibliography-subpage .back-button-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 72px;
}
.bibliography-subpage .back-button-wrapper .btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 41px;
  padding: 0 22px;
  border: 1px solid #000000;
  border-radius: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 32px;
  color: #000000;
  text-decoration: none;
  transition: all 0.2s;
}
.bibliography-subpage .back-button-wrapper .btn-back:hover {
  background-color: #000000;
  color: #ffffff;
}
.bibliography-subpage .back-button-wrapper .btn-back:hover .arrow-icon path {
  stroke: #ffffff;
}
.bibliography-subpage .back-button-wrapper .btn-back .arrow-icon {
  width: 20px;
  height: 20px;
}
.bibliography-subpage .footer {
  margin-top: 0;
}

@media (max-width: 393px) {
  .bibliography-page .content-wrapper,
  .bibliography-subpage .content-wrapper {
    padding: 0 20px;
  }
  .bibliography-page .page-title,
  .bibliography-subpage .page-title {
    font-size: 18px;
    margin-bottom: 60px;
  }
  .bibliography-page .page-description,
  .bibliography-subpage .page-description {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 60px;
  }
  .bibliography-page .category-buttons,
  .bibliography-subpage .category-buttons {
    margin-bottom: 120px;
  }
  .bibliography-page .category-buttons .btn-category,
  .bibliography-subpage .category-buttons .btn-category {
    font-size: 15px;
    height: 38px;
    padding: 0 18px;
  }
  .bibliography-subpage .section-header .section-title {
    font-size: 16px;
  }
  .bibliography-subpage .bibliography-list .bibliography-item .book-title {
    font-size: 15px;
  }
  .bibliography-subpage .bibliography-list .bibliography-item .book-author {
    font-size: 13px;
  }
  .bibliography-subpage .bibliography-list .bibliography-item .book-info {
    font-size: 12px;
  }
  .bibliography-subpage .bibliography-list .bibliography-item .book-description {
    font-size: 13px;
  }
  .bibliography-subpage .back-button-wrapper .btn-back {
    font-size: 15px;
    height: 38px;
    padding: 0 18px;
  }
}
@media (min-width: 768px) {
  .u-mobile-only {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .u-pc-only,
  .u-desktop-only {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .u-tablet-up {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .u-tablet-down {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */