@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Adobe Garamond Pro";
  src: url("./public/font/adobe-garamond-pro-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #333;
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  scrollbar-gutter: stable;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 60px;
  }
}

.image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.image--bottom {
  -o-object-position: bottom;
     object-position: bottom;
}

.title {
  position: relative;
  padding-left: 19px;
}
.title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4px;
  height: 90%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#346a98), to(#5aa1d5));
  background-image: linear-gradient(to bottom, #346a98, #5aa1d5);
}
.title--heading {
  padding-left: 16px;
}
.title--heading::before {
  height: 100%;
}
.title__en, .title__jp {
  display: block;
}
.title__en {
  font: 600 6.4rem "Cormorant Garamond", serif;
  line-height: 1.203125em;
  color: #17386f;
}
@media screen and (max-width: 767px) {
  .title__en {
    font-size: 46px;
    line-height: 1.2173913043em;
    margin-bottom: 3px;
  }
}
.title__en--small {
  font-size: 4rem;
  line-height: 1.2em;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .title__en--small {
    font-size: 36px;
    margin-bottom: 4px;
  }
}
.title__jp {
  font: 600 1.6rem "Noto Serif JP", serif;
  color: #333;
}
.title__jp--heading {
  font-size: 3.2rem;
  line-height: 1.6875em;
  color: #17386f;
}
@media screen and (max-width: 767px) {
  .title__jp--heading {
    font-size: 24px;
    line-height: 1.3333333333em;
  }
}

.btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 42px 0 26px;
  border: 1px solid transparent;
  min-width: 220px;
  min-height: 56px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.5em;
  text-align: left;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#001e50), color-stop(50%, #0063a3), color-stop(0, #fff));
  background: linear-gradient(90deg, #001e50 0%, #0063a3 50%, #fff 0);
  background-size: 200% 100%;
  background-position: 0% 0%;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
  z-index: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
    min-width: 0;
    max-width: 220px;
  }
}
.btn input[type=button],
.btn input[type=submit] {
  border: 0;
  width: 100%;
  height: 100%;
  font: inherit;
  color: #fff;
  text-align: left;
  background: transparent;
  padding: 0 42px 0 26px;
  position: absolute;
  left: 0;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: color 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  transition: color 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, color 300ms ease-in-out;
  transition: transform 300ms ease-in-out, color 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}
