@charset "UTF-8";
/*
 * HTML
 * -------------------------------------------------------------------
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@500&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6em;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  outline: none;
}

/*
 * wrapper
 * -------------------------------------------------------------------
 */
.wrapper {
  display: block;
  margin: 0px auto;
  padding: 0px;
  min-height: 100vh;
}

.wrapper > section:nth-child(even) {
  background: #edf9ff;
}

/*
 * pageTop scroll
 * -------------------------------------------------------------------
 */
.scroll-top {
  position: fixed;
  bottom: 5vh;
  right: 5vw;
  z-index: 100;
  display: block;
  width: 48px;
  height: 48px;
  padding: 6px;
  border-radius: 50%;
  background: #298dcd;
  cursor: pointer;
}

.scroll-top:hover {
  cursor: pointer;
  opacity: 0.6;
}

.scroll-top {
  opacity: 0;
  -webkit-transition: opacity 350ms ease;
  transition: opacity 350ms ease;
}

.is-hide {
  pointer-events: none;
}

/*
 * Swiper css
 * -------------------------------------------------------------------
 */
/* Swiperコンテナのサイズを変更 */
.swiper {
  max-width: 1440px;
  /* Swiperのサイズ指定 */
  margin: 0 auto;
}

/* ナビゲーションの色と大きさを変更 */
:root {
  --swiper-navigation-color: #000000;
  --swiper-pagination-color: #298dcd;
  --swiper-pagination-bullet-size: 24px;
  --swiper-pagination-bullet-width: 24px;
  --swiper-pagination-bullet-height: 24px;
}

/* ナビゲーションの位置を変更 */
.swiper-button-prev:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  color: #298dcd;
  /* 色をCSTブルーに */
  margin-left: 20px;
  /* マージンを追加 */
}

.swiper-button-next:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  color: #298dcd;
  /* 色をCSTブルーに */
  margin-right: 20px;
}

/* ページネーションの位置を変更 */
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 80px;
}

/* A Modern CSS Reset */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@-webkit-keyframes menu-container-appeared {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes menu-container-appeared {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes menu-container-leaved {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes menu-container-leaved {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@-webkit-keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 * MODAL PHOTO
 * -------------------------------------------------------------------
 */
@-webkit-keyframes modal-photo-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-photo-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes modal-photo-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes modal-photo-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*
 * Mixin
 * -------------------------------------------------------------------
 */
/*
 * Module
 * -------------------------------------------------------------------
 */
.nav-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.1);
}

.nav-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 1440px;
  height: 8rem;
  margin: 0 auto;
  padding: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (min-width: 992px) {
  .nav-header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    max-width: 1440px;
    height: 8rem;
    margin: 0 auto;
    padding: 0 15px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
}

.nav-header__logo {
  font-weight: 700;
  font-family: "Noto Sans JP", "Roboto";
  font-display: swap;
  /* lazy load */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
  color: #222222;
  font-weight: 700;
  font-size: 2rem;
  max-width: 20rem;
  margin-left: 1rem;
}

@media screen and (min-width: 600px) {
  .nav-header__logo {
    font-weight: 700;
    font-family: "Noto Sans JP", "Roboto";
    font-display: swap;
    /* lazy load */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: auto;
    color: #222222;
    font-weight: 700;
    font-size: 2rem;
    max-width: 19rem;
  }
}

@media screen and (min-width: 992px) {
  .nav-header__logo {
    font-weight: 700;
    font-family: "Noto Sans JP", "Roboto";
    font-display: swap;
    /* lazy load */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: auto;
    color: #222222;
    font-weight: 700;
    font-size: 2rem;
    max-width: 19rem;
  }
}

@media screen and (min-width: 1080px) {
  .nav-header__logo {
    font-weight: 700;
    font-family: "Noto Sans JP", "Roboto";
    font-display: swap;
    /* lazy load */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: auto;
    color: #222222;
    font-weight: 700;
    font-size: 2rem;
    max-width: 25rem;
  }
}

.nav-header__logo:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.nav-header__logo-image {
  display: block;
  height: 3rem;
}

.nav-header__menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .nav-header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.nav-header__menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  max-width: 100%;
  height: 100%;
  white-space: nowrap;
}

.nav-header__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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: #222222;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0 8px;
  min-width: 10rem;
}

@media screen and (min-width: 600px) {
  .nav-header__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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    color: #222222;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 0 8px;
    min-width: 8rem;
  }
}

@media screen and (min-width: 992px) {
  .nav-header__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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    color: #222222;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 0 8px;
    min-width: 8rem;
  }
}

@media screen and (min-width: 1080px) {
  .nav-header__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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    color: #222222;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 0 8px;
    min-width: 8rem;
  }
}

.nav-header__link:after {
  display: block;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #298dcd;
  content: "";
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-header__link:hover:after {
  opacity: 1;
  width: 100%;
}

.nav-header__contact {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  -webkit-transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  background-color: #298dcd;
  color: #ffffff;
  margin-left: 1.6rem;
  padding: 1.2rem 3.2rem;
  border-radius: 0.8rem;
  white-space: nowrap;
}

.nav-header__contact:hover {
  background-color: #2170a3;
}

.nav-header__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 8rem;
  height: 8rem;
  background: #298dcd;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media (min-width: 992px) {
  .nav-header__toggle {
    display: none;
  }
}

.nav-header__toggle:hover {
  background: #257eb8;
}

.nav-header__toggle-line {
  display: block;
  width: 35%;
  border-bottom: 2px solid #fff;
}

.nav-header__toggle-line:nth-child(2) {
  margin: 10% 0px;
}

.nav-drawer {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 1002;
}

.nav-drawer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;
  height: 100%;
  max-width: 350px;
  min-width: 200px;
  background: #fff;
  border-left: #e2e2e2 1px solid;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-animation-duration: var(--nav-drawer-duration);
          animation-duration: var(--nav-drawer-duration);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.nav-drawer[data-open="true"] .nav-drawer__container {
  -webkit-animation-name: menu-container-appeared;
          animation-name: menu-container-appeared;
}

.nav-drawer[data-open="false"] .nav-drawer__container {
  -webkit-animation-name: menu-container-leaved;
          animation-name: menu-container-leaved;
}

.nav-drawer__menu {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
}

.nav-drawer__menu-item {
  border-bottom: #e2e2e2 1px dashed;
}

.nav-drawer__menu-item:hover {
  background: #efefef;
}

.nav-drawer__link {
  position: relative;
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: inherit;
  letter-spacing: 0.01em;
  padding: 1em 2.5em 1em 2em;
  text-decoration: none;
}

.nav-drawer__link-main {
  display: block;
  font-weight: 500;
}

.nav-drawer__link-sub {
  color: #aaa;
  display: block;
}

.nav-drawer__menu-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px;
  padding: 0px;
}

.nav-drawer__button-close {
  position: relative;
  background-color: #298dcd;
  margin: 0px 0px 0px auto;
  padding: 0px;
  width: 8rem;
  height: 8rem;
  border: none;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.nav-drawer__button-close:hover, .nav-drawer__button-close:focus {
  outline: none;
  background: #3899d7;
}

.nav-drawer__button-close-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 2px;
  margin: auto;
  background: #fff;
}

.nav-drawer__button-close-line:nth-child(1) {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}

.nav-drawer__button-close-line:nth-child(2) {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

.nav-drawer__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.08);
  -webkit-animation-duration: var(--nav-drawer-duration);
          animation-duration: var(--nav-drawer-duration);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.nav-drawer[data-open="true"] .nav-drawer__overlay {
  -webkit-animation-name: menu-overlay-appeared;
          animation-name: menu-overlay-appeared;
}

.nav-drawer[data-open="false"] .nav-drawer__overlay {
  -webkit-animation-name: menu-overlay-leaved;
          animation-name: menu-overlay-leaved;
}

.nav-pagetop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  bottom: 60px;
  right: 15px;
  z-index: -1000;
  width: 70px;
  height: 70px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  background: #298dcd;
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-pagetop.active {
  opacity: 1;
  z-index: 1000;
}

.nav-pagetop:before {
  display: block;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-display: swap;
  /* lazy load */
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  content: "\e5ce";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-pagetop:after {
  content: 'PAGETOP';
  display: block;
  padding: 4px 0px;
}

.nav-pagetop:hover {
  background: #257eb8;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}

.nav-pagetop:hover:before {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.mainvisual {
  position: relative;
  background-image: url("../img/top_mainvisual.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mainvisual::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(255, 255, 255, 0.2);
  content: "";
}

.mainvisual__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1440px;
  height: 130vh;
  padding-top: 6rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  height: 50rem;
  margin-top: 4rem;
  z-index: 1;
}

@media screen and (min-width: 600px) {
  .mainvisual__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1440px;
    height: 130vh;
    padding-top: 6rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    height: 65rem;
    margin-top: 4rem;
    z-index: 1;
  }
}

@media screen and (min-width: 992px) {
  .mainvisual__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1440px;
    height: 130vh;
    padding-top: 6rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    height: 100rem;
    z-index: 1;
  }
}

@media screen and (min-width: 1080px) {
  .mainvisual__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1440px;
    height: 130vh;
    padding-top: 6rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }
}

.mainvisual__content {
  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;
  margin: 0 auto;
  text-align: center;
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2);
  background: #ffffff;
  position: relative;
  z-index: 1;
  height: 15rem;
  margin: 0 auto;
  margin-top: 40%;
  padding: 10%;
  opacity: 0.9;
}

@media screen and (min-width: 600px) {
  .mainvisual__content {
    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;
    margin: 0 auto;
    text-align: center;
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
    background: #ffffff;
    position: relative;
    z-index: 1;
    height: 25rem;
    margin-top: 30%;
    padding: 10%;
    padding-bottom: 8%;
    opacity: 0.9;
  }
}

@media screen and (min-width: 992px) {
  .mainvisual__content {
    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;
    margin: 0 auto;
    text-align: center;
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
    background: #ffffff;
    position: relative;
    z-index: 1;
    height: 40rem;
    margin-top: 40%;
    padding: 10%;
    padding-bottom: 8%;
    opacity: 0.9;
  }
}

@media screen and (min-width: 1080px) {
  .mainvisual__content {
    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;
    margin: 0 auto;
    text-align: center;
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
    background: #ffffff;
    position: relative;
    z-index: 1;
    height: 40rem;
    margin-top: 30%;
    padding: 10%;
    padding-bottom: 8%;
    opacity: 0.9;
  }
}

.mainvisual__content::before {
  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;
  margin: 0 auto;
  text-align: center;
  width: 94vw;
  margin-left: calc((100% - 100vw) / 2);
  content: "";
  display: block;
  height: 0.5rem;
  background-color: #298dcd;
  position: absolute;
  top: 1rem;
  left: 0;
}

@media screen and (min-width: 992px) {
  .mainvisual__content::before {
    width: 72vw;
    margin-left: calc((100% - 100vw) / 2);
    content: "";
    display: block;
    height: 1rem;
    background-color: #298dcd;
    position: absolute;
    top: 2rem;
    left: 0;
  }
}

.mainvisual__content::after {
  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;
  margin: 0 auto;
  text-align: center;
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2);
  content: "";
  display: block;
  height: 0.5rem;
  background-color: #298dcd;
  position: absolute;
  bottom: 1rem;
  left: 0;
}

@media screen and (min-width: 992px) {
  .mainvisual__content::after {
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
    content: "";
    display: block;
    height: 1rem;
    background-color: #298dcd;
    position: absolute;
    bottom: 2rem;
    left: 0;
  }
}

.mainvisual__text-main {
  font-weight: 700;
  font-family: "Noto Sans JP", "Roboto";
  font-display: swap;
  /* lazy load */
  color: #298dcd;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  .mainvisual__text-main {
    color: #298dcd;
    font-size: 3.6rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-align: left;
    margin: 0 auto;
    margin-bottom: 2rem;
    margin-top: 1.75rem;
  }
}

@media screen and (min-width: 992px) {
  .mainvisual__text-main {
    color: #298dcd;
    font-size: 6.6rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-align: left;
    margin: 0 auto;
    margin-bottom: 0;
    margin-top: 3.5rem;
  }
}

.mainvisual__text-sub {
  color: #222222;
  font-size: 1.2rem;
  text-align: center;
  padding-top: 0.5rem;
  margin-bottom: 0;
}

@media screen and (min-width: 375px) {
  .mainvisual__text-sub {
    color: #222222;
    font-size: 1.7rem;
    text-align: center;
    padding-top: 0.5rem;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 600px) {
  .mainvisual__text-sub {
    color: #222222;
    font-size: 2.6rem;
    text-align: right;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .mainvisual__text-sub {
    color: #222222;
    font-size: 3.6rem;
    text-align: right;
    margin-bottom: 4rem;
    margin-top: 2rem;
  }
}

.mainvisual__text-bg {
  font-weight: 700;
  font-family: "Noto Sans JP", "Roboto";
  font-display: swap;
  /* lazy load */
  color: #222222;
  font-weight: 700;
  font-size: 8rem;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  position: absolute;
  top: -6.7rem;
  left: 0;
  opacity: 0.9;
  z-index: 1;
}

@media screen and (min-width: 600px) {
  .mainvisual__text-bg {
    color: #222222;
    font-size: 12rem;
    line-height: 1;
    letter-spacing: 0.01em;
    text-align: left;
    position: absolute;
    top: -10.7rem;
    left: 0;
    opacity: 0.9;
    z-index: 1;
  }
}

@media screen and (min-width: 992px) {
  .mainvisual__text-bg {
    color: #222222;
    font-size: 20rem;
    line-height: 1;
    letter-spacing: 0.01em;
    text-align: left;
    position: absolute;
    top: -17rem;
    left: 0;
    opacity: 0.9;
    z-index: 1;
  }
}

.pagevisual-about {
  position: relative;
  z-index: 0;
  margin: 0;
  padding-top: calc(8rem + 6.4rem);
  padding-bottom: 6.4rem;
  background-image: url("../img/about/about_main.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 992px) {
  .pagevisual-about {
    padding-top: calc(8rem + 18.6rem);
    padding-bottom: 18.6rem;
  }
}

.pagevisual-about::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
  max-width: 100%;
  max-height: 38%;
  margin-top: 13.5rem;
}

@media screen and (min-width: 600px) {
  .pagevisual-about::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    content: "";
    max-width: 34%;
    max-height: 38%;
    margin-top: 13.5rem;
  }
}

@media screen and (min-width: 992px) {
  .pagevisual-about::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    content: "";
    max-width: 34%;
    max-height: 32%;
    margin-top: 23rem;
  }
}

.pagevisual-about__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}

.pagevisual-about__text-main {
  font-weight: 700;
  font-family: "Noto Sans JP", "Roboto";
  font-display: swap;
  /* lazy load */
  font-size: 3.2rem;
}

@media screen and (min-width: 992px) {
  .pagevisual-about__text-main {
    font-size: 4rem;
  }
}

.pagevisual-about__text-main:after {
  display: block;
  max-width: 20rem;
  margin: 0.8rem 0;
  border-bottom: 3px solid #298dcd;
  content: "";
}

.pagevisual-about__text-sub {
  color: #222222;
}

.pagevisual-business {
  position: relative;
  z-index: 0;
  margin: 0;
  padding-top: calc(8rem + 6.4rem);
  padding-bottom: 6.4rem;
  background-image: url("../img/business/business_main.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 992px) {
  .pagevisual-business {
    padding-top: calc(8rem + 18.6rem);
    padding-bottom: 18.6rem;
  }
}

.pagevisual-business::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
  max-width: 100%;
  max-height: 38%;
  margin-top: 13.5rem;
}

@media screen and (min-width: 600px) {
  .pagevisual-business::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    content: "";
    max-width: 34%;
    max-height: 38%;
    margin-top: 13.5rem;
  }
}

@media screen and (min-width: 992px) {
  .pagevisual-business::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    content: "";
    max-width: 34%;
    max-height: 32%;
    margin-top: 23rem;
  }
}

.pagevisual-business__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}

.pagevisual-business__text-main {
  font-weight: 700;
  font-family: "Noto Sans JP", "Roboto";
  font-display: swap;
  /* lazy load */
  font-size: 3.2rem;
}

