@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:700,500,900|Oswald:700,500|Zen+Old+Mincho:400,500,700|Cinzel:400,500,600,700|EB+Garamond:400,500,600,700|Niconne:400");
body {
  min-width: unset;
}

main {
  font-family: "Noto Sans JP";
  padding-top: 80px;
  position: relative;
}
@media (max-width: 768px) {
  main {
    margin-top: 60px;
    padding-top: 0;
  }
}
main .breadcrumbs {
  display: flex;
  align-items: center;
  gap: min(8px, 1vw);
  position: absolute;
  top: 100px;
  left: min(40px, 3%);
  font-size: 12px;
  line-height: 14px;
  font-family: "Noto Sans JP";
  color: #ffffff;
}
@media (max-width: 768px) {
  main .breadcrumbs {
    top: 13px;
    left: 20px;
  }
}
main .breadcrumbs .breadcrumbs {
  display: flex;
  align-items: center;
  gap: min(8px, 1vw);
}
main .breadcrumbs .bcn-breadcrumb-separator,
main .breadcrumbs .divider {
  color: #B7B7B7;
}
main .breadcrumbs a,
main .breadcrumbs a.home,
main .breadcrumbs .post.post-page a,
main .breadcrumbs [property=item] {
  text-decoration: none;
  transition: opacity 0.3s ease;
}
main .breadcrumbs a span,
main .breadcrumbs a.home span,
main .breadcrumbs .post.post-page a span,
main .breadcrumbs [property=item] span {
  color: #ffffff;
}
main .breadcrumbs a:hover,
main .breadcrumbs a.home:hover,
main .breadcrumbs .post.post-page a:hover,
main .breadcrumbs [property=item]:hover {
  opacity: 0.7;
}
main .breadcrumbs span.current-item,
main .breadcrumbs .post.post-page.current-item {
  color: #ffffff;
}
@media (max-width: 768px) {
  main .sp-hide {
    display: none;
  }
}
main .sp-show {
  display: none;
}
@media (max-width: 768px) {
  main .sp-show {
    display: initial;
  }
}
main .page-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 50px;
  line-height: 72px;
  font-family: "Zen Old Mincho";
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin: 0 min(150px, 10%);
}
@media (max-width: 768px) {
  main .page-title {
    font-size: 32px;
    line-height: 65px;
  }
}
main .page-title span {
  font-size: 16px;
  line-height: 24px;
}
main .page-title p {
  font-size: 24px;
  line-height: 31px;
  color: #ffffff;
  font-family: "EB Garamond", serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 768px) {
  main .page-title p {
    font-size: 16px;
    line-height: 21px;
  }
}
main .page-title + .page-title__caption {
  margin-top: 32px;
  font-size: 20px;
  line-height: 32px;
  color: #ffffff;
  font-family: "Zen Old Mincho";
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  main .page-title + .page-title__caption {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 768px) {
  main .page-title {
    margin: 0 min(20px, 5%);
  }
}
main .page-title-wrapper {
  width: 100%;
  min-height: 395px;
  padding: 80px 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url("../../images/common/page-title-bg.png") no-repeat center center;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  main .page-title-wrapper {
    width: 100%;
    padding: 104px 0;
    min-height: unset;
    background: url("../../images/common/page-title-bg.png") no-repeat center center;
    background-size: cover;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
main .view-more-button {
  font-family: "Noto Sans JP";
  color: #00479D;
  display: flex;
  align-items: center;
  gap: min(8px, 1vw);
  text-decoration: none;
  transition: opacity 0.3s ease;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  main .view-more-button {
    gap: 8px;
  }
}
main .view-more-button::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #00479D;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}
main .view-more-button:hover {
  opacity: 0.7;
}
main .view-more-button:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
main .view-more-button span {
  width: 24px;
  height: 24px;
  border: 1px solid #00479D;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  background-color: #00479D;
}
main .view-more-button span::after {
  content: "→";
  font-size: 12px;
  color: #ffffff;
}
main .page-content {
  margin-top: 80px;
}
@media (max-width: 768px) {
  main .page-content {
    margin-top: 56px;
  }
}
main .page-content section:first-child {
  padding: 0 min(150px, 10%);
  margin-bottom: 83px;
}
@media (max-width: 768px) {
  main .page-content section:first-child {
    padding: 0 20px;
    margin-bottom: 88px;
  }
}
main .page-content section:first-child p {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  text-align: center;
}
@media (max-width: 768px) {
  main .page-content section:first-child p {
    text-align: left;
  }
}
@media (max-width: 768px) {
  main .page-content section {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 min(20px, 5%);
  }
}
main .page-content section:not(:first-child) {
  display: flex;
  gap: min(40px, 4vw);
  align-items: center;
  margin-top: 56px;
}
@media (max-width: 768px) {
  main .page-content section:not(:first-child) {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 min(20px, 5%);
  }
}
main .page-content section:not(:first-child):nth-child(odd) {
  flex-direction: row-reverse;
  padding-left: min(150px, 10%);
}
@media (max-width: 768px) {
  main .page-content section:not(:first-child):nth-child(odd) {
    padding-left: min(20px, 5%);
    flex-direction: column;
  }
}
main .page-content section:not(:first-child):nth-child(even) {
  padding-right: min(150px, 10%);
}
@media (max-width: 768px) {
  main .page-content section:not(:first-child):nth-child(even) {
    padding-right: min(20px, 5%);
  }
}
main .page-content section:not(:first-child) img {
  width: min(760px, 50vw);
  height: min(600px, 65vh);
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  main .page-content section:not(:first-child) img {
    width: 100%;
    height: 272px;
  }
}
main .page-content section:not(:first-child) .section-text-container {
  display: flex;
  flex-direction: column;
  min-width: min(400px, 35vw);
}
@media (max-width: 768px) {
  main .page-content section:not(:first-child) .section-text-container {
    min-width: unset;
    width: 100%;
  }
}
main .page-content section:not(:first-child) .section-text-container h3 {
  font-size: 40px;
  line-height: 1.6;
  color: #00479D;
  font-family: "Zen Old Mincho";
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: min(14px, 1.5vw);
}
@media (max-width: 768px) {
  main .page-content section:not(:first-child) .section-text-container h3 {
    font-size: 32px;
    line-height: 48px;
  }
}
main .page-content section:not(:first-child) .section-text-container h3 span {
  font-size: 16px;
  line-height: 29px;
  color: #333333;
}
main .page-content section:not(:first-child) .section-text-container .divider {
  width: 100%;
  height: 1px;
  background-color: #B7B7B7;
  margin-top: 24px;
}
@media (max-width: 768px) {
  main .page-content section:not(:first-child) .section-text-container .divider {
    margin-top: 16px;
  }
}
main .page-content section:not(:first-child) .section-text-container p {
  font-size: 16px;
  line-height: 29px;
  color: #333333;
  margin-top: 44px;
}
@media (max-width: 768px) {
  main .page-content section:not(:first-child) .section-text-container p {
    margin-top: 16px;
  }
}
main .page-content section:not(:first-child) .section-text-container .view-more-button {
  margin-top: 16px;
}
main .page-content section:last-child {
  margin-bottom: 90px;
}
@media (max-width: 768px) {
  main .page-content section:last-child {
    margin-bottom: 64px;
  }
}/*# sourceMappingURL=eikosha.css.map */