@charset "UTF-8";

:root {
  --defFontFamily: "Noto Sans JP", Arial, "Hiragino Kaku Gothic Pro", Meiryo,
    "MS PGothic", sans-serif;
  --fontSize: 16px;
  --linkColor: #3562a0;
  --textColor: #333;
  --gutter: 1rem;
  --sectionPadding: 3rem;
  --gap: 2rem;
  --spacing: 1rem;
  --contentWidth: 1200px;
  --mainColor: #c41e3d;
  --lightColor: #e5e5e5;
  --subColor: #e13d5b;
  --button-bg: #e13d5b;
}

@media only screen and (max-width: 700px) {
  :root {
    --fontSize: 14px;
  }
}

header {
  position: fixed;
  top: 0;
  border-bottom: 2px solid var(--mainColor);
  box-shadow: 0 0 10px #4f4f4f;
  padding: 0.8rem 0;
  background-color: #fff;
  z-index: 999;
}

@media only screen and (max-width: 700px) {
  header {
    padding: 0.5rem 0;
  }
}

header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
}

header .header-inner h1 {
  display: flex;
  margin: 0;
  width: 220px;
}

@media only screen and (max-width: 700px) {
  header .header-inner h1 {
    width: 150px;
  }
}

header .header-inner h1 a {
  width: 100%;
}

header .header-inner h1 a img {
  width: 100%;
  object-fit: contain;
}

header .header-inner .header-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
}

header .header-inner .header-buttons .btn {
  width: 240px;
  padding: 0.5rem 0;
  text-align: center;
  text-decoration: none;
  background-color: var(--button-bg);
  color: #fff;
  transition: all 0.2s;
}

@media only screen and (max-width: 1000px) {
  header .header-inner .header-buttons .btn {
    width: unset;
    padding: 0.5rem 1rem;
    white-space: nowrap;
  }
}

@media only screen and (max-width: 700px) {
  header .header-inner .header-buttons .btn {
    display: none;
  }
}

header .header-inner .header-buttons .btn:hover {
  filter: brightness(0.8);
  text-decoration: none;
}

header .header-inner .header-buttons .hamburger {
  --button-height: 4.3rem;
  --button-width: 4.5rem;
  --hamburger-size: 2.5rem;
  width: var(--button-width);
  height: var(--button-height);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0.5rem;
  background-color: var(--mainColor);
  color: #fff;
}

@media only screen and (max-width: 700px) {
  header .header-inner .header-buttons .hamburger {
    --button-height: 3.3rem;
    --button-width: 3.5rem;
    --hamburger-size: 2rem;
  }
}

header .header-inner .header-buttons .hamburger .radix-icon {
  height: var(--hamburger-size);
}

table {
  max-width: 100%;
}

@media only screen and (max-width: 700px) {
  table.align tr th,
  table.align tr td {
    display: block;
  }

  table.align tr td {
    padding-left: 1rem;
  }
}

#global-nav {
  position: fixed;
  right: max(var(--spacing), 100% - var(--contentWidth) / 2);
  width: fit-content;
  max-width: min(
    100% - 2 * var(--spacing),
    var(--contentWidth) - 2 * var(--spacing)
  );
  background-color: #fff;
  padding: 0.5rem;
  border-bottom: 6px solid var(--mainColor);
  border-radius: 0.25rem;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  z-index: 998;
  visibility: hidden;
  opacity: 0;
  top: 0;
  transition: all 0.4s;
}

#global-nav.opened {
  visibility: visible;
  top: calc(var(--header-height) + 0.5rem);
  opacity: 1;
}

@media only screen and (max-width: 700px) {
  #global-nav {
    width: 100%;
  }
}

#global-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media only screen and (max-width: 700px) {
  #global-nav ul {
    flex-direction: column;
    align-items: center;
    row-gap: 0.5rem;
    padding: 0.5rem;
  }
}

@media only screen and (max-width: 700px) {
  #global-nav ul li {
    width: 100%;
    text-align: center;
  }
}

#global-nav ul li a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-weight: bold;
  border-radius: 0.125rem;
  transition: all 0.2s;
}

@media only screen and (max-width: 700px) {
  #global-nav ul li a {
    font-size: 1.4rem;
    padding: 0.8rem 2rem;
  }
}