@media screen and (min-width: 992px) {
  .pagevisual-business__text-main {
    font-size: 4rem;
  }
}

.pagevisual-business__text-main:after {
  display: block;
  max-width: 20rem;
  margin: 0.8rem 0;
  border-bottom: 3px solid #298dcd;
  content: "";
}

.pagevisual-business__text-sub {
  color: #222222;
}

.pagevisual-employee {
  position: relative;
  z-index: 0;
  margin: 0;
  padding-top: calc(8rem + 6.4rem);
  padding-bottom: 6.4rem;
  background-image: url("../img/employee/employee_main.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 992px) {
  .pagevisual-employee {
    padding-top: calc(8rem + 18.6rem);
    padding-bottom: 18.6rem;
  }
}

.pagevisual-employee::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
  max-width: 100%;
  max-height: 38%;
  margin-top: 13.5rem;
}

@media screen and (min-width: 600px) {
  .pagevisual-employee::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    content: "";
    max-width: 34%;
    max-height: 38%;
    margin-top: 13.5rem;
  }
}

@media screen and (min-width: 992px) {
  .pagevisual-employee::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    content: "";
    max-width: 34%;
    max-height: 32%;
    margin-top: 23rem;
  }
}

.pagevisual-employee__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}

.pagevisual-employee__text-main {
  font-weight: 700;
  font-family: "Noto Sans JP", "Roboto";
  font-display: swap;
  /* lazy load */
  font-size: 3.2rem;
}

@media screen and (min-width: 992px) {
  .pagevisual-employee__text-main {
    font-size: 4rem;
  }
}

.pagevisual-employee__text-main:after {
  display: block;
  max-width: 20rem;
  margin: 0.8rem 0;
  border-bottom: 3px solid #298dcd;
  content: "";
}

.pagevisual-employee__text-sub {
  color: #222222;
}

.pagevisual-employee-detail {
  position: relative;
  z-index: 0;
  margin: 0;
  padding-top: calc(8rem + 6.4rem);
  padding-bottom: 6.4rem;
  background-image: url("../img/employee_detail/employee_detail_main.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 992px) {
  .pagevisual-employee-detail {
    padding-top: calc(8rem + 18.6rem);
    padding-bottom: 18.6rem;
  }
}

.pagevisual-employee-detail::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
  max-width: 100%;
  max-height: 38%;
  margin-top: 13.5rem;
}

@media screen and (min-width: 600px) {
  .pagevisual-employee-detail::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    content: "";
    max-width: 40%;
    max-height: 38%;
    margin-top: 13.5rem;
  }
}

@media screen and (min-width: 992px) {
  .pagevisual-employee-detail::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    content: "";
    max-width: 34%;
    max-height: 32%;
    margin-top: 23rem;
  }
}

.pagevisual-employee-detail__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}

.pagevisual-employee-detail__text-main {
  font-weight: 700;
  font-family: "Noto Sans JP", "Roboto";
  font-display: swap;
  /* lazy load */
  font-size: 3.2rem;
}

@media screen and (min-width: 992px) {
  .pagevisual-employee-detail__text-main {
    font-size: 4rem;
  }
}

.pagevisual-employee-detail__text-main:after {
  display: block;
  max-width: 26rem;
  margin: 0.8rem 0;
  border-bottom: 3px solid #298dcd;
  content: "";
}

@media screen and (min-width: 992px) {
  .pagevisual-employee-detail__text-main:after {
    display: block;
    max-width: 32rem;
    margin: 0.8rem 0;
    border-bottom: 3px solid #298dcd;
    content: "";
  }
}

.pagevisual-employee-detail__text-sub {
  color: #222222;
}

.pagevisual-culture {
  position: relative;
  z-index: 0;
  margin: 0;
  padding-top: calc(8rem + 6.4rem);
  padding-bottom: 6.4rem;
  background-image: url("../img/culture/culture_main.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 992px) {
  .pagevisual-culture {
    padding-top: calc(8rem + 18.6rem);
    padding-bottom: 18.6rem;
  }
}

.pagevisual-culture::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
  max-width: 100%;
  max-height: 38%;
  margin-top: 13.5rem;
}

@media screen and (min-width: 600px) {
  .pagevisual-culture::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    content: "";
    max-width: 34%;
    max-height: 38%;
    margin-top: 13.5rem;
  }
}

@media screen and (min-width: 992px) {
  .pagevisual-culture::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    content: "";
    max-width: 34%;
    max-height: 32%;
    margin-top: 23rem;
  }
}

.pagevisual-culture__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}

.pagevisual-culture__text-main {
  font-weight: 700;
  font-family: "Noto Sans JP", "Roboto";
  font-display: swap;
  /* lazy load */
  font-size: 3.2rem;
}

@media screen and (min-width: 992px) {
  .pagevisual-culture__text-main {
    font-size: 4rem;
  }
}

.pagevisual-culture__text-main:after {
  display: block;
  max-width: 20rem;
  margin: 0.8rem 0;
  border-bottom: 3px solid #298dcd;
  content: "";
}

.pagevisual-culture__text-sub {
  color: #222222;
}

.pagevisual-company {
  position: relative;
  z-index: 0;
  margin: 0;
  padding-top: calc(8rem + 6.4rem);
  padding-bottom: 6.4rem;
  background-image: url("../img/company/company_main.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 992px) {
  .pagevisual-company {
    padding-top: calc(8rem + 18.6rem);
    padding-bottom: 18.6rem;
  }
}

.pagevisual-company::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
  max-width: 100%;
  max-height: 38%;
  margin-top: 13.5rem;
}

@media screen and (min-width: 600px) {
  .pagevisual-company::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    content: "";
    max-width: 34%;
    max-height: 38%;
    margin-top: 13.5rem;
  }
}

@media screen and (min-width: 992px) {
  .pagevisual-company::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    content: "";
    max-width: 34%;
    max-height: 32%;
    margin-top: 23rem;
  }
}

.pagevisual-company__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}

.pagevisual-company__text-main {
  font-weight: 700;
  font-family: "Noto Sans JP", "Roboto";
  font-display: swap;
  /* lazy load */
  font-size: 3.2rem;
}

@media screen and (min-width: 992px) {
  .pagevisual-company__text-main {
    font-size: 4rem;
  }
}

.pagevisual-company__text-main:after {
  display: block;
  max-width: 20rem;
  margin: 0.8rem 0;
  border-bottom: 3px solid #298dcd;
  content: "";
}

.pagevisual-company__text-sub {
  color: #222222;
}

.pagevisual-requirements {
  position: relative;
  z-index: 0;
  margin: 0;
  padding-top: calc(8rem + 6.4rem);
  padding-bottom: 6.4rem;
  background-image: url("../img/requirements/requirements_main.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 992px) {
  .pagevisual-requirements {
    padding-top: calc(8rem + 18.6rem);
    padding-bottom: 18.6rem;
  }
}

.pagevisual-requirements::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
  max-width: 100%;
  max-height: 38%;
  margin-top: 13.5rem;
}

@media screen and (min-width: 600px) {
  .pagevisual-requirements::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    content: "";
    max-width: 34%;
    max-height: 38%;
    margin-top: 13.5rem;
  }
}

@media screen and (min-width: 992px) {
  .pagevisual-requirements::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    content: "";
    max-width: 34%;
    max-height: 32%;
    margin-top: 23rem;
  }
}

.pagevisual-requirements__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}

.pagevisual-requirements__text-main {
  font-weight: 700;
  font-family: "Noto Sans JP", "Roboto";
  font-display: swap;
  /* lazy load */
  font-size: 3.2rem;
}

@media screen and (min-width: 992px) {
  .pagevisual-requirements__text-main {
    font-size: 4rem;
  }
}

.pagevisual-requirements__text-main:after {
  display: block;
  max-width: 20rem;
  margin: 0.8rem 0;
  border-bottom: 3px solid #298dcd;
  content: "";
}

.pagevisual-requirements__text-sub {
  color: #222222;
}

.pagevisual-new-graduate {
  position: relative;
  z-index: 0;
  margin: 0;
  padding-top: calc(8rem + 6.4rem);
  padding-bottom: 6.4rem;
  background-image: url("../img/new_graduate/new_graduate_main.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 992px) {
  .pagevisual-new-graduate {
    padding-top: calc(8rem + 18.6rem);
    padding-bottom: 18.6rem;
  }
}

.pagevisual-new-graduate::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
  max-width: 100%;
  max-height: 38%;
  margin-top: 13.5rem;
}

@media screen and (min-width: 600px) {
  .pagevisual-new-graduate::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    content: "";
    max-width: 34%;
    max-height: 38%;
    margin-top: 13.5rem;
  }
}

@media screen and (min-width: 992px) {
  .pagevisual-new-graduate::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    content: "";
    max-width: 34%;
    max-height: 32%;
    margin-top: 23rem;
  }
}

.pagevisual-new-graduate__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}

.pagevisual-new-graduate__text-main {
  font-weight: 700;
  font-family: "Noto Sans JP", "Roboto";
  font-display: swap;
  /* lazy load */
  font-size: 3.2rem;
}

@media screen and (min-width: 992px) {
  .pagevisual-new-graduate__text-main {
    font-size: 4rem;
  }
}

.pagevisual-new-graduate__text-main:after {
  display: block;
  max-width: 20rem;
  margin: 0.8rem 0;
  border-bottom: 3px solid #298dcd;
  content: "";
}

.pagevisual-new-graduate__text-sub {
  color: #222222;
}

.pagevisual-career {
  position: relative;
  z-index: 0;
  margin: 0;
  padding-top: calc(8rem + 6.4rem);
  padding-bottom: 6.4rem;
  background-image: url("../img/career/career_main.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 992px) {
  .pagevisual-career {
    padding-top: calc(8rem + 18.6rem);
    padding-bottom: 18.6rem;
  }
}

.pagevisual-career::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
  max-width: 100%;
  max-height: 38%;
  margin-top: 13.5rem;
}

@media screen and (min-width: 600px) {
  .pagevisual-career::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    content: "";
    max-width: 34%;
    max-height: 38%;
    margin-top: 13.5rem;
  }
}

@media screen and (min-width: 992px) {
  .pagevisual-career::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    content: "";
    max-width: 34%;
    max-height: 32%;
    margin-top: 23rem;
  }
}

.pagevisual-career__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}

.pagevisual-career__text-main {
  font-weight: 700;
  font-family: "Noto Sans JP", "Roboto";
  font-display: swap;
  /* lazy load */
  font-size: 3.2rem;
}

@media screen and (min-width: 992px) {
  .pagevisual-career__text-main {
    font-size: 4rem;
  }
}

.pagevisual-career__text-main:after {
  display: block;
  max-width: 20rem;
  margin: 0.8rem 0;
  border-bottom: 3px solid #298dcd;
  content: "";
}

.pagevisual-career__text-sub {
  color: #222222;
}

.pagevisual-handicap {
  position: relative;
  z-index: 0;
  margin: 0;
  padding-top: calc(8rem + 6.4rem);
  padding-bottom: 6.4rem;
  background-image: url("../img/handicap/handicap_main.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 992px) {
  .pagevisual-handicap {
    padding-top: calc(8rem + 18.6rem);
    padding-bottom: 18.6rem;
  }
}

.pagevisual-handicap::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
  max-width: 100%;
  max-height: 38%;
  margin-top: 13.5rem;
}

@media screen and (min-width: 600px) {
  .pagevisual-handicap::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    content: "";
    max-width: 40%;
    max-height: 38%;
    margin-top: 13.5rem;
  }
}

@media screen and (min-width: 992px) {
  .pagevisual-handicap::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    content: "";
    max-width: 34%;
    max-height: 32%;
    margin-top: 23rem;
  }
}

.pagevisual-handicap__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}

.pagevisual-handicap__text-main {
  font-weight: 700;
  font-family: "Noto Sans JP", "Roboto";
  font-display: swap;
  /* lazy load */
  font-size: 3.2rem;
}

@media screen and (min-width: 992px) {
  .pagevisual-handicap__text-main {
    font-size: 4rem;
  }
}

.pagevisual-handicap__text-main:after {
  display: block;
  max-width: 26rem;
  margin: 0.8rem 0;
  border-bottom: 3px solid #298dcd;
  content: "";
}

@media screen and (min-width: 992px) {
  .pagevisual-handicap__text-main:after {
    display: block;
    max-width: 28rem;
    margin: 0.8rem 0;
    border-bottom: 3px solid #298dcd;
    content: "";
  }
}

.pagevisual-handicap__text-sub {
  color: #222222;
}

.breadcrumbs__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.8rem 15px;
}

.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs__list-item {
  font-size: 1.6rem;
}

.breadcrumbs__list-item:not(:first-child)::before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-display: swap;
  /* lazy load */
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  content: "\e5cc";
}

.breadcrumbs__link {
  color: #222222;
}

.breadcrumbs__link:hover, .breadcrumbs__link:focus {
  text-decoration: underline;
  opacity: 0.6;
  cursor: pointer;
}

.breadcrumbs__link-second {
  color: #222222;
}

.breadcrumbs__link-second:hover, .breadcrumbs__link-second:focus {
  text-decoration: none;
  cursor: auto;
}

.page-heading__content {
  margin: 0;
  padding: 0;
}

.page-heading__content--left {
  text-align: left;
}

.page-heading__content--center {
  text-align: center;
}

.page-heading__content--right {
  text-align: right;
}

.page-heading__text-main {
  font-weight: 700;
  font-family: "Noto Sans JP", "Roboto";
  font-display: swap;
  /* lazy load */
  font-size: 2rem;
  color: #298dcd;
}

@media screen and (min-width: 600px) {
  .page-heading__text-main {
    font-weight: 700;
    font-family: "Noto Sans JP", "Roboto";
    font-display: swap;
    /* lazy load */
    font-size: 2.6rem;
    color: #298dcd;
  }
}

@media screen and (min-width: 992px) {
  .page-heading__text-main {
    font-weight: 700;
    font-family: "Noto Sans JP", "Roboto";
    font-display: swap;
    /* lazy load */
    font-size: 2.8rem;
    color: #298dcd;
    position: relative;
  }
}

.page-heading__text-main:before {
  display: none;
}

@media screen and (min-width: 992px) {
  .page-heading__text-main:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 38%;
    display: inline-block;
    width: 4rem;
    height: 0.4rem;
    background-color: #298dcd;
  }
}

.page-heading__text-main:after {
  display: none;
}

@media screen and (min-width: 992px) {
  .page-heading__text-main:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 38%;
    display: inline-block;
    width: 4rem;
    height: 0.4rem;
    background-color: #298dcd;
  }
}

.page-heading__text-sub {
  font-weight: 600;
  font-size: 2.6rem;
  color: #222222;
  padding-top: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
}

