body {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: var(--size-txt);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.08em;
  line-height: 1.6666666667;
}

a {
  color: var(--color-primary);
}
@media (any-hover: hover) {
  a {
    transition: color 0.3s ease;
  }
  a:hover {
    color: var(--color-primary-hover);
    text-decoration: none;
  }
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

p, h2, h3, h4 {
  line-break: strict;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}

h2, h3, h4 {
  font-weight: 600;
  line-height: 1.35;
}

h3::before, h3::after,
h4::before,
h4::after {
  position: absolute;
  content: "";
  display: block;
}

h3 {
  font-size: var(--size-h3);
  margin-top: 40px;
  margin-bottom: 1.25em;
  padding-bottom: 0.5em;
  position: relative;
}
h3::before, h3::after {
  bottom: 0;
  left: 0;
  height: 3px;
}
h3::before {
  background: #e5e5e5;
  width: 100%;
}
h3::after {
  background: var(--color-primary);
  width: 60px;
}
@media (min-width: 768px) {
  h3 {
    margin-top: 50px;
  }
}

h4 {
  font-size: var(--size-h4);
  margin-bottom: 0.35em;
  padding-left: 1.35em;
  position: relative;
}
h4::before {
  border-radius: 50%;
  border: 3px solid var(--color-primary);
  width: 0.7em;
  aspect-ratio: 1;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
}
h4::after {
  display: none;
}

strong,
.bold {
  font-weight: 600;
}

.container {
  width: 1200px;
  max-width: calc(100% - var(--container-pd) * 2);
  margin-inline: auto;
}

.table {
  border-collapse: collapse;
  width: 100%;
}
.table th, .table td {
  border: 1px solid #bfbfbf;
  line-height: 1.8333333333;
  vertical-align: middle;
  text-align: left;
  padding: 1em 0.65em;
}
.table th {
  background: #f1f1f1;
  font-weight: 600;
}
@media (max-width: 767px) {
  .table th {
    width: 5em;
  }
}
@media (min-width: 768px) {
  .table th, .table td {
    padding: 1em 1.5em;
  }
  .table th.letter-2 {
    letter-spacing: 1.08em;
  }
}

.box {
  background: #f8f8f8;
  padding: 15px;
}
@media (min-width: 768px) {
  .box {
    padding: 35px;
  }
}
.box + .box {
  margin-top: 20px;
}

.btnstyle {
  margin-top: 2em;
}
.btnstyle a {
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  line-height: 1;
  position: relative;
  text-decoration: none;
  width: min(500px, 100%);
  height: 86px;
}
.btnstyle a._application .txt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25em;
}
.btnstyle a._application .txt::before {
  content: "";
  display: block;
  width: 1.6em;
  aspect-ratio: 1;
  background: url(../img/icon-application.svg) no-repeat center center/contain;
}
.btnstyle a._external_link {
  font-size: var(--size-btn);
}
.btnstyle a._external_link::before {
  position: absolute;
  content: "";
  width: 1em;
  aspect-ratio: 1;
  background-size: contain;
  background: url(../img/icon-external_link.svg) no-repeat center center/contain;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (any-hover: hover) {
  .btnstyle a {
    transition: background-color 0.3s ease;
  }
  .btnstyle a:hover {
    background: var(--color-primary-hover);
  }
}

.sec_mainvisual {
  position: relative;
}
.sec_mainvisual .bg img {
  width: 100%;
}
@media (min-width: 768px) {
  .sec_mainvisual .bg img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right center;
       object-position: right center;
    height: max(500px, 50vw);
    max-height: 760px;
  }
}
.sec_mainvisual h1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 4vw;
  width: 100%;
}
.sec_mainvisual h1 .logo img {
  width: 25vw;
}
@media (max-width: 767px) {
  .sec_mainvisual h1 {
    align-items: center;
    justify-content: flex-end;
  }
  .sec_mainvisual h1 .catchcopy {
    text-align: center;
    width: 100%;
  }
  .sec_mainvisual h1 .logo {
    margin-left: auto;
    padding: 0 3vw;
  }
}
@media (min-width: 768px) {
  .sec_mainvisual h1 {
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 60px 40px 60px 40px;
    left: 50%;
    max-width: 1500px;
    transform: translateX(-50%);
  }
  .sec_mainvisual h1 picture, .sec_mainvisual h1 .logo {
    flex: 0 0 auto;
  }
  .sec_mainvisual h1 .catchcopy {
    margin-top: auto;
    margin-bottom: auto;
  }
  .sec_mainvisual h1 .logo {
    margin-top: auto;
  }
  .sec_mainvisual h1 .logo img {
    width: min(259px, 18vw);
  }
}