#global-nav ul li a:hover {
  background-color: var(--mainColor);
  color: #fff;
  text-decoration: none;
}

#global-nav ul li.btn {
  margin-top: 0.5rem;
}

#global-nav ul li.btn a {
  padding: 0.5rem 0;
  text-align: center;
  text-decoration: none;
  background-color: var(--button-bg);
  color: #fff;
  transition: all 0.2s;
}

#global-nav ul li.btn a:hover {
  filter: brightness(0.8);
  text-decoration: none;
}

main {
  margin-top: var(--header-height);
}

main *:has(> wbr) {
  word-break: keep-all;
  overflow-wrap: break-word;
}

main .nowrap {
  white-space: nowrap;
}

.eyecatch-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.eyecatch {
  position: relative;
  background-image: url(../images/main.png);
  background-size: cover;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  height: 100vh;
  max-height: 700px;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 700px) {
  .eyecatch {
    padding: 0;
  }
}

.eyecatch h2,
.eyecatch p {
  text-align: left;
}

.eyecatch .eyecatch-content {
  padding: 1.5rem 4.5rem 2rem;
  height: 100%;
  width: 55%;
  text-align: center;
}

@media screen and (max-width: 1140px) {
  .eyecatch .eyecatch-content {
    width: 60%;
  }
}

@media screen and (max-width: 1050px) {
  .eyecatch .eyecatch-content {
    width: 70%;
  }
}

@media screen and (max-width: 900px) {
  .eyecatch .eyecatch-content {
    padding: 2rem 1.5rem 2rem;
    width: 100%;
  }
}

.eyecatch .eyecatch-content .title,
.eyecatch .eyecatch-content .info,
.eyecatch .eyecatch-content .description {
  --border-width: 4px;
  --border-color: #fff;
  text-shadow: var(--border-width) var(--border-width) var(--border-width)
      var(--border-color),
    calc(-1 * var(--border-width)) var(--border-width) var(--border-width)
      var(--border-color),
    calc(-1 * var(--border-width)) calc(-1 * var(--border-width))
      var(--border-width) var(--border-color),
    var(--border-width) calc(-1 * var(--border-width)) var(--border-width)
      var(--border-color),
    0 0 10px var(--border-color);
  color: #042d62;
  line-height: 1.3;
}

.eyecatch .eyecatch-content strong {
  color: #55b372;
  font-size: 2.5rem;
}

@media only screen and (max-width: 700px) {
  .eyecatch .eyecatch-content strong {
    font-size: 2rem;
  }
}

.eyecatch .eyecatch-content .title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 900px) {
  .eyecatch .eyecatch-content .title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 500px) {
  .eyecatch .eyecatch-content .title {
    font-size: 2.5rem;
  }
}

.eyecatch .eyecatch-content .info {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 900px) {
  .eyecatch .eyecatch-content .info {
    font-size: 1.3rem;
  }
}

.eyecatch .eyecatch-content .info strong {
  font-size: 1.5em;
  font-weight: bold;
}

.eyecatch .eyecatch-content .description {
  line-height: 1.5;
  font-weight: 500;
}

.eyecatch .eyecatch-content .description .description-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
}

@media only screen and (max-width: 900px) {
  .eyecatch .eyecatch-content .description .description-title {
    font-size: 1.3rem;
  }
}

.eyecatch .eyecatch-content .description .description-text {
  padding-top: 1rem;
  font-size: 1.2rem;
}

@media only screen and (max-width: 900px) {
  .eyecatch .eyecatch-content .description .description-text {
    font-size: 1rem;
  }
}

.eyecatch .eyecatch-content .description .circle-wrap {
  padding-top: 1rem;
  display: flex;
  justify-content: center;
}

.eyecatch .eyecatch-content .description .circle-wrap .circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #0da3be;
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 550px) {
  .eyecatch .eyecatch-content .description .circle-wrap .circle {
    width: 200px;
    height: 200px;
  }
}

@media only screen and (max-width: 480px) {
  .eyecatch .eyecatch-content .description .circle-wrap .circle {
    width: 140px;
    height: 140px;
  }
}

.eyecatch .eyecatch-content .description .circle-wrap .circle p {
  text-align: center;
  padding-top: 2.5rem;
  text-shadow: none;
  color: #fff;
  font-size: 80%;
}