@media screen and (min-width: 600px) {
  .page-heading__text-sub {
    font-weight: 600;
    font-size: 3rem;
    color: #222222;
    padding-top: 1.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 992px) {
  .page-heading__text-sub {
    font-weight: 600;
    font-size: 3.2rem;
    color: #222222;
    padding-top: 1.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.page-heading__text-sub-primary {
  font-weight: 600;
  font-size: 2.6rem;
  color: #298dcd;
  padding-top: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
}

@media screen and (min-width: 600px) {
  .page-heading__text-sub-primary {
    font-weight: 600;
    font-size: 3rem;
    color: #298dcd;
    padding-top: 1.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 992px) {
  .page-heading__text-sub-primary {
    font-weight: 600;
    font-size: 3.2rem;
    color: #298dcd;
    padding-top: 1.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.page-heading__message {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 6.4rem;
  color: #aaaaaa;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
}

.page-heading-sub__content {
  margin: 0;
  padding: 0;
}

.page-heading-sub__content--left {
  text-align: left;
}

.page-heading-sub__content--center {
  text-align: center;
}

.page-heading-sub__content--right {
  text-align: right;
}

.page-heading-sub__text {
  position: relative;
  font-size: 2.4rem;
}

.page-heading-sub__text:before {
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 1.6em;
  margin-right: .8rem;
  border-radius: 3px;
  background: #298dcd;
  content: "";
}

.page-heading-sub__message {
  margin: 0 auto;
  padding-top: 1.6rem;
  color: #aaaaaa;
  font-weight: 400;
  font-size: 1.6rem;
}

.footer {
  background: #222222;
}

.footer__container {
  max-width: 1440px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 992px) {
  .footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    list-style: none;
    margin: 0 auto;
    padding: 4rem 0;
  }
}

.footer__content {
  max-width: 1440px;
  margin: 0 auto;
  display: block;
}

@media screen and (min-width: 992px) {
  .footer__content {
    max-width: 1440px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 4rem 1rem 0 1rem;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 4rem 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.footer__logo:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.footer__address {
  color: #ffffff;
  margin-top: 10%;
  font-size: 1.4rem;
}

@media screen and (min-width: 992px) {
  .footer__address {
    color: #ffffff;
    margin-top: 10%;
  }
}

.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin: 0;
  padding: 2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.4rem;
}

@media screen and (min-width: 992px) {
  .footer__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    list-style: none;
    margin: 0;
    padding: 4rem 4rem 4rem 8rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.footer__menu li {
  width: 25%;
  white-space: normal;
}

@media screen and (min-width: 992px) {
  .footer__menu li {
    width: 25%;
    white-space: nowrap;
  }
}

.footer__menu-item {
  margin-top: 1.6rem;
}

.footer__menu-item-link {
  color: #fafafa;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.footer__menu-item-link:hover, .footer__menu-item-link:focus {
  text-decoration: underline;
  opacity: 0.6;
}

.footer__copy {
  padding: 1.6rem 0;
  color: #ffffff;
  font-size: 1.2rem;
  text-align: left;
  max-width: 100%;
}

@media screen and (min-width: 992px) {
  .footer__copy {
    padding: 1.6rem 0;
    color: #ffffff;
    font-size: 1.2rem;
    text-align: left;
    margin-top: 1.6rem;
  }
}

.photo-modal {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1002;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-animation-duration: var(--photo-modal-duration);
          animation-duration: var(--photo-modal-duration);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.photo-modal[data-open="true"] {
  -webkit-animation-name: modal-photo-open;
          animation-name: modal-photo-open;
}

.photo-modal[data-open="false"] {
  -webkit-animation-name: modal-photo-close;
          animation-name: modal-photo-close;
}

.photo-modal__container {
  max-width: 800px;
  max-height: 80%;
  margin: auto;
  overflow: auto;
}

.photo-modal__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.photo-modal .photo-modal__button, .photo-modal .photo-modal__button--close, .photo-modal .photo-modal__button--prev, .photo-modal .photo-modal__button--next, .photo-modal .button-detail__button, .photo-modal .button-detail__button--back, .photo-modal .button-detail__button--prev, .photo-modal .button-detail__button--next {
  position: absolute;
  width: 4rem;
  height: 4rem;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.photo-modal .photo-modal__button:hover, .photo-modal .photo-modal__button--close:hover, .photo-modal .photo-modal__button--prev:hover, .photo-modal .photo-modal__button--next:hover, .photo-modal .button-detail__button:hover, .photo-modal .button-detail__button--back:hover, .photo-modal .button-detail__button--prev:hover, .photo-modal .button-detail__button--next:hover, .photo-modal .photo-modal__button:focus, .photo-modal .photo-modal__button--close:focus, .photo-modal .photo-modal__button--prev:focus, .photo-modal .photo-modal__button--next:focus, .photo-modal .button-detail__button:focus, .photo-modal .button-detail__button--back:focus, .photo-modal .button-detail__button--prev:focus, .photo-modal .button-detail__button--next:focus {
  color: #f2f2f2;
  outline: none;
}

.photo-modal .photo-modal__button::before, .photo-modal .photo-modal__button--close::before, .photo-modal .photo-modal__button--prev::before, .photo-modal .photo-modal__button--next::before, .photo-modal .button-detail__button::before, .photo-modal .button-detail__button--back::before, .photo-modal .button-detail__button--prev::before, .photo-modal .button-detail__button--next::before {
  font-size: 2.5rem;
}

.photo-modal__button--close {
  top: 0;
  right: 0;
}

.photo-modal__button--close::before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-display: swap;
  /* lazy load */
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  content: "\e5cd";
}

.photo-modal__button--prev {
  top: 50%;
  left: 0;
}

.photo-modal__button--prev::before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-display: swap;
  /* lazy load */
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  content: "\e5cb";
}

.photo-modal__button--next {
  top: 50%;
  right: 0;
}

.photo-modal__button--next::before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-display: swap;
  /* lazy load */
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  content: "\e5cc";
}

.photo-modal__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.85);
}

.button-guide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  -webkit-transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  display: flex;
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding: 1.6rem;
  border: 2px solid #298dcd;
  border-radius: 0.8rem;
  background: #ffffff;
  color: #298dcd;
  font-weight: 400;
  font-size: 1.6rem;
}

.button-guide:hover, .button-guide:focus {
  background: #298dcd;
  color: #ffffff;
}

.button-guide-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  -webkit-transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  display: flex;
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding: 1.6rem;
  border: 2px solid #298dcd;
  border-radius: 0.8rem;
  background: #298dcd;
  color: #ffffff;
  font-weight: 400;
  font-size: 1.6rem;
}

.button-guide-primary:hover, .button-guide-primary:focus {
  background: #ffffff;
  color: #298dcd;
}

.button-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 60rem;
  margin: 0 auto;
}

.button-detail .photo-modal__button, .button-detail .photo-modal__button--close, .button-detail .photo-modal__button--prev, .button-detail .photo-modal__button--next, .button-detail .button-detail__button, .button-detail .button-detail__button--back, .button-detail .button-detail__button--prev, .button-detail .button-detail__button--next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  -webkit-transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  margin-bottom: 2.4rem;
  padding: 1.6rem 2.4rem;
  border-radius: 0.4rem;
  background: #eeeeee;
  color: #222222;
}

.button-detail .photo-modal__button:hover, .button-detail .photo-modal__button--close:hover, .button-detail .photo-modal__button--prev:hover, .button-detail .photo-modal__button--next:hover, .button-detail .button-detail__button:hover, .button-detail .button-detail__button--back:hover, .button-detail .button-detail__button--prev:hover, .button-detail .button-detail__button--next:hover, .button-detail .photo-modal__button:focus, .button-detail .photo-modal__button--close:focus, .button-detail .photo-modal__button--prev:focus, .button-detail .photo-modal__button--next:focus, .button-detail .button-detail__button:focus, .button-detail .button-detail__button--back:focus, .button-detail .button-detail__button--prev:focus, .button-detail .button-detail__button--next:focus {
  background: #298dcd;
  color: #ffffff;
}

.button-detail__button--back {
  width: 100%;
}

.button-detail__button--back:before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-display: swap;
  /* lazy load */
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  content: "\e896";
  margin-right: 0.8rem;
}

.button-detail__button--prev {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .button-detail__button--prev {
    width: calc(50% - 15px);
    margin-right: 15px;
  }
}

.button-detail__button--prev:before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-display: swap;
  /* lazy load */
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  content: "\e5cb";
  margin-right: 0.8rem;
}

.button-detail__button--next {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .button-detail__button--next {
    width: calc(50% - 15px);
    margin-left: 15px;
  }
}

.button-detail__button--next:after {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-display: swap;
  /* lazy load */
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  content: "\e5cc";
  margin-left: 0.8rem;
}

.pagination__list,
.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.pagination__list-item,
.pagination .page-numbers > li {
  margin: 0.3rem;
}