.sec_introduction {
  line-height: 2.25;
  padding: 50px 0;
}
@media (max-width: 767px) {
  .sec_introduction {
    background: url(../img/bg_img001_top_sp_min.jpg) no-repeat top center/100%, url(../img/bg_img001_btm_sp_min.jpg) no-repeat bottom center/100%;
  }
}
@media (max-width: 767px) and (resolution: 2dppx) {
  .sec_introduction {
    background-image: url(../img/bg_img001_top_sp.jpg), url(../img/bg_img001_btm_sp.jpg);
  }
}
@media (min-width: 768px) {
  .sec_introduction {
    text-align: center;
    background: url(../img/bg_img001_left.jpg) no-repeat left center/auto 100%, url(../img/bg_img001_right.jpg) no-repeat right center/auto 100%, linear-gradient(to top, #f5f5f5, #ffffff);
    line-height: 2.5555555556;
    padding: 120px 0;
  }
}

.sec_overview h2 {
  background: url(../img/bg_img002_sp.jpg) no-repeat center center/cover;
  color: #fff;
  font-size: var(--size-h2);
  letter-spacing: 0.1em;
  padding: 35px 10px;
  text-align: center;
}
.sec_overview h2 .sub {
  border-bottom: 2px solid currentColor;
  display: table;
  font-size: calc(var(--size-h2) * 26 / 36);
  margin-inline: auto;
  margin-bottom: 0.5em;
  padding-bottom: 0.25em;
}
@media (min-width: 768px) {
  .sec_overview h2 {
    background-image: url(../img/bg_img002.jpg);
    padding-top: 84px;
    padding-bottom: 84px;
  }
  .sec_overview h2 .sub {
    letter-spacing: 0.04em;
  }
}

.txt_name_sub p {
  font-size: var(--size-txt_name_sub);
  font-weight: 500;
  line-height: 2.2;
  margin-bottom: 1.25em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.75em;
}

.txt_application {
  font-size: var(--size-txt_name_sub);
  font-weight: 500;
  padding-left: 1.36em;
  position: relative;
  margin-bottom: 1em;
}
.txt_application::before {
  position: absolute;
  content: "";
  width: 0.9em;
  height: 0.5em;
  left: 0;
  top: 0.65em;
  background: var(--color-primary);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.sec_application p:not([class]) + p:not([class]) {
  margin-top: 0.75em;
}

.sec_bnr {
  position: fixed;
  bottom: 0;
}
@media (any-hover: hover) {
  .sec_bnr a {
    transition: opacity 0.3s ease;
  }
  .sec_bnr a:hover {
    opacity: 0.8;
  }
}
@media (max-width: 767px) {
  .sec_bnr {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    padding: 10px;
    text-align: center;
    width: 100%;
  }
  .sec_bnr img {
    width: max(260px, 50vw);
  }
}
@media (min-width: 768px) {
  .sec_bnr {
    right: 0;
  }
  .sec_bnr img {
    max-width: 35vw;
  }
}

.footer {
  background: #f1f1f1;
  font-size: var(--size-copyright);
  margin-top: 40px;
  padding: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 150px;
  }
}
@media (max-width: 450px) {
  .footer {
    padding-bottom: calc(31vw + 20px);
  }
}
@media (min-width: 768px) {
  .footer {
    margin-top: 100px;
  }
}

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