.eyecatch .eyecatch-content .description .circle-wrap .circle p span {
  color: #e5f012;
  font-size: 150%;
}

@media only screen and (max-width: 480px) {
  .eyecatch .eyecatch-content .description .circle-wrap .circle p {
    padding-top: 1.5rem;
    font-size: 75%;
  }
}

.eyecatch .eyecatch-content .btn {
  background-color: var(--subColor);
  padding: 1rem 9rem;
  max-width: unset;
  width: unset;
  margin-top: 2.3rem;
}

@media only screen and (max-width: 900px) {
  .eyecatch .eyecatch-content .btn {
    font-size: 1.2rem;
    width: 100%;
    padding: 0.8rem 2rem;
  }
}

.eyecatch .content_eye {
  position: absolute;
  bottom: 50px;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-end;
}

.eyecatch .content_eye a {
  margin-right: 50px;
}

@media only screen and (max-width: 1050px) {
  .eyecatch .content_eye {
    bottom: 0;
  }
}

@media only screen and (max-width: 900px) {
  .eyecatch .content_eye {
    justify-content: center;
  }

  .eyecatch .content_eye a {
    margin-right: 0;
  }
}

@media only screen and (max-width: 550px) {
  .eyecatch .content_eye {
    bottom: 70px;
    width: calc(100% - 2 * var(--spacing));
    left: var(--spacing);
  }
}

@media only screen and (max-width: 450px) {
  .eyecatch .content_eye {
    bottom: 0px;
  }
}

article {
  padding: 3rem 0 5rem;
}

article.bg {
  background-color: var(--lightColor);
}

main h2 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  padding: 0;
  margin-bottom: 2rem;
}

main h2 + .txt-01 {
  margin-top: -2rem;
}

@media only screen and (max-width: 900px) {
  main h2 {
    font-size: 2.5rem;
  }
}

main h3 {
  color: var(--mainColor);
  font-size: 1.875rem;
  margin: 2.5rem 0 1.25rem;
}

@media only screen and (max-width: 700px) {
  main h3 {
    font-size: 1.5rem;
  }
}

main h4 {
  color: var(--mainColor);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  border-left: 5px solid var(--subColor);
  padding-left: 0.75rem;
}

@media only screen and (max-width: 700px) {
  main h4 {
    font-size: 1.2rem;
  }
}