.pagination .pagination__link,
.pagination .page-numbers > li > a, .pagination .pagination__link--prev,
.pagination .page-numbers > li > a--prev,
.pagination .page-numbers > li > a.prev, .pagination .pagination__link--next,
.pagination .page-numbers > li > a--next,
.pagination .page-numbers > li > a.next {
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.2rem 1.6rem;
  border-radius: 6px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

.pagination__link,
.pagination .page-numbers > li > a {
  background-color: #eeeeee;
  color: #222222;
}

.pagination__link:hover, .pagination__link:focus,
.pagination .page-numbers > li > a:hover,
.pagination .page-numbers > li > a:focus {
  background-color: #298dcd;
  color: #ffffff;
}

.pagination__link--prev, .pagination__link.prev,
.pagination .page-numbers > li > a--prev,
.pagination .page-numbers > li > a.prev {
  min-width: 12rem;
  background-color: #eeeeee;
  color: #222222;
}

.pagination__link--prev:before, .pagination__link.prev:before,
.pagination .page-numbers > li > a--prev:before,
.pagination .page-numbers > li > a.prev:before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-display: swap;
  /* lazy load */
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  content: "\e5cb";
  display: inline-block;
  margin-right: 0.6rem;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.pagination__link--prev:hover, .pagination__link--prev:focus, .pagination__link.prev:hover, .pagination__link.prev:focus,
.pagination .page-numbers > li > a--prev:hover,
.pagination .page-numbers > li > a--prev:focus,
.pagination .page-numbers > li > a.prev:hover,
.pagination .page-numbers > li > a.prev:focus {
  background-color: #298dcd;
  color: #ffffff;
}

.pagination__link--prev:hover:before, .pagination__link--prev:focus:before, .pagination__link.prev:hover:before, .pagination__link.prev:focus:before,
.pagination .page-numbers > li > a--prev:hover:before,
.pagination .page-numbers > li > a--prev:focus:before,
.pagination .page-numbers > li > a.prev:hover:before,
.pagination .page-numbers > li > a.prev:focus:before {
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
}

.pagination__link--next, .pagination__link.next,
.pagination .page-numbers > li > a--next,
.pagination .page-numbers > li > a.next {
  min-width: 12rem;
  background-color: #eeeeee;
  color: #222222;
}

.pagination__link--next:after, .pagination__link.next:after,
.pagination .page-numbers > li > a--next:after,
.pagination .page-numbers > li > a.next:after {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-display: swap;
  /* lazy load */
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  content: "\e5cc";
  display: inline-block;
  margin-left: 0.6rem;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.pagination__link--next:hover, .pagination__link--next:focus, .pagination__link.next:hover, .pagination__link.next:focus,
.pagination .page-numbers > li > a--next:hover,
.pagination .page-numbers > li > a--next:focus,
.pagination .page-numbers > li > a.next:hover,
.pagination .page-numbers > li > a.next:focus {
  background-color: #298dcd;
  color: #ffffff;
}

.pagination__link--next:hover:after, .pagination__link--next:focus:after, .pagination__link.next:hover:after, .pagination__link.next:focus:after,
.pagination .page-numbers > li > a--next:hover:after,
.pagination .page-numbers > li > a--next:focus:after,
.pagination .page-numbers > li > a.next:hover:after,
.pagination .page-numbers > li > a.next:focus:after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.pagination .pagination__text,
.pagination .page-numbers > li > span, .pagination .pagination__text--current,
.pagination .page-numbers > li > span--current,
.pagination .page-numbers > li > span.current, .pagination .pagination__text--dots,
.pagination .page-numbers > li > span--dots,
.pagination .page-numbers > li > span.dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.2rem 1.6rem;
  border-radius: 6px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}

.pagination__text,
.pagination .page-numbers > li > span {
  background-color: #eeeeee;
  color: #222222;
}

.pagination__text--current, .pagination__text.current,
.pagination .page-numbers > li > span--current,
.pagination .page-numbers > li > span.current {
  background-color: #298dcd;
  color: #ffffff;
}

.pagination__text--dots, .pagination__text.dots,
.pagination .page-numbers > li > span--dots,
.pagination .page-numbers > li > span.dots {
  background-color: #eeeeee;
  color: #222222;
}

@media screen and (min-width: 992px) {
  .form__form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.form__form-group-title {
  padding: 1rem;
}

@media screen and (min-width: 992px) {
  .form__form-group-title {
    width: 260px;
    padding: 1.6rem;
  }
}

.form__form-group-content {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 992px) {
  .form__form-group-content {
    width: calc(100% - 260px);
    padding: 1.6rem;
  }
}

.form .form__label, .form .form__label--itemname, .form .form__label--required {
  display: inline-block;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}

.form__label--itemname {
  color: #222222;
}

.form__label--required {
  margin-left: 0.4rem;
  padding: 0.4em 0.6em;
  border-radius: 3px;
  background: #fafafa;
  color: #aaaaaa;
  font-size: 1.4rem;
}

.form__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.form__list-item {
  margin-bottom: 0.6rem;
}

.form .form__input, .form .form__input--text, .form .form__input--text-half, .form .form__input--textarea, .form .form__input--textarea-half, .form .form__input--select, .form .form__input--radio, .form .form__input--check {
  position: relative;
  width: 100%;
  padding: 0.4rem;
}

.form .form__input--text input, .form__input--text .form input, .form .form__input--text-half input, .form__input--text-half .form input, .form .form__input--textarea textarea, .form__input--textarea .form textarea, .form .form__input--textarea-half textarea, .form__input--textarea-half .form textarea, .form .form__input--select select, .form__input--select .form select {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  margin: 0;
  border: 2px solid #efefef;
  background: #ffffff;
  font-weight: 400;
  font-size: 1.6rem;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* 旧Edge対応 */
  /* IE対応 */
}

.form .form__input--text input::-ms-expand, .form__input--text .form input::-ms-expand, .form .form__input--text-half input::-ms-expand, .form__input--text-half .form input::-ms-expand, .form .form__input--textarea textarea::-ms-expand, .form__input--textarea .form textarea::-ms-expand, .form .form__input--textarea-half textarea::-ms-expand, .form__input--textarea-half .form textarea::-ms-expand, .form .form__input--select select::-ms-expand, .form__input--select .form select::-ms-expand {
  display: none;
}

.form .form__input--text input::-webkit-input-placeholder, .form__input--text .form input::-webkit-input-placeholder, .form .form__input--text-half input::-webkit-input-placeholder, .form__input--text-half .form input::-webkit-input-placeholder, .form .form__input--textarea textarea::-webkit-input-placeholder, .form__input--textarea .form textarea::-webkit-input-placeholder, .form .form__input--textarea-half textarea::-webkit-input-placeholder, .form__input--textarea-half .form textarea::-webkit-input-placeholder, .form .form__input--select select::-webkit-input-placeholder, .form__input--select .form select::-webkit-input-placeholder {
  color: #cccccc;
}

.form .form__input--text input:-ms-input-placeholder, .form__input--text .form input:-ms-input-placeholder, .form .form__input--text-half input:-ms-input-placeholder, .form__input--text-half .form input:-ms-input-placeholder, .form .form__input--textarea textarea:-ms-input-placeholder, .form__input--textarea .form textarea:-ms-input-placeholder, .form .form__input--textarea-half textarea:-ms-input-placeholder, .form__input--textarea-half .form textarea:-ms-input-placeholder, .form .form__input--select select:-ms-input-placeholder, .form__input--select .form select:-ms-input-placeholder {
  color: #cccccc;
}

.form .form__input--text input::-ms-input-placeholder, .form__input--text .form input::-ms-input-placeholder, .form .form__input--text-half input::-ms-input-placeholder, .form__input--text-half .form input::-ms-input-placeholder, .form .form__input--textarea textarea::-ms-input-placeholder, .form__input--textarea .form textarea::-ms-input-placeholder, .form .form__input--textarea-half textarea::-ms-input-placeholder, .form__input--textarea-half .form textarea::-ms-input-placeholder, .form .form__input--select select::-ms-input-placeholder, .form__input--select .form select::-ms-input-placeholder {
  color: #cccccc;
}

.form .form__input--text input::placeholder, .form__input--text .form input::placeholder, .form .form__input--text-half input::placeholder, .form__input--text-half .form input::placeholder, .form .form__input--textarea textarea::placeholder, .form__input--textarea .form textarea::placeholder, .form .form__input--textarea-half textarea::placeholder, .form__input--textarea-half .form textarea::placeholder, .form .form__input--select select::placeholder, .form__input--select .form select::placeholder {
  color: #cccccc;
}

.form .form__input--text input::-ms-input-placeholder, .form__input--text .form input::-ms-input-placeholder, .form .form__input--text-half input::-ms-input-placeholder, .form__input--text-half .form input::-ms-input-placeholder, .form .form__input--textarea textarea::-ms-input-placeholder, .form__input--textarea .form textarea::-ms-input-placeholder, .form .form__input--textarea-half textarea::-ms-input-placeholder, .form__input--textarea-half .form textarea::-ms-input-placeholder, .form .form__input--select select::-ms-input-placeholder, .form__input--select .form select::-ms-input-placeholder {
  color: #cccccc;
}

.form .form__input--text input:-ms-input-placeholder, .form__input--text .form input:-ms-input-placeholder, .form .form__input--text-half input:-ms-input-placeholder, .form__input--text-half .form input:-ms-input-placeholder, .form .form__input--textarea textarea:-ms-input-placeholder, .form__input--textarea .form textarea:-ms-input-placeholder, .form .form__input--textarea-half textarea:-ms-input-placeholder, .form__input--textarea-half .form textarea:-ms-input-placeholder, .form .form__input--select select:-ms-input-placeholder, .form__input--select .form select:-ms-input-placeholder {
  color: #cccccc;
}

.form .form__input--text input, .form__input--text .form input, .form .form__input--text-half input, .form__input--text-half .form input {
  padding: 0.8rem 1.6rem;
  -webkit-transition: border-color 0.4s;
  transition: border-color 0.4s;
}

.form .form__input--text input:focus, .form__input--text .form input:focus, .form .form__input--text-half input:focus, .form__input--text-half .form input:focus {
  border: 2px solid #298dcd;
}

.form .form__input--textarea textarea, .form__input--textarea .form textarea, .form .form__input--textarea-half textarea, .form__input--textarea-half .form textarea {
  padding: 1.6rem;
  -webkit-transition: border-color 0.4s;
  transition: border-color 0.4s;
}

.form .form__input--textarea textarea:focus, .form__input--textarea .form textarea:focus, .form .form__input--textarea-half textarea:focus, .form__input--textarea-half .form textarea:focus {
  border: 2px solid #298dcd;
}

.form__input--text-half {
  max-width: 50%;
}

.form__input--textarea-half {
  max-width: 50%;
}

.form__input--select {
  max-width: 300px;
}

.form__input--select select {
  padding: 0.8rem 2.4rem 0.8rem 1.6rem;
  cursor: pointer;
}

.form__input--select::after {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  z-index: 1;
  width: 0;
  height: 0;
  margin: auto 0;
  border-width: 6px 4px 0;
  border-style: solid;
  border-color: #cccccc transparent transparent transparent;
  content: "";
  pointer-events: none;
}

.form__input--radio {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.form__input--radio .radio-input {
  display: block !important;
  visibility: visible !important;
  opacity: 0 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
}

.form__input--radio .radio-icon {
  display: inline-block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  border: 1px solid #cccccc;
  border-radius: 50%;
}

.form__input--radio .radio-icon:before {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin: auto;
  border-radius: 50%;
  background: #298dcd;
  content: "";
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.form__input--radio .radio-text {
  color: #cccccc;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

.form__input--radio .radio-input:checked + .radio-icon {
  border-color: #298dcd;
}

.form__input--radio .radio-input:checked + .radio-icon:before {
  opacity: 1;
}

.form__input--radio .radio-input:checked ~ .radio-text {
  color: #298dcd;
}

.form__input--check {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.form__input--check .check-input {
  display: block !important;
  visibility: visible !important;
  opacity: 0 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
}

.form__input--check .check-icon {
  display: inline-block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  border: 2px solid #cccccc;
}

.form__input--check .check-icon:after {
  opacity: 0;
  position: absolute;
  top: 0.5rem;
  left: 0.3rem;
  width: 1.6rem;
  height: 0.8rem;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  content: "";
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.form__input--check .check-text {
  color: #cccccc;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

.form__input--check .check-input:checked + .check-icon {
  border-color: #298dcd;
}

.form__input--check .check-input:checked + .check-icon:after {
  opacity: 1;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-bottom: 2px solid #298dcd;
  border-left: 2px solid #298dcd;
}

.form__input--check .check-input:checked ~ .check-text {
  color: #298dcd;
}

.table-overview {
  width: 100%;
  line-height: 1.8;
  text-align: left;
  margin-top: -3rem;
}

@media screen and (max-width: 559px) {
  .table-overview {
    width: 100%;
    line-height: 1.8;
    text-align: left;
    margin-top: -1.5rem;
  }
}

.table-overview tr th {
  width: 16rem;
  padding: 0.8rem;
  vertical-align: top;
}

.table-overview tr td {
  width: calc(100% - 16rem);
  padding: 0.8rem 1.6rem;
  vertical-align: top;
}

.table-overview dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  width: 94%;
  margin: 50px auto;
}

.table-overview dt {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  padding: 2rem;
  background-color: #eeeeee;
  border-bottom: 1px solid #ccc;
  font-weight: 600;
}

.table-overview dd {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
  padding: 20px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

.table-overview dt:first-child {
  border-top: 1px solid #ccc;
}

.table-overview dd:nth-child(2) {
  border-top: 1px solid #ccc;
}

@media screen and (max-width: 559px) {
  .table-overview dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    width: 100%;
    padding: 0 20px;
    border: 0;
  }
  .table-overview dt,
  .table-overview dd {
    padding: 10px;
    border-bottom: 1px solid #ccc;
  }
  .table-overview dd:nth-child(2) {
    border-top: 0;
  }
}

.card-feature-item__thumbnail {
  overflow: hidden;
}

.card-feature-item__thumbnail-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 0.8rem;
}

@media screen and (min-width: 992px) {
  .card-feature-item__thumbnail-image {
    display: block;
    margin: 0 auto;
    max-width: 90%;
    border-radius: 0.8rem;
  }
}

.card-feature-item__content {
  padding: 1.6rem;
}

.card-feature-item__content-title {
  margin-bottom: 1.6rem;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  color: #298dcd;
}

.card-feature-item__content-text {
  color: #222222;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .card-feature-item__content-text {
    color: #222222;
    text-align: left;
  }
}

.card-feature-item__thumbnail-container {
  position: relative;
}

.card-feature-item__label {
  position: absolute;
  z-index: 1;
  top: 20%;
  left: 10%;
  right: 10%;
  text-align: center;
  color: #ffffff;
  font-size: 2.6rem;
}

@media screen and (min-width: 600px) {
  .card-feature-item__label {
    position: absolute;
    z-index: 1;
    top: 20%;
    left: 10%;
    right: 10%;
    text-align: center;
    color: #ffffff;
    font-size: 3.2rem;
  }
}

@media screen and (min-width: 992px) {
  .card-feature-item__label {
    position: absolute;
    z-index: 1;
    top: 25%;
    left: 10%;
    right: 10%;
    text-align: center;
    color: #ffffff;
    font-size: 2.6rem;
  }
}

.card-feature-item__label-text {
  position: absolute;
  z-index: 1;
  top: 45%;
  left: 10%;
  right: 10%;
  color: #ffffff;
  font-size: 1.6rem;
}

@media screen and (min-width: 600px) {
  .card-feature-item__label-text {
    position: absolute;
    z-index: 1;
    top: 45%;
    left: 10%;
    right: 10%;
    color: #ffffff;
    font-size: 2.6rem;
  }
}

@media screen and (min-width: 992px) {
  .card-feature-item__label-text {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 10%;
    right: 10%;
    color: #ffffff;
    font-size: 1.6rem;
  }
}

.card-item {
  -webkit-box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: block;
  max-width: 400px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border-radius: 0.8rem;
  background: #ffffff;
  color: #222222;
  cursor: pointer;
}

.card-item__thumbnail {
  overflow: hidden;
}

.card-item__thumbnail-image {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.card-item__content {
  padding: 0.8rem;
}

@media (min-width: 992px) {
  .card-item__content {
    padding: 1.6rem;
  }
}

.card-item__content-title {
  color: #222222;
  font-weight: 400;
  font-size: 1.5rem;
  text-align: center;
}

.card-item__content-title-bl {
  color: #298dcd;
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
}

.card-item__content-title-left {
  color: #222222;
  font-weight: 400;
  font-size: 1.5rem;
  text-align: left;
}

.card-item__content-text-left {
  color: #298dcd;
  font-weight: 600;
  font-size: 2rem;
  text-align: left;
  margin-top: 1rem;
}

.card-item__content-text-left-bk {
  color: #222222;
  font-weight: 400;
  font-size: 1.5rem;
  text-align: left;
  margin-top: 1rem;
}

.card-item:hover {
  -webkit-box-shadow: 0 0 2.4rem 0 rgba(0, 0, 0, 0.18);
          box-shadow: 0 0 2.4rem 0 rgba(0, 0, 0, 0.18);
}

.card-item:hover .card-item__thumbnail-image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.card-item:hover .card-item__button-more {
  background: #222222;
  color: #ffffff;
}

.card-item:hover .card-item__button-more:after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.card-item-other {
  -webkit-box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: block;
  max-width: 400px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border-radius: 0.8rem;
  background: #ffffff;
  color: #222222;
  cursor: auto;
}

.card-item-other__thumbnail {
  overflow: hidden;
}

.card-item-other__thumbnail-image {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.card-item-other__content {
  padding: 0.8rem;
}

@media (min-width: 992px) {
  .card-item-other__content {
    padding: 1.6rem;
  }
}

.card-item-other__content-title {
  color: #222222;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
}

.card-item-other__content-title-bl {
  color: #298dcd;
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
}

.card-item-other__content-title-left {
  color: #222222;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: left;
}

.card-item-other__content-text-left {
  color: #298dcd;
  font-weight: 600;
  font-size: 2rem;
  text-align: left;
  margin-top: 1rem;
}

.card-item-other__content-text-left-bk {
  color: #222222;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: left;
  margin-top: 1rem;
}

.col2-layout {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  border-radius: 0.8rem;
  background: #ffffff;
  color: #222222;
  overflow: hidden;
  -webkit-box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media (min-width: 992px) {
  .col2-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1000px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 35rem;
  }
}

@media (min-width: 992px) {
  .col2-layout__thumbnail-reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.col2-layout__thumbnail {
  padding-right: 0;
}

@media (min-width: 992px) {
  .col2-layout__thumbnail {
    width: 50%;
    padding-right: 3.2rem;
  }
}

.col2-layout__thumbnail-image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.8rem;
}

.col2-layout__container {
  padding: 3.2rem;
}

@media (min-width: 992px) {
  .col2-layout__container {
    padding: 3.2rem;
  }
}

.col2-layout__container-first {
  padding: 0 3.2rem 3.2rem 3.2rem;
}

@media (min-width: 992px) {
  .col2-layout__container-first {
    padding: 0 3.2rem 3.2rem 3.2rem;
  }
}

.col2-layout__content {
  padding: 1.6rem;
}

@media (min-width: 992px) {
  .col2-layout__content {
    width: 60%;
    padding: 3.2rem;
  }
}

.col2-layout__title {
  margin: 0 0 1.6rem 0;
  color: #222222;
  font-weight: 700;
  font-size: 2.4rem;
}

.col2-layout__read {
  margin: 0 0 1.6rem 0;
  color: #222222;
  font-size: 1.6rem;
}

.col2-layout__button {
  text-align: right;
  padding-top: 0;
}

@media (min-width: 992px) {
  .col2-layout__button {
    text-align: right;
    padding-top: 3rem;
  }
}

.col2-layout__button-left {
  text-align: left;
  padding-top: 0;
}

@media (min-width: 992px) {
  .col2-layout__button-left {
    text-align: left;
    padding-top: 3rem;
  }
}

.col2-layout__button-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  -webkit-transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  padding: 1.2rem 2.4rem;
  background: #298dcd;
  border-radius: 100px;
  border-radius: 0.8rem;
  color: #ffffff;
}

.col2-layout__button-more:after {
  margin-left: 0.4rem;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-display: swap;
  /* lazy load */
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  content: "\e5cc";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.col2-layout:hover {
  -webkit-box-shadow: 0 0 2.4rem 0 rgba(0, 0, 0, 0.18);
          box-shadow: 0 0 2.4rem 0 rgba(0, 0, 0, 0.18);
}

.col2-layout:hover .col2-layout__button-more {
  background: #2170a3;
  color: #ffffff;
}

.col2-layout:hover .col2-layout__button-more:after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.col2-layout-other {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  border-radius: 0.8rem;
  background: #ffffff;
  color: #222222;
  overflow: hidden;
  -webkit-box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media (min-width: 992px) {
  .col2-layout-other {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1000px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 36rem;
  }
}

@media (min-width: 992px) {
  .col2-layout-other__thumbnail-reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media (min-width: 992px) {
  .col2-layout-other__thumbnail {
    width: 50%;
  }
}

.col2-layout-other__thumbnail-image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  margin-left: 0;
  border-radius: 0.8rem;
}

@media (min-width: 992px) {
  .col2-layout-other__thumbnail-image {
    margin-left: 0;
    border-radius: 0.8rem;
    width: 94%;
  }
}

.col2-layout-other__container {
  padding: 3.2rem;
}

@media (min-width: 992px) {
  .col2-layout-other__container {
    padding: 3.2rem;
  }
}

.col2-layout-other__container-first {
  padding: 0 3.2rem 6.4rem 3.2rem;
}

@media (min-width: 992px) {
  .col2-layout-other__container-first {
    padding: 0 3.2rem 6.4rem 3.2rem;
  }
}

.col2-layout-other__container-secondary {
  padding: 3.2rem 3.2rem 6.4rem 3.2rem;
}

@media (min-width: 992px) {
  .col2-layout-other__container-secondary {
    padding: 3.2rem 3.2rem 6.4rem 3.2rem;
  }
}

.col2-layout-other__content {
  padding: 1.6rem;
  margin-right: 0;
}

@media (min-width: 992px) {
  .col2-layout-other__content {
    width: 50%;
    padding: 3.2rem;
    margin-right: 1.6rem;
  }
}

.col2-layout-other__content-no-image {
  padding: 1.6rem;
  margin-right: 0;
}

@media (min-width: 992px) {
  .col2-layout-other__content-no-image {
    width: 100%;
    padding: 3.2rem;
    margin-right: 1.6rem;
  }
}

.col2-layout-other__title {
  margin: 0 0 1.6rem 0;
  color: #222222;
  font-weight: 700;
  font-size: 2.4rem;
}

.col2-layout-other__title-navy {
  margin: 0 0 1.6rem 0;
  color: #298dcd;
  font-weight: 700;
  font-size: 2.4rem;
}

.col2-layout-other__read {
  margin: 0 0 1.6rem 0;
  color: #222222;
  font-size: 1.6rem;
}

.col2-layout-other__read ul {
  padding: 0;
}

.col2-layout-other__read ul li {
  list-style: none;
  margin: 0 0 1.6rem 0;
  padding-left: 1em;
  text-indent: -1em;
}

.col2-layout-other__button {
  text-align: right;
}

.col2-layout-other__button-left {
  text-align: left;
  padding-top: 0;
}

@media (min-width: 992px) {
  .col2-layout-other__button-left {
    text-align: left;
    padding-top: 3rem;
  }
}

.col2-layout-other__button-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  -webkit-transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  padding: 1.2rem 2.4rem;
  background: #298dcd;
  border-radius: 100px;
  border-radius: 0.8rem;
  color: #ffffff;
}

.col2-layout-other__button-more:after {
  margin-left: 0.4rem;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-display: swap;
  /* lazy load */
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  content: "\e5cc";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.col2-layout-other:hover {
  -webkit-box-shadow: 0 0 2.4rem 0 rgba(0, 0, 0, 0.18);
          box-shadow: 0 0 2.4rem 0 rgba(0, 0, 0, 0.18);
}

.col2-layout-other:hover .col2-layout-other__button-more {
  background: #2170a3;
  color: #ffffff;
}

.col2-layout-other:hover .col2-layout-other__button-more:after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.col2-layout-other-company {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  border-radius: 0.8rem;
  background: #ffffff;
  color: #222222;
  overflow: hidden;
  -webkit-box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media (min-width: 992px) {
  .col2-layout-other-company {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1000px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 52rem;
  }
}

@media (min-width: 992px) {
  .col2-layout-other-company__thumbnail-reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media (min-width: 992px) {
  .col2-layout-other-company__thumbnail {
    width: 50%;
  }
}

.col2-layout-other-company__thumbnail-image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  margin-left: 0;
  border-radius: 0.8rem;
}

@media (min-width: 992px) {
  .col2-layout-other-company__thumbnail-image {
    margin-left: 0;
    border-radius: 0.8rem;
    width: 94%;
  }
}

.col2-layout-other-company__container {
  padding: 3.2rem;
}

@media (min-width: 992px) {
  .col2-layout-other-company__container {
    padding: 3.2rem;
  }
}

.col2-layout-other-company__container-first {
  padding: 0 3.2rem 6.4rem 3.2rem;
}

@media (min-width: 992px) {
  .col2-layout-other-company__container-first {
    padding: 0 3.2rem 6.4rem 3.2rem;
  }
}

.col2-layout-other-company__container-secondary {
  padding: 3.2rem 3.2rem 6.4rem 3.2rem;
}

@media (min-width: 992px) {
  .col2-layout-other-company__container-secondary {
    padding: 3.2rem 3.2rem 6.4rem 3.2rem;
  }
}

.col2-layout-other-company__content {
  padding: 1.6rem;
  margin-right: 0;
}

@media (min-width: 992px) {
  .col2-layout-other-company__content {
    width: 50%;
    padding: 3.2rem;
    margin-right: 1.6rem;
  }
}

.col2-layout-other-company__content-no-image {
  padding: 1.6rem;
  margin-right: 0;
}

@media (min-width: 992px) {
  .col2-layout-other-company__content-no-image {
    width: 100%;
    padding: 3.2rem;
    margin-right: 1.6rem;
  }
}

.col2-layout-other-company__title {
  margin: 0 0 1.6rem 0;
  color: #222222;
  font-weight: 700;
  font-size: 2.4rem;
}

.col2-layout-other-company__title-navy {
  margin: 0 0 1.6rem 0;
  color: #298dcd;
  font-weight: 700;
  font-size: 2.4rem;
}

.col2-layout-other-company__read {
  margin: 0 0 1.6rem 0;
  color: #222222;
  font-size: 1.6rem;
}

.col2-layout-other-company__read ul {
  padding: 0;
}

.col2-layout-other-company__read ul li {
  list-style: none;
  margin: 0 0 1.6rem 0;
  padding-left: 1em;
  text-indent: -1em;
}

.col2-layout-other-company__button {
  text-align: right;
}

.col2-layout-other-company__button-left {
  text-align: left;
  padding-top: 0;
}

@media (min-width: 992px) {
  .col2-layout-other-company__button-left {
    text-align: left;
    padding-top: 3rem;
  }
}

.col2-layout-other-company__button-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  -webkit-transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  padding: 1.2rem 2.4rem;
  background: #298dcd;
  border-radius: 100px;
  border-radius: 0.8rem;
  color: #ffffff;
}

.col2-layout-other-company__button-more:after {
  margin-left: 0.4rem;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-display: swap;
  /* lazy load */
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  content: "\e5cc";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.col2-layout-other-company:hover {
  -webkit-box-shadow: 0 0 2.4rem 0 rgba(0, 0, 0, 0.18);
          box-shadow: 0 0 2.4rem 0 rgba(0, 0, 0, 0.18);
}

.col2-layout-other-company:hover .col2-layout-other-company__button-more {
  background: #2170a3;
  color: #ffffff;
}

.col2-layout-other-company:hover .col2-layout-other-company__button-more:after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.col2-layout-other-interview {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  background: #ffffff;
  color: #222222;
  overflow: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media (min-width: 992px) {
  .col2-layout-other-interview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1200px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 992px) {
  .col2-layout-other-interview__thumbnail {
    width: 50%;
    padding: 3.2rem;
  }
}

@media (min-width: 992px) {
  .col2-layout-other-interview__thumbnail-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 3.2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 992px) {
  .col2-layout-other-interview__thumbnail-row-secondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 3.2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (min-width: 992px) {
  .col2-layout-other-interview__thumbnail-reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding: 3.2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 992px) {
  .col2-layout-other-interview__thumbnail-reverse-secondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding: 3.2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.col2-layout-other-interview__thumbnail-image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  margin-left: 0;
  border-radius: 0.8rem;
}

@media (min-width: 992px) {
  .col2-layout-other-interview__thumbnail-image {
    margin-left: 0;
    border-radius: 0.8rem;
  }
}

.col2-layout-other-interview__container {
  padding: 3.2rem;
}

@media (min-width: 992px) {
  .col2-layout-other-interview__container {
    padding: 3.2rem;
  }
}

.col2-layout-other-interview__container-first {
  padding: 0;
}

@media (min-width: 992px) {
  .col2-layout-other-interview__container-first {
    padding: 0 3.2rem 0rem 3.2rem;
  }
}

.col2-layout-other-interview__container-secondary {
  padding: 3.2rem 3.2rem 6.4rem 3.2rem;
}

@media (min-width: 992px) {
  .col2-layout-other-interview__container-secondary {
    padding: 3.2rem 3.2rem 6.4rem 3.2rem;
  }
}

.col2-layout-other-interview__content {
  padding: 1.6rem;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .col2-layout-other-interview__content {
    width: 50%;
    padding: 3.2rem;
    margin: 0 auto;
  }
}

.col2-layout-other-interview__content-secondary {
  padding: 1.6rem;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .col2-layout-other-interview__content-secondary {
    width: 50%;
    padding: 3.2rem;
    margin: 0 auto;
  }
}

.col2-layout-other-interview__content-no-image {
  padding: 1.6rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .col2-layout-other-interview__content-no-image {
    padding: 3.2rem;
    max-width: 1136px;
    margin: 0 auto;
  }
}

.col2-layout-other-interview__title {
  margin: 0 0 1.6rem 0;
  color: #222222;
  font-weight: 700;
  font-size: 2.4rem;
}

.col2-layout-other-interview__title-navy {
  margin: 0 0 1.6rem 0;
  color: #298dcd;
  font-weight: 700;
  font-size: 2.4rem;
}

.col2-layout-other-interview__read {
  margin: 0 0 1.6rem 0;
  color: #222222;
  font-size: 1.6rem;
}

.col2-layout-other-interview__read ul {
  padding: 0;
}

.col2-layout-other-interview__read ul li {
  list-style: none;
  margin: 0 0 1.6rem 0;
  padding-left: 1em;
  text-indent: -1em;
}

.col2-layout-other-interview__button {
  text-align: right;
}

.col2-layout-other-interview__button-left {
  text-align: left;
  padding-top: 0;
}

@media (min-width: 992px) {
  .col2-layout-other-interview__button-left {
    text-align: left;
    padding-top: 3rem;
  }
}

.col2-layout-other-interview__button-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  -webkit-transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  padding: 1.2rem 2.4rem;
  background: #298dcd;
  border-radius: 100px;
  border-radius: 0.8rem;
  color: #ffffff;
}

.col2-layout-other-interview__button-more:after {
  margin-left: 0.4rem;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-display: swap;
  /* lazy load */
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  content: "\e5cc";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.col2-layout-primary {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  border-radius: 0.8rem;
  background: #ffffff;
  color: #222222;
  overflow: hidden;
  -webkit-box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media (min-width: 992px) {
  .col2-layout-primary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 1000px;
  }
}

@media (min-width: 992px) {
  .col2-layout-primary__thumbnail-reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media (min-width: 992px) {
  .col2-layout-primary__thumbnail {
    width: 50%;
  }
}

.col2-layout-primary__thumbnail-image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  margin-left: 0;
  border-radius: 0.8rem;
}

@media (min-width: 992px) {
  .col2-layout-primary__thumbnail-image {
    margin-left: 0;
    border-radius: 0.8rem;
  }
}

@media (min-width: 992px) {
  .col2-layout-primary__description {
    width: 100%;
  }
}

.col2-layout-primary__description-inner {
  display: block;
  background: #eeeeee;
  padding: 2rem;
}

@media (min-width: 992px) {
  .col2-layout-primary__description-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    background: #eeeeee;
    padding: 2rem;
  }
}

.col2-layout-primary__description-content {
  padding: 1.6rem;
  margin-right: 0;
}

@media (min-width: 992px) {
  .col2-layout-primary__description-content {
    width: 100%;
    padding: 3.2rem;
    margin-right: 1.6rem;
  }
}

.col2-layout-primary__description-content-bottom {
  padding: 1.6rem;
  margin-right: 0;
}

@media (min-width: 992px) {
  .col2-layout-primary__description-content-bottom {
    width: 100%;
    padding: 3.2rem 3.2rem 6.4rem 3.2rem;
    margin-right: 1.6rem;
  }
}

.col2-layout-primary__description-title {
  margin: 0;
  color: #222222;
  font-weight: 700;
  font-size: 2.4rem;
  width: 100%;
  text-align: center;
}

@media (min-width: 992px) {
  .col2-layout-primary__description-title {
    margin: 0;
    color: #222222;
    font-weight: 700;
    font-size: 2.4rem;
    width: 20%;
    text-align: center;
  }
}

.col2-layout-primary__description-detail-wrapper {
  display: block;
  margin: 0;
  text-align: center;
}

@media (min-width: 992px) {
  .col2-layout-primary__description-detail-wrapper {
    display: block;
    margin: 0 0 0 12rem;
  }
}

.col2-layout-primary__description-detail {
  color: #222222;
  font-size: 1.6rem;
}

@media (min-width: 992px) {
  .col2-layout-primary__description-detail {
    color: #222222;
    font-size: 1.6rem;
  }
}

.col2-layout-primary__container {
  padding: 2rem 0 2rem 0;
}

@media (min-width: 992px) {
  .col2-layout-primary__container {
    padding: 3.2rem;
  }
}

.col2-layout-primary__container-first {
  padding: 0 0 6.4rem 0;
}

@media (min-width: 992px) {
  .col2-layout-primary__container-first {
    padding: 0 3.2rem 6.4rem 3.2rem;
  }
}

.col2-layout-primary__container-secondary {
  padding: 0 0 6.4rem 0;
}

@media (min-width: 992px) {
  .col2-layout-primary__container-secondary {
    padding: 3.2rem 3.2rem 6.4rem 3.2rem;
  }
}

.col2-layout-primary__content {
  padding: 1.6rem;
  margin-right: 0;
}

@media (min-width: 992px) {
  .col2-layout-primary__content {
    width: 50%;
    padding: 3.2rem;
    margin-right: 1.6rem;
  }
}

.col2-layout-primary__title {
  margin: 0 0 1.6rem 0;
  color: #222222;
  font-weight: 700;
  font-size: 2.4rem;
}

.col2-layout-primary__title-navy {
  margin: 0 0 1.6rem 0;
  color: #298dcd;
  font-weight: 700;
  font-size: 2.4rem;
}

.col2-layout-primary__read {
  margin: 0 0 1.6rem 0;
  color: #222222;
  font-size: 1.6rem;
}

.col2-layout-primary__read ul {
  padding: 0;
}

.col2-layout-primary__read ul li {
  list-style: none;
  margin: 0 0 1.6rem 0;
  padding-left: 1em;
  text-indent: -1em;
}

.col2-layout-primary__note {
  margin: 1.4rem 0 0 0;
  color: #222222;
  font-size: 1.4rem;
  padding-left: 1em;
}

.col2-layout-primary__note_title {
  display: inline-block;
  margin: 0 0 0.5rem 0;
  color: #222222;
  font-size: 1.6rem;
}

.col2-layout-primary__button {
  text-align: right;
}

.col2-layout-primary__button-left {
  text-align: left;
  padding-top: 0;
}

@media (min-width: 992px) {
  .col2-layout-primary__button-left {
    text-align: left;
    padding-top: 3rem;
  }
}

.col2-layout-primary__button-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  -webkit-transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  padding: 1.2rem 2.4rem;
  background: #298dcd;
  border-radius: 100px;
  border-radius: 0.8rem;
  color: #ffffff;
}

.col2-layout-primary__button-more:after {
  margin-left: 0.4rem;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-display: swap;
  /* lazy load */
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  content: "\e5cc";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.col2-layout-primary:hover {
  -webkit-box-shadow: 0 0 2.4rem 0 rgba(0, 0, 0, 0.18);
          box-shadow: 0 0 2.4rem 0 rgba(0, 0, 0, 0.18);
}

.col2-layout-primary:hover .col2-layout-primary__button-more {
  background: #2170a3;
  color: #ffffff;
}

.col2-layout-primary:hover .col2-layout-primary__button-more:after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.timeline {
  width: 100%;
  max-width: 600px;
  margin: 28px auto;
  background: #ffffff;
}

@media screen and (min-width: 992px) {
  .timeline {
    width: 100%;
    max-width: 1200px;
    margin: 28px auto;
    background: #ffffff;
  }
}

.timeline__container {
  max-width: 1136px;
  padding: 1.6rem;
  margin: 0 auto;
}

@media screen and (min-width: 992px) {
  .timeline__container {
    max-width: 1136px;
    padding: 4rem;
    margin: 0 auto;
  }
}

.timeline__list {
  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;
  padding: 40px 0;
}

.timeline__list-item {
  display: block;
  line-height: 1.5;
  font-size: 16px;
}

@media screen and (min-width: 375px) {
  .timeline__list-item {
    display: block;
    line-height: 1.5;
    font-size: 16px;
  }
}

@media screen and (min-width: 414px) {
  .timeline__list-item {
    display: block;
    line-height: 1.5;
    font-size: 16px;
  }
}

@media screen and (min-width: 600px) {
  .timeline__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1.5;
    font-size: 16px;
  }
}

@media screen and (min-width: 992px) {
  .timeline__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1.5;
    font-size: 16px;
  }
}

.timeline__date-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #222222;
  white-space: nowrap;
  font-size: 1.5rem;
}

@media screen and (min-width: 600px) {
  .timeline__date-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #222222;
    white-space: nowrap;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 992px) {
  .timeline__date-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #222222;
    white-space: nowrap;
    font-size: 2rem;
  }
}

.timeline__content-area {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  -webkit-transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  background-color: #00ac97;
  color: #ffffff;
  padding: 1.6rem 1.6rem;
  border-radius: 0.8rem;
  white-space: nowrap;
  cursor: auto;
  min-width: 100%;
  font-size: 1.5rem;
}

@media screen and (min-width: 375px) {
  .timeline__content-area {
    background-color: #00ac97;
    color: #ffffff;
    padding: 1.6rem 1.6rem;
    border-radius: 0.8rem;
    white-space: nowrap;
    cursor: auto;
    min-width: 100%;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 414px) {
  .timeline__content-area {
    background-color: #00ac97;
    color: #ffffff;
    padding: 1.6rem 1.6rem;
    border-radius: 0.8rem;
    white-space: nowrap;
    cursor: auto;
    min-width: 100%;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 600px) {
  .timeline__content-area {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    border: none;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    outline: none;
    cursor: pointer;
    -webkit-transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
    transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
    transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
    transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
    background-color: #00ac97;
    color: #ffffff;
    padding: 1.6rem 3.2rem;
    border-radius: 0.8rem;
    white-space: nowrap;
    cursor: auto;
    min-width: 100%;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 992px) {
  .timeline__content-area {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    border: none;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    outline: none;
    cursor: pointer;
    -webkit-transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
    transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
    transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
    transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
    background-color: #00ac97;
    color: #ffffff;
    padding: 1.6rem 6.2rem;
    border-radius: 0.8rem;
    white-space: nowrap;
    cursor: auto;
    min-width: 100%;
    font-size: 2rem;
  }
}

.timeline__content-area-primary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  -webkit-transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  background-color: #298dcd;
  color: #ffffff;
  padding: 1.6rem 1.6rem;
  border-radius: 0.8rem;
  white-space: nowrap;
  cursor: auto;
  min-width: 100%;
  font-size: 1.5rem;
}

@media screen and (min-width: 375px) {
  .timeline__content-area-primary {
    background-color: #298dcd;
    color: #ffffff;
    padding: 1.6rem 1.6rem;
    border-radius: 0.8rem;
    white-space: nowrap;
    cursor: auto;
    min-width: 100%;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 414px) {
  .timeline__content-area-primary {
    background-color: #298dcd;
    color: #ffffff;
    padding: 1.6rem 1.6rem;
    border-radius: 0.8rem;
    white-space: nowrap;
    cursor: auto;
    min-width: 100%;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 600px) {
  .timeline__content-area-primary {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    border: none;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    outline: none;
    cursor: pointer;
    -webkit-transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
    transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
    transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
    transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
    background-color: #298dcd;
    color: #ffffff;
    padding: 1.6rem 3.2rem;
    border-radius: 0.8rem;
    white-space: nowrap;
    cursor: auto;
    min-width: 100%;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 992px) {
  .timeline__content-area-primary {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    border: none;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    outline: none;
    cursor: pointer;
    -webkit-transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
    transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
    transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
    transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
    background-color: #298dcd;
    color: #ffffff;
    padding: 1.6rem 6.2rem;
    border-radius: 0.8rem;
    white-space: nowrap;
    cursor: auto;
    min-width: 100%;
    font-size: 2rem;
  }
}

.timeline__date {
  width: 100%;
  padding: 1.3rem 1rem 1.3rem 1rem;
  color: #888888;
  border-left: 1px dotted #aaaaaa;
  font-weight: bold;
}

@media screen and (min-width: 375px) {
  .timeline__date {
    width: 100%;
    padding: 1.3rem 1rem 1.3rem 1rem;
    color: #888888;
    border-left: 1px dotted #aaaaaa;
    font-weight: bold;
  }
}

@media screen and (min-width: 414px) {
  .timeline__date {
    width: 100%;
    padding: 1.3rem 1rem 1.3rem 1rem;
    color: #888888;
    border-left: 1px dotted #aaaaaa;
    font-weight: bold;
  }
}

@media screen and (min-width: 600px) {
  .timeline__date {
    width: 40%;
    padding: 1.3rem 2rem 6rem 3rem;
    color: #888888;
    border-left: none;
    font-weight: bold;
  }
}

@media screen and (min-width: 992px) {
  .timeline__date {
    width: 30%;
    padding: 0 2rem 6rem 12rem;
    color: #888888;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.timeline__content {
  position: relative;
  width: 100%;
  padding: 0 3rem 6rem 3rem;
  border-left: 1px dotted #aaaaaa;
  color: #222222;
}

@media screen and (min-width: 375px) {
  .timeline__content {
    position: relative;
    width: 100%;
    padding: 0 3rem 6rem 3rem;
    border-left: 1px dotted #aaaaaa;
    color: #222222;
  }
}

@media screen and (min-width: 414px) {
  .timeline__content {
    position: relative;
    width: 100%;
    padding: 0 3rem 6rem 3rem;
    border-left: 1px dotted #aaaaaa;
    color: #222222;
  }
}

@media screen and (min-width: 600px) {
  .timeline__content {
    position: relative;
    width: 60%;
    padding: 0 2rem 6rem 3rem;
    border-left: 1px dotted #aaaaaa;
    color: #222222;
  }
}

@media screen and (min-width: 992px) {
  .timeline__content {
    position: relative;
    width: 70%;
    padding: 0 12rem 6rem 12rem;
    border-left: 1px dotted #aaaaaa;
    color: #222222;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
}

.timeline__content::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: -1rem;
  width: 2rem;
  height: 2rem;
  background-color: #00ac97;
  border-radius: 0.2rem;
  z-index: 1;
}

@media screen and (min-width: 375px) {
  .timeline__content::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: -1rem;
    width: 2rem;
    height: 2rem;
    background-color: #00ac97;
    border-radius: 0.2rem;
    z-index: 1;
  }
}

@media screen and (min-width: 414px) {
  .timeline__content::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: -1rem;
    width: 2rem;
    height: 2rem;
    background-color: #00ac97;
    border-radius: 0.2rem;
    z-index: 1;
  }
}

@media screen and (min-width: 600px) {
  .timeline__content::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: -1rem;
    width: 2rem;
    height: 2rem;
    background-color: #00ac97;
    border-radius: 0.2rem;
    z-index: 1;
  }
}

@media screen and (min-width: 992px) {
  .timeline__content::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: -1rem;
    width: 2rem;
    height: 2rem;
    background-color: #00ac97;
    border-radius: 0.2rem;
    z-index: 1;
  }
}

.timeline__content::after {
  content: "";
  position: absolute;
  top: 2.2rem;
  left: 0rem;
  width: 3rem;
  height: 0.5rem;
  background-color: #00ac97;
  z-index: 1;
}

@media screen and (min-width: 375px) {
  .timeline__content::after {
    content: "";
    position: absolute;
    top: 2.2rem;
    left: 0rem;
    width: 3rem;
    height: 0.5rem;
    background-color: #00ac97;
    z-index: 1;
  }
}

@media screen and (min-width: 414px) {
  .timeline__content::after {
    content: "";
    position: absolute;
    top: 2.2rem;
    left: 0rem;
    width: 3rem;
    height: 0.5rem;
    background-color: #00ac97;
    z-index: 1;
  }
}

@media screen and (min-width: 600px) {
  .timeline__content::after {
    content: "";
    position: absolute;
    top: 2.2rem;
    left: 1rem;
    width: 2rem;
    height: 0.5rem;
    background-color: #00ac97;
    z-index: 1;
  }
}

@media screen and (min-width: 992px) {
  .timeline__content::after {
    content: "";
    position: absolute;
    top: 2.2rem;
    left: 1rem;
    width: 11rem;
    height: 0.5rem;
    background-color: #00ac97;
    z-index: 1;
  }
}

.timeline__content-primary {
  position: relative;
  width: 100%;
  padding: 0 3rem 6rem 3rem;
  border-left: 1px dotted #aaaaaa;
  color: #222222;
}

@media screen and (min-width: 375px) {
  .timeline__content-primary {
    position: relative;
    width: 100%;
    padding: 0 3rem 6rem 3rem;
    border-left: 1px dotted #aaaaaa;
    color: #222222;
  }
}

@media screen and (min-width: 414px) {
  .timeline__content-primary {
    position: relative;
    width: 100%;
    padding: 0 3rem 6rem 3rem;
    border-left: 1px dotted #aaaaaa;
    color: #222222;
  }
}

@media screen and (min-width: 600px) {
  .timeline__content-primary {
    position: relative;
    width: 60%;
    padding: 0 2rem 6rem 3rem;
    border-left: 1px dotted #aaaaaa;
    color: #222222;
  }
}

@media screen and (min-width: 992px) {
  .timeline__content-primary {
    position: relative;
    width: 70%;
    padding: 0 12rem 6rem 12rem;
    border-left: 1px dotted #aaaaaa;
    color: #222222;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
}

.timeline__content-primary::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: -1rem;
  width: 2rem;
  height: 2rem;
  background-color: #298dcd;
  border-radius: 0.2rem;
  z-index: 1;
}

@media screen and (min-width: 375px) {
  .timeline__content-primary::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: -1rem;
    width: 2rem;
    height: 2rem;
    background-color: #298dcd;
    border-radius: 0.2rem;
    z-index: 1;
  }
}

@media screen and (min-width: 414px) {
  .timeline__content-primary::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: -1rem;
    width: 2rem;
    height: 2rem;
    background-color: #298dcd;
    border-radius: 0.2rem;
    z-index: 1;
  }
}

@media screen and (min-width: 600px) {
  .timeline__content-primary::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: -1rem;
    width: 2rem;
    height: 2rem;
    background-color: #298dcd;
    border-radius: 0.2rem;
    z-index: 1;
  }
}

@media screen and (min-width: 992px) {
  .timeline__content-primary::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: -1rem;
    width: 2rem;
    height: 2rem;
    background-color: #298dcd;
    border-radius: 0.2rem;
    z-index: 1;
  }
}

.timeline__content-primary::after {
  content: "";
  position: absolute;
  top: 2.2rem;
  left: 0rem;
  width: 3rem;
  height: 0.5rem;
  background-color: #298dcd;
  z-index: 1;
}

@media screen and (min-width: 375px) {
  .timeline__content-primary::after {
    content: "";
    position: absolute;
    top: 2.2rem;
    left: 0rem;
    width: 3rem;
    height: 0.5rem;
    background-color: #298dcd;
    z-index: 1;
  }
}

@media screen and (min-width: 414px) {
  .timeline__content-primary::after {
    content: "";
    position: absolute;
    top: 2.2rem;
    left: 0rem;
    width: 3rem;
    height: 0.5rem;
    background-color: #298dcd;
    z-index: 1;
  }
}

@media screen and (min-width: 600px) {
  .timeline__content-primary::after {
    content: "";
    position: absolute;
    top: 2.2rem;
    left: 1rem;
    width: 2rem;
    height: 0.5rem;
    background-color: #298dcd;
    z-index: 1;
  }
}

@media screen and (min-width: 992px) {
  .timeline__content-primary::after {
    content: "";
    position: absolute;
    top: 2.2rem;
    left: 1rem;
    width: 11rem;
    height: 0.5rem;
    background-color: #298dcd;
    z-index: 1;
  }
}

/*
 * Fonts
 * -------------------------------------------------------------------
 */
/*
 * トップページ
 * -------------------------------------------------------------------
 */
.top-about__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.top-about__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.top-about__heading {
  margin-bottom: 6.4rem;
}

.top-about__text {
  color: #222222;
  font-size: 2rem;
  text-align: left;
  display: inline-block;
  margin-top: -2.4rem;
  margin-bottom: 7.2rem;
}

.top-about__list {
  background: #fff;
  -webkit-box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 992px) {
  .top-about__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3.2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.top-about__list-item {
  padding: 2.4rem 3.2rem;
}

@media screen and (min-width: 992px) {
  .top-about__list-item:not(:first-child) {
    border-left: 1px dashed #aaaaaa;
  }
}

.top-about__guide {
  padding-top: 6.4rem;
}

.top-about__hover {
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.top-about__hover:hover {
  opacity: 0.6;
}

.top-business__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.top-business__heading {
  margin-bottom: 6.4rem;
}

.top-business__list {
  background: #fff;
  -webkit-box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 992px) {
  .top-business__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3.2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.top-business__list-item {
  padding: 2.4rem 3.2rem;
}

@media screen and (min-width: 992px) {
  .top-business__list-item:not(:first-child) {
    border-left: 1px dashed #aaaaaa;
  }
}

.top-business__guide {
  padding-top: 6.4rem;
}

.top-business__hover {
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.top-business__hover:hover {
  opacity: 0.6;
}

.top-employee__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.top-employee__heading {
  margin-bottom: 6.4rem;
}

.top-employee__list {
  background: #fff;
  -webkit-box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 992px) {
  .top-employee__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3.2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.top-employee__list-item {
  padding: 2.4rem 3.2rem;
}

@media screen and (min-width: 992px) {
  .top-employee__list-item:not(:first-child) {
    border-left: 1px dashed #aaaaaa;
  }
}

.top-employee__more {
  padding-top: 3.2rem;
}

@media screen and (min-width: 992px) {
  .top-employee__more {
    padding-top: 3.2rem;
  }
}

.top-employee__guide {
  padding-top: 6.4rem;
}

@media screen and (min-width: 992px) {
  .top-employee__guide {
    padding-top: 6.4rem;
  }
}

.top-culture__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.top-culture__heading {
  margin-bottom: 6.4rem;
}

.top-culture__list {
  background: #fff;
}

@media screen and (min-width: 992px) {
  .top-culture__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3.2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.top-culture__list-item {
  padding: 2.4rem 1.6rem;
}

.top-culture__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.8rem;
  margin-bottom: 2.4rem;
}

@media screen and (min-width: 992px) {
  .top-culture__image img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0.8rem;
    margin-bottom: 0;
  }
}

.top-culture__guide {
  padding-top: 3.2rem;
}

@media screen and (min-width: 992px) {
  .top-culture__guide {
    padding-top: 0;
  }
}

.top-company__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.top-company__heading {
  margin-bottom: 6.4rem;
}

.top-company__list {
  background: #fff;
  -webkit-box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 992px) {
  .top-company__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3.2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.top-company__list-item {
  padding: 2.4rem 1.6rem;
}

.top-company__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.8rem;
}

@media screen and (min-width: 992px) {
  .top-company__image img {
    display: block;
    max-width: 89.5%;
    margin: 0 auto;
    border-radius: 0.8rem;
  }
}

.top-company__guide {
  padding-top: 6.4rem;
}

@media screen and (min-width: 992px) {
  .top-company__guide {
    padding-top: 6.4rem;
  }
}

.top-company__hover {
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.top-company__hover:hover {
  opacity: 0.6;
}

.top-requirements__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.top-requirements__heading {
  margin-bottom: 6.4rem;
}

.top-requirements__list {
  background: #fff;
  -webkit-box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 992px) {
  .top-requirements__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3.2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.top-requirements__list-item {
  padding: 2.4rem 3.2rem;
}

@media screen and (min-width: 992px) {
  .top-requirements__list-item:not(:first-child) {
    border-left: 1px dashed #aaaaaa;
  }
}

.top-requirements__more {
  padding-top: 3.2rem;
}

@media screen and (min-width: 992px) {
  .top-requirements__more {
    padding-top: 3.2rem;
  }
}

.top-requirements__guide {
  padding-top: 6.4rem;
}

@media screen and (min-width: 992px) {
  .top-requirements__guide {
    padding-top: 6.4rem;
  }
}

/*
 * 下層ページ - CSTの特徴
 * -------------------------------------------------------------------
 */
.subpage-about__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.subpage-about__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.subpage-about__heading {
  margin-bottom: 6.4rem;
}

.subpage-about__text {
  color: #222222;
  font-size: 2rem;
  text-align: left;
  display: inline-block;
}

.subpage-about__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.8rem;
  margin-bottom: 4.8rem;
}

@media screen and (min-width: 992px) {
  .subpage-about__image img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0.8rem;
    margin-bottom: 4.8rem;
  }
}

.subpage-about__list {
  background: #fff;
  margin-top: 4rem;
}

@media screen and (min-width: 992px) {
  .subpage-about__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 8rem;
  }
}

.subpage-about__list-2 {
  background: #fff;
  margin-top: 0;
}

@media screen and (min-width: 992px) {
  .subpage-about__list-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 4rem;
  }
}

.subpage-about__list-item {
  padding: 2rem;
}

@media screen and (min-width: 992px) {
  .subpage-about__list-item {
    padding: 0 2rem;
  }
}

.subpage-about__guide {
  padding-top: 6.4rem;
}

/*
 * 下層ページ - 事業紹介
 * -------------------------------------------------------------------
 */
.subpage-business__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.subpage-business__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.subpage-business__heading {
  margin-bottom: 6.4rem;
}

.subpage-business__text {
  color: #222222;
  font-size: 2rem;
  text-align: left;
  display: inline-block;
}

.subpage-business__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.8rem;
  margin-bottom: 4.8rem;
}

@media screen and (min-width: 992px) {
  .subpage-business__image img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0.8rem;
    margin-bottom: 4.8rem;
  }
}

.subpage-business__guide {
  padding-top: 6.4rem;
}

/*
 * 下層ページ - 社員紹介
 * -------------------------------------------------------------------
 */
.subpage-employee__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.subpage-employee__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.subpage-employee__heading {
  margin-bottom: 6.4rem;
}

.subpage-employee__text {
  color: #222222;
  font-size: 2rem;
  text-align: left;
  display: inline-block;
}

.subpage-employee__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.8rem;
  margin-bottom: 4.8rem;
}

@media screen and (min-width: 992px) {
  .subpage-employee__image img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0.8rem;
    margin-bottom: 4.8rem;
  }
}

.subpage-employee__list {
  background: #fff;
}

@media screen and (min-width: 992px) {
  .subpage-employee__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3.2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.subpage-employee__list-item {
  padding: 2.4rem 3.2rem;
}

@media screen and (min-width: 992px) {
  .subpage-employee__list-item:not(:first-child) {
    border-left: 1px dashed #aaaaaa;
  }
}

.subpage-employee__more {
  padding-top: 3.2rem;
}

@media screen and (min-width: 992px) {
  .subpage-employee__more {
    padding-top: 3.2rem;
  }
}

.subpage-employee__guide {
  padding-top: 6.4rem;
}

@media screen and (min-width: 992px) {
  .subpage-employee__guide {
    padding-top: 6.4rem;
  }
}

.subpage-employee-detail__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.subpage-employee-detail__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.subpage-employee-detail__heading {
  margin-bottom: 6.4rem;
}

.subpage-employee-detail__text {
  color: #222222;
  font-size: 2rem;
  text-align: left;
  display: inline-block;
}

.subpage-employee-detail__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.8rem;
  margin-top: 2.4rem;
  margin-bottom: 4.8rem;
}

@media screen and (min-width: 992px) {
  .subpage-employee-detail__image img {
    display: block;
    max-width: 1136px;
    margin: 0 auto;
    border-radius: 0.8rem;
  }
}

.subpage-employee-detail__hero-image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 2.4rem;
}

@media screen and (min-width: 992px) {
  .subpage-employee-detail__hero-image img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 2.4rem;
  }
}

