@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;
}

html {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 10px;
  color: #2e3d4c;
  scroll-behavior: smooth;
}
@media screen and (max-width: 980px) {
  html {
    min-width: 980px;
  }
}
@media screen and (max-width: 767px) {
  html {
    min-width: 100%;
  }
}

.image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.button {
  width: 240px;
  height: 60px;
  padding: 0 10px;
  margin: 0 auto;
  background-color: transparent;
  border: 1px solid #2e3d4c;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  z-index: 1;
  cursor: pointer;
  font-family: "STIX Two Text", serif;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  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 all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .button {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .button {
    max-width: 240px;
    height: 50px;
    font-size: 15px;
  }
}
.button::after {
  content: "";
  width: 0;
  height: 100%;
  background-color: #2e3d4c;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  z-index: -1;
}
.button:hover, .button.active {
  color: #fff;
  opacity: 1;
}
.button:hover::after, .button.active::after {
  width: 100%;
}
.button.align-left {
  margin-right: initial;
  margin-left: 0;
}
.button.align-right {
  margin-right: 0;
  margin-left: auto;
}
.button.unset-margin {
  margin: initial;
}
.button.fit-container {
  width: 100%;
}
.button.fill-container {
  width: 100%;
  height: 100%;
}
.button.mx-100 {
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .button.mx-100 {
    max-width: 100%;
  }
}
.button.no-border {
  border: none;
}
.button.ff-notosans {
  font-family: "Noto Sans CJK JP", sans-serif;
}
.button.fs-20 {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .button.fs-20 {
    font-size: 15px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .button.has-icon {
    padding-bottom: 10px;
  }
}
.button-icon {
  margin-right: 10px;
  background: no-repeat center/contain;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.button.set-icon,
.button .set-icon {
  position: relative;
}
.button.set-icon::before,
.button .set-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.1s linear;
  transition: 0.1s linear;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
}
.button.set-icon.icon-l::before,
.button .set-icon.icon-l::before {
  left: 0;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}
.button.set-icon.icon-r::before,
.button .set-icon.icon-r::before {
  right: 0;
}
.button.set-icon.icon-caret::before,
.button .set-icon.icon-caret::before {
  width: 8px;
  height: 13px;
  background-image: url("../src/img/icons/icon-caret-blue.png");
}
@media screen and (max-width: 767px) {
  .button.set-icon.icon-caret::before,
  .button .set-icon.icon-caret::before {
    width: 6px;
    height: 10px;
  }
}
.button.set-icon.icon-caret:hover::before, .button.set-icon.icon-caret.active::before,
.button .set-icon.icon-caret:hover::before,
.button .set-icon.icon-caret.active::before {
  background-image: url("../src/img/icons/icon-caret-white.png");
}
.button.set-icon.icon-arrow::before,
.button .set-icon.icon-arrow::before {
  width: 12px;
  height: 13px;
  background-image: url("../src/img/icons/icon-arrow-blue.png");
}
@media screen and (max-width: 767px) {
  .button.set-icon.icon-arrow::before,
  .button .set-icon.icon-arrow::before {
    width: 9px;
    height: 10px;
  }
}
.button.set-icon.icon-arrow:hover::before, .button.set-icon.icon-arrow.active::before,
.button .set-icon.icon-arrow:hover::before,
.button .set-icon.icon-arrow.active::before {
  background-image: url("../src/img/icons/icon-arrow-white.png");
}
.button.set-icon.icon-l::before {
  left: 50px;
}
@media screen and (max-width: 767px) {
  .button.set-icon.icon-l::before {
    left: 25px;
  }
}
.button.set-icon.icon-r::before {
  right: 50px;
}
@media screen and (max-width: 767px) {
  .button.set-icon.icon-r::before {
    right: 25px;
  }
}
.button--solid {
  color: #fff;
}
.button--solid::after {
  width: 100%;
}
.button--solid:hover::after, .button--solid.active::after {
  width: 0;
}
.button--solid.clr-primary:hover, .button--solid.clr-primary.active {
  color: #2e3d4c;
}
.button--white {
  border-color: #fff;
  color: #fff;
}
.button--white::after {
  background-color: #fff;
}
.button--white:hover, .button--white.active {
  color: #2e3d4c;
}
.button--orange {
  border-color: #f28705;
  color: #f28705;
}
.button--orange::after {
  background-color: #f28705;
}
.button--orange:hover, .button--orange.active {
  color: #fff;
}
.button--orange.hc-white:hover, .button--orange.hc-white.active {
  color: #fff;
}
.button--orange.set-icon.icon-caret::before,
.button--orange .set-icon.icon-caret::before {
  background-image: url("../src/img/icons/icon-caret-orange.png");
}
.button--bizflow {
  height: 80px;
  background-color: #fff;
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .button--bizflow {
    height: 60px;
    font-size: 16px;
  }
}
.button--bizflow:hover, .button--bizflow.active {
  color: #fff;
}

.breadcrumbs {
  margin-top: 30px;
  margin-bottom: 100px;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    margin-top: 15px;
    margin-bottom: 50px;
  }
}
.breadcrumbs__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #2e3d4c;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__content {
    font-size: 12px;
  }
}
.breadcrumbs__content a {
  color: rgba(46, 61, 76, 0.5);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.breadcrumbs__content a:hover {
  text-decoration: underline;
  opacity: 0.7;
}
.breadcrumbs__content img {
  width: 6px;
  height: 10px;
  margin: 0 20px;
  font-weight: 700;
  color: rgba(46, 61, 76, 0.5);
}
@media screen and (max-width: 767px) {
  .breadcrumbs__content img {
    width: 6px;
    height: 8.25px;
    margin: 0 10px;
  }
}

.counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.counter .digit-wrap {
  overflow: hidden;
}
.counter .digit-wrap > .count-placeholder,
.counter .digit-wrap > .odometer.odometer-auto-theme,
.counter .odometer.odometer-theme-default,
.counter .count-sub {
  font-family: "STIX Two Text", serif;
  font-weight: 500;
  line-height: 1;
}
.counter--mv > * {
  color: #fff;
}
.counter--mv .digit-wrap {
  height: 45px;
}
@media screen and (max-width: 767px) {
  .counter--mv .digit-wrap {
    height: 29px;
  }
}
.counter--mv .digit-wrap > h3.count-placeholder, .counter--mv .digit-wrap > .odometer.odometer-auto-theme,
.counter--mv .digit-wrap .odometer.odometer-theme-default {
  font-size: 5.7rem;
}
@media screen and (max-width: 767px) {
  .counter--mv .digit-wrap > h3.count-placeholder, .counter--mv .digit-wrap > .odometer.odometer-auto-theme,
  .counter--mv .digit-wrap .odometer.odometer-theme-default {
    font-size: 36px;
  }
}
.counter--mv .count-sub {
  font-size: 1.9rem;
}
@media screen and (max-width: 767px) {
  .counter--mv .count-sub {
    font-size: 12px;
  }
}
.counter--ach > * {
  color: #2e3d4c;
}
.counter--ach .digit-wrap {
  height: 8.3333333333vw;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .counter--ach .digit-wrap {
    height: 113.8333333333px;
  }
}
@media screen and (max-width: 767px) {
  .counter--ach .digit-wrap {
    height: 80px;
  }
}
.counter--ach .digit-wrap > h3.count-placeholder, .counter--ach .digit-wrap > .odometer.odometer-auto-theme,
.counter--ach .digit-wrap .odometer.odometer-theme-default {
  font-size: 10.4166666667vw;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .counter--ach .digit-wrap > h3.count-placeholder, .counter--ach .digit-wrap > .odometer.odometer-auto-theme,
  .counter--ach .digit-wrap .odometer.odometer-theme-default {
    font-size: 142.2916666667px;
  }
}
@media screen and (max-width: 767px) {
  .counter--ach .digit-wrap > h3.count-placeholder, .counter--ach .digit-wrap > .odometer.odometer-auto-theme,
  .counter--ach .digit-wrap .odometer.odometer-theme-default {
    font-size: 100px;
  }
}
.counter--ach .count-sub {
  font-size: 2.6041666667vw;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .counter--ach .count-sub {
    font-size: 35.5729166667px;
  }
}
@media screen and (max-width: 767px) {
  .counter--ach .count-sub {
    font-size: 25px;
  }
}
.counter--map > * {
  color: #f28705;
}
.counter--map .digit-wrap {
  height: 1.6666666667vw;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .counter--map .digit-wrap {
    height: 22.7666666667px;
  }
}
@media screen and (max-width: 767px) {
  .counter--map .digit-wrap {
    height: 4.2666666667vw;
  }
}
.counter--map .digit-wrap > h3.count-placeholder, .counter--map .digit-wrap > .odometer.odometer-auto-theme,
.counter--map .digit-wrap .odometer.odometer-theme-default {
  font-size: 2.0833333333vw;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .counter--map .digit-wrap > h3.count-placeholder, .counter--map .digit-wrap > .odometer.odometer-auto-theme,
  .counter--map .digit-wrap .odometer.odometer-theme-default {
    font-size: 28.4583333333px;
  }
}
@media screen and (max-width: 767px) {
  .counter--map .digit-wrap > h3.count-placeholder, .counter--map .digit-wrap > .odometer.odometer-auto-theme,
  .counter--map .digit-wrap .odometer.odometer-theme-default {
    font-size: 4.9626666667vw;
  }
}
.counter--map .count-sub {
  font-size: 0.7291666667vw;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .counter--map .count-sub {
    font-size: 9.9604166667px;
  }
}
@media screen and (max-width: 767px) {
  .counter--map .count-sub {
    font-size: 1.7333333333vw;
  }
}
.counter--map.counter--big .digit-wrap {
  height: 2.34375vw;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .counter--map.counter--big .digit-wrap {
    height: 32.015625px;
  }
}
@media screen and (max-width: 767px) {
  .counter--map.counter--big .digit-wrap {
    height: 5.6vw;
  }
}
.counter--map.counter--big .digit-wrap > h3.count-placeholder, .counter--map.counter--big .digit-wrap > .odometer.odometer-auto-theme,
.counter--map.counter--big .digit-wrap .odometer.odometer-theme-default {
  font-size: 2.96875vw;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .counter--map.counter--big .digit-wrap > h3.count-placeholder, .counter--map.counter--big .digit-wrap > .odometer.odometer-auto-theme,
  .counter--map.counter--big .digit-wrap .odometer.odometer-theme-default {
    font-size: 40.553125px;
  }
}
@media screen and (max-width: 767px) {
  .counter--map.counter--big .digit-wrap > h3.count-placeholder, .counter--map.counter--big .digit-wrap > .odometer.odometer-auto-theme,
  .counter--map.counter--big .digit-wrap .odometer.odometer-theme-default {
    font-size: 7.1466666667vw;
  }
}
.counter--map.counter--big .count-sub {
  font-size: 0.9895833333vw;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .counter--map.counter--big .count-sub {
    font-size: 13.5177083333px;
  }
}
@media screen and (max-width: 767px) {
  .counter--map.counter--big .count-sub {
    font-size: 2.3733333333vw;
  }
}

.pagebanner {
  width: 100%;
  height: 210px;
  margin-top: 100px;
  background: #eee no-repeat center/cover;
  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;
}
@media screen and (max-width: 767px) {
  .pagebanner {
    height: 132px;
    margin-top: 55px;
  }
}
.pagebanner::after {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #fff), to(transparent));
  background: linear-gradient(90deg, #fff 30%, transparent 100%);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  .pagebanner::after {
    background: -webkit-gradient(linear, left top, right top, color-stop(60%, #fff), to(transparent)) !important;
    background: linear-gradient(90deg, #fff 60%, transparent 100%) !important;
  }
}
.pagebanner__content {
  width: 100%;
  z-index: 1;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .pagebanner__content {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
.pagebanner__decor {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  max-width: 579px;
  width: 30.16%;
}
.pagebanner__decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.title {
  text-align: center;
}
.title h2,
.title .title-main {
  font: 400 3.6rem "Noto Serif JP", serif;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .title h2,
  .title .title-main {
    font-size: 2.4rem;
  }
}
.title .title-sub {
  font-family: "STIX Two Text", serif;
  font-size: 1.6rem;
  line-height: 1;
  color: #f28705;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .title .title-sub {
    font-size: 12px;
    margin-top: 12.5px;
  }
}
.title.align-left {
  text-align: left;
}
.title--white > * {
  color: #fff !important;
}

.amenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .amenu {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
.amenu__box {
  width: 100%;
}
.amenu__box--plain .amenu__box-links {
  border: none;
  padding: 0;
}
.amenu__box-title {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: 44px;
  padding-inline: 2.4rem;
  background: #f28705;
  border-radius: 10px 10px 0 0;
  font: 700 1.8rem "Noto Sans CJK JP", sans-serif;
  color: #fff;
  text-align: center;
  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;
}
.amenu__box-links {
  width: 100%;
  padding: 4rem;
  border: 1px solid #f28705;
  gap: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .amenu__box-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3rem 2.4rem 4rem;
  }
}
.amenu__link {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 23.75%;
  border-bottom: 1px solid #000;
  padding: 0 10px 11px;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .amenu__link {
    width: 100%;
  }
}
.amenu__link::before {
  content: "";
  width: 24px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #f28705 url("../src/img/icons/icon-arrow-down-white.svg") no-repeat center/10px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.amenu__link:hover {
  color: #f28705;
}

.box-block {
  width: 100%;
  display: grid;
  grid-template-columns: [col1-start] 56.67% [col1-end col2-start] 10% [col2-end col3-start] 33.33% [col3-end];
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1560px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .box-block {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
@media screen and (max-width: 767px) {
  .box-block {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }
}
@media screen and (min-width: 768px) {
  .box-block--reverse {
    grid-template-columns: [col1-start] 33.33% [col1-end col2-start] 10% [col2-end col3-start] 56.67% [col3-end];
  }
  .box-block--reverse .box-block__image {
    grid-column: col1-start/col2-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .box-block--reverse .box-block__content {
    grid-column: col2-start/col3-end;
  }
}
.box-block__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .box-block__image {
    grid-row: 1;
    grid-column: col2-start/col3-end;
  }
}
.box-block__image-src {
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .box-block__image-src {
    width: 100%;
  }
}
.box-block__content {
  padding: 40px;
  border: 1px solid #f28705;
  margin-block: 19rem 4rem;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media screen and (min-width: 768px) {
  .box-block__content {
    grid-row: 1;
    grid-column: col1-start/col2-end;
  }
}
@media screen and (max-width: 1280px) {
  .box-block__content {
    margin-top: 14rem;
  }
}
@media screen and (max-width: 767px) {
  .box-block__content {
    padding: 15px;
    margin: -12rem auto 0;
    max-width: calc(100% - 40px);
  }
}
.box-block__inner {
  background: #fff;
  padding: 40px;
  font: 400 1.8rem "Noto Sans CJK JP", sans-serif;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .box-block__inner {
    padding: 20px 15px;
    font-size: 14px;
  }
}
.box-block__title {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .box-block__title {
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .bb {
    overflow: hidden;
  }
}
.bb__content {
  width: 100%;
  display: grid;
  grid-template-columns: 49.17% 9.17% 1fr;
  grid-template-rows: 8rem auto 4rem;
  position: relative;
  z-index: 1;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .bb__content {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
@media screen and (max-width: 767px) {
  .bb__content {
    grid-template-columns: 5.33% 1fr 5.33%;
    grid-template-rows: auto 75px auto;
    padding-inline: 0;
  }
}
.bb__box, .bb__box-inner {
  padding: 4rem;
}
@media screen and (max-width: 767px) {
  .bb__box, .bb__box-inner {
    padding: 2rem;
  }
}
.bb__box {
  grid-area: 2/1/auto/span 2;
  outline: 1px solid #f28705;
}
@media screen and (max-width: 767px) {
  .bb__box {
    grid-area: 2/2/span 2/auto;
  }
}
.bb__box-inner {
  width: 100%;
  height: 100%;
  background: #fff;
}
.bb__box-title {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .bb__box-title {
    margin-bottom: 3rem;
  }
}
.bb__img {
  grid-area: 1/2/span 3/span 2;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .bb__img {
    grid-area: 1/1/span 2/span 3;
  }
}
@media screen and (max-width: 767px) {
  .bb__img img {
    max-width: 100%;
  }
}

.contact-bnr {
  width: 100%;
  height: 30rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#f6d365), to(#ffa230));
  background: linear-gradient(to bottom, #f6d365 0%, #ffa230 100%);
  padding-inline: 4rem;
  gap: 20px;
  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) {
  .contact-bnr {
    height: auto;
    padding: 5rem 5.33%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact-bnr__button {
  width: 100%;
  max-width: 1200px;
  height: 200px;
  border-radius: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .contact-bnr__button {
    height: 150px;
  }
}
.contact-bnr__button:hover {
  color: #f28705;
}
.contact-bnr__button-jp {
  font: 400 3.6rem "Noto Serif JP", serif;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .contact-bnr__button-jp {
    font-size: 2.7rem;
  }
}

.header {
  width: 100%;
  height: 8rem;
  padding-inline: 20px;
  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;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header {
    height: 5.5rem;
    padding-inline: 5.33%;
  }
}
.header--lower {
  background-color: #fff;
}
.header.scrolled {
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 5px rgba(51, 51, 51, 0.05);
          box-shadow: 0 0 10px 5px rgba(51, 51, 51, 0.05);
}
.header.scrolled.open-menu {
  background-color: transparent !important;
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo img {
  height: 60px;
  display: block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__logo img {
    height: 40px;
  }
}
.header__logo h1 {
  font: 700 1.6rem "Noto Sans CJK JP", sans-serif;
  line-height: 1;
  margin-left: 1.0416666667vw;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .header__logo h1 {
    font-size: 13px;
  }
}
.header__nav {
  height: 100%;
  padding-right: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
  margin-right: 2.4rem;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .header__nav {
    gap: 1.8rem;
    margin-right: 1.8rem;
  }
}
.header__links {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
}
@media screen and (max-width: 1440px) {
  .header__links {
    gap: 1.8rem;
  }
}
@media screen and (max-width: 1280px) {
  .header__links {
    display: none;
  }
}
.header__item {
  height: 100%;
  position: relative;
  font-size: 1.6rem;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__item > a {
  position: relative;
}
.header__item > a::before {
  content: "";
  width: 100%;
  max-width: 0;
  height: 1px;
  background-color: #f28705;
  position: absolute;
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  pointer-events: none;
}
.header__item:hover {
  opacity: 1;
}
.header__item:hover > a::before {
  max-width: 100%;
}
.header__item:hover .header__subitems {
  max-height: 900px;
}
.header__subitems {
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: -10px;
  width: 138px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 350ms ease;
  transition: max-height 350ms ease;
}
.header__subitems > a {
  display: block;
  padding: 14px 10px;
  font-size: 1.4rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__subitems > a:hover {
  background: rgba(242, 135, 5, 0.1);
}
.header__subitems .disabled {
  opacity: 0.6;
  cursor: default;
}
.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 1440px) {
  .header__buttons {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .header__buttons {
    display: none;
  }
}
.header__button {
  width: 11.6rem;
  height: 3.2rem;
  border-radius: 16px;
  background: #fff;
  font: 700 1.4rem "Noto Sans CJK JP", sans-serif;
}

.menu {
  width: 565px;
  height: calc(100dvh - 8rem);
  padding-block: 5rem;
  background-color: #2e3d4c;
  position: fixed;
  top: 8rem;
  right: 0;
  z-index: 0;
  -webkit-transition: z-index 0.1s linear 0.6s, -webkit-transform 0.6s ease 0.1s;
  transition: z-index 0.1s linear 0.6s, -webkit-transform 0.6s ease 0.1s;
  transition: transform 0.6s ease 0.1s, z-index 0.1s linear 0.6s;
  transition: transform 0.6s ease 0.1s, z-index 0.1s linear 0.6s, -webkit-transform 0.6s ease 0.1s;
  -webkit-transform: translateX(100%);
          transform: translateX(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;
}
@media screen and (max-width: 767px) {
  .menu {
    top: 5.5rem;
    width: 100%;
    height: calc(100dvh - 5.5rem);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-inline: 5.33%;
  }
}
.menu.active {
  -webkit-transition: z-index 0.1s linear, -webkit-transform 0.6s ease 0.1s;
  transition: z-index 0.1s linear, -webkit-transform 0.6s ease 0.1s;
  transition: transform 0.6s ease 0.1s, z-index 0.1s linear;
  transition: transform 0.6s ease 0.1s, z-index 0.1s linear, -webkit-transform 0.6s ease 0.1s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: 999;
}
.menu__wrap {
  width: 100%;
  max-width: 43rem;
  max-height: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
  overflow-x: hidden;
}
.menu__wrap::-webkit-scrollbar {
  width: 8px;
}
.menu__wrap::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(238, 238, 238, 0.2);
}
.menu__col {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
.menu__item {
  font-weight: 400;
  color: #fff;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .menu__item {
    font-size: 16px;
  }
}
.menu__link {
  display: block;
  text-underline-offset: 4px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.menu__link:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.menu__link.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.menu__sub {
  width: 100%;
  padding-left: 10px;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .menu__sub {
    font-size: 14px;
  }
}
.menu__toggle {
  width: 60px;
  height: 60px;
  border: 1px solid #2e3d4c;
  border-radius: 50%;
  background-color: #2e3d4c;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  top: 40px;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1000;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  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) {
  .menu__toggle {
    -webkit-transform: scale(0.55);
            transform: scale(0.55);
    -webkit-transform-origin: top right;
            transform-origin: top right;
    top: 11.25px;
    right: 5%;
  }
}
.menu__toggle .line-wrap {
  width: 24px;
  height: 20px;
  position: relative;
}
.menu__toggle span {
  width: 100%;
  border-bottom: 1px solid #fff;
  border-radius: 2px;
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  position: absolute;
}
.menu__toggle span:nth-of-type(1) {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.menu__toggle span:nth-of-type(2), .menu__toggle span:nth-of-type(3) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.menu__toggle span:nth-of-type(4) {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.menu__toggle.active .line-wrap > span:nth-of-type(1) {
  top: 50%;
  width: 0%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.menu__toggle.active .line-wrap > span:nth-of-type(2) {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.menu__toggle.active .line-wrap > span:nth-of-type(3) {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.menu__toggle.active .line-wrap > span:nth-of-type(4) {
  bottom: 50%;
  width: 0%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.footer {
  display: grid;
  grid-template-columns: 1fr 40%;
  width: 100%;
  min-height: 500px;
}
@media screen and (max-width: 1080px) {
  .footer {
    grid-template-columns: 1fr;
  }
}
.footer__main, .footer__contact {
  padding-block: 5rem;
  height: 100%;
  -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;
}
.footer__main {
  background: #fff;
}
.footer__contact {
  background: #f2f2f2;
}
.footer__main-wrap {
  display: grid;
  grid-template: "company menu" 1fr "misc menu" auto "copyright menu" auto/1fr auto;
  gap: 2rem 6.4rem;
  width: 100%;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 830px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .footer__main-wrap {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
@media screen and (min-width: 1081px) and (max-width: 1440px) {
  .footer__main-wrap {
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__main-wrap {
    width: 100%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-inline: auto;
    grid-template: "company" auto "menu" 1fr "misc" auto "copyright" auto/1fr;
    gap: 0;
  }
}
.footer__company {
  grid-area: company;
  font-size: 1.4rem;
  line-height: 1.5em;
  letter-spacing: 0.04;
}
@media screen and (max-width: 767px) {
  .footer__company {
    font-size: 14px;
  }
}
.footer__company-name {
  font-weight: 400;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .footer__company-name {
    font-size: 15px;
  }
}
.footer__company-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.footer__dl--contact dt::after {
  content: " : ";
  white-space: pre;
}
.footer__dl--contact a {
  color: #2e3d4c;
}
.footer__dl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__dl-item dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__link {
  text-underline-offset: 4px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer__link:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.footer__link.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.footer__menu {
  grid-area: menu;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.4rem;
  font-size: 1.6rem;
}
@media screen and (min-width: 1081px) and (max-width: 1440px) {
  .footer__menu {
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__menu {
    margin-top: 6.4rem;
    font-size: 18px;
    gap: 2rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer__menu-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .footer__menu-col {
    gap: 27.5px;
  }
}
.footer__menu-sub {
  margin-top: 2rem;
  padding-left: 2rem;
  font-size: 1.4rem;
  color: #2e3d4c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 1081px) and (max-width: 1440px) {
  .footer__menu-sub {
    padding-left: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__menu-sub {
    margin-top: 27.5px;
    padding-left: 22.5px;
    font-size: 15.75px;
  }
}
.footer__contact-heading {
  font: 400 7.2rem "STIX Two Text", serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .footer__contact-heading {
    font-size: 36px;
  }
}
.footer__contact-text {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .footer__contact-text {
    font-size: 15px;
    margin-top: 25px;
  }
}
.footer__contact-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .footer__contact-buttons {
    margin-top: 30px;
  }
}
.footer__button {
  background: #fff;
  font-family: "Noto Sans CJK JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer__button {
    font-size: 15px;
  }
}
.footer__button .button-icon {
  background: #f28705;
  -webkit-mask: no-repeat center/contain;
          mask: no-repeat center/contain;
}
.footer__button:hover .button-icon {
  background: #fff;
}
.footer__button--contact .button-icon {
  width: 2.1rem;
  aspect-ratio: 21/16;
  -webkit-mask-image: url("../src/img/icons/envelope.svg");
          mask-image: url("../src/img/icons/envelope.svg");
}
.footer__button--entry .button-icon {
  width: 2.4rem;
  aspect-ratio: 1/1;
  -webkit-mask-image: url("../src/img/icons/pen.svg");
          mask-image: url("../src/img/icons/pen.svg");
}
.footer__misc {
  grid-area: misc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .footer__misc {
    margin-top: 6.4rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.footer__copyright {
  grid-area: copyright;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 10px;
    margin-top: 1rem;
    text-align: center;
  }
}

.top {
  /* --- MENU SECTION --- */
  /* --- STATS SECTION --- */
  /* --- ACHIEVEMENTS SECTION --- */
  /* --- NEWS SECTION --- */
  /* --- BUSINESS SECTION --- */
  /* --- COMPANY SECTION --- */
}
.top section.full-bg {
  width: 100%;
  height: 100vh;
  max-height: 800px;
  padding: 7.8125vw 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  .top section.full-bg {
    height: auto;
    max-height: initial;
    padding: 50px 0;
    background-attachment: scroll;
  }
}
.top section.full-bg .section-text {
  font-size: 1.6rem;
  color: #fff;
  line-height: 2.25em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .top section.full-bg .section-text {
    font-size: 14px;
    line-height: 2em;
  }
}
.top section.full-bg .section-text:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .top section.full-bg .section-text:not(:first-child) {
    margin-top: 20px;
  }
}
.top section.full-bg .section-text.align-center {
  text-align: center;
}
.top section.full-bg .button {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .top section.full-bg .button {
    margin-top: 25px;
  }
}
.top section.has-deco {
  position: relative;
  overflow-x: hidden;
}
.top section.has-deco .deco-wrap {
  width: 1920px;
  height: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .top section.has-deco .deco-wrap {
    width: 100%;
  }
}
.top section.has-deco .deco {
  position: absolute;
  background: url("../src/img/deco-sun.svg") no-repeat center/100% 100%;
  z-index: -1;
}
.top__menu {
  width: 100%;
  overflow: hidden;
  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 (min-width: 768px) {
  .top__menu {
    height: 100vh;
    min-height: 668px;
    padding-bottom: 5.2083333333vw;
  }
}
.top__menu .deco {
  width: 1000px;
  height: 1035px;
  top: 0;
  left: 1370px;
  -webkit-transform: translateY(-155px);
          transform: translateY(-155px);
}
@media screen and (max-width: 767px) {
  .top__menu .deco {
    width: 198px;
    height: 204.6px;
    right: 0;
    left: initial;
    -webkit-transform: translateX(63.8px);
            transform: translateX(63.8px);
  }
}
.top__menu .deco--stats {
  width: 600px;
  height: 621px;
  top: auto;
  right: 1270px;
  bottom: 0;
  left: auto;
  -webkit-transform: translateY(351px);
          transform: translateY(351px);
}
.top__menu-list {
  width: 100%;
  padding: 4.4270833333vw 0 5.2083333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 66.6666666667vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__menu-list {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .top__menu-list {
    max-width: 853.75px;
  }
}
@media screen and (max-width: 767px) {
  .top__menu-list {
    padding: 50px 5.33% 25px;
  }
}
.top__menu-item {
  width: 15.625vw;
  height: 15.625vw;
  padding: 1.0416666667vw;
  background: #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .top__menu-item {
    width: 213.4375px;
    height: 213.4375px;
  }
}
@media screen and (max-width: 767px) {
  .top__menu-item {
    width: 43.3333333333vw;
    height: 43.3333333333vw;
    padding: 4vw;
  }
}
.top__menu-item::after {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0)), to(#2e3d4c));
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #2e3d4c 100%);
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
}
.top__menu-item:hover {
  opacity: 1;
}
.top__menu-item:hover > img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.top__menu-item img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .top__menu-item:not(:nth-of-type(3n)) {
    margin-right: 2.6041666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .top__menu-item:not(:nth-of-type(3n)) {
    margin-right: 35.5729166667px;
  }
}
@media screen and (min-width: 768px) {
  .top__menu-item:nth-of-type(n+4) {
    margin-top: 5.2083333333vw;
  }
}
@media screen and (min-width: 768px) {
  .top__menu-item:nth-of-type(6n+2) {
    -webkit-transform: translateY(2.6041666667vw);
            transform: translateY(2.6041666667vw);
  }
}
@media screen and (min-width: 768px) {
  .top__menu-item:nth-of-type(6n+3) {
    -webkit-transform: translateY(5.2083333333vw);
            transform: translateY(5.2083333333vw);
  }
}
@media screen and (min-width: 768px) {
  .top__menu-item:nth-of-type(6n+4) {
    -webkit-transform: translateX(66.67%);
            transform: translateX(66.67%);
  }
}
@media screen and (min-width: 768px) {
  .top__menu-item:nth-of-type(6n+5) {
    -webkit-transform: translate(66.67%, 2.6041666667vw);
            transform: translate(66.67%, 2.6041666667vw);
  }
}
@media screen and (min-width: 768px) {
  .top__menu-item:nth-of-type(6n+6) {
    -webkit-transform: translate(66.67%, 5.2083333333vw);
            transform: translate(66.67%, 5.2083333333vw);
  }
}
@media screen and (max-width: 767px) {
  .top__menu-item:nth-of-type(n+3) {
    margin-top: 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .top__menu-item:nth-of-type(odd) {
    margin-right: 2.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .top__menu-item:nth-of-type(even) {
    -webkit-transform: translateY(5.2083333333vw);
            transform: translateY(5.2083333333vw);
  }
}
.top__menu-title {
  font-size: 0.9375vw;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.04em;
  width: 100%;
  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;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .top__menu-title {
    font-size: 12.80625px;
  }
}
@media screen and (max-width: 767px) {
  .top__menu-title {
    font-size: 3.7333333333vw;
  }
}
.top__menu-title span.icon-arrow {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__menu-title span.icon-arrow {
    width: 4vw;
    height: 4vw;
  }
}
.top__menu-title span.icon-arrow::after {
  content: "";
  width: 6px;
  height: 10px;
  background: url("data: img/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAuCAYAAAA/SqkPAAAB20lEQVRYhd2YwW3CQBBFv634alEC6YB0QDqADnAHcPQpufkYOoAOQgdOB6YESkC++hINmlVW1o5ZL7MC8g8Iw9pvd2b8PeukrbIZgG8AUwAHAEVedmdEVgpgx1DSAkDNk4mq1IIazRi+iA3eO36fUPjbKlvHAif00VbZJ4APYQxNbKOd98R84dDueLV9HQG8a8IT+6BX4X2dGX7UAKf2AV/0DcCPYyxFommrbKUBTqQ/2iqjsEuQbV52myhghq847y7dZDaDYPzlvR4ouiIk71fBDJ9y0bkcjVa8zMvOVReiUp9BedmdqKIHzKYeazZeK7Z1zWzysiuigKFkNkFgKJiNV45dsszGdXGTd9FsgldsK8RsVMAIMBs1MMPnnHep6JZ8a+qCMcJs1MEMn3DYpfapiAK2JiCZzSn4drpV/yfUvsWlGmq+nRoBajz88vhUA7OBSA3Doe/dz2mZXET1QD5pI+BqHp7ssciNQC1ACfZ6rQF8/NaH8/k1UESUz63v9e7W3t6toR8sLjaFxtcUxuhxNm1cRJTPuXBOIZlCMPguG3MNUxgNZlOQusO99vsPEr3ZI1OQdnqjTGGMXoTKPXMRHWJASRTqS4NtyXQK0aAGTKZu4DeZgrcA/AKwTO56Q9VKkAAAAABJRU5ErkJggg==") no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .top__menu-title span.icon-arrow::after {
    width: 0.8vw;
    height: 1.3333333333vw;
  }
}
.top__stats {
  width: 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;
}
@media screen and (min-width: 768px) {
  .top__stats {
    min-height: 668px;
    max-height: 100vh;
  }
}
.top__stats .deco {
  width: 600px;
  height: 621px;
  top: 0;
  right: 1270px;
  -webkit-transform: translateY(-270px);
          transform: translateY(-270px);
}
@media screen and (max-width: 767px) {
  .top__stats .deco {
    width: 132px;
    height: 136.4px;
    right: initial;
    left: 5.33%;
    -webkit-transform: initial;
            transform: initial;
  }
}
.top__stats-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__stats-wrap {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
@media screen and (max-width: 767px) {
  .top__stats-wrap {
    padding: 50px 5.33%;
    -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;
  }
}
.top__stats-main {
  width: calc(100% - 720px);
  padding-right: 20px;
  padding-bottom: 95px;
}
@media screen and (max-width: 767px) {
  .top__stats-main {
    width: 100%;
    padding: 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: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.top__stats-main > p {
  font-size: 1.8rem;
  line-height: 2em;
  letter-spacing: 0.04em;
  margin-top: 2.34375vw;
}
@media screen and (max-width: 767px) {
  .top__stats-main > p {
    font-size: 15px;
    line-height: 2em;
    margin-top: 30px;
    -webkit-font-feature-settings: initial;
            font-feature-settings: initial;
    width: 100%;
  }
}
.top__stats-counter > h2 {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.04em;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .top__stats-counter > h2 {
    font-size: 15px;
  }
}
.top__stats-counter .counter {
  margin-top: 1.8229166667vw;
}
@media screen and (max-width: 767px) {
  .top__stats-counter .counter {
    margin-top: 10px;
  }
}
.top__stats-map {
  width: 37.5vw;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .top__stats-map {
    width: 512.25px;
  }
}
@media screen and (max-width: 767px) {
  .top__stats-map {
    width: 100%;
    margin-top: 45px;
  }
}
.top__stats-map img {
  width: 100%;
  display: block;
}
.top__map-marker-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.top__map-marker {
  width: 6.25vw;
  height: 6.25vw;
  padding: 0.5208333333vw;
  border-radius: 50%;
  border: 2px solid #f28705;
  background-color: #fff;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  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 (min-width: 768px) and (max-width: 1300px) {
  .top__map-marker {
    width: 85.375px;
    height: 85.375px;
  }
}
@media screen and (max-width: 767px) {
  .top__map-marker {
    width: 14.8vw;
    height: 14.8vw;
    border-width: 0.2666666667vw;
    padding: 0;
  }
}
.top__map-marker::after {
  content: "";
  width: 1.953125vw;
  height: 1.5625vw;
  background: url("../src/img/icons/deco-bubble.svg") no-repeat center/contain;
  position: absolute;
  bottom: 0.4166666667vw;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  z-index: -1;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .top__map-marker::after {
    width: 26.6796875px;
    height: 21.34375px;
    bottom: 5.6916666667px;
  }
}
@media screen and (max-width: 767px) {
  .top__map-marker::after {
    width: 4.6666666667vw;
    height: 3.7333333333vw;
    bottom: 1.0666666667vw;
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
  }
}
.top__map-marker .marker-title {
  font-weight: 500;
  font-size: 0.8333333333vw;
  color: #f28705;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 0.5208333333vw;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .top__map-marker .marker-title {
    font-size: 11.3833333333px;
  }
}
@media screen and (max-width: 767px) {
  .top__map-marker .marker-title {
    font-size: 2vw;
    margin-bottom: 5px;
  }
}
.top__map-marker--big {
  width: 9.375vw;
  height: 9.375vw;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .top__map-marker--big {
    width: 128.0625px;
    height: 128.0625px;
  }
}
@media screen and (max-width: 767px) {
  .top__map-marker--big {
    width: 83.75px;
    height: 83.75px;
  }
}
.top__map-marker--big::after {
  width: 2.6041666667vw;
  height: 2.0833333333vw;
  bottom: 0.625vw;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .top__map-marker--big::after {
    width: 35.5729166667px;
    height: 28.4583333333px;
    bottom: 8.5375px;
  }
}
@media screen and (max-width: 767px) {
  .top__map-marker--big::after {
    width: 23.25px;
    height: 18.5px;
    bottom: 1.6vw;
  }
}
.top__map-marker--big .marker-title {
  font-size: 1.25vw;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .top__map-marker--big .marker-title {
    font-size: 17.075px;
  }
}
@media screen and (max-width: 767px) {
  .top__map-marker--big .marker-title {
    font-size: 2.9773333333vw;
  }
}
.top__map-marker.marker-pos1 {
  top: 7.2916666667vw;
  left: 5.9895833333vw;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .top__map-marker.marker-pos1 {
    top: 99.6041666667px;
    left: 81.8177083333px;
  }
}
@media screen and (max-width: 767px) {
  .top__map-marker.marker-pos1 {
    top: 17.3333333333vw;
    left: 14.2666666667vw;
  }
}
.top__map-marker.marker-pos2 {
  top: 2.8125vw;
  right: 12.96875vw;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .top__map-marker.marker-pos2 {
    top: 38.41875px;
    right: 177.153125px;
  }
}
@media screen and (max-width: 767px) {
  .top__map-marker.marker-pos2 {
    top: 6.6666666667vw;
    right: 30.9333333333vw;
  }
}
.top__map-marker.marker-pos3 {
  top: 9.375vw;
  right: 6.1458333333vw;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .top__map-marker.marker-pos3 {
    top: 128.0625px;
    right: 83.9520833333px;
  }
}
@media screen and (max-width: 767px) {
  .top__map-marker.marker-pos3 {
    top: 22.4vw;
    right: 14.8vw;
  }
}
.top__map-marker.marker-pos4 {
  top: 13.6458333333vw;
  left: 14.1666666667vw;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .top__map-marker.marker-pos4 {
    top: 186.4020833333px;
    left: 193.5166666667px;
  }
}
@media screen and (max-width: 767px) {
  .top__map-marker.marker-pos4 {
    top: 32.6666666667vw;
    left: 33.8666666667vw;
  }
}
.top__map-marker.marker-pos5 {
  bottom: 16.40625vw;
  left: 9.4270833333vw;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .top__map-marker.marker-pos5 {
    bottom: 224.109375px;
    left: 128.7739583333px;
  }
}
@media screen and (max-width: 767px) {
  .top__map-marker.marker-pos5 {
    bottom: 39.2vw;
    left: 22.5333333333vw;
  }
}
.top__map-marker.marker-pos6 {
  bottom: 9.84375vw;
  left: 13.2291666667vw;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .top__map-marker.marker-pos6 {
    bottom: 134.465625px;
    left: 180.7104166667px;
  }
}
@media screen and (max-width: 767px) {
  .top__map-marker.marker-pos6 {
    bottom: 23.3333333333vw;
    left: 31.3333333333vw;
  }
}
.top__map-marker.marker-pos7 {
  bottom: 10.15625vw;
  right: 4.4270833333vw;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .top__map-marker.marker-pos7 {
    bottom: 138.734375px;
    right: 60.4739583333px;
  }
}
@media screen and (max-width: 767px) {
  .top__map-marker.marker-pos7 {
    bottom: 24.2666666667vw;
    right: 10.4vw;
  }
}
.top__ach {
  width: 100%;
  margin-top: 7.8125vw;
  padding: 80px 0;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f5f5f6), color-stop(50%, #f5f5f6), color-stop(50%, #fff), to(#fff));
  background: linear-gradient(#f5f5f6 0, #f5f5f6 50%, #fff 50%, #fff 100%);
}
@media screen and (max-width: 767px) {
  .top__ach {
    margin-top: 0;
    padding: 50px 0;
    background: #f5f5f6;
  }
}
.top__ach > *:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top__ach > *:not(:last-child) {
    margin-bottom: 50px;
  }
}
.top__ach-cat {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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__ach-cat {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
@media screen and (max-width: 767px) {
  .top__ach-cat {
    gap: 15px 30px;
  }
}
.top__ach-cat > * {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.04em;
  display: inline-block;
  opacity: 0.5;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .top__ach-cat > * {
    font-size: 15px;
  }
}
.top__ach-cat > *:not(:last-child) {
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .top__ach-cat > *:not(:last-child) {
    margin-right: 0;
  }
}
.top__ach-cat .active {
  font-weight: 700;
  position: relative;
  opacity: 1;
}
.top__ach-cat .active::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #f28705;
  position: absolute;
  bottom: -5px;
  left: 0;
}
.top__ach-content {
  width: 100%;
  height: 335px;
  position: relative;
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .top__ach-content {
    height: auto;
    padding-inline: 5.33%;
  }
}
.top__ach-slider {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .top__ach-slider {
    position: static;
  }
}
.top__ach-slider.js-tab {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .top__ach-slider.js-tab {
    display: none;
  }
}
.top__ach-slider.js-tab.active {
  opacity: 1;
  pointer-events: initial;
}
@media screen and (max-width: 767px) {
  .top__ach-slider.js-tab.active {
    display: block;
  }
}
.top__news {
  padding: 50px 0 130px;
}
@media screen and (max-width: 767px) {
  .top__news {
    padding: 50px 0;
  }
}
.top__news-wrap {
  width: 100%;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__news-wrap {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
.top__news-content {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .top__news-content {
    margin-top: 30px;
  }
}
.top__news-content .button {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .top__news-content .button {
    margin-top: 50px;
  }
}
.top__insta {
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .top__insta {
    padding-bottom: 50px;
  }
}
.top__insta-ctr {
  width: 100%;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__insta-ctr {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
.top__insta-button {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .top__insta-button {
    margin-top: 50px;
  }
}
.top__business {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(46, 61, 76, 0.5)), to(rgba(46, 61, 76, 0.5))), url("../src/img/top-business-bg.jpg");
  background: linear-gradient(rgba(46, 61, 76, 0.5), rgba(46, 61, 76, 0.5)), url("../src/img/top-business-bg.jpg");
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__business {
    padding-top: 30.5px !important;
  }
}
.top__business-wrap {
  height: 100%;
  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-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__business-wrap {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
@media screen and (max-width: 767px) {
  .top__business-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.top__business-main {
  width: 50%;
  height: 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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .top__business-main {
    width: 100%;
    height: auto;
  }
}
.top__business-details {
  width: 46.67%;
}
@media screen and (max-width: 767px) {
  .top__business-details {
    width: 100%;
    margin-bottom: 30.5px;
  }
}
.top__business-details .circle-wrap {
  width: 632px;
  height: 573px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__business-details .circle-wrap {
    width: 99.2vw;
    height: 89.6vw;
    -webkit-transform: translateX(-5.33%);
            transform: translateX(-5.33%);
  }
}
.top__business-details .circle {
  width: 322px;
  height: 322px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  border-radius: 50%;
  position: absolute;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
  opacity: 0;
  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__business-details .circle {
    width: 50.9333333333vw;
    height: 50.9333333333vw;
    opacity: 1;
  }
}
.top__business-details .circle.active {
  opacity: 1;
}
.top__business-details .circle.pos1 {
  background-image: url("../src/img/circle-1.png");
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.top__business-details .circle.pos2 {
  background-image: url("../src/img/circle-2.png");
  bottom: 0;
  left: 0;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.top__business-details .circle.pos3 {
  background-image: url("../src/img/circle-3.png");
  bottom: 0;
  right: 0;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.top__business-details span {
  font-weight: 500;
  font-size: 2.4rem;
  color: rgba(46, 61, 76, 0.7);
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top__business-details span {
    font-size: 14.4px;
  }
}
.top__company {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(46, 61, 76, 0.3)), to(rgba(46, 61, 76, 0.3))), url("../src/img/top-company-bg.jpg");
  background: linear-gradient(rgba(46, 61, 76, 0.3), rgba(46, 61, 76, 0.3)), url("../src/img/top-company-bg.jpg");
}
@media screen and (max-width: 767px) {
  .top__company {
    padding: 92.5px 0 !important;
  }
}
.top__company-wrap {
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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__company-wrap {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}

.mv {
  width: 100%;
  height: 100vh;
  min-height: 657px;
  background: #8bcff6 url("../src/img/mv.jpg") no-repeat center/cover;
  background-attachment: fixed;
  padding: 0 2.0833333333vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv {
    min-height: initial;
    background-attachment: scroll;
    background-position: bottom;
  }
}
.mv__wrap {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1488px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .mv__wrap {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
.mv__content {
  width: 100%;
  padding-top: 27.8vh;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv__content {
    padding-top: 40vw;
  }
}
.mv__content > h2 {
  font: 500 4.8rem "Noto Serif JP", serif;
  line-height: 1.75em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .mv__content > h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 340px) {
  .mv__content > h2 {
    font-size: 22px;
    letter-spacing: 0.03em;
  }
}
.mv__content p {
  font-size: 1.8rem;
  line-height: 2em;
  letter-spacing: 0.04em;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
  margin-top: 1.0416666667vw;
}
@media screen and (max-width: 767px) {
  .mv__content p {
    font-size: 14px;
    line-height: 2em;
    width: 99%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 340px) {
  .mv__content p {
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    width: 100%;
  }
}
.mv__content svg {
  width: 33.0208333333vw;
  height: 12.9166666667vw;
}
@media screen and (max-width: 767px) {
  .mv__content svg {
    width: 86.6666666667vw;
    height: 50.4vw;
  }
}
.mv__counter {
  width: 200px;
  height: 200px;
  background-color: #f28705;
  border-radius: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  bottom: 9.26vh;
  right: 5.2083333333vw;
  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) {
  .mv__counter {
    width: 110px;
    height: 110px;
    bottom: 5.3333333333vw;
    right: 5.33%;
  }
}
.mv__counter h2 {
  font-weight: 500;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .mv__counter h2 {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .mv__counter h2 {
    margin-bottom: 7.5px;
  }
}
.mv__scroll {
  width: 100%;
  padding: 0 2.0833333333vw;
  position: absolute;
  bottom: 4vh;
  left: 0;
}
@media screen and (max-width: 767px) {
  .mv__scroll {
    width: initial;
    padding: 0;
    bottom: 5.3333333333vw;
    left: 5.33%;
  }
}
.mv__scroll .scroll-bar {
  width: 10px;
  height: 150px;
  margin: 0 auto;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, white 100%);
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .mv__scroll .scroll-bar {
    width: 6.25px;
    height: 93.75px;
    border-radius: 3.375px;
  }
}
.mv__scroll .scroll-text {
  font-family: "STIX Two Text", serif;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
  text-align: center;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .mv__scroll .scroll-text {
    font-size: 10px;
    margin-top: 7.5px;
  }
}

.achievements__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.achievements__item {
  width: 47.5%;
  display: block;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .achievements__item {
    width: 100%;
  }
}
.achievements__item .item-link:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.achievements__item:nth-child(n+3) {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .achievements__item:not(:first-of-type) {
    margin-top: 50px;
  }
}
.achievements__item-image {
  position: relative;
  display: block;
  width: 100%;
  height: 190px;
  background-color: #f5f5f6;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .achievements__item-image {
    height: 44.6666666667vw;
  }
}
.achievements__item-image img {
  display: block;
  max-width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.achievements__item-image img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.achievements__item-image::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  border: 0 solid #17367f;
  background: rgba(23, 54, 127, 0.6);
  opacity: 0;
  -webkit-transition: opacity 0.3s, width 0.8s 0.1s, height 0.8s 0.1s, border-width 0.4s 0.1s;
  transition: opacity 0.3s, width 0.8s 0.1s, height 0.8s 0.1s, border-width 0.4s 0.1s;
}
.achievements__item-image:hover::after {
  opacity: 1;
  width: 440px;
  height: 440px;
  border-width: 120px;
}
.achievements__item-image:hover .achievements__item-details {
  opacity: 1;
  letter-spacing: 0.25em;
}
.achievements__item-details {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0;
  text-align: center;
  opacity: 0;
  z-index: 10000;
  line-height: 1.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.achievements__item-content {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .achievements__item-content {
    margin-top: 15px;
  }
}
.achievements__item-content .ach-date {
  font-family: "STIX Two Text", serif;
  font-size: 1.6rem;
  color: rgba(46, 61, 76, 0.5);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .achievements__item-content .ach-date {
    font-size: 16px;
  }
}
.achievements__item-content h2 {
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
  -webkit-line-clamp: 2;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .achievements__item-content h2 {
    font-size: 20px;
    line-height: 1.5em;
    margin-top: 12.5px;
  }
}
.achievements__item-cat {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .achievements__item-cat {
    margin-top: 10px;
  }
}
.achievements__item-cat p {
  font-size: 1.4rem;
  color: #f28705;
  line-height: 1.7142857143em;
  letter-spacing: 0.04em;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .achievements__item-cat p {
    font-size: 14px;
  }
}
.achievements__item-cat p::before {
  content: "＃";
}
.achievements__item-cat p:not(:last-of-type) {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .achievements__item-cat p:not(:last-of-type) {
    margin-right: 20px;
  }
}

.business__list {
  margin-bottom: 60px;
  counter-reset: item;
}
@media screen and (max-width: 767px) {
  .business__list {
    margin-bottom: 30px;
  }
}
.business__list > li {
  counter-increment: item;
}
.business__list > li span.counter-item::before {
  content: counter(item, decimal-leading-zero);
  display: block;
}
.business__item {
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .business__item {
    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;
  }
}
.business__item:nth-child(1) .business__item-block {
  margin-left: auto;
  padding-left: 120px;
}
@media screen and (max-width: 767px) {
  .business__item:nth-child(1) .business__item-block {
    padding-left: calc(5.33% + 15px);
  }
}
.business__item:nth-child(1) .business__item-block::before {
  left: unset;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.business__item:nth-child(1) .business__item-image-wrap {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.business__item--inner {
  visibility: hidden;
  display: none;
}
.business__item-image-wrap {
  width: 1920px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .business__item-image-wrap {
    width: 100%;
    height: auto;
    position: static;
    -webkit-transform: initial;
            transform: initial;
  }
}
.business__item-image {
  width: 750px;
  height: 750px;
}
@media screen and (max-width: 767px) {
  .business__item-image {
    width: 100%;
    height: 53.3333333333vw;
  }
}
.business__item-content {
  width: 100%;
  height: 750px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .business__item-content {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
@media screen and (max-width: 767px) {
  .business__item-content {
    padding: 0;
    height: auto;
  }
}
.business__item-block {
  width: 810px;
  height: 580px;
  background-color: #f5f5f6;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.8rem;
  line-height: 2em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .business__item-block {
    width: 100%;
    height: auto;
    padding: 60px 5.33% 60px calc(5.33% + 15px);
    font-size: 14px;
  }
}
.business__item-block::before {
  content: "";
  width: 100%;
  height: 580px;
  background-color: #f5f5f6;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.business__item-block > p.nl {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .business__item-block > p.nl {
    margin-top: 20px;
  }
}
.business__item-title {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .business__item-title {
    margin-bottom: 20px;
  }
}
.business__item-title span.counter-item {
  height: 80px;
  font: 500 10rem "STIX Two Text", serif;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .business__item-title span.counter-item {
    height: 50px;
    font-size: 55px;
  }
}
.business__item-title span.counter-item--electrical::before {
  content: "02" !important;
}
.business__item-title > h2 {
  font: 500 3.6rem "Noto Serif JP", serif;
  letter-spacing: 0.04em;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .business__item-title > h2 {
    font-size: 23px;
    margin-left: 15px;
  }
}
.business__item-title > p {
  font: 500 6.2rem "STIX Two Text", serif;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.04em;
  position: absolute;
  top: -30px;
  left: -30px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .business__item-title > p {
    font-size: 30px;
    letter-spacing: 0;
    top: -15px;
    left: -15px;
  }
}
.business__button {
  margin-top: 52px;
}
@media screen and (max-width: 767px) {
  .business__button {
    margin-top: 26px;
  }
}
.business__flow {
  width: 100%;
  margin-top: 100px;
  padding: 55px 40px;
  background: url("../src/img/business-flow.jpg") no-repeat center/cover;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  .business__flow {
    margin-top: 0;
    padding: 27.5px 0;
  }
}
.business__flow--electrical {
  background-image: url("../src/img/business-flow-electrical.jpg");
}
.business__flow-content {
  width: 100%;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .business__flow-content {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
.business__flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .business__flow-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.business__flow-item {
  width: 590px;
  min-height: 285px;
  padding: 35px;
  background-color: #fff;
  border: 1px solid #f28705;
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.04em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .business__flow-item {
    width: 100%;
    min-height: initial;
    padding: 20px;
    font-size: 13px;
  }
}
.business__flow-item:nth-of-type(n+3) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .business__flow-item:not(:first-of-type) {
    margin-top: 15px;
  }
}
.business__flow-title {
  margin-bottom: 35px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .business__flow-title {
    margin-bottom: 17.5px;
    padding: 0 10px;
  }
}
.business__flow-title .icon-image {
  width: 80px;
  height: 80px;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .business__flow-title .icon-image {
    width: 60px;
    height: 60px;
  }
}
.business__flow-title .icon-image > img {
  height: 100%;
}
.business__flow-button {
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .business__flow-button {
    margin-top: 20px;
  }
}
.business__flow-button .button:hover > span::before {
  background-image: url("../src/img/icons/icon-caret-white.png");
}
.business__flow-button .icon-r {
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .business__flow-button .icon-r {
    padding-right: 20px;
  }
}

.company {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .company {
    margin-bottom: 50px;
  }
}
.company > section {
  width: 100%;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .company > section {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
.company > section.fullwidth {
  max-width: inherit;
}
@media screen and (max-width: 767px) {
  .company > section.fullwidth {
    padding: 0;
  }
}
.company > section:not(:last-of-type) {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .company > section:not(:last-of-type) {
    margin-bottom: 50px;
  }
}
.company__box {
  width: 100%;
  min-height: 500px;
  padding: 180px 40px 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .company__box {
    min-height: initial;
    padding: 0;
  }
}
.company__box--reverse .company__box-image-wrap {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.company__box--reverse .company__box-content {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.company__box-image-wrap {
  width: 1920px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  top: 6%;
  left: 75%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .company__box-image-wrap {
    width: 100%;
    position: static;
    -webkit-transform: initial;
            transform: initial;
  }
}
.company__box-image-wrap--main {
  width: 40%;
  left: auto;
  right: 4%;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .company__box-image-wrap--main {
    width: 100%;
  }
}
.company__box-image {
  width: 1200px;
  height: 100%;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .company__box-image {
    width: 100%;
    height: auto;
  }
}
.company__box-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1410px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .company__box-content {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
@media screen and (max-width: 767px) {
  .company__box-content {
    margin-top: -75px;
  }
}
.company__box-block {
  width: 920px;
  padding: 90px 60px;
  border: 1px solid #f28705;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .company__box-block {
    padding: 45px 30px;
  }
}
.company__box-block::before {
  content: "";
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .company__box-block::before {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }
}
.company__message-text {
  font-size: 1.8rem;
  line-height: 2.1111111111em;
  letter-spacing: 0.04em;
  text-align: justify;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .company__message-text {
    font-size: 14px;
    margin-top: 15px;
  }
}
.company__message-rep {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .company__message-rep {
    margin-top: 15px;
    font-size: 14px;
  }
}
.company__message-rep h2 {
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .company__message-rep h2 {
    font-size: 17.5px;
  }
}
.company__profile-content {
  margin-top: 30px;
}
.company__profile-content .company__box-content {
  max-width: 1260px;
}
.company__profile-content .company__box-block {
  width: 690px;
  padding: 60px 80px;
}
@media screen and (max-width: 767px) {
  .company__profile-content .company__box-block {
    width: 100%;
    padding: 26.4px 35.2px;
  }
}
.company__profile-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  line-height: 2.1111111111em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .company__profile-info {
    font-size: 14px;
  }
}
.company__profile-info label {
  font-weight: 500;
  width: 80px;
}
@media screen and (max-width: 767px) {
  .company__profile-info label {
    width: 70px;
  }
}
.company__profile-info .profile-details {
  width: calc(100% - 80px);
  padding-left: 26px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company__profile-info .profile-details {
    width: calc(100% - 70px);
    padding-left: 20.24px;
  }
}
.company__profile-info .profile-details::before {
  content: "";
  width: 16px;
  height: 1px;
  background-color: #2e3d4c;
  position: absolute;
  top: 17px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .company__profile-info .profile-details::before {
    width: 11.44px;
  }
}
.company__profile-info:not(:last-of-type) {
  margin-bottom: 17.2px;
}
@media screen and (max-width: 767px) {
  .company__profile-info:not(:last-of-type) {
    margin-bottom: 7.5px;
  }
}
.company__philo-list {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .company__philo-list {
    margin-top: 40px;
  }
}
.company__philo-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.company__philo-item:not(:last-of-type) {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .company__philo-item:not(:last-of-type) {
    margin-bottom: 22.5px;
  }
}
.company__philo-item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.company__philo-item:nth-of-type(even) .company__philo-item-details {
  margin-right: initial;
  margin-left: 15px;
  padding-right: initial;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .company__philo-item:nth-of-type(even) .company__philo-item-details {
    margin-left: 7.5px;
    padding-left: 5px;
  }
}
.company__philo-item:nth-of-type(even) .company__philo-item-details::before {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-100%) rotate(-45deg);
          transform: translateX(-100%) rotate(-45deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
}
.company__philo-item:nth-of-type(even) .company__philo-item-details > h2 {
  text-align: left;
}
.company__philo-item-content {
  width: 685px;
}
@media screen and (max-width: 767px) {
  .company__philo-item-content {
    width: 100%;
  }
}
.company__philo-item-icon {
  width: 170px;
  height: 170px;
  background-color: #fff;
  border: 3px solid #f2f2f2;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company__philo-item-icon {
    width: 88px;
    height: 88px;
    border-width: 2px;
  }
}
.company__philo-item-icon .icon-wrap {
  width: 130px;
  height: 130px;
  background-color: #f28705;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .company__philo-item-icon .icon-wrap {
    width: 74.8px;
    height: 74.8px;
  }
}
.company__philo-item-icon .icon-image {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .company__philo-item-icon .icon-image {
    width: 48.4px;
    height: 48.4px;
  }
}
.company__philo-item-details {
  width: 500px;
  margin-top: 10px;
  margin-right: 15px;
  padding-top: 30px;
  padding-right: 20px;
  border-top: 2px solid #f2f2f2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company__philo-item-details {
    width: calc(100% - 100px);
    margin-top: 5px;
    margin-right: 7.5px;
    padding-top: 15px;
    padding-right: 5px;
  }
}
.company__philo-item-details::before {
  content: "";
  width: 43px;
  height: 2px;
  background-color: #f2f2f2;
  position: absolute;
  top: -2px;
  right: 0;
  -webkit-transform: translateX(100%) rotate(45deg);
          transform: translateX(100%) rotate(45deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
.company__philo-item-details > h2 {
  font: 500 3.6rem "Noto Serif JP", serif;
  color: #f28705;
  letter-spacing: 0.04em;
  text-align: right;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .company__philo-item-details > h2 {
    font-size: 23px;
    margin-bottom: 12.5px;
  }
}
.company__philo-item-details > p {
  font-size: 1.8rem;
  line-height: 2.1111111111em;
  letter-spacing: 0.04em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .company__philo-item-details > p {
    font-size: 14px;
  }
}
.company__banner {
  background: url("../src/img/company-banner.jpg") no-repeat center/cover;
  background-attachment: fixed;
  height: 400px;
}
@media screen and (max-width: 767px) {
  .company__banner {
    height: 53.3333333333vw;
  }
}
.company__access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767px) {
  .company__access {
    display: block;
  }
}
.company__access .title {
  height: 100%;
}
.company__access > *:not(:last-child) {
  margin-right: 60px;
}
@media screen and (max-width: 767px) {
  .company__access > *:not(:last-child) {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.company__access-ctr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .company__access-ctr {
    -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: 30px;
  }
}
.company__access-ctr:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .company__access-ctr:not(:last-child) {
    margin-bottom: 30px;
  }
}
.company__access-map {
  width: 500px;
  height: 350px;
}
@media screen and (max-width: 767px) {
  .company__access-map {
    width: 100%;
    height: 80vw;
  }
}
.company__access-map iframe {
  width: 100%;
  height: 100%;
}
.company__access-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: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.8rem;
  line-height: 2.1111111111em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .company__access-details {
    font-size: 14px;
  }
}
.company__access-details .icon-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.company__access-details .icon-image {
  width: 14px;
  height: 20px;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .company__access-details .icon-image {
    margin-right: 7.5px;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
.company__nav {
  margin-bottom: 0 !important;
  gap: 20px;
  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) {
  .company__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 50px !important;
  }
}
.company__nav-link {
  position: relative;
  width: 23.75%;
  border-bottom: 1px solid #999;
  padding: 0 10px 11px;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .company__nav-link {
    width: 100%;
  }
}
.company__nav-link > span {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #f28705;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.company__nav-link > span::before {
  content: "";
  width: 10px;
  height: 100%;
  background: url("../src/img/icons/icon-arrow-down-white.svg") center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.company__mvv-list {
  margin-top: 57px;
}
@media screen and (max-width: 767px) {
  .company__mvv-list {
    margin-top: 30px;
  }
}
.company__mvv-item:not(:last-child) {
  margin-bottom: 54px;
}
@media screen and (max-width: 767px) {
  .company__mvv-item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.company__mvv-title {
  width: 160px;
  height: 40px;
  padding-top: 4px;
  background-color: #f28705;
  color: #fff;
  font-size: 2.4rem;
  font-family: "STIX Two Text", serif;
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
  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;
}
@media screen and (max-width: 767px) {
  .company__mvv-title {
    font-size: 17px;
    height: 30px;
    width: 130px;
    margin-bottom: 20px;
    padding-top: 3px;
  }
}
.company__mvv-title::after {
  content: "";
  border-top: 40px solid transparent;
  border-left: 40px solid #f28705;
  position: absolute;
  right: -40px;
  top: 0;
}
@media screen and (max-width: 767px) {
  .company__mvv-title::after {
    border-top: 30px solid transparent;
    border-left: 31px solid #f28705;
    right: -30.5px;
  }
}
.company__mvv-desc, .company__mvv-value-title {
  font-size: 3rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .company__mvv-desc, .company__mvv-value-title {
    font-size: 20px;
  }
}
.company__mvv-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .company__mvv-value {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .company__mvv-value-item {
    padding: 20px 0;
  }
}
.company__mvv-value-item:first-child, .company__mvv-value-item:last-child {
  max-width: 31.67%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .company__mvv-value-item:first-child, .company__mvv-value-item:last-child {
    max-width: 100%;
  }
}
.company__mvv-value-item:not(:first-child) {
  padding-left: 60px;
}
@media screen and (max-width: 767px) {
  .company__mvv-value-item:not(:first-child) {
    padding-left: 0;
  }
}
.company__mvv-value-item:not(:last-child) {
  border-right: 1px solid #969ea6;
  padding-right: 46px;
}
@media screen and (max-width: 767px) {
  .company__mvv-value-item:not(:last-child) {
    padding: 20px 0;
    border-right: none;
    border-bottom: 1px solid #969ea6;
  }
}
.company__mvv-value-title {
  text-align: center;
  color: #f28705;
  margin-bottom: 14px;
}
.company__mvv-value-desc {
  font-size: 1.8rem;
  line-height: 2em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .company__mvv-value-desc {
    font-size: 14px;
  }
}

.contact {
  width: 100%;
  margin-bottom: 100px;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .contact {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
@media screen and (max-width: 767px) {
  .contact {
    margin-bottom: 50px;
  }
}
.contact * {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .contact * {
    font-size: 14px;
  }
}
.contact__note {
  margin-bottom: 60px;
  padding: 32px;
  border: 1px solid #f2f2f2;
  line-height: 1.8333333333em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__note {
    margin-bottom: 30px;
    padding: 16px;
  }
}
.contact__note .fs-19 {
  font-size: 1.9rem;
}
@media screen and (max-width: 767px) {
  .contact__note .fs-19 {
    font-size: 14.5px;
  }
}
.contact__note span.asterisk {
  color: #f28705;
  margin-right: 5px;
}
.contact__flow {
  counter-reset: step;
  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;
}
.contact__flow-step {
  counter-increment: step;
  width: 205px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: rgba(46, 61, 76, 0.5);
  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) {
  .contact__flow-step {
    width: 100px;
  }
}
.contact__flow-step:not(:last-of-type) .deco-circle::after {
  display: block;
}
.contact__flow-step.active {
  color: #f28705;
}
.contact__flow-step.active .deco-circle {
  background-color: #f28705;
}
.contact__flow-step span.counter-step::before {
  content: counter(step, decimal-leading-zero);
  font: 700 2.1rem "STIX Two Text", serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contact__flow-step span.counter-step::before {
    font-size: 15.5px;
  }
}
.contact__flow-step .deco-circle {
  width: 20px;
  height: 20px;
  margin: 5px 0;
  background-color: #969ea6;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .contact__flow-step .deco-circle {
    width: 15px;
    height: 15px;
  }
}
.contact__flow-step .deco-circle::after {
  content: "";
  width: 205px;
  height: 1px;
  background-color: #969ea6;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  z-index: -1;
  display: none;
}
@media screen and (max-width: 767px) {
  .contact__flow-step .deco-circle::after {
    width: 95px;
  }
}
.contact__flow-step p {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1;
  position: relative;
}
.contact__thanks {
  margin-top: 100px;
  line-height: 1.8888888889em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__thanks {
    margin-top: 40px;
  }
}
.contact__thanks h4 {
  font-weight: 500;
  font-size: 2rem;
  color: #f28705;
  line-height: 1.8em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .contact__thanks h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.contact__thanks .contact__button-wrap {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .contact__thanks .contact__button-wrap {
    margin-top: 30px;
  }
}
.contact__form {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .contact__form {
    margin-top: 40px;
  }
}
.contact__form-item:not(:last-of-type) {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .contact__form-item:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.contact__form-item label {
  font-weight: 500;
}
.contact__form-item.required > label::after {
  content: "*";
  color: #f28705;
  margin-left: 5px;
}
.contact__field {
  position: relative;
  margin-top: 25px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .contact__field {
    margin-top: 12.5px;
  }
}
.contact__field > *:not(:first-of-type) {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .contact__field > *:not(:first-of-type) {
    margin-top: 17.5px;
  }
}
.contact__field-wrapper {
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .contact__field-wrapper {
    margin-left: 10px;
  }
}
.contact__field-wrapper > *:not(:first-child) {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .contact__field-wrapper > *:not(:first-child) {
    margin-left: 10px;
  }
}
.contact__field-wrapper span.text-zip {
  font-weight: 500;
}
.contact__input {
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .contact__input {
    height: 50px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.contact__input--textarea {
  height: 230px;
}
@media screen and (max-width: 767px) {
  .contact__input--textarea {
    height: 145.2px;
  }
}
.contact__input--zip {
  width: 290px;
}
@media screen and (max-width: 767px) {
  .contact__input--zip {
    width: 125px;
  }
}
.contact__input--small {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contact__input--small {
    width: 285px;
    max-width: 100%;
  }
}
.contact__input--radio {
  margin-top: 15px;
  height: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact__input--radio.contact__input--free .contact__radio {
  min-width: initial;
}
.contact input[type=text],
.contact input[type=email],
.contact textarea {
  width: 100%;
  height: 100%;
  background-color: #f2f2f2;
  padding: 25px;
  border: 1px solid #f2f2f2;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .contact input[type=text],
  .contact input[type=email],
  .contact textarea {
    padding: 12.5px;
  }
}
.contact input[type=text]::-webkit-input-placeholder, .contact input[type=email]::-webkit-input-placeholder, .contact textarea::-webkit-input-placeholder {
  color: rgba(46, 61, 76, 0.5);
}
.contact input[type=text]::-moz-placeholder, .contact input[type=email]::-moz-placeholder, .contact textarea::-moz-placeholder {
  color: rgba(46, 61, 76, 0.5);
}
.contact input[type=text]:-ms-input-placeholder, .contact input[type=email]:-ms-input-placeholder, .contact textarea:-ms-input-placeholder {
  color: rgba(46, 61, 76, 0.5);
}
.contact input[type=text]::-ms-input-placeholder, .contact input[type=email]::-ms-input-placeholder, .contact textarea::-ms-input-placeholder {
  color: rgba(46, 61, 76, 0.5);
}
.contact input[type=text]::placeholder,
.contact input[type=email]::placeholder,
.contact textarea::placeholder {
  color: rgba(46, 61, 76, 0.5);
}
.contact input[type=text]:focus,
.contact input[type=email]:focus,
.contact textarea:focus {
  border-color: rgba(0, 0, 0, 0.2);
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .contact input[type=text],
  .contact input[type=email] {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.contact input[type=text]::-ms-clear,
.contact input[type=email]::-ms-clear {
  display: none;
}
.contact textarea {
  resize: none;
  overflow: auto;
}
.contact__radio {
  min-width: 180px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__radio {
    width: 50%;
    padding-bottom: 10px;
  }
}
.contact__radio input[type=radio] {
  display: none;
}
.contact__radio input[type=radio] + *::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 26px;
  margin-top: -3px;
  margin-right: 10px;
  border-radius: 50%;
  border: 1px solid rgba(46, 61, 76, 0.5);
}
@media screen and (max-width: 767px) {
  .contact__radio input[type=radio] + *::before {
    width: 18px;
    height: 18px;
  }
}
.contact__radio input[type=radio] + *::after {
  content: "";
  width: 0;
  height: 0;
  background-color: #2e3d4c;
  border-radius: 50%;
  position: absolute;
  top: 13px;
  left: 14px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .contact__radio input[type=radio] + *::after {
    top: 10px;
    left: 10px;
  }
}
.contact__radio input[type=radio]:checked + *::after {
  width: 13px;
  height: 13px;
}
@media screen and (max-width: 767px) {
  .contact__radio input[type=radio]:checked + *::after {
    width: 9px;
    height: 9px;
  }
}
.contact__radio input[type=radio]:checked + * {
  color: #2e3d4c;
}
.contact__radio span {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .contact__radio span {
    font-size: 13px;
  }
}
.contact__radio-group.disabled {
  opacity: 0.7;
  pointer-events: none;
}
.contact__radio-sub {
  display: block;
  padding-left: 3.6rem;
  font-size: 1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .contact__radio-sub {
    font-size: 10px;
  }
}
.contact__button-zip {
  width: 230px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .contact__button-zip {
    width: 115px;
  }
}
.contact__button-zip .button {
  font-weight: 500;
}
.contact__button-wrap {
  margin-top: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: 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;
}
@media screen and (max-width: 767px) {
  .contact__button-wrap {
    margin-top: 20px;
  }
}
.contact__button {
  width: 400px;
  height: 70px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__button {
    width: 100%;
    height: 50px;
  }
}
.contact__button:not(:last-of-type) {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .contact__button:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.contact__button--back {
  width: 320px;
  display: none;
}
.contact__button .button {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .contact__button .button {
    max-width: inherit;
    font-size: 13px;
  }
}
.contact__button .button.set-icon.icon-caret.icon-r::before {
  right: 25px;
}
@media screen and (max-width: 767px) {
  .contact__button .button.set-icon.icon-caret.icon-r::before {
    right: 25px;
  }
}
.contact__button .button.set-icon.icon-caret.icon-l::before {
  left: 25px;
}
@media screen and (max-width: 767px) {
  .contact__button .button.set-icon.icon-caret.icon-l::before {
    left: 25px;
  }
}
.contact__privacy {
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  margin-top: 40px;
  font-size: 1.6rem;
  line-height: 1;
  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) {
  .contact__privacy {
    font-size: 13px;
  }
}
.contact__privacy a {
  color: #f28705;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .contact__privacy span.error {
    bottom: -16px !important;
  }
}
.contact__input-checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(46, 61, 76, 0.5);
  margin-right: 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact__input-checkbox {
    width: 17.5px;
    height: 17.5px;
    margin-right: 15px;
  }
}
.contact__input-checkbox:checked {
  border: 1px solid rgba(46, 61, 76, 0.5);
}
.contact__input-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 6.5px;
  left: 2px;
  background: #2e3d4c;
  width: 2.5px;
  height: 2.5px;
  -webkit-box-shadow: 2px 0 0 #2e3d4c, 4px 0 0 #2e3d4c, 6px 0 0 #2e3d4c, 6px -2px 0 #2e3d4c, 6px -4px 0 #2e3d4c, 6px -6px 0 #2e3d4c, 6px -8px 0 #2e3d4c, 6px -10px 0 #2e3d4c;
          box-shadow: 2px 0 0 #2e3d4c, 4px 0 0 #2e3d4c, 6px 0 0 #2e3d4c, 6px -2px 0 #2e3d4c, 6px -4px 0 #2e3d4c, 6px -6px 0 #2e3d4c, 6px -8px 0 #2e3d4c, 6px -10px 0 #2e3d4c;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .contact__input-checkbox:checked::after {
    top: 5.5px;
    -webkit-transform: rotate(45deg) scale(0.75);
            transform: rotate(45deg) scale(0.75);
  }
}
.contact__file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 1;
}
.contact__file input[type=file] {
  opacity: 0;
  color: #fff;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.contact__file:hover .contact__file-button {
  opacity: 0.7;
}
.contact__file-button {
  width: 16rem;
  aspect-ratio: 16/6;
  background: #f5f5f6;
  border-radius: 5px;
  border: 1px solid #969ea6;
  font: 400 1.6rem "Noto Sans CJK JP", sans-serif;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  pointer-events: none;
  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) {
  .contact__file-button {
    width: 12rem;
    font-size: 1.4rem;
  }
}
.contact input[type=text].contact__file-name {
  background: transparent;
  border: none;
  font: 400 1.6rem "Noto Sans CJK JP", sans-serif;
  pointer-events: none;
  padding: 0;
  width: initial;
  height: initial;
}
@media screen and (max-width: 767px) {
  .contact input[type=text].contact__file-name {
    font-size: 1.4rem;
  }
}
.contact input[type=text].contact__file-name::-webkit-input-placeholder {
  color: #2e3d4c;
}
.contact input[type=text].contact__file-name::-moz-placeholder {
  color: #2e3d4c;
}
.contact input[type=text].contact__file-name:-ms-input-placeholder {
  color: #2e3d4c;
}
.contact input[type=text].contact__file-name::-ms-input-placeholder {
  color: #2e3d4c;
}
.contact input[type=text].contact__file-name::placeholder {
  color: #2e3d4c;
}
.contact span.error,
.contact span.note {
  width: 100%;
  display: block;
  margin-top: 15px !important;
  font-size: 1.5rem !important;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contact span.error,
  .contact span.note {
    margin-top: 12.5px !important;
    font-size: 12.5px !important;
  }
}
.contact span.error {
  position: absolute;
  bottom: -20px;
  color: #f00;
}
.contact span.note::before {
  content: "※";
}

.faq__wrapper {
  padding-bottom: 100px;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .faq__wrapper {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
@media screen and (max-width: 767px) {
  .faq__wrapper {
    padding-bottom: 50px;
  }
}
.faq__item {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.faq__item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .faq__item:not(:last-child) {
    margin-bottom: 25px;
  }
}
.faq__question-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  cursor: pointer;
  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) {
  .faq__question-wrap {
    margin-bottom: 10px;
  }
}
.faq__question-wrap::before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: 0;
  width: 50px;
  height: 50px;
  background: url("../src/img/faq-bubble-q.png") no-repeat center;
  background-size: contain;
  font-weight: 700;
  font-size: 2.5rem;
  font-family: "STIX Two Text", serif;
  color: #f28705;
  -webkit-transform: translateY(-50%);
          transform: translateY(-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;
}
@media screen and (max-width: 767px) {
  .faq__question-wrap::before {
    width: 25px;
    height: 25px;
    font-size: 16px;
  }
}
.faq__question {
  width: 90%;
  margin-left: 70px;
  margin-right: auto;
  font-size: 2rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .faq__question {
    width: 75%;
    margin-left: 35px;
    font-size: 13px;
  }
}
.faq__answer-wrap {
  width: 100%;
  height: 0;
  padding-left: 70px;
  overflow: hidden;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
@media screen and (max-width: 767px) {
  .faq__answer-wrap {
    padding-left: 0;
  }
}
.faq__answer-wrap.show {
  height: 0;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.faq__answer {
  position: relative;
  width: 100%;
  padding: 30px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .faq__answer {
    padding: 15px;
  }
}
.faq__answer::before {
  content: "A";
  position: absolute;
  top: 25%;
  left: 30px;
  width: 50px;
  height: 50px;
  background: url("../src/img/faq-bubble-a.png") no-repeat center;
  background-size: contain;
  font-family: "STIX Two Text", serif;
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  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) {
  .faq__answer::before {
    top: 20px;
    left: 15px;
    width: 25px;
    height: 25px;
    font-size: 16px;
  }
}
.faq__answer p {
  margin-left: 70px;
  font-size: 1.8rem;
  line-height: 2em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .faq__answer p {
    margin-left: 35px;
    font-size: 12px;
  }
}
.faq__button {
  width: 50px;
  height: 50px;
  border: 1px solid #f28705;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq__button {
    width: 25px;
    height: 25px;
  }
}
.faq__button img {
  width: 100%;
  height: 100%;
  padding: 20px 15px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .faq__button img {
    padding: 8px 4px;
  }
}
.faq__button.flip img {
  -webkit-transform: none;
          transform: none;
}

.flow {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .flow {
    margin-bottom: 50px;
  }
}
.flow__list {
  list-style-type: none;
  counter-reset: step;
}
.flow__list > li {
  counter-increment: step;
}
.flow__list > li span.counter-step::after {
  content: counter(step, decimal-leading-zero);
}
.flow__item {
  width: 100%;
  min-height: 440px;
  padding-bottom: 30px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__item {
    min-height: initial;
    padding-bottom: 0;
  }
}
.flow__item:not(:last-of-type) {
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .flow__item:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.flow__item:not(:last-of-type) .flow__item-content {
  padding-bottom: 130px;
}
@media screen and (max-width: 767px) {
  .flow__item:not(:last-of-type) .flow__item-content {
    padding-bottom: 50px;
  }
}
.flow__item:not(:last-of-type) .flow__item-content::before {
  display: block;
}
.flow__item:nth-of-type(even) {
  padding-bottom: 0;
}
.flow__item:nth-of-type(even) .flow__item-image-wrap {
  margin-top: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flow__item:nth-of-type(even) .flow__item-content {
  margin-top: 80px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .flow__item:nth-of-type(even) .flow__item-content {
    margin-top: -75px;
  }
}
.flow__item:nth-of-type(even) .flow__item-content::before {
  left: auto;
  right: 366px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
@media screen and (max-width: 767px) {
  .flow__item:nth-of-type(even) .flow__item-content::before {
    right: 50%;
  }
}
.flow__item-image-wrap {
  width: 1920px;
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .flow__item-image-wrap {
    width: 100%;
    margin-top: 0;
    position: static;
    -webkit-transform: initial;
            transform: initial;
  }
}
.flow__item-image {
  width: 980px;
  height: 440px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .flow__item-image {
    width: 100%;
    height: 53.3333333333vw;
  }
}
.flow__item-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .flow__item-content {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
@media screen and (max-width: 767px) {
  .flow__item-content {
    margin-top: -75px;
  }
}
.flow__item-content::before {
  content: "";
  border-style: solid;
  border-width: 50px 50px 0;
  border-color: #f28705 transparent transparent;
  position: absolute;
  bottom: 0;
  left: 366px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: none;
}
@media screen and (max-width: 767px) {
  .flow__item-content::before {
    border-width: 22px 22px 0;
    left: 50%;
  }
}
.flow__item-block {
  width: 732px;
  min-height: 360px;
  padding: 101px 65px 70px;
  border: 1px solid #f28705;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .flow__item-block {
    min-height: inherit;
    padding: 40px 32.5px;
  }
}
.flow__item-block::before {
  content: "";
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .flow__item-block::before {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }
}
.flow__item-block::after {
  content: "";
  width: 240px;
  height: 240px;
  border: 1px solid #f28705;
  border-radius: 50%;
  position: absolute;
  top: -95px;
  left: -95px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .flow__item-block::after {
    width: 110px;
    height: 110px;
    top: -46.2px;
    left: -46.2px;
  }
}
.flow__item-block > p {
  font-size: 1.8rem;
  line-height: 2.1111111111em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .flow__item-block > p {
    font-size: 14px;
  }
}
.flow__item-title {
  margin-bottom: 30px;
  padding: 0 40px 30px;
  border-bottom: 1px solid #2e3d4c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .flow__item-title {
    margin-bottom: 15px;
    padding: 0 15px 15px;
  }
}
.flow__item-title span.counter-step {
  font-family: "Noto Serif JP", serif;
  color: #2e3d4c;
  line-height: 1;
  margin-right: 30px;
  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;
}
.flow__item-title span.counter-step::after {
  font-weight: 500;
  font-size: 3.6rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .flow__item-title span.counter-step::after {
    font-size: 23px;
  }
}
.flow__item-title span.counter-step::before {
  content: "STEP";
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .flow__item-title span.counter-step::before {
    font-size: 12px;
  }
}
.flow__item-title > h2 {
  font: 400 3.6rem "Noto Serif JP", serif;
  color: #2e3d4c;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .flow__item-title > h2 {
    font-size: 23px;
  }
}
.flow__info {
  max-width: 1200px;
  width: 100%;
  margin: 100px auto 0;
}
@media screen and (max-width: 767px) {
  .flow__info {
    max-width: 100%;
    padding: 0 5.33%;
    margin-top: 50px;
  }
}
.flow__info-text {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 42px;
}
@media screen and (max-width: 767px) {
  .flow__info-text {
    margin-bottom: 21px;
  }
}
.flow.flow-2 .button .button-icon {
  width: 21.5px;
  height: 25px;
  background-image: url("../src/img/icons/icon-download.svg");
}
@media screen and (max-width: 767px) {
  .flow.flow-2 .button .button-icon {
    width: 15px;
    height: 20px;
    background-size: contain;
  }
}
.flow.flow-2 .button:hover .button-icon {
  background-image: url("../src/img/icons/icon-download-white.svg");
}

.news {
  padding-bottom: 60px;
}
.news__container {
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .news__container {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
@media screen and (max-width: 767px) {
  .news__container {
    max-width: 100%;
    padding: 0 4%;
  }
}
.news__item {
  padding-bottom: 55px;
  border-bottom: 1px solid rgba(46, 61, 76, 0.5);
  display: block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news__item {
    width: 100%;
    padding-bottom: 35px;
  }
}
.news__item::before {
  content: "";
  width: 100%;
  max-width: 0;
  height: 1px;
  background-color: #f28705;
  position: absolute;
  bottom: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.5s linear;
  transition: 0.5s linear;
}
.news__item h2 {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.7777777778em;
  letter-spacing: 0.04em;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .news__item h2 {
    font-size: 14px;
  }
}
.news__item:hover > a::before {
  max-width: 100%;
}
.news__list {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10rem 6rem;
}
@media screen and (max-width: 1280px) {
  .news__list {
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .news__list {
    margin-top: 50px;
    grid-template-columns: 1fr;
  }
}
.news__item-info {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news__item-info .news-date {
  font-family: "STIX Two Text", serif;
  font-size: 1.6rem;
  color: rgba(46, 61, 76, 0.5);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .news__item-info .news-date {
    font-size: 13px;
  }
}
.news__item-info .news-cat {
  font-size: 1.4rem;
  color: #f28705;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-left: 25px;
}
@media screen and (max-width: 767px) {
  .news__item-info .news-cat {
    font-size: 12px;
  }
}
.news__dropdown {
  width: 360px;
  margin-right: 55px;
  border: none;
  border-bottom: 1px solid #2e3d4c;
  padding: 15px;
  outline: none;
  background: #fff url("../src/img/icons/drop-arrow.svg") no-repeat;
  background-size: 15px;
  background-position: 95% center;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  cursor: pointer;
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .news__dropdown {
    width: 100%;
    padding: 0 12.5px;
    height: 40px;
    margin-right: 0;
    font-size: 13px;
  }
}
.news__dropdown::-ms-expand {
  display: none;
}
.news__search-wrap {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .news__search-wrap {
    margin-top: 20px;
  }
}
.news__search {
  width: 100%;
  height: 60px;
  max-width: 180px;
  padding: 15px 35px;
  background: #2e3d4c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: max-width 0.3s ease;
  transition: max-width 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news__search {
    width: 100%;
    height: 50px;
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.news__search .icon-search {
  width: 20px;
  height: 22px;
  display: block;
  margin-right: 20px;
  cursor: pointer;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  background: transparent url("../src/img/icons/search.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .news__search .icon-search {
    width: 18px;
    height: 18px;
  }
}
.news__search-input {
  width: calc(100% - 40px);
  height: 22px;
  padding-bottom: 2px;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .news__search-input {
    font-size: 13px;
  }
}
.news__search-input::-webkit-input-placeholder {
  font-family: "STIX Two Text", serif;
  color: #fff;
}
.news__search-input::-moz-placeholder {
  font-family: "STIX Two Text", serif;
  color: #fff;
}
.news__search-input:-ms-input-placeholder {
  font-family: "STIX Two Text", serif;
  color: #fff;
}
.news__search-input::-ms-input-placeholder {
  font-family: "STIX Two Text", serif;
  color: #fff;
}
.news__search-input::placeholder {
  font-family: "STIX Two Text", serif;
  color: #fff;
}
.news__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .news__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .news__flex > *:not(:last-child) {
    margin-bottom: 20px;
  }
}
.news__pagination {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .news__pagination {
    margin-top: 40px;
  }
}

.news-details__content {
  border: 1px solid #f2f2f2;
  padding: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .news-details__content {
    padding: 10px;
    margin-bottom: 40px;
  }
}
.news-details__title {
  border-bottom: 1px solid #2e3d4c;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.news-details__title h2 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.3333333333em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .news-details__title h2 {
    font-size: 17px;
  }
}
.news-details__cat {
  color: #fff;
  background: #f28705;
  padding: 4px 15px 5px;
  font-size: 1.4rem;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .news-details__cat {
    font-size: 12px;
    padding: 1.5px 7.5px 3.5px;
    margin-left: 15px;
  }
}
.news-details__text {
  font-size: 1.8rem;
  line-height: 2;
  border-bottom: 1px solid #2e3d4c;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .news-details__text {
    padding-bottom: 40px;
    font-size: 14px;
  }
}
.news-details__pagination {
  margin-top: 40px;
  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) {
  .news-details__pagination {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news-details__pagination .button > span {
  white-space: nowrap;
}
.news-details__pagination-item {
  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) {
  .news-details__pagination-item {
    width: 100%;
  }
}
.news-details__pagination-item:not(:last-child) {
  margin-right: 60px;
}
@media screen and (max-width: 767px) {
  .news-details__pagination-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.news-details__pagination-item .button {
  width: 200px;
  height: 60px;
  padding: 0;
  white-space: nowrap;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .news-details__pagination-item .button {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .news-details__pagination-item .button {
    width: 100%;
    height: 50px;
  }
}
.news-details__pagination-item .button:hover > span::before {
  background-image: url("../src/img/icons/icon-arrow-white.png");
}
.news-details__pagination-item .icon-l {
  padding-left: 22px;
}
@media screen and (max-width: 767px) {
  .news-details__pagination-item .icon-l {
    padding-left: 14.5px;
  }
}
.news-details__pagination-item .icon-r {
  padding-right: 22px;
}
@media screen and (max-width: 767px) {
  .news-details__pagination-item .icon-r {
    padding-right: 17px;
  }
}

.privacy {
  width: 100%;
  margin-bottom: 100px;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .privacy {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
@media screen and (max-width: 767px) {
  .privacy {
    margin-bottom: 50px;
  }
}
.privacy__list {
  list-style-type: none;
  counter-reset: item;
}
.privacy__list > li {
  counter-increment: item;
}
.privacy__list > li span.counter-item::before {
  content: counter(item) ".";
}
.privacy__item:not(:last-child) {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .privacy__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.privacy__item > * {
  padding-right: 70px;
  padding-left: 70px;
}
@media screen and (max-width: 767px) {
  .privacy__item > * {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.privacy__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 1px solid #2e3d4c;
}
@media screen and (max-width: 767px) {
  .privacy__title {
    margin-bottom: 17.5px;
    padding-bottom: 10px;
  }
}
.privacy__title h4 {
  margin-left: 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .privacy__title h4 {
    margin-left: 10px;
    font-size: 17px;
  }
}
.privacy__title span.counter-item {
  font-family: "STIX Two Text", serif;
  font-size: 4rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .privacy__title span.counter-item {
    font-size: 25px;
  }
}
.privacy__text p {
  font-size: 1.8rem;
  line-height: 2em;
  letter-spacing: 0.04em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .privacy__text p {
    font-size: 14px;
  }
}
.privacy__text p.nl {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .privacy__text p.nl {
    margin-top: 20px;
  }
}

.product {
  width: 100%;
  margin-bottom: 100px;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* --- PAGINATION --- */
}
@media screen and (max-width: 767px) {
  .product {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
@media screen and (max-width: 767px) {
  .product {
    margin-bottom: 50px;
  }
}
.product__select {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.product__select-title {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .product__select-title {
    font-size: 14px;
  }
}
.product__select-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .product__select-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.product__select-item {
  width: 166px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .product__select-item {
    width: 33.33%;
    padding-bottom: 10px;
    font-size: 13px;
  }
}
.product__select-item.active > .deco-circle::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.product__select-item .deco-circle {
  width: 26px;
  height: 26px;
  margin-right: 10px;
  border-radius: 50%;
  border: 1px solid rgba(46, 61, 76, 0.5);
  position: relative;
}
@media screen and (max-width: 767px) {
  .product__select-item .deco-circle {
    width: 18px;
    height: 18px;
  }
}
.product__select-item .deco-circle::before {
  content: "";
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border-radius: 50%;
  background-color: #2e3d4c;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
}
.product__select-item > input[type=radio] {
  display: none;
}
.product__select-item > input[type=radio] + *::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 26px;
  margin-top: -3px;
  margin-right: 10px;
  border-radius: 50%;
  border: 1px solid rgba(46, 61, 76, 0.5);
}
@media screen and (max-width: 767px) {
  .product__select-item > input[type=radio] + *::before {
    width: 18px;
    height: 18px;
  }
}
.product__select-item > input[type=radio] + *::after {
  content: "";
  width: 0;
  height: 0;
  background-color: #2e3d4c;
  border-radius: 50%;
  position: absolute;
  top: 13px;
  left: 14px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .product__select-item > input[type=radio] + *::after {
    top: 10px;
    left: 10px;
  }
}
.product__select-item > input[type=radio]:checked + *::after {
  width: 13px;
  height: 13px;
}
@media screen and (max-width: 767px) {
  .product__select-item > input[type=radio]:checked + *::after {
    width: 9px;
    height: 9px;
  }
}
.product__select-item > input[type=radio]:checked + * {
  color: #2e3d4c;
}
.product__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .product__item-list {
    margin-top: 20px;
  }
}
.product__item {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 48.5%;
  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) {
  .product__item {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .product__item:nth-of-type(n+3) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .product__item:not(:first-of-type) {
    margin-top: 20px;
  }
}
.product__item.new::before {
  content: "NEW";
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 6.2px 4px;
  background-color: #f28705;
  font-weight: 500;
  font-family: "STIX Two Text", serif;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
  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) {
  .product__item.new::before {
    top: 10px;
    left: 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .product__item .button {
    max-width: inherit;
  }
}
.product__item:hover {
  opacity: 1;
}
.product__item-img {
  position: relative;
  display: block;
  width: 100%;
  height: 410px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .product__item-img {
    height: 205px;
  }
}
.product__item-img img {
  display: block;
  max-width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__item-img img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.product__item-img::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  border: 0 solid #17367f;
  background: rgba(23, 54, 127, 0.6);
  opacity: 0;
  -webkit-transition: opacity 0.3s, width 0.8s 0.1s, height 0.8s 0.1s, border-width 0.4s 0.1s;
  transition: opacity 0.3s, width 0.8s 0.1s, height 0.8s 0.1s, border-width 0.4s 0.1s;
}
.product__item-img:hover::after {
  opacity: 1;
  width: 720px;
  height: 720px;
  border-width: 120px;
}
.product__item-img:hover .product__item-details {
  opacity: 1;
  letter-spacing: 0.25em;
}
.product__item-img--post {
  width: 100%;
  height: auto;
}
.product__item-details {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0;
  text-align: center;
  opacity: 0;
  z-index: 10000;
  line-height: 1.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.product__item-content {
  position: relative;
  width: 100%;
  margin-top: -30px;
  padding: 0 21px;
}
@media screen and (max-width: 767px) {
  .product__item-content {
    margin-top: -15px;
    padding: 0 10px;
  }
}
.product__location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 44px;
  padding: 0 20px;
  background-color: #2e3d4c;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .product__location {
    height: 34px;
    padding: 0 10px;
  }
}
.product__location span {
  margin-left: 20px;
  font-size: 2rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .product__location span {
    margin-left: 10px;
    font-size: 15px;
  }
}
.product__location img {
  width: auto;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .product__location img {
    height: 14px;
  }
}
.product__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .product__tags {
    margin-top: 15px;
  }
}
.product__tags span {
  min-width: 100px;
  border: 1px solid #2e3d4c;
  padding: 2px 15px;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  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) {
  .product__tags span {
    min-width: 60px;
    padding: 4px 7.5px;
    font-size: 13px;
  }
}
.product__info-details {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .product__info-details {
    font-size: 14px;
  }
}
.product__info-details.mt {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .product__info-details.mt {
    margin-top: 7.5px;
  }
}
.product__info-details > *:not(:first-of-type) {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .product__info-details > *:not(:first-of-type) {
    margin-left: 10px;
  }
}
.product__title {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .product__title {
    margin-top: 7.5px;
  }
}
.product__title h4 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .product__title h4 {
    font-size: 15px;
  }
}
.product__title h4.fs-25 {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .product__title h4.fs-25 {
    font-size: 17.5px;
  }
}
.product__item-button {
  width: 100%;
  height: 50px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .product__item-button {
    height: 40px;
    margin-top: 20px;
  }
}
.product__item-button .button {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .product__item-button .button {
    font-size: 12.5px;
  }
}
.product__details-header {
  margin-bottom: 20px;
}
.product__details-main {
  width: 100%;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(46, 61, 76, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product__details-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 900px;
  margin-top: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .product__details-content {
    width: 100%;
    margin-top: 20px;
    padding-right: 0;
  }
}
.product__gallery {
  position: relative;
  width: 100%;
  margin-top: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .product__gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
    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;
  }
}
.product__gallery-main {
  width: 900px;
  height: 540px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .product__gallery-main {
    width: 100%;
    height: 53.3333333333vw;
  }
}
.product__gallery-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__gallery-main img.current {
  -webkit-animation: fadein 500ms;
          animation: fadein 500ms;
}
.product__gallery-nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 744px;
}
@media screen and (max-width: 767px) {
  .product__gallery-nav {
    position: relative;
    top: unset;
    right: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 15px;
    overflow-x: auto;
  }
}
.product__gallery-item {
  width: 100%;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .product__gallery-item {
    width: 100%;
  }
}
.product__gallery-item::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(46, 61, 76, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.product__gallery-item:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .product__gallery-item:not(:last-child) {
    margin-bottom: 0;
    margin-right: 15px;
  }
}
.product__gallery-item.current::before {
  opacity: 0;
}
.product__gallery-item img {
  width: 100%;
  height: 156px;
  display: block;
}
@media screen and (max-width: 767px) {
  .product__gallery-item img {
    width: 31.0666666667vw;
    height: 18.6666666667vw;
  }
}
.product__details-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.product__details-item:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .product__details-item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.product__details-item label {
  width: 20%;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.04em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .product__details-item label {
    min-width: 70px;
    font-size: 14px;
  }
}
.product__details-item-content {
  width: 80%;
  font-size: 1.8rem;
  line-height: 2.1111111111em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .product__details-item-content {
    font-size: 14px;
  }
}
.product__pagination {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .product__pagination {
    margin-top: 30px;
  }
}
.product__pagination.flex {
  padding: 0 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;
}
@media screen and (max-width: 767px) {
  .product__pagination.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}
.product__pagination .button > span {
  white-space: nowrap;
}
.product__pagination-item {
  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) {
  .product__pagination-item {
    width: 100%;
  }
}
.product__pagination-item:not(:last-child) {
  margin-right: 120px;
}
@media screen and (max-width: 767px) {
  .product__pagination-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.product__pagination-item .button {
  width: 250px;
  height: 50px;
  padding: 0 !important;
  white-space: nowrap !important;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .product__pagination-item .button {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .product__pagination-item .button {
    width: 100%;
  }
}

.sitemap {
  width: 100%;
}
.sitemap__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 20px;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .sitemap__list {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
@media screen and (max-width: 767px) {
  .sitemap__list {
    margin-bottom: 50px;
  }
}
.sitemap__item {
  position: relative;
}
@media screen and (max-width: 767px) {
  .sitemap__item {
    width: 100%;
  }
}
.sitemap__item > a {
  font-weight: 700;
  font-size: 2rem;
  color: #2e3d4c;
  letter-spacing: 0.04em;
  padding-left: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sitemap__item > a {
    font-size: 15px;
    padding-left: 30px;
  }
}
.sitemap__item > a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../src/img/icons/icon-sun.svg") no-repeat;
  background-size: 20px;
  position: absolute;
  top: 6px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .sitemap__item > a::before {
    width: 15px;
    height: 15px;
    background-size: 15px;
  }
}
.sitemap__item > a.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.sitemap__item:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .sitemap__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.sitemap__item.has-sublist {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .sitemap__item.has-sublist {
    margin-bottom: 25px;
  }
}
.sitemap__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  margin-top: 20px;
  margin-left: 40px;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .sitemap__sub {
    margin-top: 10px;
    margin-left: 27.5px;
  }
}
.sitemap__sub-link {
  display: block;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: rgba(46, 61, 76, 0.5);
  line-height: 1;
  position: relative;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .sitemap__sub-link {
    font-size: 14px;
    padding-left: 15px;
  }
}
.sitemap__sub-link::before {
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #2e3d4c;
  border-left: 1px solid #2e3d4c;
  position: absolute;
  top: 2px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .sitemap__sub-link::before {
    width: 8px;
    height: 8px;
  }
}
.sitemap__sub-link.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.jobs__amenu {
  margin-bottom: 8rem;
}
.jobs__amenu .amenu__link span {
  display: block;
  font-size: 12px;
}
.jobs__section {
  padding-block: 8rem 13rem;
}
@media screen and (max-width: 767px) {
  .jobs__section {
    padding-bottom: 6rem 9.75rem;
  }
}
.jobs__section:nth-child(even) {
  background-color: #f5f5f6;
}
.jobs__section:nth-child(even) .jobs__block {
  background-color: #fff;
}
.jobs__head, .jobs__content {
  width: 100%;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .jobs__head, .jobs__content {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
.jobs__head {
  margin-bottom: 4rem;
}
.jobs__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
.jobs__title {
  font: 400 4rem "Noto Sans CJK JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .jobs__title {
    font-size: 3rem;
  }
}
.jobs__block {
  background-color: #f5f5f6;
  padding: 4rem 8rem;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .jobs__block {
    padding-inline: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .jobs__block {
    padding: 3rem;
  }
}
.jobs__block-title {
  font: 400 2.4rem "Noto Serif JP", serif;
  color: #f28705;
}
@media screen and (max-width: 767px) {
  .jobs__block-title {
    font-size: 1.8rem;
  }
}
.jobs__block-dl {
  margin-top: 2.4rem;
}
.jobs__dl-row {
  padding: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  border-bottom: 1px solid #000;
  font: 400 1.8rem "Noto Sans CJK JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .jobs__dl-row {
    padding: 1.6rem 6px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.2rem;
  }
}
.jobs__dl-row:first-child {
  border-top: 1px solid #000;
}
.jobs__dl-dt {
  width: 10rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .jobs__dl-dt {
    font-size: 1.6rem;
  }
}
.jobs__dl-dd {
  line-height: 1.7777777778em;
}
@media screen and (max-width: 767px) {
  .jobs__dl-dd {
    font-size: 1.4rem;
  }
}

.recruit {
  margin-block: 10rem 12.8rem;
}
@media screen and (max-width: 767px) {
  .recruit {
    margin-block: 8rem;
  }
}

.recruit-message__bb {
  font: 400 1.8rem "Noto Sans CJK JP", sans-serif;
  letter-spacing: 0;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .recruit-message__bb {
    font-size: 1.4rem;
  }
}
.recruit-message__bb img {
  max-width: 970px;
}

.recruit-flow {
  margin-top: 20rem;
  width: 100%;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .recruit-flow {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-flow {
    margin-top: 8rem;
  }
}
.recruit-flow__process {
  list-style: none;
  counter-reset: step;
  margin-top: 4rem;
}
.recruit-flow__process-step {
  counter-increment: step;
  width: 50%;
  position: relative;
  margin-left: auto;
  padding-inline: 12.4rem 0;
}
@media screen and (max-width: 980px) {
  .recruit-flow__process-step {
    width: calc(100% - 6rem);
  }
}
@media screen and (max-width: 767px) {
  .recruit-flow__process-step {
    padding-left: 6rem;
    width: calc(100% - 3rem);
  }
}
.recruit-flow__process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100%;
  border-right: 1px solid #f28705;
}
@media screen and (min-width: 981px) {
  .recruit-flow__process-step:nth-child(odd) {
    margin-left: initial;
    padding-inline: 0 6rem;
  }
  .recruit-flow__process-step:nth-child(odd)::before {
    left: initial;
    right: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  .recruit-flow__process-step:nth-child(odd) .recruit-flow__step-icon {
    left: initial;
    right: -6rem;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  .recruit-flow__process-step:nth-child(odd) .recruit-flow__step-head::before {
    width: calc(100% + 6rem);
    -webkit-transform: none;
            transform: none;
  }
}
.recruit-flow__process-step:last-child::before {
  display: none;
}
.recruit-flow__step-head {
  position: relative;
  padding-top: 102px;
}
@media screen and (max-width: 767px) {
  .recruit-flow__step-head {
    padding-top: 7.65rem;
  }
}
.recruit-flow__step-head::before, .recruit-flow__step-head::after {
  position: absolute;
  top: 6rem;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .recruit-flow__step-head::before, .recruit-flow__step-head::after {
    top: 3rem;
  }
}
.recruit-flow__step-head::before {
  content: "";
  border-bottom: 1px solid #f28705;
  width: 12.4rem;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
@media screen and (max-width: 767px) {
  .recruit-flow__step-head::before {
    width: 7.5rem;
  }
}
.recruit-flow__step-head::after {
  content: "STEP " counter(step);
  width: 14rem;
  max-height: 3.6rem;
  border-radius: 18px;
  background: #f28705;
  font: 400 2.4rem/1 "STIX Two Text", serif;
  padding-block: 8px 4px;
  color: #fff;
  text-align: center;
  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) {
  .recruit-flow__step-head::after {
    width: 13rem;
    font-size: 2.2rem;
  }
}
.recruit-flow__step-icon {
  width: 12rem;
  aspect-ratio: 1/1;
  background: #fff;
  border: 1px solid #f28705;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -12.4rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .recruit-flow__step-icon {
    width: 6rem;
    left: -6rem;
  }
}
.recruit-flow__step-title, .recruit-flow__step-detail {
  padding-left: 2.4rem;
  max-width: 47rem;
}
@media screen and (max-width: 767px) {
  .recruit-flow__step-title, .recruit-flow__step-detail {
    padding-left: 1.2rem;
  }
}
.recruit-flow__step-title {
  font: 400 2.4rem "Noto Serif JP", serif;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .recruit-flow__step-title {
    font-size: 2.2rem;
  }
}
.recruit-flow__step-detail {
  margin-top: 1.6rem;
  font: 400 1.6rem "Noto Sans CJK JP", sans-serif;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .recruit-flow__step-detail {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
}

.recruit-data {
  margin-top: 16rem;
  width: 100%;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .recruit-data {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-data {
    margin-top: 8rem;
  }
}
.recruit-data__list {
  width: 100%;
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .recruit-data__list {
    max-width: 392px;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    grid-template-columns: 1fr;
  }
}
.recruit-data__list-block {
  aspect-ratio: 392/300;
  background: #f7f7f7;
  padding: 1.6rem;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .recruit-data__list-block {
    width: 100%;
  }
}
.recruit-data__block-title {
  font: 400 2.4rem "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit-data__block-title {
    font-size: 2.2rem;
  }
}
.recruit-data__block-date {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .recruit-data__block-date {
    font-size: 1.4rem;
  }
}
.recruit-data__block-ctr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .recruit-data__block-ctr {
    font-size: 2.2rem;
  }
}
.recruit-data__ctr-num {
  height: 10.6rem;
}
@media screen and (max-width: 1280px) {
  .recruit-data__ctr-num {
    height: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-data__ctr-num {
    height: 7rem;
  }
}
.recruit-data__block-chart {
  gap: 1.6rem;
  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) {
  .recruit-data__block-chart {
    font-size: 1.4rem;
  }
}
.recruit-data__block-chart--donut {
  gap: 2.4rem;
}
.recruit-data__block-chart--donut .recruit-data__chart-ctr {
  font-size: 4.8rem;
}
.recruit-data__block-chart--donut .recruit-data__chart-img {
  height: 15rem;
}
@media screen and (max-width: 1280px) {
  .recruit-data__block-chart--donut .recruit-data__chart-img {
    height: 11.3rem;
  }
}
.recruit-data__chart-label {
  font-size: 1.6rem;
  line-height: 1;
  -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;
}
.recruit-data__chart-ctr {
  font: 400 3.2rem "STIX Two Text", serif;
}
.recruit-data__chart-img {
  height: 16rem;
}
@media screen and (max-width: 1280px) {
  .recruit-data__chart-img {
    height: 12rem;
  }
}

.entry .contact__input--radio {
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
.entry .contact__radio {
  min-width: initial;
  padding-right: 0;
}

.interview {
  overflow: hidden;
}
.interview__amenu {
  margin-bottom: 4.8rem;
}
.interview__person {
  margin-bottom: 12.5rem;
}
.interview__qa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8rem;
}
.interview__qa-item {
  width: 100%;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .interview__qa-item {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
@media screen and (max-width: 767px) {
  .interview__qa-item:first-child {
    padding-inline: 0;
  }
}
.interview__qa-question, .interview__qa-answer {
  padding-left: 7.2rem;
}
.interview__qa-question {
  font: 400 2.4rem "Noto Serif JP", serif;
  position: relative;
}
@media screen and (max-width: 767px) {
  .interview__qa-question {
    font-size: 27px;
  }
}
.interview__qa-question::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.8rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4.8rem;
  border-bottom: 1px solid #2e3d4c;
}
.interview__qa-answer {
  font-size: 1.6rem;
  line-height: 2em;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .interview__qa-answer {
    padding-left: 0;
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .interview__box {
    padding-inline: 0;
  }
}
.interview__box-src {
  width: 200%;
  max-width: 800px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1280px) {
  .interview__box-src {
    width: 150%;
  }
}
@media screen and (max-width: 767px) {
  .interview__box-src {
    width: 100%;
  }
}
.interview__box-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  margin-bottom: 4.8rem;
}
.interview__box-name {
  font: 700 2rem "Noto Sans CJK JP", sans-serif;
  color: #2e3d4c;
}
.interview__box-detail {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .interview__box-detail {
    font-size: 18px;
  }
}
.interview__sched {
  margin-top: 8rem;
  width: 100%;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .interview__sched {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
.interview__sched-head {
  margin-bottom: 4rem;
}
.interview__sched-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: 2.4rem;
}
.interview__sched-item {
  padding: 2.4rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #f5f5f6;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .interview__sched-item {
    padding: 2.4rem 2rem;
  }
}
.interview__sched-time {
  min-width: 7.5rem;
  height: 3.2rem;
  padding-inline: 1.5rem;
  border-radius: 16px;
  background: #f28705;
  color: #fff;
  font: 700 1.6rem "Noto Sans CJK JP", sans-serif;
  text-align: center;
  margin-right: 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;
}
@media screen and (max-width: 767px) {
  .interview__sched-time {
    min-width: 6.5rem;
    height: 2.6rem;
    padding-inline: 1rem;
    font-size: 13px;
  }
}
.interview__sched-heading {
  font: 700 2rem "Noto Sans CJK JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .interview__sched-heading {
    font-size: 15px;
  }
}
.interview__sched-tasks {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 1.7rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .interview__sched-tasks {
    font-size: 18px;
  }
}
.interview__sched-tasks li {
  padding-left: 1em;
  text-indent: -1em;
}
.interview__sched-note {
  margin-top: 2rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .interview__sched-note {
    margin-top: 1rem;
    font-size: 18px;
  }
}

.w-style__wrapper {
  width: 100%;
  padding-block: 128px;
}
@media screen and (max-width: 767px) {
  .w-style__wrapper {
    padding-block: 50px;
  }
}
.w-style__wrapper--gray {
  padding-block: 80px;
  background-color: #f5f5f6;
}
@media screen and (max-width: 767px) {
  .w-style__wrapper--gray {
    padding-block: 50px;
  }
}
.w-style__wrapper--pdt0 {
  padding-top: 0;
}
.w-style__container {
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .w-style__container {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}
.w-style__title {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .w-style__title {
    margin-bottom: 20px;
  }
}
.w-style__txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .w-style__txt {
    font-size: 14px;
  }
}
.w-style__welfare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 80px;
}
@media screen and (max-width: 767px) {
  .w-style__welfare {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.w-style__welfare-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding-block: 24px;
}
@media screen and (max-width: 767px) {
  .w-style__welfare-item {
    padding-block: 0 20px;
    gap: 10px;
    border-bottom: 1px solid #969ea6;
  }
}
.w-style__welfare-item:not(:nth-child(3n)) {
  position: relative;
}
.w-style__welfare-item:not(:nth-child(3n))::after {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  height: 100%;
  border-right: 1px solid #969ea6;
}
@media screen and (max-width: 767px) {
  .w-style__welfare-item:not(:nth-child(3n))::after {
    display: none;
  }
}
.w-style__welfare-item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .w-style__welfare-item-head {
    gap: 10px;
  }
}
.w-style__welfare-item-title {
  font-size: 2.4rem;
  line-height: 1.5;
  color: #f6a748;
}
@media screen and (max-width: 767px) {
  .w-style__welfare-item-title {
    font-size: 20px;
  }
}
.w-style__welfare-item-icon {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.w-style__educ {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.w-style__educ-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 80px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .w-style__educ-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 20px 30px;
  }
}
.w-style__educ-item-img {
  width: 100%;
  max-width: 400px;
  min-width: 300px;
  aspect-ratio: 400/300;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .w-style__educ-item-img {
    max-width: initial;
    min-width: initial;
  }
}
.w-style__educ-item-title {
  font-size: 2.4rem;
  line-height: 1.5;
  color: #f6a748;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .w-style__educ-item-title {
    font-size: 20px;
  }
}
.w-style__career {
  list-style-type: none;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 14px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .w-style__career {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 50px;
  }
}
.w-style__career-item {
  position: relative;
}
.w-style__career-item--green {
  --theme-clr: #1cbb37;
}
.w-style__career-item--green::before {
  content: "";
  position: absolute;
  right: 20px;
  bottom: calc(100% - 35px);
  width: 100px;
  height: 93px;
  background: url("../src/img/workstyle/man1.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .w-style__career-item--green::before {
    width: 70px;
    height: 65px;
    right: initial;
    left: 70px;
  }
}
.w-style__career-item--blue {
  --theme-clr: #1d87d8;
}
.w-style__career-item--blue::before {
  content: "";
  position: absolute;
  right: 10px;
  bottom: calc(100% - 35px);
  width: 88px;
  height: 107px;
  background: url("../src/img/workstyle/woman.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .w-style__career-item--blue::before {
    width: 62px;
    height: 75px;
    right: initial;
    left: 70px;
  }
}
.w-style__career-item--purple {
  --theme-clr: #46369a;
}
.w-style__career-item--violet {
  --theme-clr: #aa2889;
}
.w-style__career-item--orange {
  --theme-clr: #fd5d2d;
}
.w-style__career-item--orange::before {
  content: "";
  position: absolute;
  right: 20px;
  bottom: calc(100% - 35px);
  width: 96px;
  height: 114px;
  background: url("../src/img/workstyle/man2.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .w-style__career-item--orange::before {
    width: 67px;
    height: 80px;
    right: initial;
    left: 70px;
  }
}
.w-style__career-item-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--theme-clr);
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .w-style__career-item-num {
    font-size: 20px;
  }
}
.w-style__career-item-box {
  border-style: solid;
  border-width: 1px;
  border-color: var(--theme-clr);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
}
.w-style__career-item-title {
  font-size: 2rem;
  color: #fff;
  padding: 13.5px 16px;
}
@media screen and (max-width: 767px) {
  .w-style__career-item-title {
    font-size: 16px;
  }
}
.w-style__career-item-title--green {
  background: -webkit-gradient(linear, left top, left bottom, from(#1cbb37), to(#b0ee34));
  background: linear-gradient(to bottom, #1cbb37, #b0ee34);
}
.w-style__career-item-title--blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#1d87d8), to(#23c5fb));
  background: linear-gradient(to bottom, #1d87d8, #23c5fb);
}
.w-style__career-item-title--purple {
  background: -webkit-gradient(linear, left top, left bottom, from(#46369a), to(#995ee6));
  background: linear-gradient(to bottom, #46369a, #995ee6);
}
.w-style__career-item-title--violet {
  background: -webkit-gradient(linear, left top, left bottom, from(#aa2889), to(#fa60aa));
  background: linear-gradient(to bottom, #aa2889, #fa60aa);
}
.w-style__career-item-title--orange {
  background: -webkit-gradient(linear, left top, left bottom, from(#fd5d2d), to(#ffa230));
  background: linear-gradient(to bottom, #fd5d2d, #ffa230);
}
.w-style__career-item-txt {
  font-size: 1.6rem;
  line-height: 1.75;
  color: var(--theme-clr);
  padding: 24px 16px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .w-style__career-item-txt {
    font-size: 14px;
  }
}
.w-style__career-item-txt--blue {
  min-height: 256px;
}
@media screen and (max-width: 767px) {
  .w-style__career-item-txt--blue {
    min-height: initial;
  }
}
.w-style__career-item-txt--purple {
  min-height: 284px;
}
@media screen and (max-width: 767px) {
  .w-style__career-item-txt--purple {
    min-height: initial;
  }
}
.w-style__career-item-txt--violet {
  min-height: 346px;
}
@media screen and (max-width: 767px) {
  .w-style__career-item-txt--violet {
    min-height: initial;
  }
}
.w-style__career-item-txt--orange {
  min-height: 318px;
}
@media screen and (max-width: 767px) {
  .w-style__career-item-txt--orange {
    min-height: initial;
  }
}
.w-style__lic {
  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: 40px 80px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .w-style__lic {
    gap: 20px;
    padding: 20px 30px;
  }
}
.w-style__lic-item:not(:last-child) {
  padding-bottom: 40px;
  border-bottom: 1px solid #969ea6;
}
@media screen and (max-width: 767px) {
  .w-style__lic-item:not(:last-child) {
    padding-bottom: 20px;
  }
}
.w-style__lic-title {
  position: relative;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 16px;
  padding-left: 26px;
}
@media screen and (max-width: 767px) {
  .w-style__lic-title {
    font-size: 20px;
    padding-left: 20px;
  }
}
.w-style__lic-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 10px;
  height: 10px;
  background: #f28705;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(45deg) scale(0.7071);
          transform: rotate(45deg) scale(0.7071);
}
@media screen and (max-width: 767px) {
  .w-style__lic-title::before {
    top: 10px;
  }
}

/* --- FONT COLOR --- */
.fc-white {
  color: #fff;
}

.fc-black {
  color: #000;
}

.fc-primary {
  color: #2e3d4c;
}

/* --- BACKGROUND --- */
.bg-white {
  background: #fff;
}

.bg-black {
  background: #000;
}

.bg-primary {
  background: #2e3d4c;
}

.bg-grayf2 {
  background: #f2f2f2;
}

/* --- IE COMPAT OBJECT FIT --- */
.js-fit {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .js-fit > .obj-fit {
    display: none;
  }
}

.obj-fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* --- MISC --- */
.overflow {
  overflow: hidden;
}

.anchor {
  display: block;
  position: relative;
  top: -35px;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .anchor {
    top: -70px;
  }
}

.anchor-85 {
  display: block;
  position: relative;
  top: -85px;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .anchor-85 {
    top: -70px;
  }
}

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

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

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

.disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 1;
}

.wrapper {
  width: 100%;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .wrapper {
    max-width: 100%;
    padding-inline: 5.33%;
  }
}

.trim {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.img-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.ie-only {
  display: none;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .ie-only {
    display: block;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .ie-hide {
    display: none !important;
  }
}

.mt20 {
  display: block;
  margin-top: 20px;
}

.bold {
  font-weight: 700;
}

.gallery-scroll::-webkit-scrollbar {
  width: 8px;
  height: 30px;
}
@media screen and (max-width: 767px) {
  .gallery-scroll::-webkit-scrollbar {
    width: 30px;
    height: 8px;
  }
}
.gallery-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.gallery-scroll::-webkit-scrollbar-thumb {
  background: rgba(200, 200, 200, 0.4);
  border-radius: 5px;
}
.gallery-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(125, 125, 125, 0.8);
}
.gallery-scroll::-webkit-scrollbar-thumb:active {
  background: rgba(125, 125, 125, 0.8);
}

svg .svg-elem-1 {
  stroke-dashoffset: 315.9599px;
  stroke-dasharray: 315.9599px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear s, fill 0.7s linear 1s;
  transition: stroke-dashoffset 1s linear s, fill 0.7s linear 1s;
}

svg.active .svg-elem-1 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-2 {
  stroke-dashoffset: 468.8986px;
  stroke-dasharray: 468.8986px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 0.05s, fill 0.7s linear 1.05s;
  transition: stroke-dashoffset 1s linear 0.05s, fill 0.7s linear 1.05s;
}

svg.active .svg-elem-2 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-3 {
  stroke-dashoffset: 567.3092px;
  stroke-dasharray: 567.3092px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 0.1s, fill 0.7s linear 1.1s;
  transition: stroke-dashoffset 1s linear 0.1s, fill 0.7s linear 1.1s;
}

svg.active .svg-elem-3 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-4 {
  stroke-dashoffset: 180.76px;
  stroke-dasharray: 180.76px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 0.15s, fill 0.7s linear 1.15s;
  transition: stroke-dashoffset 1s linear 0.15s, fill 0.7s linear 1.15s;
}

svg.active .svg-elem-4 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-5 {
  stroke-dashoffset: 357.9964px;
  stroke-dasharray: 357.9964px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 0.2s, fill 0.7s linear 1.2s;
  transition: stroke-dashoffset 1s linear 0.2s, fill 0.7s linear 1.2s;
}

svg.active .svg-elem-5 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-6 {
  stroke-dashoffset: 226.1663px;
  stroke-dasharray: 226.1663px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 0.25s, fill 0.7s linear 1.25s;
  transition: stroke-dashoffset 1s linear 0.25s, fill 0.7s linear 1.25s;
}

svg.active .svg-elem-6 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-7 {
  stroke-dashoffset: 37.6432px;
  stroke-dasharray: 37.6432px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 0.3s, fill 0.7s linear 1.3s;
  transition: stroke-dashoffset 1s linear 0.3s, fill 0.7s linear 1.3s;
}

svg.active .svg-elem-7 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-8 {
  stroke-dashoffset: 183.4962px;
  stroke-dasharray: 183.4962px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 0.35s, fill 0.7s linear 1.35s;
  transition: stroke-dashoffset 1s linear 0.35s, fill 0.7s linear 1.35s;
}

svg.active .svg-elem-8 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-9 {
  stroke-dashoffset: 156.7098px;
  stroke-dasharray: 156.7098px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 0.4s, fill 0.7s linear 1.4s;
  transition: stroke-dashoffset 1s linear 0.4s, fill 0.7s linear 1.4s;
}

svg.active .svg-elem-9 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-10 {
  stroke-dashoffset: 85.0578px;
  stroke-dasharray: 85.0578px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 0.45s, fill 0.7s linear 1.45s;
  transition: stroke-dashoffset 1s linear 0.45s, fill 0.7s linear 1.45s;
}

svg.active .svg-elem-10 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-11 {
  stroke-dashoffset: 129.5664px;
  stroke-dasharray: 129.5664px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 0.5s, fill 0.7s linear 1.5s;
  transition: stroke-dashoffset 1s linear 0.5s, fill 0.7s linear 1.5s;
}

svg.active .svg-elem-11 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-12 {
  stroke-dashoffset: 282.116px;
  stroke-dasharray: 282.116px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 0.55s, fill 0.7s linear 1.55s;
  transition: stroke-dashoffset 1s linear 0.55s, fill 0.7s linear 1.55s;
}

svg.active .svg-elem-12 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-13 {
  stroke-dashoffset: 353.6055px;
  stroke-dasharray: 353.6055px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 0.6s, fill 0.7s linear 1.6s;
  transition: stroke-dashoffset 1s linear 0.6s, fill 0.7s linear 1.6s;
}

svg.active .svg-elem-13 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-14 {
  stroke-dashoffset: 411.6271px;
  stroke-dasharray: 411.6271px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 0.65s, fill 0.7s linear 1.65s;
  transition: stroke-dashoffset 1s linear 0.65s, fill 0.7s linear 1.65s;
}

svg.active .svg-elem-14 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-15 {
  stroke-dashoffset: 291.1788px;
  stroke-dasharray: 291.1788px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 0.7s, fill 0.7s linear 1.7s;
  transition: stroke-dashoffset 1s linear 0.7s, fill 0.7s linear 1.7s;
}

svg.active .svg-elem-15 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-16 {
  stroke-dashoffset: 516.1324px;
  stroke-dasharray: 516.1324px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 0.75s, fill 0.7s linear 1.75s;
  transition: stroke-dashoffset 1s linear 0.75s, fill 0.7s linear 1.75s;
}

svg.active .svg-elem-16 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-17 {
  stroke-dashoffset: 563.3672px;
  stroke-dasharray: 563.3672px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 0.8s, fill 0.7s linear 1.8s;
  transition: stroke-dashoffset 1s linear 0.8s, fill 0.7s linear 1.8s;
}

svg.active .svg-elem-17 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-18 {
  stroke-dashoffset: 226.9586px;
  stroke-dasharray: 226.9586px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 0.85s, fill 0.7s linear 1.85s;
  transition: stroke-dashoffset 1s linear 0.85s, fill 0.7s linear 1.85s;
}

svg.active .svg-elem-18 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-19 {
  stroke-dashoffset: 245.7989px;
  stroke-dasharray: 245.7989px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 0.9s, fill 0.7s linear 1.9s;
  transition: stroke-dashoffset 1s linear 0.9s, fill 0.7s linear 1.9s;
}

svg.active .svg-elem-19 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-20 {
  stroke-dashoffset: 185.8901px;
  stroke-dasharray: 185.8901px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 0.95s, fill 0.7s linear 1.95s;
  transition: stroke-dashoffset 1s linear 0.95s, fill 0.7s linear 1.95s;
}

svg.active .svg-elem-20 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-21 {
  stroke-dashoffset: 186.044px;
  stroke-dasharray: 186.044px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 1s, fill 0.7s linear 2s;
  transition: stroke-dashoffset 1s linear 1s, fill 0.7s linear 2s;
}

svg.active .svg-elem-21 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-22 {
  stroke-dashoffset: 79.4573px;
  stroke-dasharray: 79.4573px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 1.05s, fill 0.7s linear 2.05s;
  transition: stroke-dashoffset 1s linear 1.05s, fill 0.7s linear 2.05s;
}

svg.active .svg-elem-22 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-23 {
  stroke-dashoffset: 63.4785px;
  stroke-dasharray: 63.4785px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 1.1s, fill 0.7s linear 2.1s;
  transition: stroke-dashoffset 1s linear 1.1s, fill 0.7s linear 2.1s;
}

svg.active .svg-elem-23 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-24 {
  stroke-dashoffset: 79.4614px;
  stroke-dasharray: 79.4614px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 1.15s, fill 0.7s linear 2.15s;
  transition: stroke-dashoffset 1s linear 1.15s, fill 0.7s linear 2.15s;
}

svg.active .svg-elem-24 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-25 {
  stroke-dashoffset: 53.7723px;
  stroke-dasharray: 53.7723px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 1.2s, fill 0.7s linear 2.2s;
  transition: stroke-dashoffset 1s linear 1.2s, fill 0.7s linear 2.2s;
}

svg.active .svg-elem-25 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-26 {
  stroke-dashoffset: 168.7664px;
  stroke-dasharray: 168.7664px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 1.25s, fill 0.7s linear 2.25s;
  transition: stroke-dashoffset 1s linear 1.25s, fill 0.7s linear 2.25s;
}

svg.active .svg-elem-26 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-27 {
  stroke-dashoffset: 132.4719px;
  stroke-dasharray: 132.4719px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 1.3s, fill 0.7s linear 2.3s;
  transition: stroke-dashoffset 1s linear 1.3s, fill 0.7s linear 2.3s;
}

svg.active .svg-elem-27 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-28 {
  stroke-dashoffset: 142.2587px;
  stroke-dasharray: 142.2587px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 1.35s, fill 0.7s linear 2.35s;
  transition: stroke-dashoffset 1s linear 1.35s, fill 0.7s linear 2.35s;
}

svg.active .svg-elem-28 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-29 {
  stroke-dashoffset: 130.8392px;
  stroke-dasharray: 130.8392px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 1.4s, fill 0.7s linear 2.4s;
  transition: stroke-dashoffset 1s linear 1.4s, fill 0.7s linear 2.4s;
}

svg.active .svg-elem-29 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-30 {
  stroke-dashoffset: 113.2574px;
  stroke-dasharray: 113.2574px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 1.45s, fill 0.7s linear 2.45s;
  transition: stroke-dashoffset 1s linear 1.45s, fill 0.7s linear 2.45s;
}

svg.active .svg-elem-30 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-31 {
  stroke-dashoffset: 16.4679px;
  stroke-dasharray: 16.4679px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 1.5s, fill 0.7s linear 2.5s;
  transition: stroke-dashoffset 1s linear 1.5s, fill 0.7s linear 2.5s;
}

svg.active .svg-elem-31 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-32 {
  stroke-dashoffset: 197.8886px;
  stroke-dasharray: 197.8886px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 1.55s, fill 0.7s linear 2.55s;
  transition: stroke-dashoffset 1s linear 1.55s, fill 0.7s linear 2.55s;
}

svg.active .svg-elem-32 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-33 {
  stroke-dashoffset: 150.5006px;
  stroke-dasharray: 150.5006px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 1.6s, fill 0.7s linear 2.6s;
  transition: stroke-dashoffset 1s linear 1.6s, fill 0.7s linear 2.6s;
}

svg.active .svg-elem-33 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-34 {
  stroke-dashoffset: 50.3974px;
  stroke-dasharray: 50.3974px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 1.65s, fill 0.7s linear 2.65s;
  transition: stroke-dashoffset 1s linear 1.65s, fill 0.7s linear 2.65s;
}

svg.active .svg-elem-34 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-35 {
  stroke-dashoffset: 56.2822px;
  stroke-dasharray: 56.2822px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 1.7s, fill 0.7s linear 2.7s;
  transition: stroke-dashoffset 1s linear 1.7s, fill 0.7s linear 2.7s;
}

svg.active .svg-elem-35 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-36 {
  stroke-dashoffset: 76.5021px;
  stroke-dasharray: 76.5021px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 1.75s, fill 0.7s linear 2.75s;
  transition: stroke-dashoffset 1s linear 1.75s, fill 0.7s linear 2.75s;
}

svg.active .svg-elem-36 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-37 {
  stroke-dashoffset: 113.7296px;
  stroke-dasharray: 113.7296px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 1.8s, fill 0.7s linear 2.8s;
  transition: stroke-dashoffset 1s linear 1.8s, fill 0.7s linear 2.8s;
}

svg.active .svg-elem-37 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-38 {
  stroke-dashoffset: 173.5223px;
  stroke-dasharray: 173.5223px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 1.85s, fill 0.7s linear 2.85s;
  transition: stroke-dashoffset 1s linear 1.85s, fill 0.7s linear 2.85s;
}

svg.active .svg-elem-38 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-39 {
  stroke-dashoffset: 106.8852px;
  stroke-dasharray: 106.8852px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 1.9s, fill 0.7s linear 2.9s;
  transition: stroke-dashoffset 1s linear 1.9s, fill 0.7s linear 2.9s;
}

svg.active .svg-elem-39 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-40 {
  stroke-dashoffset: 197.5068px;
  stroke-dasharray: 197.5068px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 1.95s, fill 0.7s linear 2.95s;
  transition: stroke-dashoffset 1s linear 1.95s, fill 0.7s linear 2.95s;
}

svg.active .svg-elem-40 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-41 {
  stroke-dashoffset: 100.8848px;
  stroke-dasharray: 100.8848px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 2s, fill 0.7s linear 3s;
  transition: stroke-dashoffset 1s linear 2s, fill 0.7s linear 3s;
}

svg.active .svg-elem-41 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-42 {
  stroke-dashoffset: 192.7333px;
  stroke-dasharray: 192.7333px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 2.05s, fill 0.7s linear 3.05s;
  transition: stroke-dashoffset 1s linear 2.05s, fill 0.7s linear 3.05s;
}

svg.active .svg-elem-42 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-43 {
  stroke-dashoffset: 145.38px;
  stroke-dasharray: 145.38px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 2.1s, fill 0.7s linear 3.1s;
  transition: stroke-dashoffset 1s linear 2.1s, fill 0.7s linear 3.1s;
}

svg.active .svg-elem-43 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-44 {
  stroke-dashoffset: 67.86px;
  stroke-dasharray: 67.86px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 2.15s, fill 0.7s linear 3.15s;
  transition: stroke-dashoffset 1s linear 2.15s, fill 0.7s linear 3.15s;
}

svg.active .svg-elem-44 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-45 {
  stroke-dashoffset: 179.7893px;
  stroke-dasharray: 179.7893px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 2.2s, fill 0.7s linear 3.2s;
  transition: stroke-dashoffset 1s linear 2.2s, fill 0.7s linear 3.2s;
}

svg.active .svg-elem-45 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-46 {
  stroke-dashoffset: 148.3102px;
  stroke-dasharray: 148.3102px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 2.25s, fill 0.7s linear 3.25s;
  transition: stroke-dashoffset 1s linear 2.25s, fill 0.7s linear 3.25s;
}

svg.active .svg-elem-46 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-47 {
  stroke-dashoffset: 211.2301px;
  stroke-dasharray: 211.2301px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 2.3s, fill 0.7s linear 3.3s;
  transition: stroke-dashoffset 1s linear 2.3s, fill 0.7s linear 3.3s;
}

svg.active .svg-elem-47 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-48 {
  stroke-dashoffset: 16.4813px;
  stroke-dasharray: 16.4813px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 2.35s, fill 0.7s linear 3.35s;
  transition: stroke-dashoffset 1s linear 2.35s, fill 0.7s linear 3.35s;
}

svg.active .svg-elem-48 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-49 {
  stroke-dashoffset: 161.6501px;
  stroke-dasharray: 161.6501px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 2.4s, fill 0.7s linear 3.4s;
  transition: stroke-dashoffset 1s linear 2.4s, fill 0.7s linear 3.4s;
}

svg.active .svg-elem-49 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-50 {
  stroke-dashoffset: 171.8219px;
  stroke-dasharray: 171.8219px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 2.45s, fill 0.7s linear 3.45s;
  transition: stroke-dashoffset 1s linear 2.45s, fill 0.7s linear 3.45s;
}

svg.active .svg-elem-50 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-51 {
  stroke-dashoffset: 170.8076px;
  stroke-dasharray: 170.8076px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 2.5s, fill 0.7s linear 3.5s;
  transition: stroke-dashoffset 1s linear 2.5s, fill 0.7s linear 3.5s;
}

svg.active .svg-elem-51 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-52 {
  stroke-dashoffset: 82.0126px;
  stroke-dasharray: 82.0126px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 2.55s, fill 0.7s linear 3.55s;
  transition: stroke-dashoffset 1s linear 2.55s, fill 0.7s linear 3.55s;
}

svg.active .svg-elem-52 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-53 {
  stroke-dashoffset: 72.6035px;
  stroke-dasharray: 72.6035px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 2.6s, fill 0.7s linear 3.6s;
  transition: stroke-dashoffset 1s linear 2.6s, fill 0.7s linear 3.6s;
}

svg.active .svg-elem-53 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-54 {
  stroke-dashoffset: 191.2494px;
  stroke-dasharray: 191.2494px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 2.65s, fill 0.7s linear 3.65s;
  transition: stroke-dashoffset 1s linear 2.65s, fill 0.7s linear 3.65s;
}

svg.active .svg-elem-54 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-55 {
  stroke-dashoffset: 146.8974px;
  stroke-dasharray: 146.8974px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 2.7s, fill 0.7s linear 3.7s;
  transition: stroke-dashoffset 1s linear 2.7s, fill 0.7s linear 3.7s;
}

svg.active .svg-elem-55 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-56 {
  stroke-dashoffset: 54.6634px;
  stroke-dasharray: 54.6634px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 2.75s, fill 0.7s linear 3.75s;
  transition: stroke-dashoffset 1s linear 2.75s, fill 0.7s linear 3.75s;
}

svg.active .svg-elem-56 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-57 {
  stroke-dashoffset: 106.4365px;
  stroke-dasharray: 106.4365px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 2.8s, fill 0.7s linear 3.8s;
  transition: stroke-dashoffset 1s linear 2.8s, fill 0.7s linear 3.8s;
}

svg.active .svg-elem-57 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-58 {
  stroke-dashoffset: 85.2812px;
  stroke-dasharray: 85.2812px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 2.85s, fill 0.7s linear 3.85s;
  transition: stroke-dashoffset 1s linear 2.85s, fill 0.7s linear 3.85s;
}

svg.active .svg-elem-58 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

svg .svg-elem-59 {
  stroke-dashoffset: 30.7856px;
  stroke-dasharray: 30.7856px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s linear 2.9s, fill 0.7s linear 3.9s;
  transition: stroke-dashoffset 1s linear 2.9s, fill 0.7s linear 3.9s;
}

svg.active .svg-elem-59 {
  stroke-dashoffset: 0;
  fill: #2f3e4d;
}

.mw_wp_form .error {
  font-size: 1.4rem;
  color: #f00;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mw_wp_form .error {
    font-size: 12px;
  }
}

.mwwp-button {
  width: 100%;
  height: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: none;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 1;
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #f28705;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  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) {
  .mwwp-button {
    font-size: 13px;
  }
}
.mwwp-button:hover {
  color: #fff;
}
.mwwp-button--back {
  color: #2e3d4c;
}
.mwwp-button--back:hover {
  color: #fff;
}
.mwwp-button.btn-submit {
  display: none;
}

.mwform-radio-field.horizontal-item {
  min-width: 180px;
  padding-right: 10px;
  margin: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mwform-radio-field.horizontal-item {
    min-width: calc(50% - 10px);
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .mwform-radio-field.horizontal-item + .horizontal-item {
    margin-left: 0 !important;
  }
}
.mwform-radio-field.horizontal-item input[type=radio] {
  display: none;
}
.mwform-radio-field.horizontal-item input[type=radio] + *::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 26px;
  margin-top: -3px;
  margin-right: 10px;
  border-radius: 50%;
  border: 1px solid rgba(46, 61, 76, 0.5);
}
@media screen and (max-width: 767px) {
  .mwform-radio-field.horizontal-item input[type=radio] + *::before {
    width: 18px;
    height: 18px;
  }
}
.mwform-radio-field.horizontal-item input[type=radio] + *::after {
  content: "";
  width: 0;
  height: 0;
  background-color: #2e3d4c;
  border-radius: 50%;
  position: absolute;
  top: 16px;
  left: 14px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .mwform-radio-field.horizontal-item input[type=radio] + *::after {
    top: 10px;
    left: 10px;
  }
}
.mwform-radio-field.horizontal-item input[type=radio]:checked + *::after {
  width: 13px;
  height: 13px;
}
@media screen and (max-width: 767px) {
  .mwform-radio-field.horizontal-item input[type=radio]:checked + *::after {
    width: 9px;
    height: 9px;
  }
}
.mwform-radio-field.horizontal-item input[type=radio]:checked + * {
  color: #2e3d4c;
}
.mwform-radio-field.horizontal-item span {
  cursor: pointer;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .mwform-radio-field.horizontal-item span {
    font-size: 13px;
  }
}

.mwform-checkbox-field.horizontal-item {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .mwform-checkbox-field.horizontal-item {
    margin-right: 15px;
  }
}

.contact__input--radio.contact__input--free .mwform-radio-field.horizontal-item {
  min-width: initial;
}

.mw_wp_form_confirm .contact__button-zip,
.mw_wp_form_confirm .contact__privacy,
.mw_wp_form_confirm .contact__file-button,
.mw_wp_form_confirm .contact__radio-sub,
.mw_wp_form_confirm span.note,
.mw_wp_form_confirm .btn-confirm {
  display: none !important;
}
.mw_wp_form_confirm .contact__file {
  gap: 0;
}
.mw_wp_form_confirm .contact__field {
  font-weight: 700;
}
.mw_wp_form_confirm .contact__field > *:not(:first-of-type) {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .contact__field > *:not(:first-of-type) {
    margin-top: 7.5px;
  }
}
.mw_wp_form_confirm .contact__input {
  width: auto !important;
  height: auto !important;
}
.mw_wp_form_confirm .contact__input--radio {
  gap: 0 !important;
}
.mw_wp_form_confirm .contact__field-wrapper {
  margin: 0;
}
.mw_wp_form_confirm .contact__field-wrapper > *:not(:first-child) {
  margin-left: 10px;
}
.mw_wp_form_confirm .contact__button--back,
.mw_wp_form_confirm .btn-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mwform-file-delete,
.mw-wp-form_file {
  opacity: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

.slider-ach {
  width: 100%;
  height: 335px;
}
@media screen and (max-width: 767px) {
  .slider-ach {
    height: auto;
  }
}
.slider-ach__item {
  width: 380px;
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  .slider-ach__item {
    width: 100%;
    margin: 0;
  }
}
.slider-ach__item > * {
  width: 100% !important;
}
@media screen and (max-width: 767px) {
  .slider-ach__item:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.slider-ach::after {
  content: "flickity";
  display: none;
}
@media screen and (max-width: 767px) {
  .slider-ach::after {
    content: "";
  }
}
.slider-ach .flickity-button {
  background: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 1;
}
.slider-ach .flickity-button:hover {
  opacity: 0.7;
}
.slider-ach .flickity-button-icon {
  display: none;
}
.slider-ach .flickity-prev-next-button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(46, 61, 76, 0.2);
  -webkit-transform: initial;
          transform: initial;
  top: -90px;
}
.slider-ach .flickity-prev-next-button::before {
  content: "";
  width: 13px;
  height: 6.9px;
  background: url("../src/img/icons/icon-arrow.svg") no-repeat center right/100% 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.slider-ach .flickity-prev-next-button.previous {
  right: 200px;
  left: initial;
}
.slider-ach .flickity-prev-next-button.previous::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.slider-ach .flickity-prev-next-button.next {
  right: 255px;
}
.slider-ach .flickity-prev-next-button.next::before {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}
.slider-ach .flickity-viewport {
  min-height: 30px;
}

.empty-post__message {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .empty-post__message {
    font-size: 13px;
  }
}

.wp-pagenavi {
  font-family: "STIX Two Text", serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  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) {
  .wp-pagenavi {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 15px;
  }
}
.wp-pagenavi .extend {
  font: 500 2.2rem "Noto Serif JP", serif !important;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .extend {
    font-size: 11px !important;
  }
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .page,
.wp-pagenavi .current {
  width: 40px !important;
  height: 40px !important;
  margin: 0 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 1 !important;
  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) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink,
  .wp-pagenavi .page,
  .wp-pagenavi .current {
    width: 35.2px !important;
    height: 35.2px !important;
    margin: 0 7.5px 7.5px;
  }
}
.wp-pagenavi .page {
  background-color: #f2f2f2;
  border: 1px solid #f2f2f2;
}
.wp-pagenavi .page:hover,
.wp-pagenavi .current {
  background-color: #2e3d4c;
  border-color: #2e3d4c;
  color: #fff;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  border: 1px solid #2e3d4c;
  position: relative;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 16px;
  background: url("../src/img/icons/icon-caret-blue.png") no-repeat center;
  background-size: contain;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .previouspostslink::before,
  .wp-pagenavi .nextpostslink::before {
    width: 5px;
    height: 8px;
  }
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  background-color: #2e3d4c;
}
.wp-pagenavi .previouspostslink:hover::before,
.wp-pagenavi .nextpostslink:hover::before {
  background-image: url("../src/img/icons/icon-caret-white.png");
}
.wp-pagenavi .previouspostslink {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.product__pagination .wp-pagenavi .extend {
  display: none !important;
}

.news__pagination .wp-pagenavi .larger:nth-last-of-type(2) + .extend,
.news__pagination .wp-pagenavi .previouspostslink + .extend {
  display: none !important;
}

@-webkit-keyframes fadein {
  from {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition: 0.1s ease;
    transition: 0.1s ease;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: 0.1s ease;
    transition: 0.1s ease;
  }
}

@keyframes fadein {
  from {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition: 0.1s ease;
    transition: 0.1s ease;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: 0.1s ease;
    transition: 0.1s ease;
  }
}