main h5 {
  background-color: var(--subDarkColor);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 300;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

main h6 {
  font-size: 1.1rem;
  font-weight: 500;
  padding-left: 1rem;
  border-left: 7px solid var(--subColor);
  line-height: 1;
  margin-top: 0.5rem;
}

main h6:not(:first-child) {
  margin-top: 1.5rem;
}

.txt-01 {
  width: fit-content;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 2rem;
  padding: 0 0.2em;
  --border-color: var(--mainColor);
  --border-height: 0.5em;
  position: relative;
}

.txt-01::before {
  position: absolute;
  bottom: 0.3em;
  display: block;
  content: "";
  height: var(--border-height);
  width: 100%;
  background-color: var(--border-color);
  opacity: 0.3;
}

.txt-01 span {
  white-space: nowrap;
  font-weight: 600;
  font-size: 1.2em;
}

@media only screen and (max-width: 1200px) {
  .txt-01 {
    --border-height: 0;
  }
}

@media only screen and (max-width: 700px) {
  .txt-01 {
    --border-height: 0;
    font-size: 1.4rem;
  }
}

.txt-01.noline {
  --border-height: 0;
}

.pdf {
  width: 100%;
  aspect-ratio: 1.3333333333333;
}

.slider {
  --arrow-size: 3.7rem;
  --arrow-margin: 2.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.slider .slick-list .slick-track li {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0.5rem;
}

.slider .slick-list .slick-track li p {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

.slider .slick-arrow {
  width: var(--arrow-size);
  height: var(--arrow-size);
}

@media screen and (max-width: 1450px) {
  .slider .slick-arrow {
    display: none !important;
  }
}

.slider .slick-arrow::before {
  display: grid;
  place-items: center;
  font-weight: bold;
  font-size: calc(var(--arrow-size) * 0.5);
  width: 100%;
  height: 100%;
  border-radius: 10000px;
  background-color: #777;
  transition: all 0.2s;
}

.slider .slick-arrow.slick-prev {
  left: calc(-1 * var(--arrow-size) + var(--arrow-margin));
}

.slider .slick-arrow.slick-prev::before {
  content: "<";
}

.slider .slick-arrow.slick-next {
  right: calc(-1 * var(--arrow-size) + var(--arrow-margin));
}

.slider .slick-arrow.slick-next::before {
  content: ">";
}

main .btn {
  display: inline-block;
  width: 100%;
  max-width: 430px;
  padding: 0.8rem;
  font-size: 130%;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background-color: var(--button-bg);
  text-align: center;
  transition: all 0.2s;
}

main .btn:hover {
  filter: brightness(0.8);
  text-decoration: none;
}

main .btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem 2.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 700px) {
  main .btns {
    flex-direction: column;
  }
}

main .btns .btn {
  font-size: 1.7rem;
  font-weight: 500;
  padding: 1.2rem;
}

@media only screen and (max-width: 700px) {
  main .btns .btn {
    font-size: 1.3rem;
    padding: 0.5rem;
  }
}

.dl-step {
  --bg-1: #e13d5b;
  --bg-2: #d42142;
  --bg-3: #b01c37;
  --bg-4: #9f1931;
  display: grid;
  grid-template-columns: 170px 1fr;
  width: 100%;
  row-gap: 1.3rem;
}

@media only screen and (max-width: 700px) {
  .dl-step {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
}

.dl-step dt {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 0.7rem;
  padding: 1rem 0;
  font-style: italic;
  text-align: center;
  line-height: 1;
  color: #fff;
}

@media only screen and (max-width: 700px) {
  .dl-step dt {
    display: block;
  }
}

.dl-step dt:first-child {
  background-color: var(--bg-1);
}

.dl-step dt:nth-child(3) {
  background-color: var(--bg-2);
}

.dl-step dt:nth-child(5) {
  background-color: var(--bg-3);
}

.dl-step dt:nth-child(7) {
  background-color: var(--bg-4);
}

.dl-step dt .step {
  font-size: 1.65rem;
  opacity: 0.9;
}

@media only screen and (max-width: 700px) {
  .dl-step dt .step {
    display: inline;
    font-size: 1.5rem;
    margin-right: 0.2em;
  }
}

.dl-step dt .nomber {
  font-size: 3.6rem;
  font-weight: bold;
  opacity: 0.8;
  padding-right: 0.3rem;
}

@media only screen and (max-width: 700px) {
  .dl-step dt .nomber {
    display: inline;
    font-size: 1.5rem;
  }
}

.dl-step dd {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr max-content;
  margin-left: 0;
  border: 5px solid #e5e5e5;
  border-left: 0;
  padding: 2rem 1rem 2rem 3rem;
}

@media only screen and (max-width: 900px) {
  .dl-step dd {
    display: block;
    padding: 2rem 3rem;
  }
}

@media only screen and (max-width: 700px) {
  .dl-step dd {
    grid-column: 1;
    display: block;
    padding: 1rem 1.5rem 1.5rem;
    margin-bottom: 1.5rem;
    border: none;
    background-color: #f5f5f5;
  }
}

.dl-step dd .title {
  grid-column: 1;
  grid-column: 1;
  font-size: 2.2rem;
  font-weight: bold;
}

@media only screen and (max-width: 900px) {
  .dl-step dd .title {
    font-size: 1.8rem;
  }
}

.dl-step dd:has(.btn) .title {
  grid-column: 1;
}

.dl-step dd .btn {
  grid-column: 2;
  grid-row: 1;
  margin: auto 0;
  height: fit-content;
  padding: 0.5rem 3.2rem;
  display: block;
  background-color: var(--button-bg);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.2s;
}

@media only screen and (max-width: 900px) {
  .dl-step dd .btn {
    margin-top: 1.5rem;
    max-width: 100%;
  }
}

@media only screen and (max-width: 700px) {
  .dl-step dd .btn {
    grid-column: 1;
    grid-row: unset;
    margin: 1.5rem auto 0;
    width: 100%;
    font-size: 1.3rem;
  }
}

.dl-step dd .btn:hover {
  filter: brightness(0.8);
  text-decoration: none;
}

.dl-step dd .txt {
  grid-row: 2;
  grid-column: 1 / -1;
  font-size: 1.2rem;
  font-weight: 500;
}

@media only screen and (max-width: 700px) {
  .dl-step dd .txt {
    grid-row: unset;
  }
}

.btn-big-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0 4rem;
}

@media only screen and (max-width: 700px) {
  .btn-big-container {
    padding: 0;
  }
}

.btn-big-container .btn-big {
  max-width: 570px;
  font-size: 2.3rem;
  font-weight: 500;
  padding: 1.5rem;
}

@media only screen and (max-width: 700px) {
  .btn-big-container .btn-big {
    font-size: 1.5rem;
    padding: 1rem;
  }
}

footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

footer .footer-inner {
  position: relative;
}

footer .footer-inner .footer-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 3rem;
}

@media screen and (max-width: 700px) {
  footer .footer-inner .footer-info {
    flex-direction: column;
    align-items: center;
    row-gap: 1.5rem;
  }
}

footer .footer-inner .footer-info .footer-logo {
  height: 80px;
}

@media screen and (max-width: 700px) {
  footer .footer-inner .footer-info .footer-logo {
    display: flex;
    justify-content: center;
  }
}

footer .footer-inner .footer-info .footer-logo img {
  height: 100%;
  object-fit: contain;
}

footer .footer-inner .footer-info .contact {
  font-size: 1.2rem;
}

@media screen and (max-width: 700px) {
  footer .footer-inner .footer-info .contact {
    width: max-content;
  }
}

footer .footer-inner .footer-info .contact .title {
  font-weight: bold;
}

footer .footer-inner .footer-info .contact .title::before,
footer .footer-inner .footer-info .contact .title::after {
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
}

footer .footer-inner .footer-info .contact .title::before {
  content: "\f053";
}

footer .footer-inner .footer-info .contact .title::after {
  content: "\f054";
}

footer .footer-inner .footer-info .contact .content {
  font-weight: 500;
}

footer .footer-inner .footer-info .recoOS {
  padding-left: 1.5rem;
}

footer .footer-inner .footer-info .recoOS ul {
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

footer .footer-inner .footer-info .recoOS ul li {
  list-style-type: disc;
}

footer .footer-inner .footer-info .recoOS-title {
  font-size: 1.5rem;
  font-weight: bold;
}

footer .footer-inner .footer-info .recoOS-title::before,
footer .footer-inner .footer-info .recoOS-title::after {
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
}

footer .footer-inner .footer-info .recoOS-title::before {
  content: "\f053";
}

footer .footer-inner .footer-info .recoOS-title::after {
  content: "\f054";
}

footer .footer-inner .footer-info .recoOS-heading {
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
  padding-left: 1rem;
}

footer .footer-inner .footer-info .recoOS-heading::before {
  content: "";
  width: 4px;
  height: 100%;
  position: absolute;
  background-color: var(--subColor);
  top: 0;
  left: 0;
}

footer .footer-inner .pagetop {
  --size: 4.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(-1 * var(--size));
  width: var(--size);
  height: var(--size);
  font-size: calc(var(--size) * 0.5);
  display: grid;
  place-items: center;
  border-radius: 10000px;
  background-color: var(--subColor);
  color: #fff;
  transition: filter 0.2s;
}

@media screen and (max-width: 1350px) {
  footer .footer-inner .pagetop {
    transform: translateX(50%);
    top: calc(-3rem - var(--size) / 2);
    right: 50%;
  }
}

footer .footer-inner .pagetop:hover {
  filter: brightness(0.8);
  text-decoration: none;
}

@media only screen and (max-width: 700px) {
  .sp-hide {
    visibility: hidden;
    opacity: 0;
  }

  .sp-visible {
    visibility: visible;
    opacity: 1;
  }

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

  .rdx-btn {
    display: block;
  }
}

@media print, screen and (min-width: 700px) {
  .pc-hide {
    visibility: hidden;
    opacity: 0;
  }

  .pc-visible {
    visibility: visible;
    opacity: 1;
  }

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

.background-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.background {
  width: 100%;
  max-width: 1200px;
  height: 100vh;
  max-height: 700px;
  background-image: url(../images/main.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