.subpage-employee-detail__list {
  background: #fff;
}

@media screen and (min-width: 992px) {
  .subpage-employee-detail__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3.2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.subpage-employee-detail__list-item {
  padding: 2.4rem 3.2rem;
}

@media screen and (min-width: 992px) {
  .subpage-employee-detail__list-item:not(:first-child) {
    border-left: 1px dashed #aaaaaa;
  }
}

.subpage-employee-detail__more {
  padding-top: 3.2rem;
}

@media screen and (min-width: 992px) {
  .subpage-employee-detail__more {
    padding-top: 3.2rem;
  }
}

.subpage-employee-detail__profile-wrapper {
  position: relative;
}

.subpage-employee-detail__profile01 {
  position: relative;
  color: #ffffff;
  font-size: 2rem;
}

.subpage-employee-detail__profile01::before {
  position: absolute;
  top: -2.37rem;
  left: -0.1rem;
  content: "開発職（プログラマー）：新卒採用4年目 \A 小野寺 和也";
  white-space: pre;
  width: 25.2rem;
  height: 5rem;
  background-color: #222222;
  color: #ffffff;
  font-size: 1rem;
  padding: 1rem;
}

@media screen and (min-width: 375px) {
  .subpage-employee-detail__profile01::before {
    position: absolute;
    top: -7.37rem;
    left: 0;
    content: "開発職（プログラマー）：新卒採用4年目 \A 小野寺 和也";
    white-space: pre;
    width: 23rem;
    height: 5rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem;
  }
}

@media screen and (min-width: 414px) {
  .subpage-employee-detail__profile01::before {
    position: absolute;
    top: -7.37rem;
    left: 0;
    content: "開発職（プログラマー）：新卒採用4年目 \A 小野寺 和也";
    white-space: pre;
    width: 25rem;
    height: 5rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem;
  }
}

@media screen and (min-width: 600px) {
  .subpage-employee-detail__profile01::before {
    position: absolute;
    top: -12.4rem;
    left: 0;
    content: "開発職（プログラマー）：新卒採用4年目 \A 小野寺 和也";
    white-space: pre;
    width: 50rem;
    height: 10rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 2rem;
    padding: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .subpage-employee-detail__profile01::before {
    position: absolute;
    top: -12.4rem;
    left: 0;
    content: "開発職（プログラマー）：新卒採用4年目 \A 小野寺 和也";
    white-space: pre;
    width: 50rem;
    height: 10rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 2rem;
    padding: 2rem;
  }
}

.subpage-employee-detail__profile02 {
  position: relative;
  color: #ffffff;
  font-size: 2rem;
}

.subpage-employee-detail__profile02::before {
  position: absolute;
  top: -2.37rem;
  left: -0.1rem;
  content: "開発職（品質管理）：新卒採用4年目 \A 佐藤 隆太";
  white-space: pre;
  width: 25.2rem;
  height: 5rem;
  background-color: #222222;
  color: #ffffff;
  font-size: 1rem;
  padding: 1rem;
}

@media screen and (min-width: 375px) {
  .subpage-employee-detail__profile02::before {
    position: absolute;
    top: -7.37rem;
    left: 0;
    content: "開発職（品質管理）：新卒採用4年目 \A 佐藤 隆太";
    white-space: pre;
    width: 23rem;
    height: 5rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem;
  }
}

@media screen and (min-width: 414px) {
  .subpage-employee-detail__profile02::before {
    position: absolute;
    top: -7.37rem;
    left: 0;
    content: "開発職（品質管理）：新卒採用4年目 \A 佐藤 隆太";
    white-space: pre;
    width: 25rem;
    height: 5rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem;
  }
}

@media screen and (min-width: 600px) {
  .subpage-employee-detail__profile02::before {
    position: absolute;
    top: -12.4rem;
    left: 0;
    content: "開発職（品質管理）：新卒採用4年目 \A 佐藤 隆太";
    white-space: pre;
    width: 50rem;
    height: 10rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 2rem;
    padding: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .subpage-employee-detail__profile02::before {
    position: absolute;
    top: -12.4rem;
    left: 0;
    content: "開発職（品質管理）：新卒採用4年目 \A 佐藤 隆太";
    white-space: pre;
    width: 50rem;
    height: 10rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 2rem;
    padding: 2rem;
  }
}

.subpage-employee-detail__profile03 {
  position: relative;
  color: #ffffff;
  font-size: 2rem;
}

.subpage-employee-detail__profile03::before {
  position: absolute;
  top: -2.37rem;
  left: -0.1rem;
  content: "開発職（データ開発）：新卒採用4年目 \A 小野寺 凪";
  white-space: pre;
  width: 25.2rem;
  height: 5rem;
  background-color: #222222;
  color: #ffffff;
  font-size: 1rem;
  padding: 1rem;
}

@media screen and (min-width: 375px) {
  .subpage-employee-detail__profile03::before {
    position: absolute;
    top: -7.37rem;
    left: 0;
    content: "開発職（データ開発）：新卒採用4年目 \A 小野寺 凪";
    white-space: pre;
    width: 23rem;
    height: 5rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem;
  }
}

@media screen and (min-width: 414px) {
  .subpage-employee-detail__profile03::before {
    position: absolute;
    top: -7.37rem;
    left: 0;
    content: "開発職（データ開発）：新卒採用4年目 \A 小野寺 凪";
    white-space: pre;
    width: 25rem;
    height: 5rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem;
  }
}

@media screen and (min-width: 600px) {
  .subpage-employee-detail__profile03::before {
    position: absolute;
    top: -12.4rem;
    left: 0;
    content: "開発職（データ開発）：新卒採用4年目 \A 小野寺 凪";
    white-space: pre;
    width: 50rem;
    height: 10rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 2rem;
    padding: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .subpage-employee-detail__profile03::before {
    position: absolute;
    top: -12.4rem;
    left: 0;
    content: "開発職（データ開発）：新卒採用4年目 \A 小野寺 凪";
    white-space: pre;
    width: 50rem;
    height: 10rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 2rem;
    padding: 2rem;
  }
}

.subpage-employee-detail__profile04 {
  position: relative;
  color: #ffffff;
  font-size: 2rem;
}

.subpage-employee-detail__profile04::before {
  position: absolute;
  top: -2.37rem;
  left: -0.1rem;
  content: "開発職（品質管理）：新卒採用5年目 \A 髙橋 翔吾";
  white-space: pre;
  width: 25.2rem;
  height: 5rem;
  background-color: #222222;
  color: #ffffff;
  font-size: 1rem;
  padding: 1rem;
}

@media screen and (min-width: 375px) {
  .subpage-employee-detail__profile04::before {
    position: absolute;
    top: -7.37rem;
    left: 0;
    content: "開発職（品質管理）：新卒採用5年目 \A 髙橋 翔吾";
    white-space: pre;
    width: 23rem;
    height: 5rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem;
  }
}

@media screen and (min-width: 414px) {
  .subpage-employee-detail__profile04::before {
    position: absolute;
    top: -7.37rem;
    left: 0;
    content: "開発職（品質管理）：新卒採用5年目 \A 髙橋 翔吾";
    white-space: pre;
    width: 25rem;
    height: 5rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem;
  }
}

@media screen and (min-width: 600px) {
  .subpage-employee-detail__profile04::before {
    position: absolute;
    top: -12.4rem;
    left: 0;
    content: "開発職（品質管理）：新卒採用5年目 \A 髙橋 翔吾";
    white-space: pre;
    width: 50rem;
    height: 10rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 2rem;
    padding: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .subpage-employee-detail__profile04::before {
    position: absolute;
    top: -12.4rem;
    left: 0;
    content: "開発職（品質管理）：新卒採用5年目 \A 髙橋 翔吾";
    white-space: pre;
    width: 50rem;
    height: 10rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 2rem;
    padding: 2rem;
  }
}

.subpage-employee-detail__profile05 {
  position: relative;
  color: #ffffff;
  font-size: 2rem;
}

.subpage-employee-detail__profile05::before {
  position: absolute;
  top: -2.37rem;
  left: -0.1rem;
  content: "開発職（データ開発）：新卒採用4年目 \A 吉田 花菜";
  white-space: pre;
  width: 25.2rem;
  height: 5rem;
  background-color: #222222;
  color: #ffffff;
  font-size: 1rem;
  padding: 1rem;
}

@media screen and (min-width: 375px) {
  .subpage-employee-detail__profile05::before {
    position: absolute;
    top: -7.37rem;
    left: 0;
    content: "開発職（データ開発）：新卒採用4年目 \A 吉田 花菜";
    white-space: pre;
    width: 23rem;
    height: 5rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem;
  }
}

@media screen and (min-width: 414px) {
  .subpage-employee-detail__profile05::before {
    position: absolute;
    top: -7.37rem;
    left: 0;
    content: "開発職（データ開発）：新卒採用4年目 \A 吉田 花菜";
    white-space: pre;
    width: 25rem;
    height: 5rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem;
  }
}

@media screen and (min-width: 600px) {
  .subpage-employee-detail__profile05::before {
    position: absolute;
    top: -12.4rem;
    left: 0;
    content: "開発職（データ開発）：新卒採用4年目 \A 吉田 花菜";
    white-space: pre;
    width: 50rem;
    height: 10rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 2rem;
    padding: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .subpage-employee-detail__profile05::before {
    position: absolute;
    top: -12.4rem;
    left: 0;
    content: "開発職（データ開発）：新卒採用4年目 \A 吉田 花菜";
    white-space: pre;
    width: 50rem;
    height: 10rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 2rem;
    padding: 2rem;
  }
}

.subpage-employee-detail__profile06 {
  position: relative;
  color: #ffffff;
  font-size: 2rem;
}

.subpage-employee-detail__profile06::before {
  position: absolute;
  top: -2.37rem;
  left: -0.1rem;
  content: "開発職（プログラマー）：新卒採用5年目 \A 費 思嘉";
  white-space: pre;
  width: 25.2rem;
  height: 5rem;
  background-color: #222222;
  color: #ffffff;
  font-size: 1rem;
  padding: 1rem;
}

@media screen and (min-width: 375px) {
  .subpage-employee-detail__profile06::before {
    position: absolute;
    top: -7.37rem;
    left: 0;
    content: "開発職（プログラマー）：新卒採用5年目 \A 費 思嘉";
    white-space: pre;
    width: 23rem;
    height: 5rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem;
  }
}

@media screen and (min-width: 414px) {
  .subpage-employee-detail__profile06::before {
    position: absolute;
    top: -7.37rem;
    left: 0;
    content: "開発職（プログラマー）：新卒採用5年目 \A 費 思嘉";
    white-space: pre;
    width: 25rem;
    height: 5rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem;
  }
}

@media screen and (min-width: 600px) {
  .subpage-employee-detail__profile06::before {
    position: absolute;
    top: -12.4rem;
    left: 0;
    content: "開発職（プログラマー）：新卒採用5年目 \A 費 思嘉";
    white-space: pre;
    width: 50rem;
    height: 10rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 2rem;
    padding: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .subpage-employee-detail__profile06::before {
    position: absolute;
    top: -12.4rem;
    left: 0;
    content: "開発職（プログラマー）：新卒採用5年目 \A 費 思嘉";
    white-space: pre;
    width: 50rem;
    height: 10rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 2rem;
    padding: 2rem;
  }
}

.subpage-employee-detail__profile07 {
  position: relative;
  color: #ffffff;
  font-size: 2rem;
}

.subpage-employee-detail__profile07::before {
  position: absolute;
  top: -2.37rem;
  left: -0.1rem;
  content: "建築事業部 開発職 \A 杉江 寛文";
  white-space: pre;
  width: 25.2rem;
  height: 5rem;
  background-color: #222222;
  color: #ffffff;
  font-size: 1rem;
  padding: 1rem;
}

@media screen and (min-width: 375px) {
  .subpage-employee-detail__profile07::before {
    position: absolute;
    top: -7.37rem;
    left: 0;
    content: "建築事業部 開発職 \A 杉江 寛文";
    white-space: pre;
    width: 15rem;
    height: 5rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem;
  }
}

@media screen and (min-width: 414px) {
  .subpage-employee-detail__profile07::before {
    position: absolute;
    top: -7.37rem;
    left: 0;
    content: "建築事業部 開発職 \A 杉江 寛文";
    white-space: pre;
    width: 15rem;
    height: 5rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem;
  }
}

@media screen and (min-width: 600px) {
  .subpage-employee-detail__profile07::before {
    position: absolute;
    top: -12.4rem;
    left: 0;
    content: "建築事業部 開発職 \A 杉江 寛文";
    white-space: pre;
    width: 30rem;
    height: 10rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 2rem;
    padding: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .subpage-employee-detail__profile07::before {
    position: absolute;
    top: -12.4rem;
    left: 0;
    content: "建築事業部 開発職 \A 杉江 寛文";
    white-space: pre;
    width: 30rem;
    height: 10rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 2rem;
    padding: 2rem;
  }
}

.subpage-employee-detail__profile08 {
  position: relative;
  color: #ffffff;
  font-size: 2rem;
}

.subpage-employee-detail__profile08::before {
  position: absolute;
  top: -2.37rem;
  left: -0.1rem;
  content: "土木開発本部 開発職 \A 鈴木 大輔";
  white-space: pre;
  width: 25.2rem;
  height: 5rem;
  background-color: #222222;
  color: #ffffff;
  font-size: 1rem;
  padding: 1rem;
}

@media screen and (min-width: 375px) {
  .subpage-employee-detail__profile08::before {
    position: absolute;
    top: -7.37rem;
    left: 0;
    content: "土木開発本部 開発職 \A 鈴木 大輔";
    white-space: pre;
    width: 15rem;
    height: 5rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem;
  }
}

@media screen and (min-width: 414px) {
  .subpage-employee-detail__profile08::before {
    position: absolute;
    top: -7.37rem;
    left: 0;
    content: "土木開発本部 開発職 \A 鈴木 大輔";
    white-space: pre;
    width: 15rem;
    height: 5rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem;
  }
}

@media screen and (min-width: 600px) {
  .subpage-employee-detail__profile08::before {
    position: absolute;
    top: -12.4rem;
    left: 0;
    content: "土木開発本部 開発職 \A 鈴木 大輔";
    white-space: pre;
    width: 30rem;
    height: 10rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 2rem;
    padding: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .subpage-employee-detail__profile08::before {
    position: absolute;
    top: -12.4rem;
    left: 0;
    content: "土木開発本部 開発職 \A 鈴木 大輔";
    white-space: pre;
    width: 30rem;
    height: 10rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 2rem;
    padding: 2rem;
  }
}

.subpage-employee-detail__profile09 {
  position: relative;
  color: #ffffff;
  font-size: 2rem;
}

.subpage-employee-detail__profile09::before {
  position: absolute;
  top: -2.37rem;
  left: -0.1rem;
  content: "建築事業部 サポート職 \A 高橋 里美";
  white-space: pre;
  width: 25.2rem;
  height: 5rem;
  background-color: #222222;
  color: #ffffff;
  font-size: 1rem;
  padding: 1rem;
}

@media screen and (min-width: 375px) {
  .subpage-employee-detail__profile09::before {
    position: absolute;
    top: -7.37rem;
    left: 0;
    content: "建築事業部 サポート職 \A 高橋 里美";
    white-space: pre;
    width: 15rem;
    height: 5rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem;
  }
}

@media screen and (min-width: 414px) {
  .subpage-employee-detail__profile09::before {
    position: absolute;
    top: -7.37rem;
    left: 0;
    content: "建築事業部 サポート職 \A 高橋 里美";
    white-space: pre;
    width: 15rem;
    height: 5rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem;
  }
}

@media screen and (min-width: 600px) {
  .subpage-employee-detail__profile09::before {
    position: absolute;
    top: -12.4rem;
    left: 0;
    content: "建築事業部 サポート職 \A 高橋 里美";
    white-space: pre;
    width: 30rem;
    height: 10rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 2rem;
    padding: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .subpage-employee-detail__profile09::before {
    position: absolute;
    top: -12.4rem;
    left: 0;
    content: "建築事業部 サポート職 \A 高橋 里美";
    white-space: pre;
    width: 30rem;
    height: 10rem;
    background-color: #222222;
    color: #ffffff;
    font-size: 2rem;
    padding: 2rem;
  }
}

.subpage-employee-detail__guide {
  padding-top: 6.4rem;
}

@media screen and (min-width: 992px) {
  .subpage-employee-detail__guide {
    padding-top: 6.4rem;
  }
}

/*
 * 下層ページ - 職場環境
 * -------------------------------------------------------------------
 */
.subpage-culture__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.subpage-culture__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.subpage-culture__heading {
  margin-bottom: 6.4rem;
}

.subpage-culture__text {
  color: #222222;
  font-size: 2rem;
  text-align: left;
  display: inline-block;
  margin-bottom: 4.8rem;
}

.subpage-culture__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.8rem;
  margin-bottom: 4.8rem;
}

@media screen and (min-width: 992px) {
  .subpage-culture__image img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0.8rem;
    margin-bottom: 4.8rem;
  }
}

.subpage-culture__hero-image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.8rem;
  margin-bottom: 2.4rem;
}

@media screen and (min-width: 992px) {
  .subpage-culture__hero-image img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0.8rem;
    margin-bottom: 2.4rem;
  }
}

.subpage-culture__list {
  background: #fff;
  margin-top: 2rem;
}

@media screen and (min-width: 992px) {
  .subpage-culture__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 4rem;
  }
}

.subpage-culture__list-2 {
  background: #fff;
  margin-top: 0;
}

@media screen and (min-width: 992px) {
  .subpage-culture__list-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 4rem;
  }
}

.subpage-culture__list-item {
  padding: 2rem;
}

@media screen and (min-width: 992px) {
  .subpage-culture__list-item {
    padding: 0 2rem;
  }
}

.subpage-culture__more {
  padding-top: 3.2rem;
}

@media screen and (min-width: 992px) {
  .subpage-culture__more {
    padding-top: 3.2rem;
  }
}

.subpage-culture__guide {
  padding-top: 6.4rem;
}

@media screen and (min-width: 992px) {
  .subpage-culture__guide {
    padding-top: 6.4rem;
  }
}

/*
 * 下層ページ - 会社情報
 * -------------------------------------------------------------------
 */
.subpage-company__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.subpage-company__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.subpage-company__heading {
  margin-bottom: 6.4rem;
}

.subpage-company__text {
  color: #222222;
  font-size: 2rem;
  text-align: left;
  display: inline-block;
}

.subpage-company__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.8rem;
  margin-bottom: 4.8rem;
}

@media screen and (min-width: 992px) {
  .subpage-company__image img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0.8rem;
    margin-bottom: 4.8rem;
  }
}

.subpage-company__list {
  background: #fff;
  margin-top: 2rem;
}

@media screen and (min-width: 992px) {
  .subpage-company__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 4rem;
  }
}

.subpage-company__list-2 {
  background: #fff;
  margin-top: 0;
}

@media screen and (min-width: 992px) {
  .subpage-company__list-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 4rem;
  }
}

