@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 1920px) {
  html {
    font-size: max(10px, 0.8333333333vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  html {
    font-size: 3.2vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
}
@media (max-width: 1920px) {
  body {
    font-size: max(10px, 0.8333333333vw);
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  body {
    font-size: 3.2vw;
  }
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

img {
  display: inline-block;
  height: auto;
  vertical-align: middle;
}

address {
  font-style: normal;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
.js-animation {
  opacity: 0;
  transform: translateY(0.625rem);
}

.entrance {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  /* max-height: 1080px; */
  background: url(../images/img_bg.jpg) no-repeat center / cover;
}
@media screen and (max-width: 767px) {
  .entrance {
    /* height: auto;
    min-height: 100vh;
    min-height: 100svh; */
  }
}
.entrance::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.15);
  z-index: 1;
}
.entrance * {
  position: relative;
  z-index: 2;
}
.entrance__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 85%;
  min-height: 100vh;
  min-height: 100svh;
  margin-inline: auto;
  padding-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .entrance__inner {
    padding-block: 3.125rem;
  }
}
.entrance__copy {
  padding: 1.875rem 3.75rem;
  background-color: #315097;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .entrance__copy {
    padding: 1.875rem;
    font-size: 1.875rem;
  }
}
.entrance__subCopy {
  margin-top: 1.875rem;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .entrance__subCopy {
    font-size: 1.25rem;
  }
}
.entrance__btns {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 14.375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .entrance__btns {
    margin-top: 3.75rem;
  }
}
.entrance__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26.875rem;
  height: 10rem;
  background-color: #fff;
  border: 1px solid #224E67;
  box-shadow: 0 4px 12px #224E67;
}
.entrance__btn.kurashi img {
  width: 16.25rem;
}
.entrance__btn.enabiz img {
  width: 18.9375rem;
}
.entrance__text {
  max-width: 56.25rem;
  margin-inline: auto;
  margin-top: 3.75rem;
}
.entrance__text a {
  text-decoration: underline;
}