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

html, body {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: rgb(0, 0, 0);
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: 14.4px;
  }
}
@media screen and (max-width: 374px) {
  html, body {
    font-size: 12.8px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

.select-wrap {
  position: relative;
}
.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  z-index: 2;
  width: 10px;
  height: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
  background-color: rgb(0, 0, 0);
}

input[type=submit],
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  outline: none;
  border: 1px solid rgb(190, 190, 190);
  padding: 10px;
  border-radius: 5px;
}

section {
  padding: 100px 0;
}
section.section-bottom {
  padding-bottom: 0;
}

.contents-wrapper {
  width: calc(100% - 100px);
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .contents-wrapper {
    width: calc(100% - 40px);
  }
}
.contents-wrapper.big {
  max-width: 1440px;
  width: 100%;
}
.contents-wrapper.big.padding-left {
  padding-left: 220px;
}
@media (max-width: 1440px) {
  .contents-wrapper.big.padding-left {
    padding-left: calc((100vw - 1000px) / 2);
  }
}
@media (max-width: 1100px) {
  .contents-wrapper.big.padding-left {
    padding-left: 50px;
  }
}
@media (max-width: 767px) {
  .contents-wrapper.big.padding-left {
    padding-left: 20px;
  }
}

.ipad-block {
  display: none;
}
@media (max-width: 1023px) {
  .ipad-block {
    display: block;
  }
}