.subpage-company__list-item {
  padding: 2rem;
}

@media screen and (min-width: 992px) {
  .subpage-company__list-item {
    padding: 0 2rem;
  }
}

.subpage-company__more {
  padding-top: 3.2rem;
}

@media screen and (min-width: 992px) {
  .subpage-company__more {
    padding-top: 3.2rem;
  }
}

.subpage-company__note {
  padding-top: 0;
}

@media screen and (min-width: 992px) {
  .subpage-company__note {
    padding-top: 0.4rem;
  }
}

.subpage-company__guide {
  padding-top: 6.4rem;
}

@media screen and (min-width: 992px) {
  .subpage-company__guide {
    padding-top: 6.4rem;
  }
}

/*
 * 下層ページ - 募集要項
 * -------------------------------------------------------------------
 */
.subpage-requirements__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.subpage-requirements__heading {
  margin-bottom: 6.4rem;
}

.subpage-requirements__list {
  background: #fff;
  -webkit-box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 992px) {
  .subpage-requirements__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3.2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.subpage-requirements__list-item {
  padding: 2.4rem 3.2rem;
}

@media screen and (min-width: 992px) {
  .subpage-requirements__list-item:not(:first-child) {
    border-left: 1px dashed #aaaaaa;
  }
}

.subpage-requirements__more {
  padding-top: 3.2rem;
}

@media screen and (min-width: 992px) {
  .subpage-requirements__more {
    padding-top: 3.2rem;
  }
}

.subpage-requirements__guide {
  padding-top: 6.4rem;
}

@media screen and (min-width: 992px) {
  .subpage-requirements__guide {
    padding-top: 6.4rem;
  }
}

.subpage-new-graduate__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.subpage-new-graduate__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.subpage-new-graduate__heading {
  margin-bottom: 3.2rem;
}

.subpage-new-graduate__text {
  color: #222222;
  font-size: 2rem;
  text-align: left;
  display: inline-block;
}

.subpage-new-graduate__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.8rem;
  margin-bottom: 4.8rem;
}

