@charset "UTF-8";
#main-visual {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center; }
  #main-visual:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.3) 1px, transparent 1px), radial-gradient(rgba(0, 0, 0, 0.3) 1px, transparent 1px);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
    /* ←ここで2枚目をずらしてる */
    z-index: 0; }

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; }

#main-visual .copy {
  letter-spacing: .2em;
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  padding: .5em;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFadeIn 1s ease forwards;
  animation-delay: 0.2s;
  /* 好みで遅延調整 */ }
  @media (min-width: 992px) {
    #main-visual .copy {
      font-size: 3.4rem; } }

@keyframes slideUpFadeIn {
  to {
    opacity: 1;
    transform: translateY(0); } }
.copy-indent {
  display: inline-block;
  padding: 0 0 0 .6em; }

.subcopy {
  display: block;
  margin: 1.0em 0 0;
  font-size: 2.0rem;
  text-shadow: none;
  letter-spacing: .1em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: .4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0); } }
.message-picture {
  width: 94%;
  margin: 0 auto; }
  @media (min-width: 992px) {
    .message-picture {
      width: 50%; } }
  .message-picture img {
    object-fit: cover;
    min-height: 250px; }
    @media (min-width: 992px) {
      .message-picture img {
        min-height: 400px; } }

.message-body {
  margin: 2.0em 0 0; }
  @media (min-width: 992px) {
    .message-body {
      width: 50%;
      margin: 0; } }
  .message-body p {
    margin: 0 0 2.0em; }
    .message-body p:last-child {
      margin: 0; }

.Links {
  background: #13395d; }

@media (min-width: 992px) {
  .links-nav {
    display: flex;
    gap: 20px; } }
.links-nav li {
  width: 100%;
  margin: 0 0 15px; }
  .links-nav li:last-child {
    margin: 0; }
  .links-nav li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    background: #fff;
    position: relative;
    transition: background 0.3s ease, transform 0.4s ease; }
    .links-nav li a::before {
      content: "";
      position: absolute;
      left: 10px;
      bottom: 10px;
      width: 12px;
      height: 12px;
      background: #13395d;
      clip-path: polygon(0 100%, 100% 100%, 0 0); }
    .links-nav li a:hover {
      background-color: #f0f0f0;
      /* ホバー時の背景色 */
      color: #333;
      /* ホバー時の文字色 */
      transform: scale(1.05);
      /* 少し拡大 */ }
    .links-nav li a span {
      margin-right: 10px;
      font-weight: bold; }
    .links-nav li a .txt {
      font-size: 1.5rem;
      width: 45%;
      text-align: center; }
    .links-nav li a .img {
      width: 55%; }
      .links-nav li a .img img {
        height: auto;
        display: block; }

.greeting .section-heading {
  display: block;
  text-align: right; }
  .greeting .section-heading .bg-text {
    left: auto;
    right: 0; }

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