@media (max-width: 1023px) {
  .ipad-none {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.main-contents {
  text-align: left;
  word-wrap: break-word;
  line-height: 200%;
}
.main-contents p:not(:last-child) {
  margin-bottom: 15px;
}
.main-contents img:not(.emoji) {
  width: 50% !important;
  height: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .main-contents img:not(.emoji) {
    width: 100% !important;
  }
}

.left-float {
  float: left;
}

.right-float {
  float: right;
}

.clear {
  clear: both;
}

img, iframe {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

a {
  text-decoration: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

a:hover {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.color-black {
  color: rgb(0, 0, 0);
}

.color-white {
  color: rgb(255, 255, 255);
}

table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
}

.block-item {
  display: block;
}

.inlineblock-item {
  display: inline-block;
}

.inline-item {
  display: inline;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.right-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

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

figure {
  margin: 0;
  padding: 0;
}

.top-title {
  font-size: 2.5rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .top-title {
    font-size: 2rem;
  }
}
.top-title.white {
  color: rgb(255, 255, 255);
}
.top-title.center {
  text-align: center;
}

.green-title {
  color: #006950;
  font-size: 2rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .green-title {
    font-size: 1.5rem;
  }
}

.blue-title {
  margin-bottom: 10px;
  color: rgb(4, 35, 137);
  font-weight: 500;
  font-size: 1.1rem;
}
.blue-title.mincho {
  font-family: "Zen Old Mincho", serif;
}
.blue-title.big {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .blue-title.big {
    font-size: 1.4rem;
  }
}

.side-link-wrapper {
  position: absolute;
  top: 70px;
  right: 0;
  z-index: 5;
  height: 350px;
}
@media (max-width: 1023px) {
  .side-link-wrapper {
    top: 59px;
  }
}
@media (max-width: 767px) {
  .side-link-wrapper {
    height: auto;
    position: fixed;
    top: auto;
    bottom: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.side-link-wrapper a {
  width: 62px;
  height: 50%;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgb(255, 255, 255);
  border: 1px solid;
}
@media (max-width: 1023px) {
  .side-link-wrapper a {
    width: 56px;
  }
}
@media (max-width: 767px) {
  .side-link-wrapper a {
    width: 50%;
    height: auto;
  }
}
.side-link-wrapper a.green {
  background-color: #006950;
  border-color: #006950;
}
.side-link-wrapper a.green:hover {
  background-color: rgb(255, 255, 255);
  color: #006950;
}
.side-link-wrapper a.blue {
  background-color: rgb(4, 35, 137);
  border-color: rgb(4, 35, 137);
}
.side-link-wrapper a.blue:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(4, 35, 137);
}
.side-link-wrapper a span {
  font-size: 0.9rem;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@media (max-width: 767px) {
  .side-link-wrapper a span {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}

.grade-btn {
  margin-top: 40px;
  position: relative;
  display: block;
  padding: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#042389), to(#7BDFBC));
  background: linear-gradient(90deg, #042389 0%, #7BDFBC 100%);
  color: rgb(255, 255, 255);
  max-width: 390px;
  width: 100%;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
}
.grade-btn::before {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 6px;
  aspect-ratio: 6/10;
  background-color: rgb(255, 255, 255);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.grade-btn:hover::before {
  -webkit-transform: translateY(-50%) rotateX(180deg);
          transform: translateY(-50%) rotateX(180deg);
}

.page-link {
  position: relative;
  display: block;
  border: 1px solid rgb(4, 35, 137);
  padding: 5px 10px;
  color: rgb(4, 35, 137);
}
.page-link::before {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  background-color: rgb(4, 35, 137);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url("../../images/page-arrow.svg");
          mask-image: url("../../images/page-arrow.svg");
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .page-link::before {
    right: 0;
  }
}
.page-link:hover {
  background-color: rgb(4, 35, 137);
  color: rgb(255, 255, 255);
}
.page-link:hover::before {
  background-color: rgb(255, 255, 255);
  top: calc(50% + 5px);
}

.top-company-link-wrapper {
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px 50px;
}
@media (max-width: 1023px) {
  .top-company-link-wrapper {
    gap: 15px;
  }
}

.blue-btn {
  display: block;
  width: 100%;
  background-color: rgb(4, 35, 137);
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 20px 10px;
}

.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 32px;
}
@media (max-width: 1023px) {
  .header-menu {
    display: none;
  }
}
.header-menu .top {
  display: none;
}
.header-menu .menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.header-menu .menu-list .trigger-text,
.header-menu .menu-list a:not(.sub-menu) {
  padding: 10px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: rgb(106, 106, 106);
}
@media (max-width: 1190px) {
  .header-menu .menu-list .trigger-text,
  .header-menu .menu-list a:not(.sub-menu) {
    padding: 10px 18px;
  }
}
.header-menu .menu-list .trigger-text:hover,
.header-menu .menu-list a:not(.sub-menu):hover {
  background-color: rgb(4, 35, 137);
  color: rgb(255, 255, 255);
}
.header-menu .menu-list .content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.header-menu .trigger {
  position: relative;
}
.header-menu .trigger::before {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 10px;
  aspect-ratio: 5/7;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: rgb(106, 106, 106);
  -webkit-mask-image: url("../../images/arrow.svg");
          mask-image: url("../../images/arrow.svg");
}
@media (max-width: 1190px) {
  .header-menu .trigger::before {
    right: 4px;
  }
}
.header-menu .trigger.active::before {
  background-color: rgb(255, 255, 255);
}
.header-menu .sub-item {
  position: absolute;
  top: 100%;
  left: 0;
  width: 270px;
  background-color: rgba(4, 35, 137, 0.8);
}
.header-menu .sub-item .menu-inner {
  padding: 30px 20px;
}
.header-menu .sub-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgb(255, 255, 255);
}
.header-menu .sub-item a::before {
  content: "";
  width: 30px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 5px;
  background-size: contain;
  background-image: url("../../images/menu-arrow.svg");
}
.header-menu .sub-item a span {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-bottom: 1px solid transparent;
}
.header-menu .sub-item a:not(:last-child) {
  margin-bottom: 5px;
}
.header-menu .sub-item a:hover span {
  border-color: rgb(255, 255, 255);
}
.header-menu .side-logo {
  padding: 15px;
  aspect-ratio: 1/1;
  background-color: rgb(0, 0, 0);
}
.header-menu .side-logo img {
  width: 32px;
}

.drawer--right .sp-navigation {
  display: none;
}
@media (max-width: 1023px) {
  .drawer--right .sp-navigation {
    display: block;
  }
}
.drawer--right .sp-navigation .drawer-hamburger {
  background-color: rgb(0, 0, 0);
}
@media (max-width: 767px) {
  .drawer--right .sp-navigation .drawer-hamburger {
    padding: 15px 11px 25px;
  }
}
.drawer--right .sp-navigation .drawer-hamburger:hover {
  background-color: rgb(0, 0, 0);
}
.drawer--right .sp-navigation .drawer-hamburger .drawer-hamburger-icon {
  background-color: rgb(255, 255, 255);
}
.drawer--right .sp-navigation .drawer-hamburger .drawer-hamburger-icon::before, .drawer--right .sp-navigation .drawer-hamburger .drawer-hamburger-icon::after {
  background-color: rgb(255, 255, 255);
}
.drawer--right .sp-navigation .drawer-nav {
  background-color: #E6EDF1;
  padding: 100px 30px 50px;
}
.drawer--right .sp-navigation .drawer-nav .side-image {
  position: absolute;
  width: 100%;
  bottom: 0;
  right: -10%;
}
.drawer--right .sp-navigation .drawer-nav li:not(:last-child) {
  margin-bottom: 10px;
}
.drawer--right .sp-navigation .drawer-nav .sub-item {
  display: none;
}
.drawer--right .sp-navigation .drawer-nav a {
  display: block;
  color: rgb(4, 35, 137);
}
.drawer--right .sp-navigation .drawer-nav a:hover {
  color: rgb(4, 35, 137);
}
.drawer--right.drawer-open button.drawer-hamburger {
  right: 0;
}
.drawer--right.drawer-open button.drawer-hamburger .drawer-hamburger-icon {
  background-color: transparent;
}
@media (max-width: 767px) {
  .drawer--right.drawer-open button.drawer-hamburger .drawer-hamburger-icon::before, .drawer--right.drawer-open button.drawer-hamburger .drawer-hamburger-icon::after {
    top: 0;
  }
}

div.drawer-overlay {
  z-index: 10;
}

.news-list li:not(:last-child) {
  margin-bottom: 20px;
}
.news-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  color: rgb(0, 0, 0);
}
@media (max-width: 767px) {
  .news-list a {
    gap: 10px;
  }
}
.news-list .time {
  font-size: 0.9rem;
  color: rgb(106, 106, 106);
}
.news-list img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.news-list .news-title span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list.archive {
  margin: 50px 0;
}
.news-list.archive li {
  border-bottom: 1px solid #E6EDF1;
}
.news-list.archive a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-list.archive .image-box {
  width: 210px;
}
@media (max-width: 767px) {
  .news-list.archive .image-box {
    width: 100%;
  }
}
.news-list.archive .text-box {
  width: calc(100% - 210px - 30px);
}
@media (max-width: 767px) {
  .news-list.archive .text-box {
    width: 100%;
    padding-bottom: 10px;
  }
}
.news-list.archive .title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}
@media (max-width: 1023px) {
  .news-list.archive .title-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.news-list.archive .news-title {
  width: calc(100% - 82px);
}
@media (max-width: 1023px) {
  .news-list.archive .news-title {
    width: 100%;
  }
}
.news-list.top .image-box {
  width: 145px;
}
.news-list.top .text-box {
  width: calc(100% - 145px - 30px);
}
@media (max-width: 767px) {
  .news-list.top .text-box {
    width: calc(100% - 145px - 10px);
  }
}
.news-list.top .category-name {
  display: none;
}
.news-list.top .time {
  margin-bottom: 10px;
}

.category-name {
  margin-bottom: 10px;
  background-color: rgb(4, 35, 137);
  color: rgb(255, 255, 255);
  font-size: 0.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  padding: 3px 20px;
  text-align: center;
}

.breadcrumb-list {
  padding-top: 25px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  font-size: 0.9rem;
}
@media (max-width: 767px) {
  .breadcrumb-list {
    padding-top: 15px;
    font-size: 0.8rem;
    gap: 5px;
  }
}
.breadcrumb-list li:first-child a {
  color: rgb(0, 0, 0);
}
.breadcrumb-list a {
  color: rgb(0, 0, 0);
}
.breadcrumb-list a:hover {
  color: #006950;
}
.breadcrumb-list .bresd-pass {
  padding-left: 10px;
}
@media (max-width: 767px) {
  .breadcrumb-list .bresd-pass {
    padding-left: 5px;
  }
}

header {
  position: relative;
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.header-logo {
  margin: 20px 0 20px 28px;
  width: 157px;
}
@media (max-width: 1023px) {
  .header-logo {
    margin: 17px 10px;
  }
}
@media (max-width: 767px) {
  .header-logo {
    margin: 14px;
  }
}

footer {
  padding: 80px 0 10px;
  background-color: #006950;
  color: rgb(255, 255, 255);
}
@media (max-width: 767px) {
  footer {
    padding-bottom: 50px;
  }
}
footer .menu-list {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 30px;
}
footer .menu-list a {
  color: rgb(255, 255, 255);
}
footer .sub-item {
  display: none;
}

.footer-logo {
  margin-bottom: 30px;
  width: 70%;
  max-width: 270px;
}

.footer-address {
  text-align: center;
  margin-bottom: 5px;
}

.tel-box {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.2rem;
}
.tel-box img {
  width: 27px;
  margin: 0 10px 0 0;
}

.copy-right {
  text-align: center;
  font-size: 0.7rem;
}
.copy-right .copy-text {
  margin-right: 10px;
}
.copy-right a {
  color: rgb(255, 255, 255);
}

.fv-section {
  position: relative;
  padding: 0;
}
.fv-section .swiper img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 700px;
}
@media (max-width: 767px) {
  .fv-section .swiper img {
    height: 500px;
    -o-object-position: 30%;
       object-position: 30%;
  }
}
.fv-section .contents-wrapper {
  padding-bottom: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 767px) {
  .fv-section .contents-wrapper {
    gap: 40px;
  }
}
.fv-section .contents-wrapper img {
  width: 40%;
  margin: 0;
  max-width: 150px;
}
@media (max-width: 767px) {
  .fv-section .contents-wrapper img {
    width: 70px;
  }
}

.fv-title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 2.5rem;
  font-family: "Zen Old Mincho", serif;
  color: rgb(255, 255, 255);
  text-align: left;
  padding-right: 20px;
}
.fv-title span {
  text-shadow: 0px 0px 20px rgb(4, 59, 90);
}
@media (max-width: 767px) {
  .fv-title {
    padding-right: 0;
    width: 100%;
    font-size: 1.7rem;
    line-height: 2;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}
.fv-title .margin {
  display: block;
  text-align: right;
}
@media (max-width: 767px) {
  .fv-title .margin {
    text-align: left;
  }
}

.fv-text {
  position: relative;
  z-index: 2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgb(255, 255, 255);
  margin-top: -50px;
  font-size: 1.5rem;
  font-family: "Zen Old Mincho", serif;
  color: rgb(4, 35, 137);
  padding: 30px 30px 0 calc((100% - 1000px) / 2);
}
@media (max-width: 1100px) {
  .fv-text {
    padding: 30px 50px 0 50px;
  }
}
@media (max-width: 1023px) {
  .fv-text {
    font-size: 1.3rem;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .fv-text {
    padding: 20px 20px 0;
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .news-section .contents-wrapper.padding-left {
    padding: 0;
  }
}

.top-news-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
}
@media (max-width: 1023px) {
  .top-news-wrapper {
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .top-news-wrapper {
    padding-right: 0;
  }
}
.top-news-wrapper .recruit-box {
  width: 50%;
  margin-top: 50px;
  min-height: 340px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../../images/top-recruit-bg.jpg");
  color: rgb(106, 106, 106);
}
@media (max-width: 1023px) {
  .top-news-wrapper .recruit-box {
    width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .top-news-wrapper .recruit-box {
    min-height: 300px;
  }
}
.top-news-wrapper .recruit-box .inner-box {
  height: 100%;
  background-color: rgba(0, 105, 80, 0.1);
  padding: 40px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
}
@media (max-width: 767px) {
  .top-news-wrapper .recruit-box .inner-box {
    padding: 40px 20px;
    font-size: 0.8rem;
  }
}
.top-news-wrapper .recruit-box .big-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 3rem;
}
@media (max-width: 767px) {
  .top-news-wrapper .recruit-box .big-text {
    margin-top: 10px;
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .top-news-wrapper .grade-btn.pc {
    display: none;
  }
}
.top-news-wrapper .grade-btn.sp {
  display: none;
}
@media (max-width: 767px) {
  .top-news-wrapper .grade-btn.sp {
    display: block;
    width: calc(100% - 40px);
    margin: auto;
  }
}
.top-news-wrapper .news-box {
  padding-bottom: 40px;
  width: calc(50% - 30px);
}
@media (max-width: 1023px) {
  .top-news-wrapper .news-box {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .top-news-wrapper .news-box {
    padding: 0 20px;
  }
}

.about-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: rgb(255, 255, 255);
  background-image: url("../../images/top-about-bg.jpg");
}
@media (max-width: 767px) {
  .about-section {
    padding: 0;
    background-image: none;
    color: rgb(0, 0, 0);
  }
  .about-section .top-title {
    color: rgb(0, 0, 0);
  }
}
.about-section p {
  max-width: 370px;
}
@media (max-width: 767px) {
  .about-section p {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .top-company-section {
    padding-top: 30px;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .top-company-section .top-company-link-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px 15px;
    margin-bottom: 30px;
  }
}
.top-company-section .page-link {
  max-width: 257px;
  width: calc((100% - 100px) / 3);
}
@media (max-width: 1023px) {
  .top-company-section .page-link {
    width: calc((100% - 15px) / 2);
  }
}
@media (max-width: 767px) {
  .top-company-section .page-link {
    width: 100%;
    margin: auto;
  }
}

@media (max-width: 767px) {
  .big-image {
    width: 100vw;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0 calc(-50vw - 50%) 30px calc(-50vw + 50%);
  }
}

.philosophy-wrapper:not(:last-child) {
  margin-bottom: 85px;
}
.philosophy-wrapper .name {
  margin-top: 20px;
  font-weight: 600;
  font-size: 1.4rem;
  font-family: "Zen Old Mincho", serif;
}
.philosophy-wrapper.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0 40px;
}
.philosophy-wrapper.flex.right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.philosophy-wrapper.flex .text-box,
.philosophy-wrapper.flex .image-box {
  -o-object-fit: cover;
     object-fit: cover;
  width: calc((100% - 40px) / 2);
}
@media (max-width: 1023px) {
  .philosophy-wrapper.flex .text-box,
  .philosophy-wrapper.flex .image-box {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .philosophy-wrapper.flex img {
    margin-bottom: 30px;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.philosophy-wrapper .text-inner:not(:last-child) {
  margin-bottom: 20px;
}

.introduction-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../../images/introduction-bg.jpg");
}

.introduction-swiper-wrapper {
  margin-bottom: 50px;
  position: relative;
}
.introduction-swiper-wrapper .swiper-button-next,
.introduction-swiper-wrapper .swiper-button-prev {
  width: 40px;
  height: auto;
  aspect-ratio: 1/1;
}
.introduction-swiper-wrapper .swiper-button-next::after,
.introduction-swiper-wrapper .swiper-button-prev::after {
  width: 100%;
  height: 100%;
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/swiper-arrow.svg");
}
.introduction-swiper-wrapper .swiper-button-next {
  right: 0;
  -webkit-transform: translateX(50%) rotate(180deg);
          transform: translateX(50%) rotate(180deg);
}
.introduction-swiper-wrapper .swiper-button-prev {
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.introduction-table th, .introduction-table td {
  font-size: 1.4rem;
  font-family: "Zen Old Mincho", serif;
  padding: 10px;
  background-color: rgb(255, 255, 255);
  width: 50%;
  border: 1px solid #E6EDF1;
}
@media (max-width: 767px) {
  .introduction-table th, .introduction-table td {
    font-size: 1.1rem;
  }
}
.introduction-table th {
  color: rgb(255, 255, 255);
  background-color: rgb(4, 35, 137);
}
.introduction-table td:first-child {
  padding-left: 60px;
}
@media (max-width: 767px) {
  .introduction-table td:first-child {
    padding-left: 10px;
  }
}
.introduction-table td:last-child {
  text-align: center;
}

.company-data-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px 30px;
}
.company-data-wrapper .data-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.company-data-wrapper .data-box:not(:last-child) {
  margin-bottom: 10px;
}
.company-data-wrapper .data-box .title {
  width: 70px;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
@media (max-width: 767px) {
  .company-data-wrapper .data-box .title {
    width: 60px;
  }
}
.company-data-wrapper .data-box .contents {
  width: calc(100% - 10px - 70px);
}
@media (max-width: 767px) {
  .company-data-wrapper .data-box .contents {
    font-size: 0.9rem;
    width: calc(100% - 10px - 60px);
  }
}

.google-map {
  margin-top: 50px;
  height: 300px;
}

.business-section {
  background-image: url("../../images/business-bg.jpg");
}
@media (max-width: 767px) {
  .business-section {
    padding-top: 30px;
    background-image: none;
  }
}

@media (max-width: 767px) {
  .top-business-section {
    padding-top: 30px;
  }
}
.top-business-section .page-link {
  width: calc((100% - 50px) / 2);
}
@media (max-width: 1023px) {
  .top-business-section .page-link {
    width: calc((100% - 15px) / 2);
  }
}
@media (max-width: 767px) {
  .top-business-section .page-link {
    width: 100%;
  }
}

.business-name {
  margin-bottom: 20px;
  font-weight: 600;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .business-name {
    font-size: 1.2rem;
  }
}

.business-link-wrapper {
  width: 100%;
}
.business-link-wrapper .grade-btn {
  margin-inline: auto;
}
.business-link-wrapper .grade-btn ~ .grade-btn {
  margin-top: 10px;
}

.business3-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../../images/business3-bg.jpg");
}

.business-point-wrapper {
  margin-top: 50px;
  display: -ms-grid;
  display: grid;
  gap: 40px 20px;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  counter-reset: number 0;
}
@media (max-width: 767px) {
  .business-point-wrapper {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
.business-point-wrapper .business-point-box {
  position: relative;
  background: linear-gradient(139.66deg, #042389 3.46%, #7BDFBC 96.54%);
  border-radius: 20px;
  padding: 2px;
  counter-increment: number 1;
}
.business-point-wrapper .business-point-box::before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 55px;
  aspect-ratio: 1/1;
  background: linear-gradient(139.66deg, #042389 3.46%, #7BDFBC 96.54%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgb(255, 255, 255);
  font-size: 1.4rem;
  border-radius: 50%;
  content: counter(number, decimal-leading-zero);
}
.business-point-wrapper .business-point-box .point-inner-box {
  height: 100%;
  padding: 50px 30px 30px;
  border-radius: 19px;
  background-color: rgb(255, 255, 255);
}
@media (max-width: 1023px) {
  .business-point-wrapper .business-point-box .point-inner-box p {
    font-size: 0.9rem;
  }
}
.business-point-wrapper .business-point-box .blue-title {
  text-align: center;
}

.mv-section {
  padding: 50px 0 30px;
  height: 350px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 767px) {
  .mv-section {
    padding-top: 30px;
    height: 550px;
  }
}
.mv-section.recruit {
  background-image: url("../../images/recruit-mv.jpg");
}
@media (max-width: 767px) {
  .mv-section.recruit {
    background-image: url("../../images/recruit-mv-sp.jpg");
  }
}
.mv-section.construction {
  background-image: url("../../images/construction-mv.jpg");
}
@media (max-width: 767px) {
  .mv-section.construction {
    height: 300px;
  }
}
.mv-section.news {
  background-image: url("../../images/news-mv.jpg");
  background-position: 50%;
}
@media (max-width: 767px) {
  .mv-section.news {
    height: 300px;
  }
}
.mv-section.contact {
  background-image: url("../../images/contact-mv.jpg");
}
@media (max-width: 767px) {
  .mv-section.contact {
    height: 300px;
  }
}
.mv-section.contact .mv-title {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
  font-size: 3rem;
}
@media (max-width: 767px) {
  .mv-section.contact .mv-title {
    font-size: 2rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.mv-section.overview {
  background-image: url("../../images/overview-mv.jpg");
}
@media (max-width: 767px) {
  .mv-section.overview {
    height: auto;
    padding-top: 100px;
    padding-bottom: 0;
    background-image: none;
  }
}
.mv-section.overview .contents-wrapper {
  height: 100%;
}
@media (max-width: 767px) {
  .mv-section.overview .contents-wrapper {
    height: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.mv-section.overview .contents-wrapper img {
  width: 88px;
}
@media (max-width: 767px) {
  .mv-section.overview .contents-wrapper img {
    display: none;
  }
}
.mv-section.overview .mv-title {
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
}
@media (max-width: 767px) {
  .mv-section.overview .mv-title {
    color: rgb(0, 0, 0);
    text-shadow: none;
  }
}
.mv-section .contents-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1023px) {
  .mv-section .contents-wrapper {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 20px;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .mv-section .contents-wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
  }
}
.mv-section .contents-wrapper img {
  margin: 0;
  width: 150px;
}
@media (max-width: 1023px) {
  .mv-section .contents-wrapper img {
    width: 100px;
  }
}
@media (max-width: 767px) {
  .mv-section .contents-wrapper img {
    width: 52px;
  }
}

.mv-title {
  padding-right: 20px;
  color: rgb(255, 255, 255);
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
  font-size: 3.5rem;
  text-shadow: 0px 0px 20px rgb(4, 59, 90);
}
@media (max-width: 1023px) {
  .mv-title {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}
@media (max-width: 767px) {
  .mv-title {
    font-size: 2rem;
  }
}
.mv-title.policy {
  text-align: right;
}

.recruit-first-section {
  text-align: center;
  color: rgb(96, 96, 96);
  font-family: "Zen Old Mincho", serif;
}
.recruit-first-section .grade-btn {
  margin-top: 80px;
  margin-inline: auto;
}

.recruit-first-title {
  margin-bottom: 30px;
}
.recruit-first-title .big {
  display: block;
  margin-top: 10px;
  font-size: 3rem;
}

.recruit-type-section {
  padding-bottom: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../../images/business3-bg.jpg");
}

.recruit-type-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 30px 50px 30px 0;
  gap: 50px;
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
}
@media (max-width: 767px) {
  .recruit-type-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 20px;
    gap: 10px;
  }
}
.recruit-type-wrapper:not(:last-child) {
  margin-bottom: 50px;
}
.recruit-type-wrapper .image-box {
  width: 290px;
}
@media (max-width: 767px) {
  .recruit-type-wrapper .image-box {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: auto;
  }
  .recruit-type-wrapper .image-box img {
    height: 165px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    border-radius: 20px;
  }
}
.recruit-type-wrapper .text-box {
  width: calc(100% - 290px - 50px);
}
@media (max-width: 767px) {
  .recruit-type-wrapper .text-box {
    display: contents;
  }
}
@media (max-width: 767px) {
  .recruit-type-wrapper .text-box .text-inner {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.recruit-type-wrapper .type-title {
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgb(106, 106, 106);
  font-size: 2rem;
  font-family: "Zen Old Mincho", serif;
  color: rgb(4, 35, 137);
}
@media (max-width: 767px) {
  .recruit-type-wrapper .type-title {
    text-align: center;
  }
}
.recruit-type-wrapper p {
  color: rgb(96, 96, 96);
}
.recruit-type-wrapper .grade-btn {
  margin-left: auto;
}
@media (max-width: 767px) {
  .recruit-type-wrapper .grade-btn {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 0;
    margin-right: auto;
  }
}

.interview-section {
  position: relative;
  background-color: #E6EDF1;
}

.interview-bg {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.interview-link-wrapper {
  margin-top: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1023px) {
  .interview-link-wrapper {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .interview-link-wrapper {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
.interview-link-wrapper a {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.interview-link-wrapper .name {
  position: absolute;
  bottom: 30px;
  right: 20px;
  z-index: 3;
  color: rgb(255, 255, 255);
  font-size: 1.4rem;
  font-family: "Zen Old Mincho", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1023px) {
  .interview-link-wrapper .name {
    font-size: 1.2rem;
    bottom: 15px;
  }
}
.interview-link-wrapper .name::after {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-image: url("../../images/swiper-arrow.svg");
}
.interview-link-wrapper .number {
  position: absolute;
  bottom: 70px;
  left: 10px;
  z-index: 2;
  width: 35%;
  max-width: 85px;
}
.interview-link-wrapper .bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.interview-contents-wrapper {
  position: relative;
  margin-top: 150px;
  background-color: rgb(255, 255, 255);
  padding: 50px;
  border-radius: 20px;
}
@media (max-width: 1023px) {
  .interview-contents-wrapper {
    padding: 50px 30px;
  }
}
.interview-contents-wrapper .main {
  position: absolute;
  right: 0;
  top: -100px;
  width: 60%;
}
@media (max-width: 1023px) {
  .interview-contents-wrapper .main {
    top: -50px;
  }
}
@media (max-width: 767px) {
  .interview-contents-wrapper .main {
    right: -20px;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.interview-contents-wrapper .number {
  margin: 0 0 20px;
  width: 88px;
}
@media (max-width: 767px) {
  .interview-contents-wrapper .number {
    width: 65px;
  }
}
.interview-contents-wrapper .name {
  margin-bottom: 50px;
}
.interview-contents-wrapper .line-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 2rem;
  color: rgb(4, 35, 137);
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
}
@media (max-width: 767px) {
  .interview-contents-wrapper .line-name {
    padding-bottom: 5px;
    border-bottom: 1px solid rgb(106, 106, 106);
  }
}
.interview-contents-wrapper .line-name::after {
  content: "";
  display: block;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  height: 1px;
  background-color: rgb(106, 106, 106);
}
@media (max-width: 767px) {
  .interview-contents-wrapper .line-name::after {
    display: none;
  }
}
.interview-contents-wrapper .interview-wrapper {
  display: -ms-grid;
  display: grid;
  gap: 30px;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .interview-contents-wrapper .interview-wrapper {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}

.overview-section {
  overflow: hidden;
}
.overview-section .green-title {
  color: rgb(0, 0, 0);
}
.overview-section .philosophy-wrapper {
  position: relative;
}
.overview-section .philosophy-wrapper.right .side-image {
  right: auto;
  left: 80%;
}
.overview-section .side-image {
  position: absolute;
  bottom: 0;
  width: 40%;
  right: 80%;
  z-index: -1;
}
.overview-section .overview-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.overview-section .overview-wrapper:not(:last-child) {
  margin-bottom: 15px;
}
.overview-section .overview-wrapper .title {
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  width: 70px;
  color: rgb(4, 35, 137);
}
@media (max-width: 767px) {
  .overview-section .overview-wrapper .title {
    width: 60px;
  }
}
.overview-section .overview-wrapper .contents {
  width: calc(100% - 70px - 10px);
}
@media (max-width: 767px) {
  .overview-section .overview-wrapper .contents {
    font-size: 0.9rem;
    width: calc(100% - 60px - 10px);
  }
}
.overview-section .overview-wrapper p:not(:last-child) {
  margin-bottom: 10px;
}
.overview-section .grade-btn {
  margin-left: auto;
}

.contect-tel-wrapper {
  background-color: #E6EDF1;
  padding: 20px;
  max-width: 585px;
  margin: 0 auto 80px;
  text-align: center;
}
.contect-tel-wrapper .tel-box {
  margin-bottom: 10px;
}
.contect-tel-wrapper .tel-time span:not(:last-child) {
  margin-right: 10px;
}

.contact-title {
  margin-bottom: 20px;
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
  text-align: center;
}
@media (max-width: 767px) {
  .contact-title {
    font-size: 1.2rem;
  }
}

.contact-first-text {
  margin-bottom: 30px;
  color: rgb(106, 106, 106);
}

.contact-page-section {
  position: relative;
}
.contact-page-section #snow-monkey-form-41 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact-page-section #snow-monkey-form-41[data-screen=confirm] .contect-tel-wrapper,
.contact-page-section #snow-monkey-form-41[data-screen=confirm] .contact-title {
  display: none;
}
.contact-page-section #snow-monkey-form-41[data-screen=confirm] .smf-item__label__text {
  color: rgb(106, 106, 106);
}
.contact-page-section #snow-monkey-form-41 .smf-progress-tracker {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.contact-page-section #snow-monkey-form-41 .smf-form {
  display: contents;
}
.contact-page-section #snow-monkey-form-41 .contect-tel-wrapper {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.contact-page-section #snow-monkey-form-41 .form-wrapper {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.contact-page-section #snow-monkey-form-41 .smf-action {
  margin-top: 50px;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.contact-page-section #snow-monkey-form-41 .smf-action .smf-button-control {
  margin-left: 0;
}
.contact-page-section #snow-monkey-form-41 .contact-top-btn a,
.contact-page-section #snow-monkey-form-41 .smf-button-control__control {
  display: block;
  margin: 0 auto;
  width: 230px;
  background: -webkit-gradient(linear, left top, right top, from(#042389), to(#7BDFBC));
  background: linear-gradient(90deg, #042389 0%, #7BDFBC 100%);
  color: rgb(255, 255, 255);
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: "Zen Old Mincho", serif;
}
.contact-page-section #snow-monkey-form-41 .contact-top-btn a {
  padding: 10px;
  margin: 50px auto 100px;
  text-align: center;
}
.contact-page-section #snow-monkey-form-41 .smf-complete-content {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}
.contact-page-section #snow-monkey-form-41 .bg-image {
  width: 30%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.contact-page-section #snow-monkey-form-41 .smf-system-error-content-ready {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}
@media (max-width: 767px) {
  .contact-page-section #snow-monkey-form-41 .smf-progress-tracker {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.contact-page-section #snow-monkey-form-41 .smf-progress-tracker .smf-progress-tracker__item {
  position: relative;
  padding: 20px 40px 20px 60px;
  background-color: #E6EDF1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 767px) {
  .contact-page-section #snow-monkey-form-41 .smf-progress-tracker .smf-progress-tracker__item {
    width: 100%;
  }
}
.contact-page-section #snow-monkey-form-41 .smf-progress-tracker .smf-progress-tracker__item::before {
  display: none;
}
.contact-page-section #snow-monkey-form-41 .smf-progress-tracker .smf-progress-tracker__item::after {
  top: 50%;
  right: 0;
  left: auto;
  bottom: auto;
  -webkit-transform: translate(50%, -50%) rotate(-45deg);
          transform: translate(50%, -50%) rotate(-45deg);
  width: auto;
  height: 75%;
  aspect-ratio: 1/1;
  background-color: #E6EDF1;
  border-right: 2px solid rgb(255, 255, 255);
  border-bottom: 2px solid rgb(255, 255, 255);
  z-index: 2;
}
@media (max-width: 767px) {
  .contact-page-section #snow-monkey-form-41 .smf-progress-tracker .smf-progress-tracker__item::after {
    display: none;
  }
}
.contact-page-section #snow-monkey-form-41 .smf-progress-tracker .smf-progress-tracker__item .smf-progress-tracker__item__number {
  background-color: transparent;
  color: rgb(0, 0, 0);
}
.contact-page-section #snow-monkey-form-41 .smf-progress-tracker .smf-progress-tracker__item .smf-progress-tracker__item__number::after {
  content: ".";
}
.contact-page-section #snow-monkey-form-41 .smf-progress-tracker .smf-progress-tracker__item .smf-progress-tracker__item__text {
  margin-top: 0;
  color: rgb(0, 0, 0);
}
.contact-page-section #snow-monkey-form-41 .smf-progress-tracker .smf-progress-tracker__item[aria-current=true] {
  background-color: #006950;
}
.contact-page-section #snow-monkey-form-41 .smf-progress-tracker .smf-progress-tracker__item[aria-current=true]::after {
  background-color: #006950;
}
.contact-page-section #snow-monkey-form-41 .smf-progress-tracker .smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__number,
.contact-page-section #snow-monkey-form-41 .smf-progress-tracker .smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__text {
  color: rgb(255, 255, 255);
}
.contact-page-section #snow-monkey-form-41 .wp-block-snow-monkey-forms-item:not(:last-child) {
  margin-bottom: 30px;
}
.contact-page-section #snow-monkey-form-41 .wp-block-snow-monkey-forms-item .smf-item__label {
  margin-bottom: 10px;
}
.contact-page-section #snow-monkey-form-41 .must .smf-item__label__text {
  display: block;
}
.contact-page-section #snow-monkey-form-41 .must .smf-item__label__text::after {
  content: "*必須";
  font-size: 0.7rem;
  vertical-align: top;
  color: rgb(222, 0, 0);
}
.contact-page-section #snow-monkey-form-41 .must .smf-item__label__text strong {
  font-weight: 400;
}
.contact-page-section #snow-monkey-form-41 .text-common {
  display: block;
  border: none;
  background-color: #E6EDF1;
  width: 100%;
  border-radius: 10px;
}

.policy-wrapper:not(:last-child) {
  margin-bottom: 40px;
}
.policy-wrapper.bold-text {
  font-weight: 500;
}
.policy-wrapper .policy-title {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1.1rem;
}
.policy-wrapper p {
  margin-left: 20px;
}
.policy-wrapper p:not(:last-child) {
  margin-bottom: 5px;
}
.policy-wrapper .big-text {
  display: block;
  font-size: 1.1rem;
}

.news-category-wrapper {
  width: 200px;
  margin: 0 0 50px auto;
}
.news-category-wrapper select {
  display: block;
  width: 100%;
}

.nav-wrapper {
  background-color: #E6EDF1;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.post-count {
  color: rgb(106, 106, 106);
}
@media (max-width: 767px) {
  .post-count {
    display: none;
  }
}

.wp-pagenavi {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.wp-pagenavi a, .wp-pagenavi span {
  color: rgb(255, 255, 255);
  border: none;
  outline: none;
  padding: 5px 10px;
  display: inline-block;
}
.wp-pagenavi a:not(.current), .wp-pagenavi span:not(.current) {
  background-color: rgb(66, 147, 205);
}
.wp-pagenavi a.current, .wp-pagenavi span.current {
  color: rgb(106, 106, 106);
}

.news-single-section {
  overflow: hidden;
  position: relative;
}
.news-single-section .side-image {
  position: absolute;
  right: -50px;
  bottom: 0;
  z-index: -1;
  width: 30%;
  max-width: 500px;
}

.single-title-wrapper {
  margin-bottom: 50px;
  border-bottom: 1px solid #E6EDF1;
  padding-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px 10px;
}
.single-title-wrapper .single-title {
  width: 100%;
  font-size: 2rem;
}

.single-mani-wrapper {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 50px;
}
.single-mani-wrapper .image-box {
  width: 50%;
}
@media (max-width: 1023px) {
  .single-mani-wrapper .image-box {
    width: 100%;
  }
}
.single-mani-wrapper .image-box img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  height: auto;
}
.single-mani-wrapper .sub-image {
  margin-top: 10px;
}
.single-mani-wrapper .text-box {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: calc(50% - 50px);
}
@media (max-width: 1023px) {
  .single-mani-wrapper .text-box {
    width: 100%;
  }
}

.single-link-wrapper {
  background-color: #E6EDF1;
  padding: 50px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .single-link-wrapper {
    gap: 20px 10px;
  }
}
.single-link-wrapper li {
  width: 190px;
  font-size: 0.9rem;
}
@media (max-width: 767px) {
  .single-link-wrapper li {
    width: calc((100% - 10px) / 2);
  }
  .single-link-wrapper li.btn {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: auto;
    width: 100%;
  }
}
.single-link-wrapper li:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.single-link-wrapper .green-text {
  margin-bottom: 10px;
  color: #006950;
}
.single-link-wrapper .green-text span {
  margin: 0 10px;
  border-bottom: 1px solid #006950;
}
.single-link-wrapper .post-title {
  color: rgb(0, 0, 0);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.single-link-wrapper .post-date {
  font-size: 0.7rem;
  color: rgb(106, 106, 106);
}

.construction-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.construction-inner:last-child {
  margin-bottom: 80px;
}
.construction-inner .construction-title {
  padding: 15px 10px 15px 30px;
  width: 170px;
  border-bottom: 1px solid rgb(4, 35, 137);
}
@media (max-width: 767px) {
  .construction-inner .construction-title {
    width: 100%;
    border-bottom: none;
    padding: 20px 0 15px;
    color: rgb(4, 35, 137);
  }
}
.construction-inner .contents {
  padding: 15px 30px;
  width: calc(100% - 170px);
  border-bottom: 1px solid #E6EDF1;
}
@media (max-width: 767px) {
  .construction-inner .contents {
    width: 100%;
    padding: 0 0 20px;
    border-color: rgb(4, 35, 137);
  }
}
/*# sourceMappingURL=main.css.map */