@media screen and (min-width: 992px) {
  .subpage-new-graduate__image img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0.8rem;
    margin-bottom: 4.8rem;
  }
}

.subpage-new-graduate__new-graduate-container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 6.2rem 15px 6.2rem 15px;
}

@media (min-width: 992px) {
  .subpage-new-graduate__new-graduate-container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 6.2rem 15px 6.2rem 15px;
  }
}

.subpage-new-graduate__thumbnail-container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 6.2rem 15px 3.1rem 15px;
}

@media (min-width: 992px) {
  .subpage-new-graduate__thumbnail-container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 6.2rem 15px 3.1rem 15px;
  }
}

.subpage-new-graduate__thumbnail {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (min-width: 992px) {
  .subpage-new-graduate__thumbnail {
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 60rem;
  }
}

.subpage-new-graduate__thumbnail:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (min-width: 992px) {
  .subpage-new-graduate__thumbnail:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 60rem;
  }
}

.subpage-new-graduate__thumbnail-image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 4rem;
}

@media screen and (min-width: 992px) {
  .subpage-new-graduate__thumbnail-image {
    display: block;
    max-width: 100%;
    margin: 0 auto;
  }
}

.subpage-new-graduate__thumbnail-inner {
  display: block;
  background: #ffffff;
  padding: 2rem;
}