@media screen and (max-width: 767px) {
  .btn input[type=button],
  .btn input[type=submit] {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.btn::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 26px;
  font-size: 1.6rem;
  line-height: 2.5em;
  color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: color 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  transition: color 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, color 300ms ease-in-out;
  transition: transform 300ms ease-in-out, color 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}
.btn:hover, .btn:hover input[type=button], .btn:hover input[type=submit] {
  border-color: #17386f;
  background: #fff;
  background-color: #fff;
  color: #17386f;
}
.btn:hover::after, .btn:hover input[type=button]::after, .btn:hover input[type=submit]::after {
  color: #17386f;
  z-index: 2;
}
.btn--left {
  padding: 0 26px 0 42px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  text-align: right;
  background: -webkit-gradient(linear, left top, right top, from(#0063a3), color-stop(50%, #001e50), color-stop(0, #fff));
  background: linear-gradient(90deg, #0063a3 0%, #001e50 50%, #fff 0);
  background-size: 200% 100%;
  background-position: 0% 0%;
}
.btn--left input[type=button],
.btn--left input[type=submit] {
  text-align: right;
  padding: 0 26px 0 42px;
}
.btn--left::after {
  right: unset;
  left: 26px;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.btn--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.btn--center input[type=button],
.btn--center input[type=submit] {
  text-align: center;
}
.btn--lg {
  min-width: 320px;
  min-height: 80px;
}
@media screen and (max-width: 767px) {
  .btn--lg {
    min-width: 0;
    max-width: 320px;
  }
}
.btn--md {
  padding: 0 36px 0 20px;
  min-width: 200px;
  min-height: 40px;
}
@media screen and (max-width: 767px) {
  .btn--md {
    min-width: 0;
    max-width: 200px;
  }
}
.btn--sm {
  padding: 0 36px 0 10px;
  min-width: 160px;
  min-height: 48px;
}
@media screen and (max-width: 767px) {
  .btn--sm {
    min-width: 0;
    max-width: 160px;
  }
}
.btn--iconed {
  gap: 10px;
  padding: 0 36px 0 10px;
  min-width: 280px;
  line-height: 1.375em;
}
@media screen and (max-width: 767px) {
  .btn--iconed {
    min-width: 0;
    max-width: 280px;
  }
}
.btn--nodeco {
  padding: 0 26px;
}
.btn--nodeco::after {
  content: none;
}
.btn--input::after {
  right: 20px;
}

.contact-block {
  background: -webkit-gradient(linear, left top, left bottom, from(#c6d7e8), to(#fff)), url("./public/img/texture-bg.jpg");
  background: linear-gradient(180deg, #c6d7e8 0%, #fff 100%), url("./public/img/texture-bg.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  padding-block: 55px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact-block {
    padding-block: 38px 50px;
  }
}
.contact-block__title-wrap {
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact-block__title-wrap {
    margin-bottom: 22px;
  }
}
.contact-block__text {
  font-size: 1.6rem;
  line-height: 2em;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) {
  .contact-block__text {
    position: relative;
    margin-top: 20px;
    -webkit-transform: unset;
            transform: unset;
    top: unset;
    left: unset;
  }
}
@media screen and (max-width: 767px) {
  .contact-block__text {
    font-size: 13px;
    line-height: 1.8461538462em;
  }
}
.contact-block__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 25px 77px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .contact-block__wrapper {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .contact-block__wrapper {
    padding: 20px;
  }
}
.contact-block__detail-wrap {
  border-right: 1px solid #b1b1b1;
}
@media screen and (max-width: 1024px) {
  .contact-block__detail-wrap {
    border-right: 0;
    border-bottom: 1px solid #b1b1b1;
    padding-bottom: 12px;
  }
}
.contact-block__heading {
  font-weight: 500;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
@media screen and (max-width: 767px) {
  .contact-block__heading {
    font-size: 15px;
  }
}
.contact-block__heading::before {
  content: "●";
  font-size: 8px;
  color: #4598cc;
}
@media screen and (max-width: 767px) {
  .contact-block__heading::before {
    font-size: 7px;
  }
}
.contact-block__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 5px;
  color: #17386f;
  font-family: "Noto Serif JP", serif;
}
.contact-block__tel-label {
  font-weight: 500;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .contact-block__tel-label {
    font-size: 18px;
  }
}
.contact-block__tel-number {
  font-weight: 500;
  font-size: 4.6rem;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .contact-block__tel-number {
    pointer-events: all;
    font-size: 40px;
  }
}
.contact-block__time {
  font-size: 1.4rem;
}
.contact-block__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  padding-inline: 13px;
}
@media screen and (max-width: 1024px) {
  .contact-block__button-wrap {
    padding: 12px 0 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.header {
  position: fixed;
  z-index: 11;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px) brightness(3);
  /* stylelint-disable-next-line property-no-vendor-prefix */
  -webkit-backdrop-filter: blur(20px) brightness(3);
}
.header__container {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
  height: 70px;
}
@media screen and (min-width: 1921px) {
  .header__container {
    max-width: 100%;
  }
}
@media screen and (max-width: 980px) {
  .header__container {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header__container {
    height: 60px;
    padding-left: 2.67%;
  }
}
.header__logo {
  display: block;
  width: 234px;
  aspect-ratio: 234/45;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 186px;
  }
}
.header__logo:hover {
  opacity: 0.5;
}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  /* stylelint-disable-next-line value-no-vendor-prefix */
  height: -webkit-fill-available;
}
@media screen and (max-width: 767px) {
  .header__content {
    position: fixed;
    z-index: -1;
    top: 60px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    padding: 20px 4.8%;
    background: -webkit-gradient(linear, left top, left bottom, from(#001e50), to(#0063a3));
    background: linear-gradient(to bottom, #001e50, #0063a3);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .header__content.active {
    left: 0;
    z-index: 999;
  }
}
.header__content-wrapper {
  height: 100%;
  overflow-y: auto;
}
.header__content-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
.header__content-list-item:not(:last-child) {
  padding: 0 10px 19px;
  border-bottom: 1px solid #fff;
}
.header__sublist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 35px;
  margin-top: 20px;
}
@media screen and (max-width: 450px) {
  .header__sublist {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.header__sublist--auto {
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media screen and (max-width: 450px) {
  .header__sublist--auto {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.header__sublist-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  font-size: 15px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #b1b1b1;
}
.header__sublist-link::before {
  content: "●";
  font-size: 6px;
  font-weight: 500;
  margin-top: 7px;
}
.header__content-sns {
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin: 25px auto 0;
}
.header__link {
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  width: 104px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .header__link:hover::before {
    opacity: 1;
  }
  .header__link:hover .header__link-jp {
    color: #fff;
  }
  .header__link.active::before {
    opacity: 1;
  }
  .header__link.active .header__link-jp {
    color: #fff;
  }
}
@media screen and (max-width: 980px) {
  .header__link {
    width: 73px;
  }
}
@media screen and (max-width: 767px) {
  .header__link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}
.header__link::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#001e50), to(#0063a3));
  background: linear-gradient(to bottom, #001e50, #0063a3);
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header__link--contact {
  margin-right: 1px;
  width: 120px;
}
@media screen and (min-width: 768px) {
  .header__link--contact:hover::before {
    opacity: 0;
  }
  .header__link--contact:hover::after {
    opacity: 1;
  }
  .header__link--contact:hover .header__link-jp {
    color: #17386f;
  }
  .header__link--contact:hover .header__link-en {
    color: #4598cc;
  }
}
@media screen and (max-width: 980px) {
  .header__link--contact {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .header__link--contact {
    margin-right: 0;
  }
}
.header__link--contact::before {
  opacity: 1;
}
.header__link--contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#92bce0), to(#cbe8fd));
  background: linear-gradient(to bottom, #92bce0, #cbe8fd);
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header__link--contact .header__link-jp,
.header__link--contact .header__link-en {
  color: #fff;
}
.header__link-jp {
  font: 500 1.6rem "Noto Serif JP", serif;
  line-height: 1.375em;
  color: #17386f;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 980px) {
  .header__link-jp {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .header__link-jp {
    font: 500 18px "Noto Sans JP", sans-serif;
    line-height: 1.2222222222em;
    color: #fff;
  }
}
.header__link-en {
  font: 600 1.4rem "Cormorant Garamond", serif;
  line-height: 1.2142857143em;
  color: #4598cc;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 980px) {
  .header__link-en {
    font-size: 1.2rem;
  }
}
.header__subcontent {
  position: fixed;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 20px 4%;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header__subcontent.active {
  opacity: 1;
  pointer-events: auto;
}
.header__subcontent-container {
  cursor: auto;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}
.header__subcontent-container--cards {
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
.header__card {
  position: relative;
  width: 280px;
  aspect-ratio: 280/170;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 17px 20px 20px;
}
@media screen and (min-width: 768px) {
  .header__card:hover .header__card-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .header__card:hover .header__card-btn-line::before {
    width: 100%;
  }
}
.header__card--small {
  width: auto;
  aspect-ratio: 240/170;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header__card-img {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.header__card-img::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background-color: #5a7480;
  mix-blend-mode: multiply;
}
.header__card-title {
  position: relative;
  z-index: 2;
}
.header__card-title-en {
  display: block;
  font: 600 3.2rem "Cormorant Garamond", serif;
  line-height: 1.21875em;
  color: #fff;
}
.header__card-title-jp {
  display: block;
  font: 500 1.6rem "Noto Serif JP", serif;
  line-height: 1.375em;
  color: #fff;
}
.header__card-btn {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.header__card-btn-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.header__card-btn-txt {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.375em;
  color: #fff;
}
.header__card-btn-arrow {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 26px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#346a98), to(#5aa1d5));
  background: linear-gradient(to bottom, #346a98, #5aa1d5);
}
.header__card-btn-arrow::before {
  content: "→";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}
.header__card-btn-line {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.header__card-btn-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 100%;
  background-color: #4598cc;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header__sub-links {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px 0;
  padding-block: 8px;
}
.header__sub-links::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #d5d5d5;
}
.header__sub-links-item {
  position: relative;
  padding: 2px 6px;
}
.header__sub-links-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #d5d5d5;
}
.header__sub-links-item--left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #d5d5d5;
}
.header__sub-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  /* stylelint-disable-next-line value-no-vendor-prefix */
  height: -webkit-fill-available;
  font-size: 1.6rem;
  line-height: 2em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .header__sub-link:hover {
    background-color: #eff4fa;
    color: #4598cc;
  }
}
.header__num {
  pointer-events: none;
  width: 180px;
  background: -webkit-gradient(linear, left bottom, left top, from(#0a6547), to(#053324));
  background: linear-gradient(to top, #0a6547, #053324);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 980px) {
  .header__num {
    width: 130px;
  }
}
@media screen and (max-width: 767px) {
  .header__num {
    pointer-events: auto;
    width: 60px;
  }
}
.header__num-txt {
  font: 500 2rem "Noto Serif JP", serif;
  line-height: 1.1em;
  color: #fff;
}
@media screen and (max-width: 980px) {
  .header__num-txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .header__num-txt {
    font-size: 1.2rem;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
  }
}
.header__num-txt::before {
  content: "TEL.";
  display: inline-block;
  font-size: 1.6rem;
}
@media screen and (max-width: 980px) {
  .header__num-txt::before {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .header__num-txt::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url("./public/img/icons/tel.svg") no-repeat center/100% 100%;
  }
}
.header__num-sched {
  font-size: 1.2rem;
  color: #b1b1b1;
}
@media screen and (max-width: 980px) {
  .header__num-sched {
    font-size: 1rem;
  }
}
.header__sp-content {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__sp-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    /* stylelint-disable-next-line value-no-vendor-prefix */
    height: -webkit-fill-available;
  }
}
.header__hamburger {
  cursor: pointer;
  position: relative;
  z-index: 11;
  width: 60px;
  aspect-ratio: 1/1;
  padding-block: 14px 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__hamburger::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#001e50), to(#0063a3));
  background: linear-gradient(to bottom, #001e50, #0063a3);
}
.header__hamburger.active .header__hamburger-line:nth-child(1)::before {
  width: 0;
}
.header__hamburger.active .header__hamburger-line:nth-child(2) {
  -webkit-transform: rotate(210deg);
          transform: rotate(210deg);
}
.header__hamburger.active .header__hamburger-line:nth-child(2)::before {
  width: 100%;
  -webkit-transform: translate(-50%, -50%) rotate(120deg);
          transform: translate(-50%, -50%) rotate(120deg);
}
.header__hamburger.active .header__hamburger-line:nth-child(3)::before {
  width: 0;
}
.header__hamburger-lines {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.header__hamburger-line {
  display: block;
  position: relative;
  width: 26px;
  height: 2px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header__hamburger-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header__hamburger-line:nth-child(2) {
  background-color: #fff;
}
.header__hamburger-line:nth-child(2)::before {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0;
}
.header__hamburger-line:nth-child(3)::before {
  left: unset;
  right: 0;
}
.header__hamburger-txt {
  font: 400 12px "Noto Serif JP", serif;
  color: #fff;
}

.footer {
  width: 100%;
  padding: 45px 4%;
  background: -webkit-gradient(linear, left top, left bottom, from(#0a6547), to(#053324));
  background: linear-gradient(to bottom, #0a6547, #053324);
}
@media screen and (max-width: 767px) {
  .footer {
    padding-block: 55px 15px;
  }
}
.footer__container {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media screen and (max-width: 980px) {
  .footer__container {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__info {
  max-width: 290px;
  padding-block: 20px;
}
@media screen and (max-width: 767px) {
  .footer__info {
    max-width: 100%;
    padding-block: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__logo {
  display: block;
  width: 100%;
  max-width: 290px;
  aspect-ratio: 290/56;
  margin-bottom: 23px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin-bottom: 15px;
  }
}
.footer__logo:hover {
  opacity: 0.5;
}
.footer__info-desc {
  font-size: 1.6rem;
  line-height: 1.5em;
  color: #fff;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .footer__info-desc {
    margin-bottom: 30px;
  }
}
.footer__info-desc a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.footer__info-desc a:hover {
  opacity: 0.5;
}
.footer__info-txt {
  font: 400 1.2rem "Noto Serif Myanmar", serif;
  line-height: 1.8333333333em;
  color: #b1b1b1;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .footer__info-txt {
    margin-bottom: 40px;
  }
}
.footer__info-copyright {
  display: block;
  font-size: 1rem;
  color: #b1b1b1;
}
.footer__line {
  width: 1px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  /* stylelint-disable-next-line value-no-vendor-prefix */
  height: -webkit-fill-available;
  background-color: #d5d5d5;
}
@media screen and (max-width: 767px) {
  .footer__line {
    width: 100%;
    height: 1px;
  }
}
.footer__link-wrapper {
  position: relative;
  width: 100%;
}
.footer__links {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 18px 50px;
}
@media screen and (max-width: 980px) {
  .footer__links {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer__links {
    gap: 30px;
    margin-block: 35px 40px;
  }
}
.footer__links .colspan-2 {
  grid-column: span 2;
}
@media screen and (max-width: 980px) {
  .footer__links .colspan-2 {
    grid-column: initial;
  }
}
.footer__link {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.375em;
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.footer__link:hover {
  color: #e95531;
}
.footer__link--plain {
  pointer-events: none;
}
.footer__sublinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}
.footer__sublink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  font-size: 1.4rem;
  color: #b1b1b1;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .footer__sublink {
    gap: 5px;
  }
}
.footer__sublink::before {
  content: "●";
  font-size: 6px;
  margin-top: 6px;
  color: #d5d5d5;
}
.footer__sublink:hover {
  color: #fff;
}
.footer__sns {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  aspect-ratio: 1/1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .footer__sns {
    display: block;
    position: relative;
    right: initial;
    bottom: initial;
  }
}
.footer__sns:hover {
  opacity: 0.5;
}

.access {
  position: relative;
  padding-block: 58px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #001e50), to(#0063a3));
  background: linear-gradient(180deg, #001e50 0, #0063a3 100%);
}
@media screen and (max-width: 767px) {
  .access {
    padding-block: 0;
    background: none;
  }
}
@media screen and (max-width: 767px) {
  .access__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
    padding-block: 19px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #001e50), to(#0063a3));
    background: linear-gradient(180deg, #001e50 0, #0063a3 100%);
  }
}
.access__address {
  font-size: 1.6rem;
  color: #fff;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .access__address {
    font-size: 15px;
    line-height: 1.7333333333em;
    margin-top: 0;
  }
}
.access__map {
  position: absolute;
  right: 0;
  top: 0;
  width: calc(50% + 60px);
  height: 100%;
}
@media screen and (max-width: 767px) {
  .access__map {
    position: relative;
    width: 100%;
    aspect-ratio: 375/160;
  }
}
.access__map-iframe {
  width: 100%;
  height: 100%;
}

.lowerbanner__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 767px) {
  .lowerbanner__container {
    height: 380px;
  }
}
.lowerbanner__background, .lowerbanner__background::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lowerbanner__background {
  z-index: -1;
}
.lowerbanner__background::before {
  content: "";
  background: #5a7480;
  mix-blend-mode: multiply;
}
.lowerbanner__title {
  padding: 0 4%;
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.6em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1365px) {
  .lowerbanner__title {
    font-size: 2.9282576867vw;
  }
}
@media screen and (max-width: 767px) {
  .lowerbanner__title {
    margin: 0 auto;
    padding: 0 4.8%;
    font-size: 2.2rem;
    line-height: 1.6363636364em;
  }
}
@media screen and (max-width: 767px) {
  .lowerbanner__title--long {
    margin-bottom: 75px;
  }
}
.lowerbanner__side {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  max-width: 320px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .lowerbanner__side {
    top: unset;
    bottom: 0;
    -webkit-transform: none;
            transform: none;
    max-width: 234px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1365px) {
  .lowerbanner__side--titled {
    max-width: 23.4260614934vw;
  }
  .lowerbanner__side--titled.lowerbanner__side--lg {
    max-width: 26.5739385066vw;
  }
  .lowerbanner__side--titled.lowerbanner__side--md {
    max-width: 25.1830161054vw;
  }
  .lowerbanner__side--titled .lowerbanner__blue {
    padding: 0.8052708638vw 11.02%;
  }
  .lowerbanner__side--titled .lowerbanner__blue-note {
    padding-left: 1.1713030747vw;
    font-size: 1.317715959vw;
  }
  .lowerbanner__side--titled .lowerbanner__blue-note::before {
    width: 0.2928257687vw;
    height: 0.2928257687vw;
  }
  .lowerbanner__side--titled .lowerbanner__blue-en {
    font-size: 3.3674963397vw;
  }
  .lowerbanner__side--titled .lowerbanner__black {
    padding: 0.3660322108vw 11.02%;
  }
  .lowerbanner__side--titled .lowerbanner__black-note {
    font-size: 1.4641288433vw;
  }
}
.lowerbanner__side--lg {
  max-width: 363px;
}
@media screen and (max-width: 767px) {
  .lowerbanner__side--lg {
    max-width: 271.8px;
  }
}
.lowerbanner__side--md {
  max-width: 344px;
}
@media screen and (max-width: 767px) {
  .lowerbanner__side--md {
    max-width: 254.8px;
  }
}
.lowerbanner__blue {
  padding: 11px 11.02%;
  background: -webkit-gradient(linear, left top, right top, from(#001e50), color-stop(50%, #0063a3), color-stop(0, #fff));
  background: linear-gradient(90deg, #001e50 0%, #0063a3 50%, #fff 0);
  background-size: 200% 100%;
  background-position: 0% 0%;
}
@media screen and (max-width: 767px) {
  .lowerbanner__blue {
    padding: 9.1px 5.38%;
  }
}
.lowerbanner__blue-note {
  position: relative;
  display: block;
  padding-left: 16px;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  line-height: 1.2222222222em;
  letter-spacing: -0.02em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .lowerbanner__blue-note {
    padding-left: 10px;
    font-size: 1.5rem;
    line-height: 1.125em;
  }
}
.lowerbanner__blue-note::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  background: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .lowerbanner__blue-note::before {
    width: 3px;
    height: 3px;
    line-height: 1.1666666667em;
  }
}
.lowerbanner__blue-en {
  font-size: 4.6rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.2173913043em;
  letter-spacing: 0.018em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .lowerbanner__blue-en {
    font-size: 3.4rem;
    line-height: 1.2058823529em;
  }
}
.lowerbanner__black {
  padding: 5px 11.02%;
  background: #000;
}
@media screen and (max-width: 767px) {
  .lowerbanner__black {
    padding: 5px 5.38%;
  }
}
.lowerbanner__black-note {
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.4em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .lowerbanner__black-note {
    font-size: 1.8rem;
    line-height: 1.3333333333em;
  }
}
.lowerbanner__breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding: 20px 4%;
  width: 100%;
  max-width: calc(1000px + 8%);
}
@media screen and (max-width: 767px) {
  .lowerbanner__breadcrumb {
    padding: 16px 4.8%;
  }
}
.lowerbanner__breadcrumb-item {
  font-size: 1.2rem;
  line-height: 2.1666666667em;
  color: #5a7480;
}
@media screen and (max-width: 767px) {
  .lowerbanner__breadcrumb-item {
    font-size: 1rem;
    line-height: 2.6em;
  }
}
.lowerbanner__breadcrumb-item:not(:first-child) {
  position: relative;
  padding-left: 14px;
}
@media screen and (max-width: 767px) {
  .lowerbanner__breadcrumb-item:not(:first-child) {
    padding-left: 10px;
  }
}
.lowerbanner__breadcrumb-item:not(:first-child)::before {
  content: ">";
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lowerbanner__breadcrumb-item:not(:first-child)::before {
    left: 2px;
  }
}
.lowerbanner__breadcrumb-item:last-child {
  pointer-events: none;
  line-height: normal;
}
.lowerbanner__breadcrumb-item:last-child::before {
  top: 8px;
}
@media screen and (max-width: 767px) {
  .lowerbanner__breadcrumb-item:last-child::before {
    top: 7px;
  }
}
.lowerbanner__breadcrumb-item:hover {
  text-decoration: underline;
}

.service-intro {
  background: url("./public/img/service-intro/bg.jpg") no-repeat;
  background-size: cover;
}
.service-intro__wrap {
  max-width: calc(800px + 8%);
  margin-inline: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 65px 4% 100px;
}
@media screen and (max-width: 767px) {
  .service-intro__wrap {
    max-width: 100%;
    padding: 24px 4.8% 50px;
  }
}
.service-intro__heading {
  font-weight: 600;
  font-size: 3.2rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6875em;
  text-align: center;
  color: #17386f;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .service-intro__heading {
    font-size: 22px;
    line-height: 1.7272727273em;
    margin-bottom: 30px;
  }
}
.service-intro__text {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .service-intro__text {
    font-size: 15px;
  }
}
.service-intro__banner {
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .service-intro__banner {
    height: 360px;
  }
}
@media screen and (max-width: 767px) {
  .service-intro__banner {
    height: 200px;
  }
}

.recruit-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .recruit-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}
.recruit-nav__item {
  position: relative;
  height: 120px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .recruit-nav__item {
    height: 100px;
  }
}
.recruit-nav__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5a7480;
  mix-blend-mode: multiply;
  z-index: 0;
}
.recruit-nav__item:hover .recruit-nav__text {
  color: #4598cc;
}
.recruit-nav__item:hover .recruit-nav__bg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.recruit-nav__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.recruit-nav__text {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4444444444em;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .recruit-nav__text {
    font-size: 15px;
  }
}

.form {
  position: relative;
}
.form__breadcrumbs {
  position: absolute;
  top: 0;
  width: 100%;
}
.form__wrap {
  background: url("./public/img/texture-bg.jpg");
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .form__wrap {
    padding-bottom: 50px;
  }
}
.form__wrap--recruit {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .form__wrap--recruit {
    padding-top: 50px;
  }
}
.form__text {
  margin-top: 30px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .form__text {
    font-size: 15px;
  }
}
.form__text--has-error {
  display: none;
  color: #e95531;
}
.form__wrapper {
  margin-top: 30px;
  background-color: #fff;
  padding: 60px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .form__wrapper {
    margin-top: 20px;
    padding: 30px 20px;
    gap: 23px;
  }
}
.form__wrapper--confirm {
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .form__wrapper--confirm {
    gap: 12px;
  }
}
.form__label {
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #17386f;
}
.form__required {
  font-size: 1.4rem;
  height: 22px;
  text-align: center;
  color: #fff;
  padding-inline: 5px;
  background-color: #e95531;
}
.form__required--not {
  background-color: #5a7480;
}
.form__input-wrap {
  width: 100%;
  min-height: 50px;
  background: #f0f4f8;
}
.form__input-wrap--w280 {
  max-width: 280px;
}
@media screen and (max-width: 767px) {
  .form__input-wrap--w280 {
    max-width: 230px;
  }
}
.form__input-wrap--w230 {
  max-width: 230px;
}
.form__input {
  padding: 17px 30px 15px;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .form__input {
    padding: 15px 10px 14px;
  }
}
.form__input--textarea {
  resize: none;
  height: 310px;
}
@media screen and (max-width: 767px) {
  .form__input--textarea {
    height: 300px;
  }
}
.form__input--textarea::-webkit-input-placeholder {
  white-space: pre-line;
}
.form__input--textarea::-moz-placeholder {
  white-space: pre-line;
}
.form__input--textarea:-ms-input-placeholder {
  white-space: pre-line;
}
.form__input--textarea::-ms-input-placeholder {
  white-space: pre-line;
}
.form__input--textarea::placeholder {
  white-space: pre-line;
}
.form__input::-webkit-input-placeholder {
  color: #b1b1b1;
}
.form__input::-moz-placeholder {
  color: #b1b1b1;
}
.form__input:-ms-input-placeholder {
  color: #b1b1b1;
}
.form__input::-ms-input-placeholder {
  color: #b1b1b1;
}
.form__input::placeholder {
  color: #b1b1b1;
}
.form__input-age {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 9px;
}
.form__input-age-text {
  font-size: 1.6rem;
}
.form__privacy {
  margin-top: 20px;
  padding: 5px 9px 16px;
  height: 220px;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .form__privacy {
    height: 268px;
    padding: 12px 8px;
    border-radius: 0;
  }
}
.form__privacy-wrap {
  height: 100%;
  overflow-y: scroll;
  padding: 12px 25px 0 13px;
}
@media screen and (max-width: 767px) {
  .form__privacy-wrap {
    padding: 0 13px 0 4px;
  }
}
.form__privacy-wrap::-webkit-scrollbar {
  width: 8px;
}
.form__privacy-wrap::-webkit-scrollbar-track {
  background: #e6ebef;
}
.form__privacy-wrap::-webkit-scrollbar-thumb {
  background: #b1b1b1;
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
}
.form__privacy-heading {
  font-size: 1.8rem;
  font-weight: 500;
  color: #17386f;
  margin-bottom: 15px;
}
.form__privacy-heading2 {
  font-weight: 500;
  font-size: 2rem;
  color: #4598cc;
  padding-bottom: 10px;
  margin-block: 49px 20px;
  border-bottom: 1px solid #17386f;
}
.form__privacy-heading3 {
  margin-block: 20px 10px;
  color: #17386f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 1.6rem;
}
.form__privacy-heading3 span {
  font-size: 1.3rem;
}
.form__privacy-inner {
  margin-bottom: 30px;
}
.form__privacy-text {
  font-size: 1.6rem;
  line-height: 1.875em;
}
@media screen and (max-width: 767px) {
  .form__privacy-text {
    font-size: 15px;
  }
}
.form__privacy-list-heading {
  margin-block: 15px 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 1.6rem;
  color: #4598cc;
}
.form__privacy-list-heading::before {
  content: "●";
  font-weight: 500;
  font-size: 8px;
}
.form__privacy-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__privacy-list li::before {
  content: "・";
  font-size: 1.2rem;
  color: #4598cc;
}
.form__privacy-checkbox {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 1.6rem;
}
.form__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto 0;
}
@media screen and (max-width: 767px) {
  .form__button-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    width: 220px;
  }
}
.form__button-wrap--confirm {
  margin-top: 30px;
}
.form__confirm {
  background: url("./public/img/texture-bg.jpg");
  padding-block: 120px 100px;
}
@media screen and (max-width: 767px) {
  .form__confirm {
    padding-block: 65px 50px;
  }
}
.form__item-confirm-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 30px;
  padding: 0 18px 20px;
  border-bottom: 1px solid #d5d5d5;
}
@media screen and (max-width: 767px) {
  .form__item-confirm-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 0 13px;
    gap: 7px;
  }
}
.form__label-confirm {
  font-size: 1.6rem;
  font-weight: 500;
  color: #17386f;
  min-width: 130px;
}
@media screen and (max-width: 767px) {
  .form__label-confirm {
    font-size: 15px;
  }
}
.form__item-confirm {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .form__item-confirm {
    font-size: 15px;
  }
}
.form__complete {
  background: url("./public/img/texture-bg.jpg");
  padding-block: 120px 100px;
}
@media screen and (max-width: 767px) {
  .form__complete {
    padding-block: 65px 50px;
  }
}
.form__complete-wrap {
  background: #fff;
  padding: 60px 100px;
}
@media screen and (max-width: 767px) {
  .form__complete-wrap {
    padding: 40px 20px;
  }
}
.form__complete-heading {
  font-weight: 600;
  font-size: 2.6rem;
  font-family: "Noto Serif JP", serif;
  color: #17386f;
  margin-bottom: 42px;
}
@media screen and (max-width: 767px) {
  .form__complete-heading {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.form__complete-text {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .form__complete-text {
    font-size: 15px;
  }
}
.form__complete-button {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .form__complete-button {
    margin-top: 25px;
  }
}
.form.has-error {
  background: #f0f4f8;
}
.form.has-error .form__wrap {
  padding-top: 120px;
  background: #f0f4f8;
}
@media screen and (max-width: 767px) {
  .form.has-error .form__wrap {
    padding-top: 65px;
  }
}
.form.has-error .form__text--input {
  display: none;
}
.form.has-error .form__text--has-error {
  display: block;
}

.loading {
  position: fixed;
  z-index: 999;
  inset: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: none;
  visibility: none;
}
.loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.loading.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.loading.hide {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}
.loading.hide::before {
  top: 100%;
}
.loading__logo {
  display: block;
  width: 220px;
  aspect-ratio: 220/132;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-animation: loading-fade 0.8s ease-out 0.5s forwards;
          animation: loading-fade 0.8s ease-out 0.5s forwards;
  z-index: 2;
}
@media screen and (min-width: 1921px) {
  .loading__logo {
    width: calc(0px + (220 - 0) * (100vw - 768px) / 1152);
  }
}
@media screen and (max-width: 767px) {
  .loading__logo {
    width: 160px;
  }
}

@-webkit-keyframes loading-fade {
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes loading-fade {
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.container__wrapper {
  display: grid;
  grid-template-columns: 54% 42%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .container__wrapper {
    grid-template-columns: auto;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .container__column {
    width: 100%;
  }
}
.container__column-img {
  width: 100%;
  max-width: 420px;
}
@media screen and (max-width: 767px) {
  .container__column-img {
    margin: 0 auto;
    max-width: 280px;
  }
}
.container__heading {
  position: relative;
  margin-bottom: 20px;
  padding-left: 16px;
  font-size: 3.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.6875em;
  color: #17386f;
}
@media screen and (max-width: 767px) {
  .container__heading {
    font-size: 2.4rem;
    line-height: 1.3333333333em;
  }
}
.container__heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#346a98), to(#7faee0));
  background: linear-gradient(to bottom, #346a98, #7faee0);
}
.container__list {
  display: grid;
}
.container__list--2 {
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}
@media screen and (max-width: 767px) {
  .container__list--2 {
    grid-template-columns: auto;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .container__list:not(:first-child) .service__list-item:first-child {
    padding-top: 0 !important;
  }
}
.container__list-item {
  border-bottom: 1px solid #d5d5d5;
  padding: 20px 0;
}
.container__list-name {
  position: relative;
  display: block;
  padding-left: 18px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5em;
  color: #17386f;
}
@media screen and (max-width: 767px) {
  .container__list-name {
    font-size: 1.8rem;
    line-height: 1.6666666667em;
  }
}
.container__list-name::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: #4598cc;
}
.container__list-text {
  font-size: 1.6rem;
  line-height: 1.625em;
}
@media screen and (max-width: 767px) {
  .container__list-text {
    margin-top: 10px;
  }
}

.bg-pattern-blue {
  background: url("./public/img/service/bg-blue-dotted.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: repeat;
}

.to-top {
  all: unset;
  cursor: pointer;
  position: fixed;
  z-index: 999;
  right: 0;
  bottom: 45px;
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font: 600 1.2rem "Noto Serif JP", serif;
  color: #fff;
  text-align: center;
  background-color: #000;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .to-top {
    bottom: 70px;
  }
}
.to-top::before {
  content: "↑";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.6rem;
  line-height: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.to-top:hover::before {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.to-top.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.top__mv-bg {
  pointer-events: none;
  position: fixed;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.top__content {
  position: relative;
  z-index: 2;
  height: 100%;
}
.top__mv {
  height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top__mv-title-wrap {
  position: relative;
}
.top__mv-title {
  position: relative;
  z-index: 2;
  font: 600 4.2rem "Noto Serif JP", serif;
  letter-spacing: -0.06em;
  color: #17386f;
}
@media screen and (min-width: 1920px) {
  .top__mv-title {
    font-size: calc(0px + (42 - 0) * (100vw - 768px) / 1152);
  }
}
@media screen and (max-width: 767px) {
  .top__mv-title {
    font-size: 26px;
  }
}
.top__mv-title .big {
  font-size: 6rem;
  letter-spacing: -0.06em;
}
@media screen and (min-width: 1920px) {
  .top__mv-title .big {
    font-size: calc(0px + (60 - 0) * (100vw - 768px) / 1152);
  }
}
@media screen and (max-width: 767px) {
  .top__mv-title .big {
    font-size: 46px;
  }
}
.top__mv-title .ls-2 {
  letter-spacing: -0.2em;
}
.top__mv-title--shadow {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: transparent;
  -webkit-text-stroke: 10px white;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
.top__news {
  width: 100%;
  padding-block: 60px;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
  .top__news {
    padding-block: 50px;
  }
}
.top__news-title {
  position: relative;
  bottom: -18px;
  pointer-events: none;
  grid-column: span 2;
}
@media screen and (max-width: 767px) {
  .top__news-title {
    grid-column: initial;
    bottom: initial;
  }
}
.top__news-container {
  display: grid;
  grid-template-columns: 220px 1fr;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .top__news-container {
    grid-template-columns: auto 1fr;
    gap: 16px 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.top__news-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top__news-cats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0;
  }
}
.top__news-cat {
  position: relative;
  width: 100%;
  height: 30px;
  border-radius: 15px;
  border: 1px solid #d5d5d5;
  background-color: #fff;
  font-size: 1.4rem;
  color: #17386f;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__news-cat {
    width: 105px;
    height: 24px;
    font-size: 13px;
  }
}
.top__news-cat::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#001e50), to(#0063a3));
  background: linear-gradient(to right, #001e50, #0063a3);
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.top__news-cat:hover {
  border: none;
  color: #fff;
}
.top__news-cat:hover::before {
  opacity: 1;
}
.top__news-cat span {
  position: relative;
  z-index: 2;
}
.top__news-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .top__news-links {
    grid-column: span 2;
  }
}
.top__news-links > li:last-child .top__news-link {
  border-bottom: 1px solid #d5d5d5;
}
.top__news-link {
  position: relative;
  z-index: 2;
  padding: 20px;
  border-top: 1px solid #d5d5d5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .top__news-link {
    padding: 12px 0;
  }
}
.top__news-link:hover {
  opacity: 0.85;
}
.top__news-link-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.top__news-link-date {
  display: block;
  font-size: 1.6rem;
  color: #17386f;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .top__news-link-date {
    font-size: 15px;
  }
}
.top__news-link-cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.top__news-link-cat {
  width: 110px;
  padding-block: 1px 2px;
  background-color: #d5d5d5;
  border-radius: 10px;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top__news-link-title {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625em;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow-wrap: break-word;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .top__news-link-title {
    line-clamp: 2;
    -webkit-line-clamp: 2;
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .top__news-btn {
    margin: 30px auto 0;
  }
}
.top__note {
  margin-block: 180px;
}
@media screen and (max-width: 767px) {
  .top__note {
    margin-block: 90px;
  }
}
.top__note-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  width: 100%;
  padding-block: 56px 68px;
  background: url("./public/img/top/intro-bg.jpg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .top__note-container {
    gap: 30px;
    padding-block: 30px;
  }
}
.top__note-txt {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.7777777778em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top__note-txt {
    font-size: 15px;
    line-height: 2em;
  }
}
.top__service {
  padding-top: 100px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .top__service {
    padding-top: 90px;
  }
}
.top__service-links {
  width: 100%;
  max-width: 1920px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media screen and (max-width: 767px) {
  .top__service-links {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 16px;
  }
}
.top__service-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 260px;
  padding: 25px;
}
@media screen and (min-width: 768px) {
  .top__service-link:hover .top__service-link-content {
    pointer-events: auto;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .top__service-link {
    height: 230px;
    padding: 34px 4.8% 17px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
.top__service-link-title {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767px) {
  .top__service-link-title {
    position: relative;
    left: initial;
    top: initial;
    -webkit-transform: none;
            transform: none;
    font-size: 22px;
    padding-bottom: 14px;
  }
}
.top__service-link-title::before {
  content: "";
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background-color: #4598cc;
}
@media screen and (max-width: 767px) {
  .top__service-link-title::before {
    top: initial;
    bottom: 0;
  }
}
.top__service-link-content {
  pointer-events: none;
  opacity: 0;
  position: relative;
  z-index: 3;
  padding: 20px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  /* stylelint-disable-next-line value-no-vendor-prefix */
  height: -webkit-fill-available;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px) brightness(1.35);
  /* stylelint-disable-next-line property-no-vendor-prefix */
  -webkit-backdrop-filter: blur(5px) brightness(1.35);
  font-size: 1.6rem;
  line-height: 2em;
  text-align: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 980px) {
  .top__service-link-content {
    padding-inline: 20px 50px;
  }
}
@media screen and (max-width: 767px) {
  .top__service-link-content {
    pointer-events: auto;
    opacity: 1;
    padding: 15px 45px;
    height: auto;
    font-size: 15px;
    line-height: 1.6em;
    min-height: 100px;
  }
}
.top__service-link-content-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#001e50), to(#0063a3));
  background: linear-gradient(to bottom, #001e50, #0063a3);
}
@media screen and (max-width: 980px) {
  .top__service-link-content-arrow {
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .top__service-link-content-arrow {
    right: 14px;
    width: 30px;
  }
}
.top__service-link-content-arrow::before {
  content: "→";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top__service-link-content-arrow::before {
    font-size: 10px;
  }
}
.top__service-link-img {
  position: absolute;
  inset: 0;
}
.top__service-link-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #5a7480;
  mix-blend-mode: multiply;
}
.top__recruit {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding-block: 100px 50px;
  background: url("./public/img/texture-bg.jpg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .top__recruit {
    padding-block: 50px 24px;
  }
}
.top__recruit-bg {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: calc(100% - 50px);
}
@media screen and (max-width: 767px) {
  .top__recruit-bg {
    display: block;
    position: relative;
    inset: initial;
    height: 285px;
  }
  .top__recruit-bg img {
    -o-object-position: center top;
       object-position: center top;
  }
}
.top__recruit-container {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .top__recruit-container {
    padding-inline: 0 !important;
  }
}
.top__recruit-content {
  padding: 42px 30px 40px 35px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px) brightness(1.5);
  /* stylelint-disable-next-line property-no-vendor-prefix */
  -webkit-backdrop-filter: blur(10px) brightness(1.5);
  width: 100%;
  max-width: 590px;
}
@media screen and (max-width: 767px) {
  .top__recruit-content {
    padding: 30px 5%;
  }
}
.top__recruit-subtitle {
  font: 600 2.6rem "Noto Serif JP", serif;
  line-height: 1.5384615385em;
  color: #196698;
  margin-block: 25px 15px;
}
@media screen and (max-width: 767px) {
  .top__recruit-subtitle {
    font-size: 17px;
    line-height: 1.5294117647em;
    margin-block: 20px;
  }
}
.top__recruit-txt {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__recruit-txt {
    font-size: 15px;
  }
}
.top__recruit-btn {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .top__recruit-btn {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
.top__insta {
  width: 100%;
  background-color: #fff;
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .top__insta {
    padding-block: 50px;
  }
}
.top__insta-title {
  font: 600 4rem "Cormorant Garamond", serif;
  color: #17386f;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top__insta-title {
    font-size: 36px;
  }
}
.top__insta-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 38px;
  margin-block: 30px;
}
@media screen and (max-width: 767px) {
  .top__insta-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-block: 20px 30px;
  }
}
.top__insta-img {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.top__insta-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(90, 116, 128, 0.3);
  mix-blend-mode: color;
}
.top__insta-btn {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top__insta-btn {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}

.contact__phone {
  background: #fff;
  padding-block: 120px 100px;
}
@media screen and (max-width: 767px) {
  .contact__phone {
    padding-block: 65px 50px;
  }
}
.contact__intro {
  max-width: calc(800px + 8%);
  padding-inline: 4%;
  margin-inline: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .contact__intro {
    max-width: 100%;
    padding-inline: 4.8%;
  }
}
.contact__phone-container {
  margin-top: 50px;
  background-color: #f0f4f8;
}
@media screen and (max-width: 767px) {
  .contact__phone-container {
    margin-top: 30px;
  }
}
.contact__complete-phone-container {
  margin-top: 40px;
  padding-top: 20px;
  background-color: #f0f4f8;
}
@media screen and (max-width: 767px) {
  .contact__complete-phone-container {
    margin-top: 30px;
  }
}
.contact__phone-heading {
  background: -webkit-gradient(linear, left top, right top, from(#001e50), to(#0063a3));
  background: linear-gradient(90deg, #001e50 0%, #0063a3 100%);
  padding: 10px 0;
  font-weight: 500;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
}
.contact__phone-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #17386f;
  margin-top: 19px;
}
@media screen and (max-width: 767px) {
  .contact__phone-wrap {
    margin-top: 9px;
  }
}
.contact__phone-wrap--complete {
  margin-top: 0;
}
.contact__phone-label {
  font-weight: 600;
  font-size: 2.6rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .contact__phone-label {
    font-size: 20px;
  }
}
.contact__phone-number {
  font-weight: 600;
  font-size: 4.6rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .contact__phone-number {
    font-size: 36px;
  }
}
.contact__phone-time {
  display: block;
  font-weight: 600;
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  padding-bottom: 29px;
}
@media screen and (max-width: 767px) {
  .contact__phone-time {
    padding-bottom: 11px;
  }
}
.contact__wrap {
  padding-top: 100px;
  background: url("./public/img/texture-bg.jpg");
}
@media screen and (max-width: 767px) {
  .contact__wrap {
    padding-top: 50px;
  }
}
.contact__section {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .contact__section {
    padding-bottom: 50px;
  }
}
.contact__block {
  margin-top: 35px;
  background: #fff;
  padding: 40px 70px;
}
@media screen and (max-width: 767px) {
  .contact__block {
    margin-top: 20px;
    padding: 20px;
  }
}
.contact__block-heading {
  color: #e95531;
  font-weight: 500;
  font-size: 2.4rem;
  margin-bottom: 17px;
}
.contact__block-list {
  padding: 19px 30px;
  width: 100%;
  background: #d9e9f4;
}
@media screen and (max-width: 767px) {
  .contact__block-list {
    padding: 18px;
  }
}
.contact__block-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  font-size: 2rem;
  color: #17386f;
  min-width: 532px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 18px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__block-item {
    font-size: 18px;
    min-width: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.contact__block-item::before {
  content: "●";
  position: absolute;
  left: 0;
  font-size: 10px;
  font-family: "Noto Serif JP", serif;
  color: #4598cc;
}
@media screen and (max-width: 767px) {
  .contact__block-item::before {
    top: 6px;
  }
}
.contact__block-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .contact__block-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contact__block-text {
  margin-top: 20px;
  font-size: 1.6rem;
  line-height: 1.625em;
}
@media screen and (max-width: 767px) {
  .contact__block-text {
    font-size: 15px;
  }
}
.contact__block-note {
  color: #5a7480;
}
@media screen and (max-width: 767px) {
  .contact__block-note {
    font-size: 14px;
  }
}
.contact__block-button .btn {
  width: 220px;
}

.company__wrap {
  width: 100%;
  background: url("./public/img/texture-bg.jpg");
  padding-block: 60px 100px;
}
@media screen and (max-width: 767px) {
  .company__wrap {
    padding-block: 50px;
  }
}
.company__wrap--pt100 {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .company__wrap--pt100 {
    padding-top: 50px;
  }
}
.company__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 40px;
}
@media screen and (max-width: 980px) {
  .company__gallery {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .company__gallery {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
    padding-inline: 20px;
  }
}
.company__gallery--mt0 {
  margin-top: 0;
}
.company__gallery-img {
  display: block;
  width: 100%;
  aspect-ratio: 300/200;
  overflow: hidden;
  margin-bottom: 16px;
}
.company__gallery-img iframe {
  width: 100%;
}
.company__gallery-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5em;
  color: #17386f;
  margin-bottom: 10px;
}
.company__gallery-heading::before {
  content: "●";
  font: 500 1rem "Noto Serif JP", serif;
  color: #4598cc;
  line-height: 1;
  margin-top: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.company__gallery-txt {
  font-size: 1.6rem;
  line-height: 1.625em;
}
.company__gallery-txt a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.company__gallery-txt a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .company__btn {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
.company__btn--right {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .company__btn--right {
    margin-inline: auto;
  }
}
.company__int {
  margin-block: 60px 100px;
}
@media screen and (max-width: 767px) {
  .company__int {
    margin-block: 24px 50px;
  }
}
.company__int-dl-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 980px) {
  .company__int-dl-wrap {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .company__int-dl-wrap {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }
}
.company__int-dl {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}
@media screen and (max-width: 767px) {
  .company__int-dl {
    width: 100%;
    row-gap: 12px;
  }
}
.company__int-dl-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 0 20px 20px;
  border-bottom: 1px solid #d5d5d5;
}
@media screen and (max-width: 767px) {
  .company__int-dl-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 0 0 12px;
  }
}
.company__int-dt, .company__int-dd {
  font-size: 1.6rem;
  line-height: 1.625em;
}
@media screen and (max-width: 767px) {
  .company__int-dt, .company__int-dd {
    font-size: 15px;
    line-height: 1.6em;
  }
}
.company__int-dt {
  font-weight: 500;
  color: #17386f;
}
.company__int-dd a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.company__int-dd a:hover {
  opacity: 0.5;
}
.company__int-banner {
  display: block;
  width: 100%;
  aspect-ratio: 1366/360;
  overflow: hidden;
}
@media screen and (max-width: 1600px) {
  .company__int-banner {
    aspect-ratio: initial;
    height: 360px;
  }
}
@media screen and (max-width: 767px) {
  .company__int-banner {
    height: 200px;
  }
}
.company__hst-wrap {
  padding: 10px;
  background-color: #fff;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .company__hst-wrap {
    margin-top: 20px;
  }
}
.company__hst-container {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  padding: 40px 30px;
  border: 1px solid #17386f;
}
@media screen and (max-width: 980px) {
  .company__hst-container {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .company__hst-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px;
  }
}
.company__hst-img {
  display: block;
  width: 100%;
  max-width: 280px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .company__hst-img {
    width: 200px;
  }
}
.company__rsn {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .company__rsn {
    padding-block: 50px;
  }
}
.company__att {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .company__att {
    gap: 20px;
    margin-top: 20px;
  }
}
.company__att-container {
  padding: 40px 50px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .company__att-container {
    padding: 30px 20px;
  }
}
.company__att-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  font: 600 2.6rem "Noto Serif JP", serif;
  color: #17386f;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .company__att-heading {
    gap: 6px;
    font-size: 22px;
    margin-bottom: 16px;
  }
}
.company__att-heading::before {
  content: "●";
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: #4598cc;
  margin-top: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .company__att-heading::before {
    margin-top: 10px;
  }
}
.company__att-subheading {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5em;
  color: #4598cc;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .company__att-subheading {
    font-size: 18px;
    line-height: 1.5555555556em;
    margin-bottom: 15px;
  }
}
.company__att-subheading--mb10 {
  margin-bottom: 10px;
}
.company__att-subheading--mb0 {
  margin-bottom: 0;
}
.company__att-txt {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .company__att-txt {
    font-size: 15px;
  }
}
.company__att-txt--mb30 {
  margin-bottom: 30px;
}
.company__att-txt--mb20 {
  margin-bottom: 20px;
}
.company__att-list {
  list-style-type: none;
  counter-reset: num;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 30px 50px;
  background-color: #d9e9f4;
}
@media screen and (max-width: 767px) {
  .company__att-list {
    gap: 12px;
    padding: 18px 15px;
  }
}
.company__att-list--mb20 {
  margin-bottom: 20px;
}
.company__att-list-item {
  display: grid;
  grid-template-columns: 185px 1fr;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .company__att-list-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.company__att-list-item:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .company__att-list-item:not(:last-child) {
    padding-bottom: 12px;
  }
}
.company__att-list-item--plain {
  display: initial;
}
@media screen and (max-width: 767px) {
  .company__att-list-item--sp-no-border {
    padding-bottom: 0 !important;
    border-bottom: none !important;
  }
}
.company__att-list-item-num {
  counter-increment: num;
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7777777778em;
  color: #17386f;
}
@media screen and (max-width: 767px) {
  .company__att-list-item-num {
    font-size: 16px;
    line-height: 2em;
  }
}
.company__att-list-item-num::before {
  content: counter(num) ". ";
}
.company__att-list-item-txt {
  font-size: 1.6rem;
  line-height: 1.625em;
}
@media screen and (max-width: 767px) {
  .company__att-list-item-txt {
    font-size: 15px;
    line-height: 1.6em;
  }
}
.company__att-list-item-desc {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .company__att-list-item-desc {
    gap: 4px;
  }
}
.company__att-sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .company__att-sublist {
    gap: 12px;
    margin-top: 0;
  }
}
.company__att-sublist-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6px;
  font-size: 1.6rem;
  line-height: 1.625em;
}
@media screen and (max-width: 767px) {
  .company__att-sublist-item {
    gap: 4px;
    font-size: 15px;
    line-height: 1.6em;
  }
}
.company__att-sublist-item::before {
  content: "●";
  font: 400 0.8rem "Noto Serif JP", serif;
  line-height: 1;
  color: #4598cc;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 9px;
}
@media screen and (max-width: 767px) {
  .company__att-sublist-item::before {
    font-size: 6px;
  }
}
.company__att-note {
  display: block;
  font-size: 1.4rem;
  line-height: 1.4285714286em;
  color: #5a7480;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 10px;
}
.company__att-sdg {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 35px;
}
@media screen and (max-width: 767px) {
  .company__att-sdg {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.company__att-sdg-desc {
  padding-right: 35px;
  border-right: 1px solid #d5d5d5;
}
@media screen and (max-width: 767px) {
  .company__att-sdg-desc {
    padding-right: 0;
    padding-bottom: 20px;
    border-right: initial;
    border-bottom: 1px solid #d5d5d5;
  }
}
.company__att-sdg-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .company__att-sdg-btns {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}
.company__att-ev {
  display: grid;
  grid-template-columns: 1fr 42%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .company__att-ev {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 17px;
  }
}
.company__att-ev-img {
  display: block;
  aspect-ratio: 377/260;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .company__att-ev-img {
    width: 280px;
  }
}
.company__att-privacy {
  height: 184px;
  border: 1px solid #d5d5d5;
  padding: 7px 9px 15px 20px;
}
@media screen and (max-width: 767px) {
  .company__att-privacy {
    height: 200px;
    padding: 12px 8px 12px 12px;
  }
}
.company__att-privacy-content {
  padding: 13px 40px 5px 0;
  height: 100%;
  overflow-y: scroll;
  font-size: 1.6rem;
  line-height: 1.875em;
}
@media screen and (max-width: 767px) {
  .company__att-privacy-content {
    padding: 0 9px 0 0;
    font-size: 15px;
    line-height: 2em;
  }
}
.company__att-privacy-content::-webkit-scrollbar {
  width: 8px;
}
.company__att-privacy-content::-webkit-scrollbar-track {
  background: #e6ebef;
}
.company__att-privacy-content::-webkit-scrollbar-thumb {
  background: #b1b1b1;
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
}
.company__loc {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .company__loc {
    padding-block: 50px;
  }
}
.company__loc-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .company__loc-container {
    gap: 25px;
    margin-top: 20px;
  }
}
.company__loc-title {
  padding: 4px 30px 7px;
  background: -webkit-gradient(linear, left top, right top, from(#001e50), to(#0063a3));
  background: linear-gradient(to right, #001e50, #0063a3);
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .company__loc-title {
    padding: 6px 8px 5px;
    margin-bottom: 16px;
  }
}
.company__loc-title-txt {
  display: inline-block;
  font: 600 2.4rem "Noto Serif JP", serif;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .company__loc-title-txt {
    font-size: 20px;
  }
}
.company__loc-title-txt--small {
  font-size: 1.6rem;
  line-height: 1.625em;
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .company__loc-title-txt--small {
    display: block;
    font-size: 14px;
    line-height: 1.7142857143em;
    margin-left: 0;
  }
}
.company__loc-main {
  width: 100%;
  max-width: 816px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 58.83% 1fr;
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .company__loc-main {
    padding-inline: 20px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.company__loc-main-img {
  display: block;
  width: 100%;
  aspect-ratio: 480/320;
  overflow: hidden;
}
.company__loc-main-info {
  font-size: 1.6rem;
  line-height: 1.625em;
}
@media screen and (max-width: 767px) {
  .company__loc-main-info {
    font-size: 15px;
    line-height: 1.6em;
  }
}
.company__loc-main-info a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.company__loc-main-info a:hover {
  opacity: 0.5;
}
.company__loc-network-wrap {
  width: 100%;
  max-width: calc(1000px + 8%);
  padding-inline: 4%;
  margin: 70px auto 0;
}
@media screen and (max-width: 767px) {
  .company__loc-network-wrap {
    padding-inline: 0;
    margin-top: 40px;
  }
}
.company__loc-network {
  padding: 40px 40px 45px;
  background: -webkit-gradient(linear, left top, left bottom, from(#b5c7d9), to(#f7f9fa));
  background: linear-gradient(to bottom, #b5c7d9, #f7f9fa);
}
@media screen and (max-width: 767px) {
  .company__loc-network {
    padding: 30px 4.8%;
  }
}
.company__loc-network-list {
  width: 100%;
  max-width: 728px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .company__loc-network-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 16px;
  }
}
.company__grt {
  display: grid;
  grid-template-columns: 1fr 36%;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .company__grt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    margin-top: 20px;
  }
}
.company__grt-title {
  font: 600 2.6rem "Noto Serif JP", serif;
  line-height: 1.5384615385em;
  color: #4598cc;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .company__grt-title {
    font-size: 20px;
    line-height: 1.5em;
    margin-bottom: 18px;
  }
}
.company__grt-txt {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .company__grt-txt {
    font-size: 15px;
    line-height: 2em;
  }
}
.company__grt-img {
  display: block;
  width: 100%;
  aspect-ratio: 360/456;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .company__grt-img {
    width: 280px;
  }
}
.company__grt-note {
  font: 400 1.6rem "Noto Serif JP", serif;
  line-height: 2em;
  text-align: right;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .company__grt-note {
    font-size: 15px;
    line-height: 1.7333333333em;
    margin-top: 10px;
  }
}
.company__grt-note .big {
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .company__grt-note .big {
    font-size: 18px;
  }
}

.svc-oth__int {
  margin-block: 60px 100px;
}
@media screen and (max-width: 767px) {
  .svc-oth__int {
    margin-block: 24px 50px;
  }
}
.svc-oth__int-container {
  display: grid;
  grid-template-columns: 1fr 42%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .svc-oth__int-container {
    grid-template-columns: 1fr;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .svc-oth__int-container ul:not(:last-child) {
    margin-bottom: 15px;
  }
}
.svc-oth__int-txt {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .svc-oth__int-txt {
    font-size: 15px;
    line-height: 2em;
  }
}
.svc-oth__int-txt--mblock {
  margin-block: 30px 20px;
}
@media screen and (max-width: 767px) {
  .svc-oth__int-txt--mblock {
    margin-top: 20px;
  }
}
.svc-oth__int-txt--mt40 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .svc-oth__int-txt--mt40 {
    margin-top: 20px;
  }
}
.svc-oth__int-dia-wrap {
  width: 100%;
  padding: 15px 20px;
  background-color: #d9e9f4;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .svc-oth__int-dia-wrap {
    padding-bottom: 25px;
  }
}
.svc-oth__int-dia {
  display: block;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 220/163;
  overflow: hidden;
  margin: 0 auto 10px;
}
.svc-oth__int-img {
  display: block;
  width: 100%;
  aspect-ratio: 420/500;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .svc-oth__int-img {
    padding-inline: 30px;
  }
}
.svc-oth__int-img--small {
  aspect-ratio: 420/360;
}
@media screen and (max-width: 767px) {
  .svc-oth__int-img--small {
    aspect-ratio: 280/240;
    padding-inline: 30px;
  }
}
.svc-oth__int-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2px;
  font-size: 1.4rem;
  line-height: 1.4285714286em;
  color: #5a7480;
}
.svc-oth__int-list-item::before {
  content: "※";
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.svc-oth__int-list-item--cir {
  gap: 5px;
}
.svc-oth__int-list-item--cir::before {
  content: "●";
  font-size: 8px;
  line-height: 1;
  margin: 6px 0 0 3px;
}
.svc-oth__wrap {
  width: 100%;
  background: url("./public/img/texture-bg.jpg") no-repeat center/cover;
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .svc-oth__wrap {
    padding-block: 50px;
  }
}
.svc-oth__sign-wrap {
  width: 100%;
  max-width: 720px;
  margin: 65px auto 0;
  background-color: #fff;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .svc-oth__sign-wrap {
    margin-top: 30px;
    padding-block: 20px;
  }
}
.svc-oth__sign-title {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2em;
  color: #17386f;
  padding: 0 20px 2px;
  border-bottom: 1px solid #d5d5d5;
  margin-inline: 20px;
}
.svc-oth__sign-img {
  display: block;
  width: 100%;
  aspect-ratio: 720/540;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .svc-oth__sign-img {
    aspect-ratio: 340/240;
  }
}

.svc-vid__int {
  padding-block: 60px 100px;
}
@media screen and (max-width: 767px) {
  .svc-vid__int {
    padding-block: 24px 30px;
  }
}
.svc-vid__int-vid-wrap {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .svc-vid__int-vid-wrap {
    margin-top: 50px;
  }
}
.svc-vid__int-video {
  cursor: pointer;
  position: relative;
  display: block;
  width: 100%;
  max-width: 800px;
  max-height: 450px;
  aspect-ratio: 800/450;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .svc-vid__int-video {
    margin-top: 20px;
    max-height: 192px;
  }
}
.svc-vid__int-video.active {
  pointer-events: none;
}
.svc-vid__int-video.active::before {
  opacity: 0;
  pointer-events: none;
}
.svc-vid__int-video.active video {
  pointer-events: auto;
}
.svc-vid__int-video iframe {
  width: 100%;
  height: 100%;
}
.svc-vid__note-wrap {
  width: 100%;
  padding-block: 33px;
  background-color: #17386f;
}
@media screen and (max-width: 767px) {
  .svc-vid__note-wrap {
    padding: 20px 4%;
  }
}
.svc-vid__note-txt {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  font-size: 1.6rem;
  line-height: 2em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .svc-vid__note-txt {
    font-size: 15px;
    line-height: 2em;
  }
}
.svc-vid__rec-wrap {
  width: 100%;
  background: url("./public/img/texture-bg.jpg") no-repeat center/cover;
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-wrap {
    padding-block: 30px 50px;
  }
}
.svc-vid__rec-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
@media screen and (max-width: 1024px) {
  .svc-vid__rec-list {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-list {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-inline: 15px;
  }
}
.svc-vid__rec-list-item {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 16px 22px 20px;
  margin-top: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .svc-vid__rec-list-item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 980px) {
  .svc-vid__rec-list-item {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-list-item {
    padding: 16px 15px 20px;
  }
}
.svc-vid__rec-list-item--2 {
  grid-column: span 2;
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-list-item--2 {
    grid-column: initial;
  }
}
.svc-vid__rec-list-item--pd30 {
  padding-bottom: 30px;
}
.svc-vid__rec-list-item-heading {
  position: absolute;
  left: 0;
  top: -23px;
  z-index: 2;
  width: 240px;
  padding: 4px 20px 7px;
  font: 600 2.4rem "Noto Serif JP", serif;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#001e50), to(#0063a3));
  background: linear-gradient(to right, #001e50, #0063a3);
  -webkit-clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 980px) {
  .svc-vid__rec-list-item-heading {
    width: auto;
    padding-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-list-item-heading {
    padding: 6px 30px 5px 17px;
    font-size: 20px;
    min-width: 209px;
  }
}
.svc-vid__rec-list-item-upper {
  text-align: center;
  border-bottom: 1px solid #d5d5d5;
}
@media screen and (max-width: 1024px) {
  .svc-vid__rec-list-item-upper {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-list-item-upper {
    width: 100%;
    margin-bottom: 0;
  }
}
.svc-vid__rec-list-item-lower {
  display: grid;
  grid-template-columns: repeat(2, auto);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  gap: 13px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .svc-vid__rec-list-item-lower {
    grid-template-columns: auto;
    gap: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-list-item-lower {
    gap: 5px;
    margin-bottom: 0;
  }
}
.svc-vid__rec-txt {
  position: relative;
  z-index: 2;
  display: block;
  font: 600 2.4rem "Noto Serif JP", serif;
  line-height: 1.3333333333em;
  color: #17386f;
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-txt {
    font-size: 20px;
  }
}
.svc-vid__rec-txt .small {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-txt .small {
    font-size: 15px;
  }
}
.svc-vid__rec-txt--mt15 {
  margin-top: 15px;
}
.svc-vid__rec-txt--mblock {
  margin-block: 60px 12px;
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-txt--mblock {
    margin-block: 45px 8px;
  }
}
.svc-vid__rec-txt--design {
  position: relative;
  padding-inline: 52px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-txt--design {
    padding-inline: 35px;
  }
}
.svc-vid__rec-txt--design::before, .svc-vid__rec-txt--design::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 52px;
  aspect-ratio: 52/92;
  background: url("./public/img/svc-vid/feather-icon.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-txt--design::before, .svc-vid__rec-txt--design::after {
    width: 45px;
  }
}
.svc-vid__rec-txt--design::before {
  left: 0;
}
.svc-vid__rec-txt--design::after {
  right: 0;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}
.svc-vid__rec-num {
  font: 600 10.1rem "Adobe Garamond Pro", serif;
  letter-spacing: -0.02em;
  color: #e95531;
}
@media screen and (max-width: 1024px) {
  .svc-vid__rec-num {
    font-size: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-num {
    font-size: 90px;
  }
}
.svc-vid__rec-num--small {
  font-size: 6rem;
}
.svc-vid__rec-num--lh1 {
  line-height: 1;
}
.svc-vid__rec-icon {
  display: block;
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
}
.svc-vid__rec-icon--abso {
  position: absolute;
  inset: 0;
}
.svc-vid__rec-icon--mtauto {
  margin-top: auto;
}
.svc-vid__rec-blue-note {
  width: 100%;
  min-height: 60px;
  padding-block: 5px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5em;
  color: #17386f;
  background-color: #d9e9f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 980px) {
  .svc-vid__rec-blue-note {
    padding-inline: 5px;
  }
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-blue-note {
    font-size: 15px;
    line-height: 1.6em;
    width: calc(100% - 18px);
    margin-top: 15px;
  }
}
.svc-vid__rec-blue-note--mt {
  margin-top: auto;
}
@media screen and (max-width: 1024px) {
  .svc-vid__rec-blue-note--mt {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-blue-note--mt {
    margin-top: 15px;
  }
}
.svc-vid__rec-blue-note--mt10 {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-blue-note--mt10 {
    margin-top: 15px;
  }
}
.svc-vid__rec-blue-note--cir {
  min-height: initial;
  padding: 26px 22px 18px;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-blue-note--cir {
    padding: 21px 25px 23px;
  }
}
.svc-vid__rec-small-note {
  position: absolute;
  left: 11px;
  top: 22px;
  font: 400 1.6rem "Noto Serif JP", serif;
  line-height: 2em;
  color: #17386f;
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-small-note {
    top: 20px;
    font-size: 15px;
    line-height: 2.1333333333em;
  }
}
.svc-vid__rec-grid {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  padding-block: 35px 10px;
  margin-top: 14px;
}
@media screen and (max-width: 1024px) {
  .svc-vid__rec-grid {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 30px 0;
  }
}
.svc-vid__rec-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: #d5d5d5;
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-grid::before {
    display: none;
  }
}
.svc-vid__rec-grid-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .svc-vid__rec-grid-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-grid-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .svc-vid__rec-grid-content-upper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #d5d5d5;
  }
}
.svc-vid__rec-pie {
  position: relative;
  width: 210px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.svc-vid__app {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .svc-vid__app {
    padding-block: 50px;
  }
}
.svc-vid__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 40px;
}
@media screen and (max-width: 980px) {
  .svc-vid__gallery {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .svc-vid__gallery {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
    padding-inline: 20px;
  }
}
.svc-vid__gallery-img {
  display: block;
  width: 100%;
  aspect-ratio: 300/200;
  overflow: hidden;
  margin-bottom: 16px;
}
.svc-vid__gallery-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5em;
  color: #17386f;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .svc-vid__gallery-heading {
    font-size: 18px;
  }
}
.svc-vid__gallery-heading::before {
  content: "●";
  font: 500 1rem "Noto Serif JP", serif;
  color: #4598cc;
  line-height: 1;
  margin-top: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.svc-vid__gallery-txt {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .svc-vid__gallery-txt {
    font-size: 15px;
  }
}

.service__section {
  padding: 100px 0;
  width: 100%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .service__section {
    padding: 50px 0;
  }
}
.service__section--blue {
  background: url("./public/img/service/bg-blue-dotted.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: repeat;
}
.service__section--area {
  background: -webkit-gradient(linear, left top, right top, from(#001e50), to(#0063a3));
  background: linear-gradient(90deg, #001e50 0%, #0063a3 100%);
}
@media screen and (max-width: 767px) {
  .service__section--area {
    background: -webkit-gradient(linear, left top, left bottom, from(#001e50), to(#0063a3));
    background: linear-gradient(180deg, #001e50 0%, #0063a3 100%);
  }
}
.service__container {
  display: grid;
  margin: 0 auto;
  padding: 0 4%;
  width: 100%;
  max-width: calc(1000px + 8%);
}
@media screen and (max-width: 767px) {
  .service__container {
    padding: 0 4.8%;
  }
}
.service__container:not(:first-child) {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .service__container:not(:first-child) {
    margin-top: 25px;
  }
}
.service__container--column {
  grid-template-columns: 54% 42%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .service__container--column {
    grid-template-columns: auto;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .service__container--reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .service__column {
    width: 100%;
  }
}
.service__column-img {
  width: 100%;
  max-width: 420px;
}
@media screen and (max-width: 767px) {
  .service__column-img {
    margin: 0 auto;
    max-width: 280px;
  }
}
.service__heading {
  position: relative;
  margin-bottom: 20px;
  padding-left: 16px;
  font-size: 3.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.6875em;
  color: #17386f;
}
@media screen and (max-width: 767px) {
  .service__heading {
    font-size: 2.4rem;
    line-height: 1.3333333333em;
  }
}
.service__heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#346a98), to(#7faee0));
  background: linear-gradient(to bottom, #346a98, #7faee0);
}
.service__list {
  display: grid;
}
.service__list--2 {
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}
@media screen and (max-width: 767px) {
  .service__list--2 {
    grid-template-columns: auto;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .service__list:not(:first-child) .service__list-item:first-child {
    padding-top: 0 !important;
  }
}
.service__list-item {
  border-bottom: 1px solid #d5d5d5;
  padding: 20px 0;
}
.service__list-name {
  position: relative;
  display: block;
  padding-left: 18px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5em;
  color: #17386f;
}
@media screen and (max-width: 767px) {
  .service__list-name {
    font-size: 1.8rem;
    line-height: 1.6666666667em;
  }
}
.service__list-name::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: #4598cc;
}
.service__list-text {
  font-size: 1.6rem;
  line-height: 1.625em;
}
@media screen and (max-width: 767px) {
  .service__list-text {
    margin-top: 10px;
  }
}
.service__subheading {
  padding: 10px 3%;
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.0833333333em;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, color-stop(65%, #17386f), to(#8ab5ff));
  background: linear-gradient(90deg, #17386f 65%, #8ab5ff 100%);
}
@media screen and (max-width: 767px) {
  .service__subheading {
    font-size: 2rem;
    line-height: 1.3em;
  }
}
.service__flow, .service__flow-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.service__flow {
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 13px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .service__flow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding-top: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.service__flow::before {
  content: ";";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #17386f;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .service__flow::before {
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.service__flow-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 6px;
  width: 100%;
  max-width: 238px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .service__flow-item {
    max-width: 280px;
  }
}
.service__flow-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid #17386f;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.service__flow-number {
  position: absolute;
  top: 5px;
  left: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  background: transparent;
  z-index: 0;
}
.service__flow-number::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./public/img/service/icon-triangle.svg");
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
}
.service__flow-number span {
  position: absolute;
  top: 4px;
  left: 13px;
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.6666666667em;
  color: #fff;
}
.service__flow-name {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6666666667em;
  color: #e95531;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service__flow-name {
    font-size: 1.6rem;
    line-height: 1.625em;
  }
}
@media screen and (max-width: 767px) {
  .service__image--full, .service__image--storage {
    width: 100%;
    overflow-x: scroll;
  }
}
@media screen and (max-width: 767px) {
  .service__image--full img, .service__image--storage img {
    width: 800px;
    height: 480px;
  }
}
@media screen and (max-width: 767px) {
  .service__image--storage img {
    width: 900px;
    height: 414px;
  }
}
.service__area {
  position: relative;
  padding: 11px;
  margin: 0 auto;
  width: 100%;
  max-width: 1160px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .service__area {
    max-width: 92%;
  }
}
.service__area::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid #17386f;
  width: calc(100% - 11px);
  height: calc(100% - 11px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.service__area-wrapper {
  display: grid;
  grid-template-columns: 45% 55%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
  padding: 0 4%;
  width: 100%;
  max-width: calc(1000px + 8%);
}
@media screen and (max-width: 767px) {
  .service__area-wrapper {
    grid-template-columns: 100%;
    gap: 18px;
    padding: 19px;
  }
}
.service__area-details {
  margin: 50px 0;
}
@media screen and (max-width: 767px) {
  .service__area-details {
    margin: 0;
  }
}
.service__area-text, .service__text {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .service__area-text, .service__text {
    font-size: 1.5rem;
    line-height: 2em;
  }
}
.service__area-btn {
  margin-top: 50px;
  max-width: 220px;
}
@media screen and (max-width: 767px) {
  .service__area-btn {
    margin: 0 auto;
  }
}
.service__text--mtop {
  margin-top: 20px;
}
.service__table {
  display: grid;
  grid-template-columns: 30% 70%;
  margin: 6px 0 16px;
  gap: 6px;
}
@media screen and (max-width: 767px) {
  .service__table {
    grid-template-columns: 26% 74%;
  }
}
.service__table-dt, .service__table-dd {
  padding: 14px 10%;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .service__table-dt, .service__table-dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 7px 5%;
    font-size: 1.5rem;
  }
}
.service__table-dt {
  font-weight: 500;
  line-height: 2em;
  color: #17386f;
  background: #d9e9f4;
}
@media screen and (max-width: 767px) {
  .service__table-dt {
    text-align: center;
  }
}
.service__table-dd {
  padding-inline: 4.3%;
  line-height: 1.625em;
  color: #17386f;
  background: #fff;
}
.service__trucklist {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 50px;
}
@media screen and (max-width: 767px) {
  .service__trucklist {
    grid-template-columns: 100%;
    gap: 20px;
    padding: 0 20px;
  }
}
.service__trucklist-image {
  margin-bottom: 12px;
  width: 100%;
  height: 160px;
}
.service__trucklist-text {
  position: relative;
  padding-left: 18px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5em;
  color: #17386f;
}
@media screen and (max-width: 767px) {
  .service__trucklist-text {
    font-size: 1.8rem;
  }
}
.service__trucklist-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: #4598cc;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.service__routes {
  padding: 40px;
  width: 100%;
  background: #d9e9f4;
}
@media screen and (max-width: 767px) {
  .service__routes {
    padding: 20px;
  }
}
.service__routes-container {
  display: grid;
  grid-template-columns: 47.45% 52.55%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 30px 0;
}
@media screen and (max-width: 1010px) {
  .service__routes-container {
    grid-template-columns: 100%;
    padding: 18px 0 0;
  }
}
.service__routes-text {
  font-size: 1.6rem;
  line-height: 2.25em;
}
@media screen and (max-width: 767px) {
  .service__routes-text {
    font-size: 1.5rem;
    line-height: 2em;
  }
}
.service__routes-text .large {
  font-size: 2rem;
  font-weight: 500;
  color: #17386f;
}
@media screen and (max-width: 767px) {
  .service__routes-text .large {
    font-size: 1.8rem;
    line-height: 1.6666666667em;
  }
}
.service__routes-column {
  display: grid;
  gap: 40px;
}
@media screen and (max-width: 1010px) {
  .service__routes-column {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}
.service__routes-column-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1010px) {
  .service__routes-column-image {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .service__routes-column-image {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}
.service__routes-image {
  width: 180px;
}
@media screen and (max-width: 767px) {
  .service__routes-image {
    width: 40.67%;
  }
}
.service__routes-mark {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .service__routes-mark {
    width: 34px;
    height: 34px;
  }
}
.service__routes-mark::before, .service__routes-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #17386f;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
.service__routes-mark::after {
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
}

.recruit-form__details {
  padding-block: 120px 100px;
}
@media screen and (max-width: 767px) {
  .recruit-form__details {
    padding-block: 65px 50px;
  }
}
.recruit-form__title {
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#001e50), to(#0063a3));
  background: linear-gradient(90deg, #001e50 0%, #0063a3 100%);
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  color: #fff;
  padding: 5px 30px 6px;
  margin-bottom: 30px;
}
.recruit-form__subtitle {
  margin-block: 40px 20px;
  font-size: 1.6rem;
  line-height: 2em;
}
.recruit-form__text {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .recruit-form__text {
    font-size: 15px;
  }
}
.recruit-form__details-wrap {
  border-top: 1px solid #d5d5d5;
}
.recruit-form__details-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 50px;
  padding: 20px;
  border-bottom: 1px solid #d5d5d5;
}
@media screen and (max-width: 767px) {
  .recruit-form__details-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 12px 0;
  }
}
.recruit-form__detail-label {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2em;
  color: #17386f;
  width: 120px;
}
.recruit-form__notes {
  font-size: 1.4rem;
  line-height: 2em;
  color: #5a7480;
  padding-left: 30px;
  text-indent: -15px;
  display: block;
}
@media screen and (max-width: 767px) {
  .recruit-form__notes {
    padding-left: 25px;
  }
}
.recruit-form__text-item {
  position: relative;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .recruit-form__text-item {
    padding-left: 10px;
  }
}
.recruit-form__text-item::before {
  content: "●";
  position: absolute;
  left: 0;
  font-size: 8px;
  color: #4598cc;
}
@media screen and (max-width: 767px) {
  .recruit-form__text-item::before {
    font-size: 6px;
  }
}

.recruit-department__nav {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .recruit-department__nav {
    margin-bottom: 50px;
  }
}
.recruit-department__section {
  position: relative;
  padding: 72px 0 100px;
  width: 100%;
  min-height: 720px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .recruit-department__section {
    padding: 20px 0 50px;
    min-height: 0;
  }
}
.recruit-department__section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: -webkit-gradient(linear, left top, right top, from(#17386f), to(#0063a3));
  background: linear-gradient(to right, #17386f, #0063a3);
  z-index: -1;
}
.recruit-department__image {
  position: absolute;
  top: 30px;
  left: 0;
  width: 46.9%;
  height: 100%;
  max-height: 590px;
}
@media screen and (max-width: 767px) {
  .recruit-department__image {
    position: relative;
    top: unset;
    left: -6%;
    margin-bottom: 30px;
    width: 94.4%;
    max-height: 100%;
    height: 295px;
  }
}
.recruit-department__wrapper {
  margin: 0 auto;
  padding: 0 4%;
  width: 100%;
  max-width: calc(1000px + 8%);
}
.recruit-department__wrapper--half {
  min-height: 550px;
}
@media screen and (max-width: 767px) {
  .recruit-department__wrapper--half {
    padding: 0;
  }
}
.recruit-department__wrapper:not(:first-child) {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .recruit-department__wrapper:not(:first-child) {
    margin-top: 40px;
  }
}
.recruit-department__container {
  margin-left: auto;
  padding-left: 3%;
  width: 53%;
  max-width: calc(500px + 3%);
}
@media screen and (max-width: 767px) {
  .recruit-department__container {
    padding: 0 4.8%;
    width: 100%;
  }
}
.recruit-department__title {
  position: relative;
  margin-bottom: 42px;
  padding: 0 0 54px 18px;
  font-size: 3.8rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.4210526316em;
  color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .recruit-department__title {
    margin-bottom: 0;
    padding-bottom: 20px;
    font-size: 2.5rem;
    line-height: 2.16em;
  }
}
.recruit-department__title::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 4px;
  height: 100%;
  background: #fff;
}
.recruit-department__text {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .recruit-department__text {
    font-size: 1.5rem;
    line-height: 2em;
  }
}
.recruit-department__truck {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .recruit-department__truck {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.recruit-department__truck-item {
  width: 48%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .recruit-department__truck-item {
    width: 100%;
  }
}
.recruit-department__truck-image {
  position: relative;
  width: 100%;
  height: 240px;
}
@media screen and (max-width: 767px) {
  .recruit-department__truck-image {
    height: 170px;
  }
}
.recruit-department__truck-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#346a98), to(#5aa1d5));
  background: linear-gradient(to right, #346a98, #5aa1d5);
  mix-blend-mode: multiply;
  opacity: 0.8;
}
.recruit-department__truck-title {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.25em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  color: #fff;
}
.recruit-department__truck-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px;
  height: calc(100% - 240px);
}
@media screen and (max-width: 767px) {
  .recruit-department__truck-details {
    height: calc(100% - 170px);
  }
}
.recruit-department__btn {
  margin: 40px 0 0 auto;
  max-width: 220px;
}
@media screen and (max-width: 767px) {
  .recruit-department__btn {
    margin-top: 20px;
  }
}
.recruit-department__btn--center {
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .recruit-department__btn--center {
    margin-top: 30px;
  }
}
.recruit-department__gallery-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  padding-block: 60px;
  overflow: hidden;
}
.recruit-department__gallery-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recruit-department__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: 70s infinite linear 0.5s both carousel;
          animation: 70s infinite linear 0.5s both carousel;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
}
.recruit-department__gallery--reversed {
  -webkit-animation: 70s infinite linear 0.5s both carousel-reversed;
          animation: 70s infinite linear 0.5s both carousel-reversed;
}
.recruit-department__gallery-item {
  display: block;
  width: 380px;
  height: 260px;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .recruit-department__gallery-item {
    width: 292.31px;
    height: 200px;
    margin-right: 30px;
  }
}

@-webkit-keyframes carousel {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes carousel {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes carousel-reversed {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes carousel-reversed {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.news {
  margin-block: 60px 100px;
}
@media screen and (max-width: 767px) {
  .news {
    margin-block: 18px 50px;
  }
}
.news__list-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .news__list-container {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .news__list-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.news__categories {
  width: 220px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .news__categories {
    grid-template-columns: 1fr;
    width: 110px;
  }
}
@media screen and (max-width: 767px) {
  .news__categories {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 6px;
  }
}
.news__category {
  border: 1px solid #d5d5d5;
  border-radius: 15px;
  padding: 7px;
  font-size: 1.4rem;
  line-height: 1em;
  text-align: center;
  color: #17386f;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news__category {
    padding: 5px 5px 4px;
    font-size: 13px;
  }
}
.news__category--active {
  border: none;
  background: -webkit-gradient(linear, left top, right top, from(#001e50), to(#0063a3));
  background: linear-gradient(90deg, #001e50 0%, #0063a3 100%);
  color: #fff;
  pointer-events: none;
}
.news__category:hover {
  background: -webkit-gradient(linear, left top, right top, from(#001e50), to(#0063a3));
  background: linear-gradient(90deg, #001e50 0%, #0063a3 100%);
  color: #fff;
  opacity: 0.8;
}
.news__list {
  border-top: 1px solid #d5d5d5;
  width: calc(100% - 280px);
}
@media screen and (max-width: 1024px) {
  .news__list {
    width: calc(100% - 140px);
  }
}
@media screen and (max-width: 767px) {
  .news__list {
    width: 100%;
  }
}
.news__item {
  padding: 20px;
  border-bottom: 1px solid #d5d5d5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news__item {
    padding: 12px 0;
  }
}
.news__item:hover {
  opacity: 0.85;
}
.news__item-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.news__item-date {
  color: #17386f;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .news__item-date {
    font-size: 15px;
  }
}
.news__item-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.news__item-category {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 110px;
  height: 20px;
  background-color: #d5d5d5;
  border-radius: 10px;
  font-size: 1.2rem;
  text-align: center;
  padding: 1px 5px 2px;
}
.news__item-title {
  font-size: 1.6rem;
  line-height: 1.625em;
}
@media screen and (max-width: 767px) {
  .news__item-title {
    font-size: 15px;
  }
}
.news__pagenavi {
  margin-top: 42px;
}
@media screen and (max-width: 767px) {
  .news__pagenavi {
    margin-top: 29px;
  }
}
.news__pagenavi-prev-next {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .news__pagenavi-prev-next {
    display: none;
  }
}
.news__details {
  max-width: calc(800px + 8%);
  padding-inline: 4%;
  margin-inline: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .news__details {
    max-width: 100%;
    padding-inline: 4.8%;
  }
}
.news__details-title {
  margin-block: 20px 39px;
  font-weight: 600;
  font-size: 2.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6923076923em;
  padding-bottom: 22px;
  border-bottom: 1px solid #d5d5d5;
}
@media screen and (max-width: 767px) {
  .news__details-title {
    border-bottom: none;
    padding-bottom: 0;
    margin-block: 22px 32px;
    font-size: 20px;
  }
}
.news__details-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .news__details-container {
    gap: 20px;
  }
}
.news__details-image {
  display: block;
  width: 100%;
  aspect-ratio: 800/500;
  overflow: hidden;
}
.news__details-text {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .news__details-text {
    font-size: 15px;
  }
}
.news__details-pagenavi {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .news__details-pagenavi {
    margin-top: 40px;
  }
}
.news__details-button {
  margin: 40px auto 0;
  width: 220px;
}

.job-desc {
  padding-block: 60px 100px;
}
@media screen and (max-width: 767px) {
  .job-desc {
    padding-block: 18px 50px;
  }
}
.job-desc__filter {
  background: #d9e9f4;
  padding-block: 30px;
  margin-block: 100px;
}
@media screen and (max-width: 767px) {
  .job-desc__filter {
    margin-block: 50px;
  }
}
.job-desc__filter-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .job-desc__filter-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
}
.job-desc__filter-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  min-width: 130px;
  font-weight: 500;
  font-size: 1.8rem;
  color: #17386f;
}
.job-desc__filter-label::before {
  content: "●";
  position: relative;
  font-weight: 500;
  font-size: 10px;
  font-family: "Noto Serif JP", serif;
  color: #4598cc;
}
.job-desc__filter-wrap {
  background-color: #fff;
  padding: 16px 55px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .job-desc__filter-wrap {
    padding: 13px;
  }
}
@media screen and (max-width: 767px) {
  .job-desc__filter-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .job-desc__filter-wrap .form__input-radio {
    width: 100%;
  }
}
.job-desc__filter-area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  height: 50px;
  background: #d9e9f4;
  border: 1px solid #17386f;
  border-radius: 5px;
  overflow: hidden;
}
.job-desc__filter-area::after {
  content: "▼";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  line-height: 50px;
  color: #d9e9f4;
  padding: 0 1em;
  background: #17386f;
  cursor: pointer;
  pointer-events: none;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.job-desc__filter-area:hover::after {
  color: #4598cc;
}
.job-desc__filter-area-select {
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #d9e9f4;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 15px;
  cursor: pointer;
  font-size: 1.6rem;
}
.job-desc__filter-area-select::-ms-expand {
  display: none;
}
.job-desc__filter-button {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.job-desc__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .job-desc__list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.job-desc__item {
  background: #eff4fa;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .job-desc__item {
    padding: 30px 18px;
  }
}
.job-desc__item-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 9px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d5d5d5;
}
.job-desc__item-category {
  font-size: 1.4rem;
  padding: 5px;
  text-align: center;
  min-width: 105px;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .job-desc__item-category {
    min-width: 90px;
  }
}
.job-desc__item-category--whitegreen {
  background-color: #fff;
  border: 1px solid #0a6547;
  color: #0a6547;
  padding-block: 4px;
}
.job-desc__item-category--whiteblue {
  background-color: #fff;
  border: 1px solid #17386f;
  color: #17386f;
  padding-block: 4px;
}
.job-desc__item-category--green {
  background-color: #52a08b;
  color: #fff;
}
.job-desc__item-category--cyan {
  background-color: #4cbbd0;
  color: #fff;
}
.job-desc__item-category--red {
  background-color: #eb6565;
  color: #fff;
}
.job-desc__item-category--purple {
  background-color: #9759b2;
  color: #fff;
}
.job-desc__item-details {
  border-bottom: 1px solid #d5d5d5;
  padding-block: 8px;
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .job-desc__item-details {
    padding-block: 10px 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 7px;
  }
}
.job-desc__item-label {
  min-width: 70px;
  font-weight: 500;
  font-size: 1.6rem;
  color: #17386f;
}
@media screen and (max-width: 767px) {
  .job-desc__item-label {
    font-size: 15px;
  }
}
.job-desc__item-title {
  font-weight: 500;
  font-size: 2rem;
  color: #e95531;
}
@media screen and (max-width: 767px) {
  .job-desc__item-title {
    font-size: 18px;
  }
}
.job-desc__item-text {
  font-size: 1.6rem;
  line-height: 1.625em;
}
@media screen and (max-width: 767px) {
  .job-desc__item-text {
    font-size: 15px;
  }
}
.job-desc__item-text--clamp {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.job-desc__item-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 12px;
}
.job-desc__block {
  margin-block: 100px;
  padding-block: 100px;
  background: url("./public/img/texture-bg.jpg");
}
@media screen and (max-width: 767px) {
  .job-desc__block {
    margin-block: 50px;
    padding-block: 50px;
  }
}
.job-desc__block-list {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 25px;
}
@media screen and (max-width: 1024px) {
  .job-desc__block-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.job-desc__block-line {
  width: 1px;
  height: 100%;
  background: #d5d5d5;
}
@media screen and (max-width: 1024px) {
  .job-desc__block-line {
    width: 100%;
    height: 1px;
  }
}
@media screen and (max-width: 767px) {
  .job-desc__block-item {
    padding-inline: 20px;
  }
}
.job-desc__block-image {
  width: 100%;
  aspect-ratio: 300/200;
}
@media screen and (max-width: 1024px) {
  .job-desc__block-image {
    max-width: 500px;
    margin: 0 auto;
  }
}
.job-desc__block-title {
  margin-block: 16px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 2rem;
  color: #17386f;
}
@media screen and (max-width: 767px) {
  .job-desc__block-title {
    margin-block: 12px 9px;
    font-size: 18px;
  }
}
.job-desc__block-title::before {
  content: "●";
  font-size: 10px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #4598cc;
}
.job-desc__block-text {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .job-desc__block-text {
    font-size: 15px;
  }
}
.job-desc__graduate-text {
  margin-block: 40px;
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .job-desc__graduate-text {
    margin-block: 20px 30px;
    font-size: 15px;
  }
}
.job-desc__graduate-wrap {
  background: #d9e9f4;
  padding: 50px;
}
@media screen and (max-width: 767px) {
  .job-desc__graduate-wrap {
    padding: 30px 20px;
  }
}
.job-desc__graduate-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #17386f;
}
@media screen and (max-width: 767px) {
  .job-desc__graduate-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.job-desc__graduate-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .job-desc__graduate-blocks {
    grid-template-columns: 1fr;
  }
}
.job-desc__graduate-block {
  border: 1px solid #0a6547;
  background: #fff;
}
.job-desc__graduate-block--green .job-desc__graduate-heading {
  color: #0a6547;
}
.job-desc__graduate-block--green .job-desc__graduate-content {
  background: -webkit-gradient(linear, left top, left bottom, from(#0a6547), to(#053324));
  background: linear-gradient(180deg, #0a6547 0%, #053324 100%);
}
.job-desc__graduate-block--green .job-desc__graduate-button {
  background: #64c36d;
}
.job-desc__graduate-block--blue .job-desc__graduate-heading {
  color: #17386f;
}
.job-desc__graduate-block--blue .job-desc__graduate-content {
  background: -webkit-gradient(linear, left top, right top, from(#001e50), to(#0063a3));
  background: linear-gradient(90deg, #001e50 0%, #0063a3 100%);
}
.job-desc__graduate-block--blue .job-desc__graduate-button {
  background: #4598cc;
}
.job-desc__graduate-heading {
  font-weight: 500;
  font-size: 2rem;
  margin-block: 17px 16px;
  text-align: center;
  display: block;
}
@media screen and (max-width: 767px) {
  .job-desc__graduate-heading {
    font-size: 18px;
    margin-block: 12px;
  }
}
.job-desc__graduate-content {
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  font-size: 2.2rem;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin: 0 20px 13px;
  padding: 12px;
}
@media screen and (max-width: 767px) {
  .job-desc__graduate-content {
    font-size: 18px;
    margin: 0 12px 12px;
  }
}
.job-desc__graduate-button {
  width: 100%;
  padding: 9px 12px 7px;
  font-size: 1.6rem;
  color: #fff;
  text-align: right;
  display: block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.job-desc__graduate-button:hover {
  opacity: 0.6;
}

.wpcf7-response-output,
.wpcf7-not-valid-tip,
.wpcf7-spinner {
  display: none !important;
}

.form__input.wpcf7-not-valid {
  border: 1px solid #e95531;
  background: #fff8ed;
}
.form__input.wpcf7-not-valid::-webkit-input-placeholder {
  color: #e95531;
}
.form__input.wpcf7-not-valid::-moz-placeholder {
  color: #e95531;
}
.form__input.wpcf7-not-valid:-ms-input-placeholder {
  color: #e95531;
}
.form__input.wpcf7-not-valid::-ms-input-placeholder {
  color: #e95531;
}
.form__input.wpcf7-not-valid::placeholder {
  color: #e95531;
}

.form__input-radio .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 28px;
}
@media screen and (max-width: 767px) {
  .form__input-radio .wpcf7-radio {
    gap: 10px;
  }
}
.form__input-radio .wpcf7-form-control {
  padding: 13px 30px;
}
@media screen and (max-width: 767px) {
  .form__input-radio .wpcf7-form-control {
    padding: 15px 10px;
  }
}
.form__input-radio .wpcf7-list-item {
  font-size: 1.6rem;
  line-height: 1.3em;
  margin: 0;
}
.form__input-radio .wpcf7-list-item input {
  opacity: 0;
  width: 0;
  height: 0;
  margin-right: 0;
}
.form__input-radio .wpcf7-list-item label {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form__input-radio .wpcf7-list-item label::before {
  content: "";
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-right: 8px;
  border-radius: 20px;
  background-color: transparent;
  border: 1px solid #333;
}
.form__input-radio .wpcf7-list-item label input:checked + span::after {
  content: "";
  width: 14px;
  height: 14px;
  min-width: 14px;
  border-radius: 14px;
  position: absolute;
  left: 4px;
  top: 4px;
  background-color: #17386f;
}
@media screen and (max-width: 767px) {
  .form__input-radio .wpcf7-list-item-label {
    width: 192px;
  }
}
.form__input-radio .wpcf7-not-valid {
  border: 1px solid #e95531;
  background: #fff8ed;
}
.form__input-radio .wpcf7-not-valid .wpcf7-list-item {
  color: #e95531;
}
.form__input-radio .wpcf7-not-valid .wpcf7-list-item label::before {
  background-color: #fff8ed;
  border: 1px solid #e95531;
}
.form__input-radio .wpcf7-not-valid .wpcf7-list-item label input:checked + span::after {
  background-color: #e95531;
}

.form__privacy-checkbox .wpcf7-not-valid {
  color: #e95531;
}
.form__privacy-checkbox .wpcf7-not-valid label::before {
  border: 1px solid #e95531;
  background: #fff8ed;
}
.form__privacy-checkbox label:has(input[type=checkbox]:checked)::after {
  content: "";
  width: 20px;
  height: 18px;
  min-width: 21px;
  background: url("./public/img/icons/checkbox.svg") center/contain no-repeat;
  position: absolute;
  left: 2px;
  top: 3px;
}
.form__privacy-checkbox input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
  margin-right: 0;
}
.form__privacy-checkbox label {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form__privacy-checkbox label::before {
  content: "";
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-right: 14px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #707070;
}

.job-desc__filter-wrap .wpcf7-form-control {
  display: grid;
  grid-template-columns: repeat(4, auto);
  padding: 0 !important;
}
@media screen and (max-width: 1200px) {
  .job-desc__filter-wrap .wpcf7-form-control {
    grid-template-columns: repeat(2, auto);
  }
}
.job-desc__filter-wrap .wpcf7-radio {
  gap: 12px 50px;
}
@media screen and (max-width: 767px) {
  .job-desc__filter-wrap .wpcf7-radio {
    gap: 11px 25px;
  }
}
@media screen and (max-width: 767px) {
  .job-desc__filter-wrap .wpcf7-list-item-label {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .job-desc__filter-wrap .wpcf7-list-item label::before {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-right: 6px;
  }
}
@media screen and (max-width: 767px) {
  .job-desc__filter-wrap .wpcf7-list-item label input:checked + span::after {
    width: 12px;
    height: 12px;
    min-width: 12px;
    left: 3px;
    top: 3px;
  }
}

.wp-pagenavi {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
}
.wp-pagenavi .current,
.wp-pagenavi .page {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  line-height: 1em;
}
.wp-pagenavi .current {
  background: -webkit-gradient(linear, left top, left bottom, from(#001e50), to(#0063a3));
  background: linear-gradient(180deg, #001e50 0%, #0063a3 100%);
  color: #fff;
}
.wp-pagenavi .page {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.wp-pagenavi .page:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#001e50), to(#0063a3));
  background: linear-gradient(180deg, #001e50 0%, #0063a3 100%);
  opacity: 0.8;
  color: #fff;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  min-width: 100px;
  position: absolute;
  top: 50%;
  border: 1px solid #17386f;
  border-radius: 28px;
  height: 36px;
  font-size: 16px;
  color: #17386f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 6px 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    position: relative;
    top: 0;
    -webkit-transform: unset;
            transform: unset;
  }
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#001e50), to(#0063a3));
  background: linear-gradient(180deg, #001e50 0%, #0063a3 100%);
  color: #fff;
}
.wp-pagenavi .nextpostslink {
  right: 0;
}
.wp-pagenavi .nextpostslink::after {
  content: "→";
  position: relative;
  font-weight: 500;
}
.wp-pagenavi .previouspostslink {
  left: 0;
}
.wp-pagenavi .previouspostslink::before {
  content: "←";
  position: relative;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .news__pagenavi .previouspostslink,
  .news__pagenavi .nextpostslink {
    display: none;
  }
}

.news__pagenavi-prev-next .current,
.news__pagenavi-prev-next .page {
  display: none;
}

@media screen and (max-width: 767px) {
  .news__details-pagenavi .wp-pagenavi {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.overflow {
  overflow: hidden;
}

.hidden {
  display: none;
  visibility: hidden;
}

.container {
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(1000px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding-inline: 4.8%;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.txt-inline {
  white-space: nowrap;
}

.txt-center {
  text-align: center;
}

.white {
  color: #fff;
}

.blue-008 {
  color: #008ece;
}

.blue-173 {
  color: #17386f;
}

.bg-blue-5a7 {
  background: #5a7480;
}

.orange-e95 {
  color: #e95531;
}

.bold {
  font-weight: 700;
}

.underline {
  text-decoration: underline;
}

.inline-b {
  display: inline-block;
}

.disable {
  opacity: 0.5;
  pointer-events: none;
}