@media (min-width: 992px) {
  .subpage-new-graduate__thumbnail-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    background: #ffffff;
    padding: 2rem;
  }
}

.subpage-new-graduate__thumbnail-link {
  display: block;
  margin: 0 auto;
  max-width: 25rem;
  max-height: 7rem;
}

@media (min-width: 992px) {
  .subpage-new-graduate__thumbnail-link {
    display: block;
    margin: 0 auto;
    min-width: 25rem;
    min-height: 7rem;
  }
}

.subpage-new-graduate__thumbnail-link:hover {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0.6;
}

.subpage-new-graduate__thumbnail-link img {
  width: 100%;
}

@media (min-width: 992px) {
  .subpage-new-graduate__thumbnail-link img {
    width: 100%;
  }
}

.subpage-new-graduate__more {
  padding-top: 3.2rem;
}

@media screen and (min-width: 992px) {
  .subpage-new-graduate__more {
    padding-top: 3.2rem;
  }
}

.subpage-new-graduate__guide {
  padding-top: 6.4rem;
}

@media screen and (min-width: 992px) {
  .subpage-new-graduate__guide {
    padding-top: 6.4rem;
  }
}

.subpage-new-graduate__caret-down {
  position: relative;
}

.subpage-new-graduate__caret-down:before {
  font-family: "Font Awesome 5 Free";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-display: swap;
  /* lazy load */
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  content: "\f0d7";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 6rem;
  color: #298dcd;
  margin-top: -1.6rem;
  margin-left: 10.5rem;
}

@media screen and (min-width: 375px) {
  .subpage-new-graduate__caret-down:before {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 6rem;
    color: #298dcd;
    margin-top: -1.6rem;
    margin-left: 13.5rem;
  }
}

@media screen and (min-width: 414px) {
  .subpage-new-graduate__caret-down:before {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 6rem;
    color: #298dcd;
    margin-top: -1.6rem;
    margin-left: 15.5rem;
  }
}

@media screen and (min-width: 600px) {
  .subpage-new-graduate__caret-down:before {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 6rem;
    color: #298dcd;
    margin-top: -1.6rem;
    margin-left: 26.5rem;
  }
}

@media screen and (min-width: 992px) {
  .subpage-new-graduate__caret-down:before {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 8rem;
    color: #298dcd;
    margin-top: -1rem;
    margin-left: 43rem;
  }
}

.subpage-career__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.subpage-career__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.subpage-career__heading {
  margin-bottom: 6.4rem;
}

.subpage-career__text {
  color: #222222;
  font-size: 2rem;
  text-align: left;
  display: inline-block;
}

.subpage-career__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.8rem;
  margin-bottom: 4.8rem;
}

@media screen and (min-width: 992px) {
  .subpage-career__image img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0.8rem;
    margin-bottom: 4.8rem;
  }
}

@media (min-width: 992px) {
  .subpage-career__description {
    width: 100%;
  }
}

.subpage-career__description-content {
  padding: 2rem 2rem 0 2rem;
  margin-right: 0;
  z-index: 1;
}

@media (min-width: 992px) {
  .subpage-career__description-content {
    width: 100%;
    padding: 3.2rem 3.2rem 0 3.2rem;
    margin-right: 1.6rem;
    z-index: 1;
  }
}

.subpage-career__more {
  padding-top: 3.2rem;
}

@media screen and (min-width: 992px) {
  .subpage-career__more {
    padding-top: 3.2rem;
  }
}

.subpage-career__guide {
  padding-top: 6.4rem;
}

@media screen and (min-width: 992px) {
  .subpage-career__guide {
    padding-top: 6.4rem;
  }
}

.subpage-handicap__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.subpage-handicap__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.subpage-handicap__heading {
  margin-bottom: 6.4rem;
}

.subpage-handicap__text {
  color: #222222;
  font-size: 2rem;
  text-align: left;
  display: inline-block;
}

.subpage-handicap__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.8rem;
  margin-bottom: 4.8rem;
}

@media screen and (min-width: 992px) {
  .subpage-handicap__image img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0.8rem;
    margin-bottom: 4.8rem;
  }
}

@media (min-width: 992px) {
  .subpage-handicap__description {
    width: 100%;
  }
}

.subpage-handicap__description-content {
  padding: 2rem 2rem 0 2rem;
  margin-right: 0;
  z-index: 1;
}

@media (min-width: 992px) {
  .subpage-handicap__description-content {
    width: 100%;
    padding: 3.2rem 3.2rem 0 3.2rem;
    margin-right: 1.6rem;
    z-index: 1;
  }
}

.subpage-handicap__more {
  padding-top: 3.2rem;
}

@media screen and (min-width: 992px) {
  .subpage-handicap__more {
    padding-top: 3.2rem;
  }
}

.subpage-handicap__guide {
  padding-top: 6.4rem;
}

@media screen and (min-width: 992px) {
  .subpage-handicap__guide {
    padding-top: 6.4rem;
  }
}

/*
 * 問い合わせ
 * -------------------------------------------------------------------
 */
.contact-guide {
  padding: 12.4rem 15px;
}

.contact-guide__container {
  -webkit-box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.15);
  max-width: 1440px;
  margin: 0 auto;
  padding: 6.4rem 15px;
  background: #fafafa;
}

.contact-guide__heading {
  margin: 0 0 4.8rem 0;
  text-align: center;
}

.contact-guide__heading-main {
  font-weight: 700;
  font-family: "Noto Sans JP", "Roboto";
  font-display: swap;
  /* lazy load */
  font-size: 2rem;
  font-weight: 700;
  color: #298dcd;
}

@media screen and (min-width: 414px) {
  .contact-guide__heading-main {
    font-weight: 700;
    font-family: "Noto Sans JP", "Roboto";
    font-display: swap;
    /* lazy load */
    font-size: 2.4rem;
    font-weight: 700;
    color: #298dcd;
  }
}

@media screen and (min-width: 992px) {
  .contact-guide__heading-main {
    font-weight: 700;
    font-family: "Noto Sans JP", "Roboto";
    font-display: swap;
    /* lazy load */
    font-size: 2.8rem;
    font-weight: 700;
    color: #298dcd;
  }
}

.contact-guide__heading-sub {
  font-weight: 600;
  font-size: 2.4rem;
  padding-top: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
}

@media screen and (min-width: 414px) {
  .contact-guide__heading-sub {
    font-weight: 600;
    font-size: 2.6rem;
    padding-top: 1.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: left;
  }
}

@media screen and (min-width: 992px) {
  .contact-guide__heading-sub {
    font-weight: 600;
    font-size: 3rem;
    padding-top: 1.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.contact-guide__message {
  margin: 0 0 4.8rem 0;
  color: #aaaaaa;
  font-size: 1.6rem;
  text-align: center;
}

.contact-guide__list-item {
  margin: 0 0 2.4rem 0;
  text-align: center;
}

.contact-guide__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  -webkit-transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  width: 100%;
  max-width: 600px;
  padding: 3.2rem;
  border: 1px solid #298dcd;
  border-radius: 0.8rem;
  background: #298dcd;
  color: #ffffff;
  font-size: 2rem;
}

.contact-guide__button:hover {
  background: #2170a3;
}

.contact-form__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.contact-form__heading {
  margin-bottom: 3.2rem;
}

.contact-form__content {
  margin: 0 auto;
  padding: 3.2rem 1rem;
  background: #fff;
  border: 4px solid #efefef;
}

@media (min-width: 992px) {
  .contact-form__content {
    padding: 6.4rem 4rem;
  }
}

.contact-form__form {
  max-width: 850px;
  margin: 0 auto 1.6rem auto;
}

@media (min-width: 992px) {
  .contact-form__form {
    margin: 0 auto 6.4rem auto;
  }
}

.contact-form__button {
  text-align: center;
}

.contact-form__button-submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  -webkit-transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  background: #298dcd;
  padding: 1em 3em;
  color: #fff;
  border-radius: 50px;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 992px) {
  .contact-form__button-submit {
    max-width: 240px;
  }
}

.contact-form__button-submit:hover, .contact-form__button-submit:focus {
  background: #257eb8;
}

/*
 * 使用しないページ
 * -------------------------------------------------------------------
 */
/*
 * 使用しないページ END
 * -------------------------------------------------------------------
 */
/*
 * 新着情報
 * -------------------------------------------------------------------
 */
/*
 * サービス紹介
 * -------------------------------------------------------------------
 */
/*
 * 制作実績
 * -------------------------------------------------------------------
 */
/*
 * 会社情報
 * -------------------------------------------------------------------
 */
/*
 * ブログ
 * -------------------------------------------------------------------
 */
/*
 * 問い合わせ
 * -------------------------------------------------------------------
 */
/*# sourceMappingURL=style.css.map */