@charset "UTF-8";
/* mixin */
/* インデント調整 */
/* センター寄せのインデント調整 */
/* 動作の時間（1001px以上の時,1000px以下の時） */
/* 行数によるテキスト変換（501px以上の時,500px以下の時） */
/* フォルダ内の背景画像取得 */
/* 丸角(丸角のpx数,丸角を適用するカドの指定) */
/* container生成（要素の幅,余白,位置【center left right】） */
/* コンテンツの中央配置 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* flexのfit */
/* template color */
/* custom color */
/* font */
.mincho {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-feature-settings: "palt";
  font-weight: 500;
}

/* setting */
.list_dotted__tab {
  position: relative;
  padding-left: 1em;
}
.list_dotted__tab::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.list_count {
  counter-reset: count;
}

.list_count__tab {
  position: relative;
  padding-left: 1.5em;
}
.list_count__tab::before {
  counter-increment: count;
  content: counter(count, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
}

.list_num {
  counter-reset: num;
}

.list_num__tab {
  position: relative;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  padding-left: 1.5em;
}
.list_num__tab::before {
  counter-increment: num;
  content: counter(num);
  position: absolute;
  top: 0;
  left: 0;
}

.list_unit {
  counter-reset: unit;
}

.list_unit__tab {
  position: relative;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  padding-left: 1.5em;
}
.list_unit__tab::before {
  counter-increment: unit;
  content: counter(unit) ".";
  position: absolute;
  top: 0;
  left: 0;
}

.cm_btn {
  margin-top: clamp(32px, 3.5vw, 56px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 32px;
}

.cm_btn__link {
  display: block;
  min-width: 200px;
  width: 100%;
  height: auto;
  line-height: 56px;
  text-align: center;
  flex: 1;
  border-radius: 56px;
  overflow: clip;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  color: #fff;
  background-color: #0c1c89;
}
@media screen and (min-width: 501px) {
  .cm_btn__link {
    max-width: 320px;
  }
}
@media screen and (max-width: 500px) {
  .cm_btn__link {
    max-width: 240px;
  }
}

.item_more {
  margin-top: clamp(32px, 2.5vw, 40px);
  text-align: right;
}

.item_more__link {
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  display: inline;
  text-decoration: underline;
}

* {
  margin: 0;
  padding: 0;
}
*:focus {
  outline: none !important;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  color: #121907;
  background: #F3F7F9;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}
@media screen and (max-width: 1200px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
@media screen and (max-width: 1000px) {
  body #swipebox-close {
    right: auto;
    left: 0;
  }
}
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
    font-weight: 500;
  }
}
@media (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

p,
th,
td,
li,
dt,
dd,
address {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 400;
  line-height: 2;
  font-style: normal;
}

div {
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}
@media screen and (max-width: 1000px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br {
    display: none;
  }
}

img,
picture,
figure {
  margin: 0;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}
a.link {
  display: inline;
  color: #0c1c89;
  text-decoration: underline;
}
a:hover {
  opacity: 0.6;
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
  cursor: default;
}
a[href^=tel]:hover {
  opacity: 1;
}
@media screen and (min-width: 1001px) {
  a[href^=tel] {
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
}

.wp-caption {
  margin: 10px;
  padding-top: 4px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #f3f3f3;
  text-align: center;
}
.wp-caption img {
  margin: 0;
  padding: 0;
  border: none;
}
.wp-caption p.wp-caption-text {
  margin: 0;
  padding: 0 4px 5px;
  font-size: 11px;
  line-height: 17px;
}

@media screen and (min-width: 1001px) {
  .text-center {
    text-align: center;
  }
  .text-left {
    text-align: left;
  }
  .text-right {
    text-align: right;
  }
}
.text_center {
  text-align: center;
}
.text_left {
  text-align: left;
}
.text_right {
  text-align: right;
}

.swipe {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .swipe {
    position: relative;
    padding: 5px 0;
    overflow: hidden;
    z-index: 1;
  }
  .swipe img {
    min-width: 1200px;
  }
  .swipe::before {
    position: absolute;
    content: "";
    z-index: 2;
    max-width: 180px;
    width: 100%;
    max-height: 56px;
    height: 100%;
    top: 60px;
    left: 20px;
    background-image: url(../images/svg_swipe.svg);
    background-position: center left;
    background-size: contain;
    background-repeat: no-repeat;
    animation: 2s ease-in-out alternate infinite please__swipe;
  }
  .swipe::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 100%;
    background: #ddd;
    opacity: 0.6;
    transform: translate(-50%, -50%);
    transition: all 0.6s;
  }
  .swipe__on {
    overflow: auto;
    white-space: nowrap;
  }
  .swipe__on::after, .swipe__on::before {
    opacity: 0;
    z-index: -1;
    animation: none;
  }
  .swipe__on::-webkit-scrollbar {
    height: 5px;
  }
  .swipe__on::-webkit-scrollbar-track, .swipe__on::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
  .swipe th,
  .swipe td {
    display: table-cell !important;
    white-space: nowrap;
  }
}

@keyframes please__swipe {
  0% {
    left: 10px;
  }
  100% {
    left: 50px;
  }
}
@media screen and (min-width: 1001px) {
  .l-following_contents {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    position: relative;
  }
  .l-following_contents .--side {
    top: 0;
    width: 200px;
  }
  .l-following_contents .--main {
    flex: 1;
  }
}
@media screen and (max-width: 1000px) {
  .l-following_contents .--side {
    bottom: 0;
  }
}
.l-following_contents .--side {
  position: sticky;
  left: 0;
}

.flickWrap {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .flickWrap {
    padding: 5px 0;
    overflow: auto;
    white-space: nowrap;
  }
  .flickWrap::before {
    margin-bottom: 20px;
    color: #f55;
    font-size: clamp(1.2rem, 1.1290322581vw, 1.4rem);
    content: "※表が見切れる場合は横スクロールでご覧ください。";
  }
  .flickWrap::-webkit-scrollbar {
    height: 5px;
  }
  .flickWrap::-webkit-scrollbar-track, .flickWrap::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
}

.lazy {
  opacity: 0;
  position: relative;
  transform: translate(0%, 50px);
}

.lazy-show {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 1s;
}

.container {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1241px) {
  .container {
    max-width: 1280px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 1240px) {
  .container {
    max-width: 1280px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 500px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.over-right {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1241px) {
  .over-right {
    margin-left: calc((100vw - 1220px) / 2);
  }
}
@media screen and (max-width: 1240px) {
  .over-right {
    max-width: 1280px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .over-right {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 500px) {
  .over-right {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.over-left {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1241px) {
  .over-left {
    margin-right: calc((100vw - 1220px) / 2);
  }
}
@media screen and (max-width: 1240px) {
  .over-left {
    max-width: 1280px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .over-left {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 500px) {
  .over-left {
    padding-left: 20px;
    padding-right: 20px;
  }
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.image {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  height: auto !important;
  border: none;
  box-sizing: border-box;
}

tbody,
tr {
  width: 100%;
  height: auto !important;
  border: none;
  box-sizing: border-box;
}

th,
td {
  text-align: left;
  vertical-align: top;
  box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  th,
  td {
    padding-top: 1em;
    padding-bottom: 1em;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
@media screen and (max-width: 1000px) {
  th,
  td {
    display: block;
  }
}

@media screen and (min-width: 1001px) {
  th {
    width: 200px;
    border-bottom: 1px solid #ccc;
    background-color: #f8f8f8;
  }
}
@media screen and (max-width: 1000px) {
  th {
    padding-left: 1em;
    padding-right: 1em;
  }
  tr + tr th {
    padding-top: 1em;
  }
}

@media screen and (min-width: 1001px) {
  td {
    border-bottom: 1px solid #ccc;
  }
}
@media screen and (max-width: 1000px) {
  td {
    border-bottom: 1px solid #ccc;
    padding-bottom: 1em;
    padding-left: 1em;
    padding-right: 1em;
  }
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 500px) {
  .wp-pagenavi {
    gap: 16px;
  }
}
.archive .wp-pagenavi {
  margin-top: clamp(48px, 3.5vw, 56px);
}
.wp-pagenavi a,
.wp-pagenavi span {
  position: relative;
  border: none;
  padding: unset;
  margin: unset;
  border: none;
  aspect-ratio: 1/1;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  border: none;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 100%;
  text-align: center;
  color: #121907;
  box-sizing: border-box;
  border: none !important;
  padding-bottom: 7px !important;
}
@media screen and (min-width: 1001px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 20px;
    padding-bottom: 5px !important;
  }
}
.wp-pagenavi a::before,
.wp-pagenavi span::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  max-width: 100%;
  width: 0%;
  height: 1px;
  background-color: #008DD0;
  transition-property: all;
}
@media screen and (min-width: 1001px) {
  .wp-pagenavi a::before,
  .wp-pagenavi span::before {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .wp-pagenavi a::before,
  .wp-pagenavi span::before {
    transition-duration: 300ms;
  }
}
.wp-pagenavi a:hover, .wp-pagenavi a.current,
.wp-pagenavi span:hover,
.wp-pagenavi span.current {
  opacity: 1;
  font-weight: 500;
  color: #008DD0;
}
.wp-pagenavi a:hover::before, .wp-pagenavi a.current::before,
.wp-pagenavi span:hover::before,
.wp-pagenavi span.current::before {
  width: 100%;
}
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 100%;
  color: #121907;
}

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

@media screen and (min-width: 501px) {
  .--sp {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .--sp {
    display: block !important;
  }
}

.link-under {
  color: #008DD0;
  text-decoration: underline;
}

.cm-block + .cm-block {
  margin-top: clamp(60px, 5vw, 80px);
}

@media screen and (min-width: 1001px) {
  .cm-column {
    display: flex;
    align-items: flex-start;
    gap: 60px;
  }
  .cm-rev {
    flex-direction: row-reverse;
  }
}
.cm-pic {
  width: 33.3333333333%;
  aspect-ratio: 4/3;
  background-color: #ddd;
}

.cm-fit {
  flex: 1;
}
@media screen and (max-width: 1000px) {
  .cm-pic + .cm-fit {
    margin-top: 64px;
  }
}

.cm-cards {
  display: grid;
  grid-template-rows: repeat(1, 1fr);
}
@media screen and (min-width: 501px) {
  .cm-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .cm-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .cm-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

/* module */
.cm-bread {
  padding-top: 22px;
  font-size: clamp(1.2rem, 1.0483870968vw, 1.3rem);
  line-height: 1.6;
  font-style: normal;
  font-weight: 400;
  color: #7A8086;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
}
.cm-bread a {
  color: inherit;
  font-size: inherit;
}
@media screen and (max-width: 1000px) {
  .cm-bread {
    padding-top: 16px;
  }
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.header_block {
  background: #fff;
  padding-bottom: 48px;
}
@media screen and (max-width: 1000px) {
  .header_block {
    padding: 12px 14px 12px;
  }
}

.header_columns {
  display: flex;
  justify-content: space-between;
}

.header_logo {
  display: inline-block;
  padding-top: 28px;
  padding-left: 32px;
  line-height: 1;
}
.header_logo img {
  display: block;
  width: auto;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .header_logo {
    padding-top: 0px;
    padding-left: 0px;
  }
}

.header_logo__link {
  max-width: 334px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .header_logo__link {
    max-width: 264px;
  }
}
@media screen and (max-width: 1000px) {
  .header_logo__link {
    max-width: 220px;
  }
}
@media screen and (max-width: 500px) {
  .header_logo__link {
    max-width: 188px;
  }
}

.header_menu a {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 100%;
  color: #121907;
  box-sizing: border-box;
}
.header_menu ul {
  box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  .header_menu ul {
    display: flex;
    gap: 32px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .header_menu ul {
    gap: 16px;
  }
}
.header_menu .header_contact {
  padding: 0;
  padding-left: 8px;
}
.header_menu .header_contact a {
  display: block;
  width: 180px;
  background: #008DD0;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 1;
  text-align: center;
  color: #FFFFFF;
  padding: 30px 10px;
}
@media screen and (max-width: 1000px) {
  .header_menu .header_contact {
    padding: 0;
  }
  .header_menu .header_contact a {
    padding: 16px;
    width: 100%;
  }
}
@media screen and (min-width: 1001px) {
  .header_menu li {
    padding-top: 32px;
  }
  .header_menu .menu-item-has-children {
    position: relative;
  }
  .header_menu .menu-item-has-children > a {
    position: relative;
    padding-right: 15px;
  }
  .header_menu .menu-item-has-children > a::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background: url(../images/common/arrow_header_navi.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    aspect-ratio: 10/5;
    width: 10px;
    height: auto;
  }
  .header_menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: solid 1px #EAEAEA;
    display: block;
    width: -moz-max-content;
    width: max-content;
    transition: all 0.3s;
    z-index: 1;
    opacity: 0;
    transform: translateY(-5px);
    visibility: hidden;
    padding-right: 28px;
  }
  .header_menu .sub-menu li {
    padding: 0;
    line-height: 1.6;
  }
  .header_menu .sub-menu a {
    font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
    font-weight: 500;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 100%;
    color: #121907;
  }
  .header_menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
@media screen and (max-width: 1000px) {
  .header_menu {
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s;
    z-index: 5;
    overflow-y: scroll;
  }
  .header_menu.active {
    opacity: 1;
    transform: translateX(0%);
  }
  .header_menu .sub-menu,
  .header_menu .children {
    display: none;
  }
  .header_menu ul {
    padding-top: 70px;
    padding-bottom: 150px;
  }
  .header_menu li {
    border-bottom: 1px solid #fff;
  }
  .header_menu a {
    display: block;
    text-align: center;
    padding: 1em 0;
    color: #fff;
  }
}

.mobile_contact_fixd {
  position: fixed;
  top: 12px;
  right: 48px;
  max-width: 24px;
  z-index: 5;
}
@media screen and (min-width: 1001px) {
  .mobile_contact_fixd {
    display: none !important;
  }
}

.header_trigger {
  position: fixed;
  top: 12px;
  right: 15px;
  aspect-ratio: 1/1;
  width: 24px;
  height: auto;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
  cursor: pointer;
}
@media screen and (min-width: 1001px) {
  .header_trigger {
    display: none;
  }
}
.header_trigger:hover {
  opacity: 1;
}
.header_trigger span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background-color: #121907;
  transform: translateY(-50%) translateX(-50%);
  transition: all 0.6s;
}
.header_trigger span:first-child {
  transform: translateY(calc(-50% - 6px)) translateX(-50%) rotate(0deg);
}
.header_trigger span:last-child {
  transform: translateY(calc(-50% + 6px)) translateX(-50%) rotate(0deg);
}
.header_trigger.active span {
  opacity: 0;
}
.header_trigger.active span:first-child {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(400deg);
}
.header_trigger.active span:last-child {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-400deg);
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
kv----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.kv {
  position: relative;
  padding-top: 24px;
}
.kv::before {
  content: "";
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 430px;
  z-index: -1;
}
@media screen and (min-width: 1000px) and (max-width: 1400px) {
  .kv::before {
    height: 380px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .kv::before {
    height: 360px;
  }
}
@media screen and (max-width: 1000px) {
  .kv::before {
    height: 310px;
  }
}
@media screen and (max-width: 500px) {
  .kv::before {
    height: 360px;
  }
}

@media screen and (max-width: 1000px) {
  .kv_pic img {
    height: 380px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (max-width: 1000px) and (max-width: 500px) {
  .kv_pic img {
    height: 280px;
  }
}
.kv_wrap {
  display: flex;
  padding-right: 76px;
}
@media screen and (min-width: 1801px) {
  .kv_wrap {
    padding-right: 120px;
  }
}
@media screen and (min-width: 3201px) {
  .kv_wrap {
    padding-right: 240px;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1400px) {
  .kv_wrap {
    padding-right: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .kv_wrap {
    padding-right: 40px;
  }
}
@media screen and (max-width: 500px) {
  .kv_wrap {
    padding-right: 20px;
  }
}

.kv_vertical {
  padding-left: 14px;
  writing-mode: vertical-rl;
  display: flex;
  gap: 11px;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .kv_vertical {
    padding-left: 8px;
    gap: 8px;
  }
}

.kv_head__caption {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.8rem, 1.7741935484vw, 2.2rem);
  line-height: 100%;
  text-transform: uppercase;
  color: #121907;
  display: flex;
  align-items: center;
  gap: 11px;
}
@media screen and (max-width: 1000px) {
  .kv_head__caption {
    gap: 8px;
  }
}
.kv_head__caption::after {
  content: "";
  background: #121907;
  width: 1px;
  height: 35px;
}
@media screen and (max-width: 1000px) {
  .kv_head__caption::after {
    height: 28px;
  }
}

.kv_head__lead {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 100%;
  color: #121907;
}

.lower_catch {
  margin: 120px 0 88px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .lower_catch {
    margin: 88px 0 72px;
  }
}

.lower_catch__slag {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(4rem, 5.8064516129vw, 7.2rem);
  line-height: 80%;
  text-transform: uppercase;
  color: #121907;
}

.lower_catch__title {
  margin-top: 16px;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 1;
  color: #121907;
}
@media screen and (max-width: 1000px) {
  .lower_catch__title {
    margin-top: 14px;
  }
}

.kv_pic.bl_st {
  filter: blur(20px);
  opacity: 0;
  transition: all 1s;
}

.kv_pic.bl_ac {
  opacity: 1;
  filter: blur(0px);
  transition-delay: 0.3s;
}

/*================================================
kv----END
==================================================*/
.footer_block {
  position: relative;
  background: #fff;
  padding-top: 50px;
  margin-top: 168px;
}
@media screen and (max-width: 1000px) {
  .footer_block {
    padding-top: 40px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 500px) {
  .footer_block {
    padding-top: 20px;
  }
}

.footer_area {
  position: relative;
  padding-top: 80px;
  margin-top: 46px;
  border-top: solid 1px #C4CCD4;
}
@media screen and (max-width: 1000px) {
  .footer_area {
    margin-top: 40px;
    padding-top: 0;
    border-top: none;
  }
}

.footer_top_arrow {
  position: absolute;
  right: 40px;
  bottom: 40px;
  max-width: 29px;
}
@media screen and (max-width: 500px) {
  .footer_top_arrow {
    right: 16px;
  }
}

.footer_columns {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1000px) {
  .footer_columns {
    display: block;
  }
}

.footer_logo {
  max-width: 334px;
}
@media screen and (max-width: 1000px) {
  .footer_logo {
    max-width: 280px;
    margin: auto;
  }
}
@media screen and (max-width: 500px) {
  .footer_logo {
    max-width: 226px;
  }
}

.footer_address {
  margin-top: 20px;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.2096774194vw, 1.5rem);
  line-height: 150%;
  color: #000000;
}
@media screen and (max-width: 1000px) {
  .footer_address {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    margin-top: 20px;
  }
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 80px 0 48px;
}
@media screen and (max-width: 1000px) {
  .footer__bottom {
    display: block;
    padding: 32px 0 32px;
    text-align: center;
  }
}

.footer__copy {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.1290322581vw, 1.4rem);
  line-height: 100%;
  color: #121907;
}
@media screen and (max-width: 1000px) {
  .footer__copy {
    display: block;
    margin-top: 32px;
    padding-top: 20px;
    border-top: solid 1px #C4CCD4;
  }
}

.footer__privacy {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.1290322581vw, 1.4rem);
  line-height: 100%;
  color: #121907;
}
@media screen and (max-width: 1000px) {
  .footer__privacy {
    display: block;
  }
}

@media screen and (max-width: 1000px) {
  .footer_content {
    margin-top: 40px;
  }
}
.footer_nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  .footer_nav ul {
    gap: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .footer_nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
  }
}
.footer_nav li {
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .footer_nav li {
    border-bottom: 1px solid #C4CCD4;
  }
}
.footer_nav a {
  display: block;
  box-sizing: border-box;
  font-weight: 500;
  font-size: clamp(1.3rem, 1.2903225806vw, 1.6rem);
  line-height: 100%;
  color: #121907;
}
@media screen and (max-width: 1000px) {
  .footer_nav a {
    padding-bottom: 8px;
    text-align: center;
    line-height: 2;
  }
}
@media screen and (min-width: 1001px) {
  .footer_nav .sub-menu {
    display: block;
    margin-top: 16px;
  }
  .footer_nav .sub-menu li {
    line-height: normal;
  }
  .footer_nav .sub-menu li + li {
    margin-top: 6px;
  }
  .footer_nav .sub-menu a {
    position: relative;
    display: inline-block;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 100%;
    color: #121907;
  }
}
@media screen and (max-width: 1000px) {
  .footer_nav .sub-menu {
    display: none !important;
  }
}

.cta__container {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1391px) {
  .cta__container {
    max-width: 1430px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 1390px) {
  .cta__container {
    max-width: 1430px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .cta__container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 500px) {
  .cta__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.cta__wrap {
  position: relative;
  background: url(../images/cta/back_cta.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 64px 90px;
}
@media screen and (max-width: 1000px) {
  .cta__wrap {
    padding: 48px 40px 40px;
  }
}
@media screen and (max-width: 500px) {
  .cta__wrap {
    background: url(../images/cta/back_cta_sp.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 48px 20px 40px;
  }
}

.cta__imgs1 {
  position: absolute;
  left: 64px;
  top: 82px;
  max-width: 295px;
  width: 100%;
}
@media screen and (min-width: 1000px) and (max-width: 1400px) {
  .cta__imgs1 {
    left: 20px;
    max-width: 275px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .cta__imgs1 {
    top: 100px;
    left: 40px;
    max-width: 160px;
  }
}
@media screen and (max-width: 1000px) {
  .cta__imgs1 {
    display: none;
  }
}

.cta__img1 {
  display: block;
  max-width: 242px;
  margin-left: auto;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .cta__img1 {
    max-width: 130px;
  }
}

.cta__img2 {
  max-width: 124px;
  margin-right: auto;
  margin-top: -36px;
  z-index: 1;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .cta__img2 {
    max-width: 90px;
    margin-top: -16px;
  }
}

.cta__img3 {
  max-width: 104px;
  margin-right: 38px;
  margin-left: auto;
  margin-top: -50px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .cta__img3 {
    max-width: 84px;
    margin-top: 32px;
    margin-right: 20px;
  }
}

.cta__imgs2 {
  position: absolute;
  right: 64px;
  top: 82px;
  max-width: 298px;
  width: 100%;
}
@media screen and (min-width: 1000px) and (max-width: 1400px) {
  .cta__imgs2 {
    right: 20px;
    max-width: 268px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .cta__imgs2 {
    right: 40px;
    top: 140px;
    max-width: 140px;
  }
}
@media screen and (max-width: 1000px) {
  .cta__imgs2 {
    display: none;
  }
}

.cta__img4 {
  display: block;
  max-width: 236px;
  margin-left: auto;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .cta__img4 {
    max-width: 120px;
  }
}

.cta__img5 {
  display: block;
  max-width: 114px;
  margin-right: auto;
  margin-top: -52px;
  z-index: 1;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .cta__img5 {
    max-width: 80px;
    margin-top: 32px;
  }
}

.cta__headline {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(4rem, 5.8064516129vw, 7.2rem);
  line-height: 80%;
  text-transform: uppercase;
  color: #121907;
}

.cta__txt {
  margin-top: 32px;
  line-height: 200%;
  text-align: center;
  color: #121907;
}
@media screen and (max-width: 1000px) {
  .cta__txt {
    margin-top: 24px;
  }
}
@media screen and (max-width: 500px) {
  .cta__txt {
    margin: auto;
    margin-top: 24px;
    max-width: 268px;
  }
}

.cta_info {
  margin-top: 24px;
}
@media screen and (max-width: 1000px) {
  .cta_info {
    margin-top: 16px;
  }
}

.cta_info__tel {
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2.8rem, 3.8709677419vw, 4.8rem);
  line-height: 1.16;
  letter-spacing: 0.01em;
  color: #121907;
}
@media screen and (max-width: 1000px) {
  .cta_info__tel {
    gap: 4px;
  }
}

.cta_info__tel::before {
  content: "";
  background: url(../images/cta/ico_cta_tel.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  aspect-ratio: 1/1;
  width: 34px;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .cta_info__tel::before {
    width: 26px;
  }
}
@media screen and (max-width: 500px) {
  .cta_info__tel::before {
    width: 22px;
  }
}

.cta_info__time {
  margin-top: 3px;
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.2903225806vw, 1.6rem);
  line-height: 2;
  color: #121907;
}

.cta__btns {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  gap: 16px;
}
@media screen and (max-width: 1000px) {
  .cta__btns {
    display: block;
    margin-top: 20px;
  }
}

@media screen and (max-width: 1000px) {
  .cta__btn + .cta__btn {
    margin-top: 12px;
  }
}
.cta__btn__link {
  font-style: normal;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  color: #121907;
  width: 240px;
  background: #fff;
  border-radius: 45px;
  padding: 16px 10px;
}
@media screen and (max-width: 1000px) {
  .cta__btn__link {
    display: block;
    margin: auto;
  }
}

.cta__btn__link:hover {
  color: #fff;
  background: #121907;
  opacity: 1;
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
アニメーション----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.cta .cta__img1,
.cta .cta__img2,
.cta .cta__img3,
.cta .cta__img4,
.cta .cta__img5 {
  opacity: 0;
  transition: all 1s;
  filter: blur(10px);
}

.cta .cs_ac .cta__img1,
.cta .cs_ac .cta__img2,
.cta .cs_ac .cta__img3,
.cta .cs_ac .cta__img4,
.cta .cs_ac .cta__img5 {
  opacity: 1;
  filter: blur(0px);
  transition-delay: 0.3s;
}
.cta .cs_ac .cta__img4 {
  transition-delay: 0.6s;
}
.cta .cs_ac .cta__img2 {
  transition-delay: 0.9s;
}
.cta .cs_ac .cta__img3 {
  transition-delay: 1.2s;
}
.cta .cs_ac .cta__img5 {
  transition-delay: 1.5s;
}

/*================================================
アニメーション----END
==================================================*/
.mw_wp_form {
  margin-top: clamp(32px, 3.125vw, 50px);
  background: #fff;
  box-sizing: border-box;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 1001px) {
  .mw_wp_form {
    padding: 88px 100px 88px;
  }
}
@media screen and (max-width: 1000px) {
  .mw_wp_form {
    padding: 64px 40px 64px;
  }
}
@media screen and (max-width: 500px) {
  .mw_wp_form {
    padding: 56px 20px 56px;
  }
}
.mw_wp_form.mw_wp_form_complete {
  display: none !important;
}
.mw_wp_form table,
.mw_wp_form tbody,
.mw_wp_form tr,
.mw_wp_form th,
.mw_wp_form td {
  border: none;
  padding: 0;
  background-color: unset !important;
  font-weight: 400;
}
@media screen and (max-width: 1000px) {
  .mw_wp_form table,
  .mw_wp_form tbody,
  .mw_wp_form tr,
  .mw_wp_form th,
  .mw_wp_form td {
    display: block;
    width: 100%;
  }
}
.mw_wp_form th {
  position: relative;
  font-weight: 500;
}
@media screen and (min-width: 1001px) {
  .mw_wp_form th {
    width: 300px;
  }
}
@media screen and (max-width: 1000px) {
  .mw_wp_form th {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 50px;
  }
}
.mw_wp_form th > span {
  position: absolute;
  display: block;
  height: auto;
  text-align: center;
  color: #fff;
  font-weight: 400;
}
@media screen and (max-width: 1000px) {
  .mw_wp_form th > span {
    top: 50%;
    left: 0;
    width: 40px;
    line-height: 30px;
    translate: 0 -50%;
  }
}
.mw_wp_form th > span.required {
  background-color: #C50000;
}
.mw_wp_form th > span.any {
  background-color: #999999;
}
.mw_wp_form th small {
  display: block;
}
@media screen and (min-width: 1001px) {
  .mw_wp_form th small {
    margin-top: -20px;
  }
}
@media screen and (min-width: 1001px) {
  .mw_wp_form td th {
    width: 200px;
  }
}
@media screen and (max-width: 1000px) {
  .mw_wp_form td th {
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.mw_wp_form input,
.mw_wp_form textarea,
.mw_wp_form select {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.4375em;
  box-sizing: border-box;
  max-width: 100%;
  background-color: #fff;
  border: 1px solid #cccccc;
  outline: none;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-weight: 400;
}
@media screen and (min-width: 1001px) {
  .mw_wp_form input,
  .mw_wp_form textarea,
  .mw_wp_form select {
    padding: 1em;
  }
}
@media screen and (max-width: 1000px) {
  .mw_wp_form input,
  .mw_wp_form textarea,
  .mw_wp_form select {
    padding: 10px;
  }
}
.mw_wp_form input.var01,
.mw_wp_form textarea.var01,
.mw_wp_form select.var01 {
  max-width: 500px;
}
@media screen and (min-width: 501px) {
  .mw_wp_form input.var02,
  .mw_wp_form textarea.var02,
  .mw_wp_form select.var02 {
    max-width: 5em;
  }
}
@media screen and (max-width: 500px) {
  .mw_wp_form input.var02,
  .mw_wp_form textarea.var02,
  .mw_wp_form select.var02 {
    max-width: 4em;
  }
}
.mw_wp_form input,
.mw_wp_form textarea {
  width: 100%;
}
.mw_wp_form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 48px;
  background-image: url("../images/common/svg-select.svg");
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: center right 16px;
}
.mw_wp_form input[type*=file] {
  width: auto;
  background-color: transparent;
  padding: 0;
  border: none;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  margin-top: clamp(10px, 1vw, 16px);
}
.mw_wp_form input[type*=file]::file-selector-button {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #cccccc;
  border-radius: 5px;
  padding: 0.2em 0.5em;
  box-sizing: border-box;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.2903225806vw, 1.6rem);
}
.mw_wp_form .error {
  display: block;
  font-size: 1.5rem;
  padding: 0.5em;
  box-sizing: border-box;
  background-color: pink;
  margin-top: 8px;
}
@media screen and (min-width: 1001px) {
  .mw_wp_form.mw_wp_form_input th,
  .mw_wp_form.mw_wp_form_input td {
    padding-bottom: 40px;
  }
  .mw_wp_form.mw_wp_form_input th {
    line-height: 57px;
  }
  .mw_wp_form.mw_wp_form_input th > span {
    top: 9px;
    right: 56px;
    width: 60px;
    line-height: 40px;
  }
  .mw_wp_form.mw_wp_form_confirm th,
  .mw_wp_form.mw_wp_form_confirm td, .mw_wp_form.mw_wp_form_preview th,
  .mw_wp_form.mw_wp_form_preview td {
    padding-top: 5px;
    padding-bottom: 40px;
  }
  .mw_wp_form.mw_wp_form_confirm th > span, .mw_wp_form.mw_wp_form_preview th > span {
    top: 0;
    right: 56px;
    width: 60px;
    line-height: 40px;
  }
  .mw_wp_form.mw_wp_form_confirm td th,
  .mw_wp_form.mw_wp_form_confirm td td, .mw_wp_form.mw_wp_form_preview td th,
  .mw_wp_form.mw_wp_form_preview td td {
    padding-bottom: 10px;
  }
  .mw_wp_form.mw_wp_form_confirm td tr:first-child th,
  .mw_wp_form.mw_wp_form_confirm td tr:first-child td, .mw_wp_form.mw_wp_form_preview td tr:first-child th,
  .mw_wp_form.mw_wp_form_preview td tr:first-child td {
    padding-top: 0;
  }
  .mw_wp_form.mw_wp_form_confirm td tr:last-child th,
  .mw_wp_form.mw_wp_form_confirm td tr:last-child td, .mw_wp_form.mw_wp_form_preview td tr:last-child th,
  .mw_wp_form.mw_wp_form_preview td tr:last-child td {
    padding-bottom: 0;
  }
}

.mwform-checkbox-field input {
  display: none;
}
.mwform-checkbox-field input:checked + .mwform-checkbox-field-text::before {
  background-image: url("../images/common/check.svg");
}

.mwform-checkbox-field-text {
  position: relative;
  padding-left: 58px;
  margin-right: 20px;
  cursor: pointer;
}
@media screen and (min-width: 1001px) {
  .mwform-checkbox-field-text {
    line-height: 57px;
  }
}
@media screen and (max-width: 1000px) {
  .mwform-checkbox-field-text {
    line-height: 32px;
  }
}
.mwform-checkbox-field-text::before {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 40px;
  height: auto;
  box-sizing: border-box;
  background-color: #fff;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
  border: 1px solid #cccccc;
}

.mwform-radio-field input {
  display: none;
}
.mwform-radio-field input:checked + .mwform-radio-field-text::after {
  opacity: 1;
}

.mwform-radio-field-text {
  position: relative;
  padding-left: 40px;
  margin-right: 20px;
  cursor: pointer;
}
@media screen and (min-width: 1001px) {
  .mwform-radio-field-text {
    line-height: 57px;
  }
}
@media screen and (max-width: 1000px) {
  .mwform-radio-field-text {
    line-height: 32px;
  }
}
.mwform-radio-field-text::before {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 32px;
  height: auto;
  box-sizing: border-box;
  background-color: #fff;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
  border: 1px solid #cccccc;
  border-radius: 50%;
}
.mwform-radio-field-text::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 8px;
  translate: 0 -50%;
  aspect-ratio: 1/1;
  width: 16px;
  background-color: #C50000;
  border-radius: 50%;
  opacity: 0;
}

.file-text {
  display: inline-block;
  font-size: clamp(1.1rem, 1.2903225806vw, 1.6rem);
  word-break: auto-phrase;
}
@media screen and (min-width: 1001px) {
  .file-text {
    padding-top: 13px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 1000px) {
  .file-text {
    line-height: 1.3;
  }
}

@media screen and (min-width: 501px) {
  .sp-break {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .sp-break {
    display: block !important;
  }
}

.form-agree {
  margin-top: clamp(20px, 2.5vw, 40px);
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 2;
  font-weight: 400;
}
.form-agree::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * (0.5em - 1px));
}
.form-agree::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
}
.mw_wp_form_confirm .form-agree {
  display: none !important;
}
.form-agree a {
  color: #008DD0;
  text-decoration: underline;
}
@media screen and (min-width: 1001px) {
  .form-agree {
    text-align: center;
  }
}

.form-agree_check {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 2;
  text-align: center;
  color: #C50000;
}
.form-agree_check .form-wrap {
  color: #121907;
}

.page__confirm .form-agree_check {
  display: none;
}

.form-wrap {
  margin-top: clamp(20px, 1.6875vw, 27px);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.form-wrap input[type=checkbox] + .mwform-checkbox-field-text {
  margin-right: 0;
}

.form-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px 32px;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  margin-top: clamp(40px, 3vw, 48px);
}
.form-btns a,
.form-btns [type=submit] {
  max-width: 240px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  background-color: #fff;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  transition-property: all;
  border-radius: 45px;
  font-style: normal;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 100%;
  color: #121907;
  border: solid 1px #008DD0;
  padding: 15px 10px;
}
@media screen and (min-width: 1001px) {
  .form-btns a,
  .form-btns [type=submit] {
    transition-duration: 300ms;
  }
}
@media screen and (max-width: 1000px) {
  .form-btns a,
  .form-btns [type=submit] {
    transition-duration: 300ms;
  }
}
.form-btns a:hover,
.form-btns [type=submit]:hover {
  opacity: 0.7;
}
.form-btns .fm-modoru[type=submit] {
  border: solid 1px #999999;
  background-color: #999999;
  color: #fff;
}

.ui-datepicker th,
.ui-datepicker td {
  display: table-cell !important;
  font-size: 1.3rem;
}
.ui-datepicker td span,
.ui-datepicker td a {
  padding: 0;
  font-size: 1.2rem;
}

.page__check .mw_wp_form th small {
  margin-top: 0;
}

/* page */
.mv {
  background: #fff;
  padding-top: 24px;
  overflow: hidden;
}

.mv_flex {
  display: flex;
  gap: 18px;
  flex-direction: row-reverse;
}
@media screen and (min-width: 1201px) {
  .mv_flex {
    padding-right: 64px;
  }
}
@media screen and (min-width: 1801px) {
  .mv_flex {
    padding-right: 120px;
  }
}
@media screen and (min-width: 3201px) {
  .mv_flex {
    padding-right: 240px;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1400px) {
  .mv_flex {
    padding-right: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .mv_flex {
    padding-right: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .mv_flex {
    padding-right: 0px;
    display: block;
  }
}

@media screen and (max-width: 500px) {
  .mv_inner_img {
    height: 285px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.mv_vertical {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.6rem, 1.7741935484vw, 2.2rem);
  color: #121907;
}
@media screen and (min-width: 1001px) {
  .mv_vertical {
    writing-mode: vertical-rl;
    line-height: 110%;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 1000px) {
  .mv_vertical {
    padding-left: 40px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 500px) {
  .mv_vertical {
    padding-left: 20px;
  }
}
.mv_vertical.bl_st {
  filter: blur(10px);
  transition: all 2s;
  opacity: 0;
}
.mv_vertical.bl_st.bl_ac {
  filter: blur(0px);
  transition-delay: 1s;
  opacity: 1;
}

.mv_wrap {
  position: relative;
}

.mv_inner {
  position: absolute;
  left: 64px;
  bottom: 48px;
  z-index: 1;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .mv_inner {
    left: 40px;
    bottom: 32px;
  }
  .mv_inner br {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .mv_inner {
    left: 20px;
    bottom: 15px;
  }
}

.mv_readline {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2.2rem, 3.5483870968vw, 4.4rem);
  line-height: 175%;
}

.mv_read {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.3rem, 1.4516129032vw, 1.8rem);
  line-height: 175%;
  margin-top: 8px;
}

@media screen and (max-width: 500px) {
  .mv_read {
    position: relative;
    transition: all 5s;
    transform: translateY(150px);
  }
  .mv_read.cs_ac {
    transform: translateY(0px);
    transition-delay: 1.8s;
  }
}
.mv_img.bl_st {
  filter: blur(20px);
  opacity: 0;
  transition: all 2s;
}

.mv_img.bl_ac {
  opacity: 1;
  filter: blur(0px);
  transition-delay: 0.3s;
}

.mv_inner.bl_st {
  transition: all 1s;
}

.mv_inner.bl_ac {
  opacity: 1;
  filter: blur(0px);
  transition-delay: 1s;
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home 汎用クラス----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_headline__title {
  position: relative;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.3rem, 1.2903225806vw, 1.6rem);
  line-height: 100%;
  color: #121907;
  padding-left: 20px;
}
.home_headline__title::before {
  content: "";
  background-color: #008DD0;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s;
}

.home_headline__slag {
  display: block;
  margin-top: 24px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(4rem, 5.8064516129vw, 7.2rem);
  line-height: 80%;
  text-transform: uppercase;
  color: #121907;
}

.home_readline {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2.2rem, 2.9032258065vw, 3.6rem);
  line-height: 150%;
  color: #121907;
}

.home_btn__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 238px;
  padding-bottom: 32px;
}
@media screen and (max-width: 1000px) {
  .home_btn__link {
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 500px) {
  .home_btn__link {
    width: 196px;
  }
}
.home_btn__link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background: #121907;
  width: 100%;
  height: 1px;
  transition: all 0.3s;
}
.home_btn__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #121907;
  width: 0%;
  height: 1px;
  transition: all 0.3s;
}

.home_btn__txt {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.4516129032vw, 1.8rem);
  line-height: 100%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #121907;
}

.home_btn__arrow {
  display: inline-block;
  position: relative;
  aspect-ratio: 35/20;
  background: #121907;
  width: 35px;
  height: auto;
  border-radius: 16px;
  transition: all 0.5s;
  overflow: hidden;
}
@media screen and (max-width: 500px) {
  .home_btn__arrow {
    width: 29px;
  }
}
.home_btn__arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
@media screen and (max-width: 500px) {
  .home_btn__arrow svg {
    width: 11px;
  }
}
.home_btn__arrow svg:first-of-type {
  opacity: 1;
  left: 50%;
}
.home_btn__arrow svg:last-of-type {
  left: -150%;
}
.home_btn__arrow #home_btn__inner {
  transition: all 0.4s;
}

.home_btn__link:hover {
  opacity: 1;
}
.home_btn__link:hover .home_btn__arrow svg:first-of-type {
  left: 150%;
}
.home_btn__link:hover .home_btn__arrow svg:last-of-type {
  left: 50%;
}
.home_btn__link:hover::before {
  width: 0%;
}
.home_btn__link:hover::after {
  width: 100%;
  transition-delay: 0.3s;
}

/*================================================
home 汎用クラス----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_about----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_about {
  padding: 168px 0;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .home_about {
    padding: 64px 0 80px;
  }
}

.home_headline--home_about {
  margin-bottom: 56px;
}
@media screen and (max-width: 1000px) {
  .home_headline--home_about {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 500px) {
  .home_headline--home_about br {
    display: block;
  }
}

.home_about__columns {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .home_about__columns {
    display: block;
  }
}

.home_about__content {
  flex-basis: 40%;
}
@media screen and (max-width: 1000px) {
  .home_about__content {
    margin-top: 24px;
  }
}

.home_btn--home_about {
  margin-top: 56px;
}
.home_btn--home_about a {
  margin-left: auto;
}
@media screen and (max-width: 1000px) {
  .home_btn--home_about {
    margin-top: 32px;
  }
}

.home_about__img_container {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  margin-top: -20px;
}
@media screen and (min-width: 1241px) {
  .home_about__img_container {
    margin-right: calc((100vw - 1220px) / 2);
  }
}
@media screen and (max-width: 1240px) {
  .home_about__img_container {
    max-width: 1280px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .home_about__img_container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_about__img_container {
    padding-right: 40px;
    padding-left: 0;
  }
}
@media screen and (max-width: 1000px) {
  .home_about__img_container {
    padding: 0;
    margin-top: 64px;
  }
}

.home_about__imgs {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media screen and (max-width: 1000px) {
  .home_about__imgs {
    gap: 16px;
  }
}

.home_about__img1 {
  flex-basis: 45.14%;
}
@media screen and (max-width: 1000px) {
  .home_about__img1 {
    flex-basis: 45.07%;
  }
}

.home_about__imgs2 {
  padding-top: 212px;
  flex-basis: 49.71%;
}
@media screen and (max-width: 1000px) {
  .home_about__imgs2 {
    padding-top: 61px;
    flex-basis: 49.71%;
  }
}

.home_about__img2 {
  max-width: calc(100% - 104px);
}
@media screen and (max-width: 1000px) {
  .home_about__img2 {
    max-width: calc(100% - 28px);
  }
}

.home_about__img3 {
  max-width: calc(100% - 262px);
  margin-left: auto;
  margin-top: -54px;
}
@media screen and (max-width: 1000px) {
  .home_about__img3 {
    max-width: calc(100% - 70px);
    margin-top: -20px;
  }
}

/*================================================
home_about----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_products----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_products {
  overflow: hidden;
  padding: 168px 0;
}
@media screen and (max-width: 1000px) {
  .home_products {
    padding: 64px 0 80px;
  }
}

.home_products_container {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1241px) {
  .home_products_container {
    margin-right: calc((100vw - 1220px) / 2);
  }
}
@media screen and (max-width: 1240px) {
  .home_products_container {
    max-width: 1280px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .home_products_container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_products_container {
    padding-right: 40px;
    padding-left: 0;
  }
}
@media screen and (max-width: 1000px) {
  .home_products_container {
    padding: 40px;
  }
}
@media screen and (max-width: 500px) {
  .home_products_container {
    padding: 20px;
  }
}

.home_products__grid {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .home_products__grid {
    display: block;
  }
}

.home_products__rig {
  width: 38.36%;
}
@media screen and (max-width: 1000px) {
  .home_products__rig {
    width: 100%;
  }
}

.home_products__slider_wrap {
  width: 52.64%;
}
@media screen and (max-width: 1000px) {
  .home_products__slider_wrap {
    width: 100%;
  }
}

@media screen and (max-width: 1000px) {
  .home_products__content {
    margin-bottom: 64px;
  }
}
.home_products__readline {
  margin: 56px 0;
}
@media screen and (max-width: 1000px) {
  .home_products__readline {
    margin: 32px 0 24px;
  }
}
@media screen and (max-width: 500px) {
  .home_products__readline br {
    display: block;
  }
}

.home_btn--home_products {
  margin-top: 56px;
}
@media screen and (max-width: 1000px) {
  .home_btn--home_products {
    margin-top: 32px;
  }
}

.home_products__nav_wrap {
  margin-top: 62px;
}
@media screen and (max-width: 1000px) {
  .home_products__nav_wrap {
    margin-top: 40px;
  }
}

.home_products__nav {
  margin: 0 -10px;
}
@media screen and (max-width: 1000px) {
  .home_products__nav {
    margin: 0 -9px;
  }
}

.home_products__nav__img {
  overflow: hidden;
  cursor: pointer;
  margin: 0 10px;
}
@media screen and (max-width: 1000px) {
  .home_products__nav__img {
    margin: 0 9px;
  }
}
.home_products__nav__img img {
  transition: all 0.6s;
}

.home_products__nav__img:hover img {
  transform: scale(1.2, 1.2) !important;
}

.home_products__nav .slick-track {
  margin: 0;
}
.home_products__nav .slick-prev {
  content: "";
  left: auto;
  right: 51px;
  top: calc(100% + 32px);
  height: 20px;
  width: 36px;
  opacity: 1;
  line-height: initial;
  opacity: 1;
}
.home_products__nav .slick-prev::before {
  content: "";
  background: url(../images/products/arrow_products.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 36px;
  height: 20px;
  opacity: 1;
}
.home_products__nav .slick-prev:hover::before {
  background: url(../images/products/arrow_products_hov.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.home_products__nav .slick-next {
  content: "";
  left: auto;
  right: 8px;
  top: calc(100% + 32px);
  height: 20px;
  width: 36px;
  line-height: initial;
  background-size: contain;
  opacity: 1;
}
.home_products__nav .slick-next::before {
  content: "";
  background: url(../images/products/arrow_products.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 36px;
  height: 20px;
  transform: rotate(180deg);
  opacity: 1;
}
.home_products__nav .slick-next:hover::before {
  background: url(../images/products/arrow_products_hov.png);
  background-repeat: no-repeat;
  background-size: contain;
}

/*================================================
home_products----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_recruit----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_recruit {
  background: url(../images/home/back_home_recruit.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 74px 0 144px;
}
@media screen and (max-width: 1000px) {
  .home_recruit {
    padding: 40px 0 80px;
  }
}
@media screen and (max-width: 500px) {
  .home_recruit {
    background: url(../images/home/back_home_recruit_sp.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}

.home_recruit__catch {
  position: relative;
  max-width: 1472px;
  margin: auto;
  padding: 0 40px;
  box-sizing: content-box;
}
@media screen and (max-width: 500px) {
  .home_recruit__catch {
    padding: 0 20px;
  }
}

@media screen and (max-width: 500px) {
  .home_recruit__catch__img {
    height: 172px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.home_recruit__catch__pos {
  position: absolute;
  right: 92px;
  bottom: -8px;
  max-width: 232px;
  transition: all 0.3s;
  transform: translateY(50%);
}
@media screen and (max-width: 1000px) {
  .home_recruit__catch__pos {
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    top: -40px;
    max-width: 164px;
  }
}
@media screen and (max-width: 500px) {
  .home_recruit__catch__pos {
    max-width: 132px;
  }
}
.home_recruit__catch__pos img {
  transform: translateY(270px);
  opacity: 0;
}

.home_recruit__catch__pos.cs_ac img {
  opacity: 1;
  animation: a_pos_recruit 1s forwards;
  animation-delay: 0.3s;
}

@keyframes a_pos_recruit {
  0% {
    transform: translateY(270px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  50% {
    transform: translateY(-20px);
  }
  65% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
.home_recruit__content {
  margin-top: -40px;
}
@media screen and (max-width: 1000px) {
  .home_recruit__content {
    margin-top: -24px;
  }
}

.home_recruit__slag {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(5.6rem, 9.0322580645vw, 11.2rem);
  line-height: 80%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.home_recruit__title {
  margin: 24px 0 72px;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2580645161vw, 2.8rem);
  line-height: 80%;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .home_recruit__title {
    margin: 16px 0 40px;
  }
}

.home_recruit__readline {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2.5rem, 4.5161290323vw, 5.6rem);
  line-height: 150%;
  text-align: center;
  color: #FFFFFF;
}
@media screen and (max-width: 1000px) {
  .home_recruit__readline br {
    display: block;
  }
}

.home_recruit__read {
  margin-top: 32px;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  font-size: clamp(1.5rem, 1.6129032258vw, 2rem);
  line-height: 200%;
  text-align: center;
  color: #FFFFFF;
}
@media screen and (max-width: 1000px) {
  .home_recruit__read br {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .home_recruit__read {
    text-align: left;
  }
}

/*================================================
home_recruit----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_staff----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_staff__container {
  position: relative;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  margin-top: 72px;
  overflow: hidden;
}
@media screen and (min-width: 1241px) {
  .home_staff__container {
    margin-left: calc((100vw - 1220px) / 2);
  }
}
@media screen and (max-width: 1240px) {
  .home_staff__container {
    max-width: 1280px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .home_staff__container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_staff__container {
    padding-left: 40px;
    padding-right: 0;
  }
}
@media screen and (max-width: 1000px) {
  .home_staff__container {
    padding-left: 40px;
    padding-right: 0;
    margin-top: 52px;
  }
}
@media screen and (max-width: 500px) {
  .home_staff__container {
    padding-left: 20px;
  }
}

.home_staff__title {
  margin-bottom: 32px;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2rem, 2.2580645161vw, 2.8rem);
  line-height: 150%;
  color: #FFFFFF;
  display: flex;
  gap: 16px;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .home_staff__title {
    margin-bottom: 24px;
    gap: 12px;
  }
}

.home_staff__small {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.3rem, 1.4516129032vw, 1.8rem);
  line-height: 150%;
  color: #FFFFFF;
}

.home_staff__content {
  margin: 0 -17px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .home_staff__content {
    margin: 0 -10px;
  }
}

.home_staff__slide {
  display: block;
  margin: 0 17px;
}
@media screen and (max-width: 1000px) {
  .home_staff__slide {
    margin: 0 10px;
  }
}

.home_staff__slide:hover {
  opacity: 1;
}
.home_staff__slide:hover .home_staff__img img {
  transform: scale(1.1, 1.1);
}

.home_staff__slider {
  color: #fff;
}
.home_staff__slider .slick-list {
  padding-right: 280px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .home_staff__slider .slick-list {
    padding-right: 120px;
  }
}
@media screen and (max-width: 1000px) {
  .home_staff__slider .slick-list {
    padding-right: 144px;
  }
}

.home_staff__img {
  overflow: hidden;
}
.home_staff__img img {
  transition: all 0.6s;
}

.home_staff__info {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 16px 0 8px;
}
@media screen and (max-width: 1000px) {
  .home_staff__info {
    margin: 12px 0 8px;
  }
}
@media screen and (max-width: 500px) {
  .home_staff__info {
    display: block;
  }
}

.home_staff__name {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.8rem, 2.0967741935vw, 2.6rem);
  line-height: 150%;
  color: #FFFFFF;
}

.home_staff__name__sub {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.3rem, 1.2903225806vw, 1.6rem);
  line-height: 150%;
  color: #FFFFFF;
}

.home_staff__class {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.3rem, 1.2903225806vw, 1.6rem);
  line-height: 150%;
  color: #FFFFFF;
}

.home_staff__read {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.2903225806vw, 1.6rem);
  line-height: 175%;
  color: #FFFFFF;
}

.home_staff__progress {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-top: 56px;
}
@media screen and (max-width: 1000px) {
  .home_staff__progress {
    margin-top: 40px;
  }
}
@media screen and (max-width: 500px) {
  .home_staff__progress {
    height: 2px;
  }
}

.home_staff__progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: white;
  transition: all 0.3s;
}

/*================================================
home_staff----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_recruit__banner home_entry----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_recruit__banner {
  margin-top: 136px;
}
@media screen and (max-width: 1000px) {
  .home_recruit__banner {
    margin-top: 56px;
  }
}

.home_recruit__banner__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .home_recruit__banner__columns {
    grid-template-columns: repeat(1, 1fr);
    gap: 46px;
  }
}

.home_recruit__banner__img {
  overflow: hidden;
}
.home_recruit__banner__img img {
  transition: all 0.6s;
}

.home_recruit__banner__content {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .home_recruit__banner__content {
    margin-top: 16px;
  }
}

.home_recruit__banner__title {
  display: flex;
  gap: 18px;
  align-items: center;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2rem, 2.2580645161vw, 2.8rem);
  line-height: 150%;
  color: #FFFFFF;
}
@media screen and (max-width: 1000px) {
  .home_recruit__banner__title {
    gap: 10px;
  }
}

.home_recruit__banner__slag {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.3rem, 1.4516129032vw, 1.8rem);
  line-height: 100%;
  color: #FFFFFF;
}
@media screen and (min-width: 1001px) {
  .home_recruit__banner__slag {
    padding-top: 6px;
  }
}
@media screen and (max-width: 1000px) {
  .home_recruit__banner__slag {
    padding-top: 4px;
  }
}

.home_recruit__banner__arrow {
  display: inline-block;
  position: relative;
  aspect-ratio: 52/30;
  background: #fff;
  width: 52px;
  height: auto;
  border-radius: 16px;
  transition: all 0.5s;
  overflow: hidden;
}
@media screen and (max-width: 500px) {
  .home_recruit__banner__arrow {
    aspect-ratio: 29/18;
    width: 29px;
  }
}
.home_recruit__banner__arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
@media screen and (max-width: 500px) {
  .home_recruit__banner__arrow svg {
    width: 11px;
  }
}
.home_recruit__banner__arrow svg:first-of-type {
  opacity: 1;
  left: 50%;
}
.home_recruit__banner__arrow svg:last-of-type {
  left: -150%;
}
.home_recruit__banner__arrow #home_btn__inner {
  transition: all 0.4s;
}

.home_recruit__banner__link:hover {
  opacity: 1;
}
.home_recruit__banner__link:hover .home_recruit__banner__arrow svg:first-of-type {
  left: 150%;
}
.home_recruit__banner__link:hover .home_recruit__banner__arrow svg:last-of-type {
  left: 50%;
}
.home_recruit__banner__link:hover .home_recruit__banner__img img {
  transform: scale(1.1, 1.1) !important;
}

.home_entry {
  position: relative;
  display: block;
  max-width: 706px;
  margin: auto;
  margin-top: 120px;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .home_entry {
    max-width: 480px;
    margin-top: 62px;
  }
}

.home_entry__inner {
  display: flex;
  align-items: center;
  padding: 46px 58px;
  background: #fff;
  gap: 16px;
}
@media screen and (max-width: 1000px) {
  .home_entry__inner {
    padding: 32px 24px;
  }
}
@media screen and (max-width: 500px) {
  .home_entry__inner {
    padding: 20px 24px;
    display: block;
  }
}

.home_entry__title {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2rem, 2.2580645161vw, 2.8rem);
  color: #121907;
}

.home_entry__slag {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.3rem, 1.4516129032vw, 1.8rem);
  line-height: 100%;
  color: #121907;
}
@media screen and (min-width: 1001px) {
  .home_entry__slag {
    padding-top: 8px;
  }
}
@media screen and (max-width: 1000px) {
  .home_entry__slag {
    padding-top: 6px;
  }
}
@media screen and (max-width: 500px) {
  .home_entry__slag {
    padding-top: 4px;
  }
}

.home_entry__arrow {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  aspect-ratio: 52/30;
  background: #0950B2;
  width: 52px;
  height: auto;
  border-radius: 16px;
  transition: all 0.5s;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .home_entry__arrow {
    right: 24px;
  }
}
@media screen and (max-width: 500px) {
  .home_entry__arrow {
    aspect-ratio: 29/18;
    width: 29px;
  }
}
.home_entry__arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
@media screen and (max-width: 500px) {
  .home_entry__arrow svg {
    width: 11px;
  }
}
.home_entry__arrow svg:first-of-type {
  opacity: 1;
  left: 50%;
}
.home_entry__arrow svg:last-of-type {
  left: -150%;
}
.home_entry__arrow #home_btn__inner {
  transition: all 0.4s;
}

.home_entry:hover {
  opacity: 1;
  transform: scale(1.05, 1.05);
}
.home_entry:hover .home_entry__arrow svg:first-of-type {
  left: 150%;
}
.home_entry:hover .home_entry__arrow svg:last-of-type {
  left: 50%;
}

/*================================================
home_recruit__banner---- home_entryEND
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_company----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_company {
  background: #fff;
  padding: 168px 0;
}
@media screen and (max-width: 1000px) {
  .home_company {
    padding: 64px 0 80px;
  }
}

.home_company__flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .home_company__flex {
    display: block;
  }
}

.home_company__read {
  max-width: 59.58%;
}
@media screen and (max-width: 1000px) {
  .home_company__read {
    max-width: 100%;
    margin-top: 32px;
  }
}

.home_company__columns {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1000px) {
  .home_company__columns {
    grid-template-columns: repeat(1, 1fr);
  }
}

.home_company__link {
  position: relative;
  display: block;
}
.home_company__link img {
  transition: all 0.6s;
}
@media screen and (max-width: 1000px) {
  .home_company__link img {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (max-width: 500px) {
  .home_company__link img {
    height: 230px;
  }
}

.home_company__inner {
  position: absolute;
  left: 32px;
  bottom: 16px;
  color: #fff;
}
@media screen and (max-width: 500px) {
  .home_company__inner {
    left: 20px;
    bottom: 16px;
  }
}

.home_company__title {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2rem, 2.2580645161vw, 2.8rem);
  line-height: 150%;
}

.home_company__slag {
  margin-top: 6px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.3rem, 1.1290322581vw, 1.4rem);
  line-height: 150%;
}

.home_company__arrow {
  display: inline-block;
  position: absolute;
  right: 32px;
  bottom: 24px;
  aspect-ratio: 52/30;
  background: #fff;
  width: 52px;
  height: auto;
  border-radius: 16px;
  transition: all 0.5s;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .home_company__arrow {
    right: 20px;
    bottom: 26px;
  }
}
@media screen and (max-width: 500px) {
  .home_company__arrow {
    aspect-ratio: 29/18;
    width: 29px;
  }
}
.home_company__arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
@media screen and (max-width: 500px) {
  .home_company__arrow svg {
    width: 11px;
  }
}
.home_company__arrow svg:first-of-type {
  opacity: 1;
  left: 50%;
}
.home_company__arrow svg:last-of-type {
  left: -150%;
}
.home_company__arrow #home_btn__inner {
  transition: all 0.4s;
}

.home_company__link:hover {
  opacity: 1;
}
.home_company__link:hover img {
  transform: scale(1.15, 1.15) !important;
}
.home_company__link:hover .home_company__arrow svg:first-of-type {
  left: 150%;
}
.home_company__link:hover .home_company__arrow svg:last-of-type {
  left: 50%;
}

/*================================================
home_company----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
home_news----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.home_news {
  padding-top: 172px;
}
@media screen and (max-width: 1000px) {
  .home_news {
    padding-top: 64px;
  }
}

.home_news__columns {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .home_news__columns {
    display: block;
  }
}

.home_news__second {
  flex-basis: 67.17%;
}
@media screen and (max-width: 1000px) {
  .home_news__second {
    margin-top: 32px;
  }
}

@media screen and (min-width: 1001px) {
  .home_news__fitst {
    min-height: 130px;
  }
}
.home_btn--main_news {
  margin-top: 183px;
}
@media screen and (max-width: 1000px) {
  .home_btn--main_news {
    margin-top: 32px;
  }
  .home_btn--main_news a {
    margin-left: auto;
  }
}

.home_news__item + .home_news__item a {
  padding-top: 32px;
}
@media screen and (max-width: 1000px) {
  .home_news__item + .home_news__item a {
    padding-top: 20px;
  }
}

.home_news__link {
  position: relative;
  display: block;
  padding-left: 16px;
  padding-bottom: 30px;
  padding-right: 70px;
  border-bottom: solid 1px #C4CCD4;
}
@media screen and (max-width: 1000px) {
  .home_news__link {
    padding-left: 0px;
    padding-bottom: 20px;
    padding-right: 0px;
  }
}
.home_news__link::before {
  content: "";
  background: #008DD0;
  width: 0%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: all 0.3s;
}

.home_news__link:hover {
  opacity: 1;
}
.home_news__link:hover::before {
  width: 100%;
}

.home_news__time {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 100%;
  color: #008DD0;
  margin-bottom: 12px;
}
@media screen and (max-width: 1000px) {
  .home_news__time {
    margin-bottom: 8px;
  }
}

.home_news__caption {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 200%;
  color: #121907;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 500px) {
  .home_news__caption {
    -webkit-line-clamp: 2;
  }
}

/*================================================
home_news----END
==================================================*/
.lower__bigline {
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  font-size: clamp(2.2rem, 2.9032258065vw, 3.6rem);
  line-height: 150%;
  color: #121907;
}
@media screen and (max-width: 1000px) {
  .lower__bigline {
    line-height: 1.75;
  }
}

.scale_wrap {
  overflow: hidden;
}

.scale_img {
  transition: transform 0.1s linear;
  transform: scale(1);
}

.bl_st {
  filter: blur(10px);
  opacity: 0;
  transition: all 1s;
}

.bl_ac {
  opacity: 1;
  filter: blur(0px);
  transition-delay: 0.3s;
}

.common_btn__link {
  font-style: normal;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 100%;
  text-align: center;
  color: #121907;
  width: 240px;
  box-sizing: border-box;
  border: solid 1px #008DD0;
  background: #fff;
  border-radius: 45px;
  padding: 15px;
}

@media screen and (min-width: 1001px) {
  .mobile_only {
    display: none !important;
  }
  .pc_only2 {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  .mobile_only {
    display: block;
  }
  .pc_only2 {
    display: none !important;
  }
}
@media screen and (min-width: 501px) {
  .sp_only {
    display: none !important;
  }
  .pc_only {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .sp_only {
    display: block;
  }
  .pc_only {
    display: none !important;
  }
}
.page_nav {
  position: relative;
  margin-bottom: 96px;
  padding-bottom: 24px;
}
@media screen and (max-width: 1000px) {
  .page_nav {
    margin-bottom: 64px;
  }
}
.page_nav::before {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  transition: all 0.6s;
}
.page_nav ul {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 500px) {
  .page_nav ul {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .page_nav li + li {
    margin-top: 8px;
  }
}
.page_nav a {
  position: relative;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  line-height: 1.5;
  color: #121907;
  padding-left: 29px;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .page_nav a {
    padding-left: 20px;
  }
}
.page_nav a::before {
  content: "";
  background-color: #008DD0;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .page_nav a::before {
    width: 14px;
    height: 14px;
  }
}
.page_nav a:hover,
.page_nav .current_page_item a {
  opacity: 1;
}
.page_nav a:hover:before,
.page_nav .current_page_item a:before {
  opacity: 1;
}

.page_nav.cs_ac::before {
  width: 100%;
  transition-delay: 0.3s;
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
company----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.company_wrap {
  padding: 72px 100px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .company_wrap {
    padding: 64px 40px;
  }
}
@media screen and (max-width: 500px) {
  .company_wrap {
    padding: 56px 20px;
  }
}

.company_headline {
  margin-bottom: 48px;
}
@media screen and (max-width: 1000px) {
  .company_headline {
    margin-bottom: 40px;
  }
}

.company_headline--message {
  margin-bottom: 58px;
}

.company_headline__title {
  position: relative;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 1;
  color: #121907;
  padding-left: 20px;
}
@media screen and (max-width: 1000px) {
  .company_headline__title {
    padding-left: 16px;
  }
}

.company_headline__title::before {
  content: "";
  background-color: #008DD0;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  .company_headline__title::before {
    width: 10px;
    height: 10px;
  }
}

.company_headline__slag {
  margin-top: 24px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(3.2rem, 4.6774193548vw, 5.8rem);
  line-height: 0.8;
  text-transform: uppercase;
  color: #121907;
}
@media screen and (max-width: 1000px) {
  .company_headline__slag {
    margin-top: 16px;
  }
}

/*================================================
company----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
message----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.message_name {
  text-align: right;
  margin-top: 24px;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2.4rem, 2.4193548387vw, 3rem);
  line-height: 1.5;
  color: #121907;
}

.message_name__class {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2rem, 1.7741935484vw, 2.2rem);
  line-height: 1.5;
  color: #121907;
  margin-right: 16px;
}

/*================================================
message----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
outline----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.outline_wrap + .outline_wrap {
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .outline_wrap + .outline_wrap {
    margin-top: 56px;
  }
}

.outline_caption {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  color: #121907;
  padding: 8px 16px;
  background: #F3F7F9;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 16px;
}
@media screen and (max-width: 1000px) {
  .outline_caption {
    margin-bottom: 32px;
  }
}

/*================================================
outline----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
table----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.table_wrap table th, .table_wrap table td {
  padding: 23px 20px;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 1.75;
  color: #222222;
  border: none;
  background: initial;
  border-bottom: solid 1px #CCCCCC;
}
@media screen and (max-width: 1000px) {
  .table_wrap table th, .table_wrap table td {
    padding: 16px;
    width: 100%;
    border: none;
    border-bottom: solid 1px #222222;
  }
}
@media screen and (max-width: 1000px) {
  .table_wrap table td {
    padding-top: 8px;
  }
}
.table_wrap table th {
  border-bottom: solid 1px #222222;
  width: 200px;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  color: #222222;
}
@media screen and (max-width: 1000px) {
  .table_wrap table th {
    width: 100%;
    border: none;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1000px) {
  .table_wrap table tr:first-of-type th {
    border-top: solid 1px #222222;
  }
}

/*================================================
table----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
about_catch----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.lower__bigline--about_catch {
  text-align: center;
  margin-bottom: 56px;
}
@media screen and (max-width: 1000px) {
  .lower__bigline--about_catch {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .lower__bigline--about_catch br {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .lower__bigline--about_catch {
    text-align: left;
  }
}

.about_catch__txt {
  max-width: 606px;
  margin: auto;
}

.about_catch__imgs {
  position: relative;
  opacity: 0;
  transform: scale(0, 0);
  z-index: 2;
  pointer-events: none;
  transition: all 1s;
}
@media screen and (max-width: 1200px) {
  .about_catch__imgs {
    margin-top: 40px;
  }
}

.about_catch__imgs.cs_ac {
  transition-delay: 0.6s;
  opacity: 1;
  transform: scale(1, 1);
}

/*================================================
about_catch----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
about_content----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.about_content {
  margin-top: -46px;
}
@media screen and (max-width: 1000px) {
  .about_content {
    margin-top: -32px;
  }
}

.about_content__wrap {
  background: #fff;
  padding: 72px 100px 88px;
}
@media screen and (max-width: 1000px) {
  .about_content__wrap {
    padding: 64px 40px 72px;
  }
}
@media screen and (max-width: 500px) {
  .about_content__wrap {
    padding: 56px 20px 64px;
  }
}

.company_headline--about_content {
  margin-bottom: 88px;
}
@media screen and (max-width: 1000px) {
  .company_headline--about_content {
    margin-bottom: 56px;
  }
}

.about_content__block + .about_content__block {
  margin-top: 64px;
}
@media screen and (max-width: 1000px) {
  .about_content__block + .about_content__block {
    margin-top: 56px;
  }
}

.about_content__headline {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1000px) {
  .about_content__headline {
    gap: 24px;
  }
}
@media screen and (max-width: 500px) {
  .about_content__headline {
    flex-direction: column;
    gap: 8px;
  }
}

.about_content__headline__num {
  width: 100%;
  aspect-ratio: 1/1;
  max-height: -moz-fit-content;
  max-height: fit-content;
  min-width: 76px;
  width: 76px;
  height: auto;
  box-sizing: border-box;
  border: solid 2px #008DD0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(2.2rem, 3.2258064516vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  color: #008DD0;
}
@media screen and (max-width: 1000px) {
  .about_content__headline__num {
    min-width: 56px;
    width: 56px;
  }
}
@media screen and (max-width: 500px) {
  .about_content__headline__num {
    min-width: 46px;
    width: 46px;
  }
}

.about_content__headline__inner {
  padding-top: 10px;
  font-weight: 500;
  font-size: clamp(1.8rem, 2.9032258065vw, 3.6rem);
  line-height: 1.5;
  color: #121907;
}
@media screen and (max-width: 1000px) {
  .about_content__headline__inner {
    padding-top: 8px;
  }
}

.about_content__columns {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .about_content__columns {
    display: block;
  }
}

.about_content__img {
  flex-basis: 47.2%;
}

.about_content__txt {
  flex-basis: 45.6%;
}
@media screen and (max-width: 1000px) {
  .about_content__txt {
    margin-top: 32px;
  }
}

/*================================================
about_content----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
about_region----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.about_region {
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .about_region {
    margin-top: 72px;
  }
}

.lower__bigline--about_region {
  text-align: center;
  margin-bottom: 56px;
}
@media screen and (max-width: 1000px) {
  .lower__bigline--about_region {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 500px) {
  .lower__bigline--about_region {
    text-align: left;
  }
}

.about_region__txt {
  max-width: 606px;
  margin: auto;
}

.about_region__imgs {
  position: relative;
  opacity: 0;
  transform: scale(0, 0);
  transition: all 1s;
  z-index: 2;
  pointer-events: none;
  margin-top: 96px;
}
@media screen and (max-width: 1200px) {
  .about_region__imgs {
    margin-top: 56px;
  }
}

.about_region__imgs.cs_ac {
  transition-delay: 0.6s;
  opacity: 1;
  transform: scale(1, 1);
}

/*================================================
about_region----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
about_gallery----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.about_gallery {
  margin-top: 124px;
  position: relative;
  overflow: hidden;
  padding: 0 0 78px;
}
@media screen and (max-width: 1000px) {
  .about_gallery {
    margin-top: 80px;
    padding: 0 0 64px;
  }
}
.about_gallery::before {
  content: "";
  background: #fff;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 22px);
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .about_gallery::before {
    height: calc(100% - 10px);
  }
}

.about_gallery__headline {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(4rem, 4.1935483871vw, 5.2rem);
  line-height: 80%;
  text-transform: uppercase;
  color: #121907;
  margin-bottom: 56px;
}
@media screen and (max-width: 1000px) {
  .about_gallery__headline {
    margin-bottom: 48px;
  }
}

.about_gallery__slider {
  position: relative;
  display: flex;
  gap: 24px;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1000px) {
  .about_gallery__slider {
    gap: 16px;
  }
}

.about_gallery__slider {
  opacity: 0;
  transform: translateX(0);
}

.about_gallery__slider.is-active {
  opacity: 1;
  animation: a_about_gallery__slider 60s linear infinite;
}

.about_gallery__slide {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1000px) {
  .about_gallery__slide {
    gap: 16px;
  }
}

.about_gallery__img {
  max-width: 332px;
}
@media screen and (max-width: 1000px) {
  .about_gallery__img {
    max-width: 240px;
  }
}
@media screen and (max-width: 500px) {
  .about_gallery__img {
    max-width: 180px;
  }
}

@keyframes a_about_gallery__slider {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 12px));
  }
}
@media screen and (max-width: 1000px) {
  @keyframes a_about_gallery__slider {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-50% - 8px));
    }
  }
}
/*================================================
about_gallery----END
==================================================*/
.outline_block + .outline_block {
  margin-top: clamp(80px, 7.5vw, 120px);
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
job_catch----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.lower__bigline--job_catch {
  text-align: center;
  margin-bottom: 88px;
}
@media screen and (max-width: 1000px) {
  .lower__bigline--job_catch {
    margin-bottom: 56px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .lower__bigline--job_catch br {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .lower__bigline--job_catch {
    text-align: left;
    padding: 0 10px;
  }
}

@media screen and (max-width: 500px) {
  .job_catch .container {
    padding: 0 10px;
  }
}
.job_catch__columns {
  display: flex;
  justify-content: space-between;
}

.job_catch__columns_in {
  max-width: 684px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  .job_catch__columns_in {
    max-width: 100%;
  }
}
@media screen and (max-width: 1000px) and (min-width: 501px) and (max-width: 1000px) {
  .job_catch__columns_in {
    max-width: 560px;
  }
}

.job_catch__columns + .job_catch__columns {
  margin-top: -32px;
}
@media screen and (max-width: 1200px) {
  .job_catch__columns + .job_catch__columns {
    margin-top: -24px;
  }
}
@media screen and (max-width: 1200px) {
  .job_catch__columns + .job_catch__columns {
    margin-top: 40px;
  }
}

.job_catch__fukidashi {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  width: 232px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .job_catch__fukidashi {
    width: 200px;
  }
}
@media screen and (max-width: 500px) {
  .job_catch__fukidashi {
    width: 160px;
  }
}

.job_catch__fukidashi.cs_st {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 3s;
}

.job_catch__fukidashi.cs_ac {
  opacity: 1;
  transform: translate(0, 0px);
  transition: all 3s;
  animation: a_job_catch__fukidashi 4s ease-in-out infinite alternate;
  animation-delay: 3.3s;
}
.job_catch__fukidashi.cs_ac.job_catch__fukidashi-1, .job_catch__fukidashi.cs_ac.job_catch__fukidashi-4, .job_catch__fukidashi.cs_ac.job_catch__fukidashi-5, .job_catch__fukidashi.cs_ac.job_catch__fukidashi-8 {
  transition-delay: 0.3s;
}

@keyframes a_job_catch__fukidashi {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -15px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.job_catch__fukidashi::after {
  content: "";
  background: url(../images/our-job/pas_fukidashi_our-job.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  aspect-ratio: 34/38;
  width: 34px;
  height: auto;
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1000px) {
  .job_catch__fukidashi::after {
    width: 23px;
  }
}

.job_catch__inner {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.4516129032vw, 1.8rem);
  line-height: 175%;
  text-align: center;
  color: #121907;
}

.job_catch__wrap {
  position: relative;
  padding-bottom: 22px;
}
@media screen and (max-width: 1000px) {
  .job_catch__wrap {
    padding-bottom: 0px;
  }
}

.job_catch__pos {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 146px;
}
@media screen and (max-width: 1000px) {
  .job_catch__pos {
    max-width: 120px;
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 500px) {
  .job_catch__pos {
    max-width: 86px;
    z-index: 3;
  }
}

/*================================================
job_catch----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
job_contents----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.company_headline--job_contents {
  margin-bottom: 64px;
}
@media screen and (max-width: 1000px) {
  .company_headline--job_contents {
    margin-bottom: 56px;
  }
}

.job_contents__wrap {
  margin-top: 170px;
  padding: 72px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .job_contents__wrap {
    margin-top: 120px;
    padding: 64px 40px;
  }
}
@media screen and (max-width: 500px) {
  .job_contents__wrap {
    padding: 56px 20px;
  }
}

.job_contents__columns {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .job_contents__columns {
    display: block;
  }
}

.job_contents__columns + .job_contents__columns {
  margin-top: 72px;
  padding-top: 72px;
  border-top: solid 1px #C4CCD4;
}
@media screen and (max-width: 1000px) {
  .job_contents__columns + .job_contents__columns {
    margin-top: 56px;
    padding-top: 56px;
  }
}

.job_contents__img {
  flex-basis: 47.35%;
}

.job_contents__txt {
  flex-basis: 45.83%;
}
@media screen and (max-width: 1000px) {
  .job_contents__txt {
    margin-top: 32px;
  }
}

.job_contents__readline {
  font-weight: 500;
  font-size: clamp(2.4rem, 2.9032258065vw, 3.6rem);
  line-height: 1;
  color: #121907;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1000px) {
  .job_contents__readline {
    gap: 16px;
  }
}

.job_contents__num {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(3.2rem, 3.8709677419vw, 4.8rem);
  line-height: 1;
  text-transform: uppercase;
  color: #121907;
}
.job_contents__num::after {
  content: "";
  width: 1px;
  height: 40px;
  background: #7A8086;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .job_contents__num {
    gap: 16px;
  }
  .job_contents__num::after {
    height: 26px;
  }
}

.job_contents__tag {
  display: block;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  color: #121907;
  padding: 8px 16px;
  background: #F3F7F9;
  width: -moz-fit-content;
  width: fit-content;
  margin: 48px 0 16px;
}
@media screen and (max-width: 1000px) {
  .job_contents__tag {
    margin: 32px 0 16px;
  }
}

/*================================================
job_contents----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
job_banner----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.recruit_banner {
  margin-top: 168px;
}
@media screen and (max-width: 1000px) {
  .recruit_banner {
    margin-top: 100px;
  }
}

.recruit_banner__columns {
  display: flex;
  gap: 40px;
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .recruit_banner__columns {
    flex-direction: column;
  }
}
@media screen and (max-width: 1000px) {
  .recruit_banner__columns {
    flex-direction: column;
    gap: 32px;
    max-width: 584px;
    margin: auto;
  }
}

@media screen and (min-width: 1001px) {
  .recruit_banner__columns--left .recruit_banner__link {
    margin-left: 0;
  }
}
.recruit_banner__link {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 584px;
  margin: auto;
}
.recruit_banner__link img {
  transition: all 0.6s;
}
.recruit_banner__link:hover {
  opacity: 1;
}
.recruit_banner__link:hover img {
  transform: scale(1.1, 1.1) !important;
}

.recruit_banner__slag {
  position: absolute;
  left: 28px;
  bottom: 28px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(3.2rem, 5.4838709677vw, 6.8rem);
  line-height: 80%;
  color: #FFFFFF;
}
@media screen and (max-width: 500px) {
  .recruit_banner__slag {
    left: 16px;
    bottom: 16px;
    line-height: 100%;
  }
}

.recruit_banner__title {
  display: block;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  line-height: 1;
  color: #121907;
  padding: 8px 14px;
  background: #fff;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  right: 36px;
  bottom: 30px;
}
@media screen and (max-width: 500px) {
  .recruit_banner__title {
    padding: 6px 8px;
    right: 16px;
    bottom: 16px;
  }
}

/*================================================
job_banner----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
staff__flex----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.staff__flex {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1000px) {
  .staff__flex {
    display: block;
  }
}

.staff__contents {
  flex-basis: 74.25%;
}
@media screen and (max-width: 1000px) {
  .staff__contents {
    margin-top: 0px;
  }
}

.staff__fixd {
  flex-basis: 202px;
}
@media screen and (max-width: 1000px) {
  .staff__fixd {
    display: none;
  }
}

.staff__fixd__wrap {
  border-top: solid 1px #121907;
  border-bottom: solid 1px #121907;
  padding: 28px 0;
}
@media screen and (min-width: 1001px) {
  .staff__fixd__wrap {
    position: sticky;
    top: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .staff__fixd__wrap {
    padding: 24px 0;
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 48px;
  }
}

.staff__fixd__read {
  display: block;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 100%;
  color: #121907;
  margin-bottom: 16px;
}

.staff__list__item + .staff__list__item {
  margin-top: 8px;
}
@media screen and (max-width: 1000px) {
  .staff__list__item + .staff__list__item {
    margin-top: 6px;
  }
}

.staff__list__name {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.5322580645vw, 1.9rem);
  line-height: 150%;
  color: #121907;
}

.staff__list__class {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.1290322581vw, 1.4rem);
  line-height: 150%;
  color: #121907;
}

.staff__list__link {
  opacity: 1;
  position: relative;
}
.staff__list__link::before {
  content: "";
  background: #121907;
  width: 0%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 100%;
  transition: all 0.3s;
}

@media screen and (min-width: 1001px) {
  .staff__list__link:hover,
  .staff__list__link.active {
    opacity: 0.6;
  }
}
/*================================================
staff__flex----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
staff__cards----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.staff__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 48px;
  margin-bottom: 96px;
}
@media screen and (max-width: 1000px) {
  .staff__cards {
    gap: 40px 32px;
    margin-bottom: 72px;
  }
}
@media screen and (max-width: 500px) {
  .staff__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}

.staff__card {
  display: block;
}

.staff__card__img {
  overflow: hidden;
}
.staff__card__img img {
  transition: all 0.6s;
}

.staff__card__name {
  margin-top: 8px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2rem, 2.0967741935vw, 2.6rem);
  line-height: 1.5;
  color: #121907;
}

.staff__card__name_sub {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  line-height: 150%;
  color: #121907;
}

.staff__card__read {
  font-weight: 500;
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
  line-height: 150%;
  color: #121907;
}

.staff__card:hover {
  opacity: 1;
}
.staff__card:hover .staff__card__img img {
  transform: scale(1.1, 1.1);
}

/*================================================
staff__cards----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
staff_content----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.staff_content + .staff_content {
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .staff_content + .staff_content {
    margin-top: 64px;
  }
}

.staff_block__wrap {
  padding: 74px 72px 104px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .staff_block__wrap {
    padding: 56px 40px 64px;
  }
}
@media screen and (max-width: 500px) {
  .staff_block__wrap {
    padding: 48px 20px 56px;
  }
}

.staff_block__img_big {
  position: relative;
}
@media screen and (max-width: 500px) {
  .staff_block__img_big img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.staff_block__band {
  position: absolute;
  right: 0;
  top: 22px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.6129032258vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
  color: #121907;
  background: #fff;
  padding: 5px 16px 5px 15px;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .staff_block__band {
    top: 32px;
    padding: 4px 12px 4px 12px;
  }
}
@media screen and (max-width: 500px) {
  .staff_block__band {
    padding: 3px 10px 3px 10px;
    top: 14px;
  }
}

.staff_block__num {
  border-radius: 0px;
  overflow: clip;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.5806451613vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
  color: #121907;
  margin-left: 6px;
}
@media screen and (max-width: 1000px) {
  .staff_block__num {
    margin-left: 4px;
  }
}

.staff_block__bandline {
  position: absolute;
  left: -24px;
  bottom: -48px;
}
@media screen and (max-width: 1000px) {
  .staff_block__bandline {
    left: -10px;
    bottom: -24px;
  }
  .staff_block__bandline br {
    display: block;
  }
}

.staff_block__bandline__inner {
  display: inline-block;
  background: #121907;
  padding: 4px 16px 6px;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.7741935484vw, 2.2rem);
  line-height: 1.2;
  text-align: center;
  color: #FFFFFF;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1000px) {
  .staff_block__bandline__inner {
    padding: 3px 12px 5px;
  }
}

.staff_block__info {
  margin: 10px 0 46px;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .staff_block__info {
    margin: 24px 0 40px;
    gap: 12px;
  }
}
@media screen and (max-width: 500px) {
  .staff_block__info {
    margin: 48px 0 40px;
  }
}

.staff_block__name {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2rem, 2.0967741935vw, 2.6rem);
  line-height: 150%;
  color: #121907;
}

.staff_block__name__sub {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 150%;
  color: #121907;
}

.staff_block__class {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  line-height: 150%;
  color: #121907;
}

.staff_block__QandA + .staff_block__QandA,
.staff_block__QandA--columns + .staff_block__QandA,
.staff_block__QandA + .staff_block__QandA--columns {
  margin-top: 48px;
}
@media screen and (max-width: 1000px) {
  .staff_block__QandA + .staff_block__QandA,
  .staff_block__QandA--columns + .staff_block__QandA,
  .staff_block__QandA + .staff_block__QandA--columns {
    margin-top: 32px;
  }
}

.staff_block__Question {
  position: relative;
  padding-left: 36px;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.7741935484vw, 2.2rem);
  line-height: 150%;
  color: #121907;
  margin-bottom: 16px;
}
.staff_block__Question::before {
  content: "Q.";
  position: absolute;
  left: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2rem, 2.2580645161vw, 2.8rem);
  line-height: 100%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #121907;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 500px) {
  .staff_block__Question::before {
    top: 4px;
    transform: translateY(0);
  }
}
@media screen and (max-width: 1000px) {
  .staff_block__Question {
    padding-left: 28px;
  }
}

.staff_block__QandA--columns {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 500px) {
  .staff_block__QandA--columns {
    display: block;
  }
}

.staff_block__img {
  flex-basis: 39.76%;
}
@media screen and (max-width: 500px) {
  .staff_block__img {
    margin-bottom: 32px;
  }
}

.staff_block__QandA__txt {
  flex-basis: 53.81%;
}

.staff_block__message {
  margin-top: 48px;
  background: #F3F7F9;
  padding: 40px 48px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .staff_block__message {
    display: block;
    margin-top: 40px;
    padding: 40px 40px;
  }
}
@media screen and (max-width: 500px) {
  .staff_block__message {
    padding: 32px 20px;
  }
}

.staff_block__message__img {
  flex-basis: 27.47%;
}
@media screen and (max-width: 1000px) {
  .staff_block__message__img {
    max-width: 176px;
    margin: auto;
    margin-bottom: 24px;
  }
}

.staff_block__message__txt {
  flex-basis: 65.3%;
}

.staff_block__message_headline {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.3709677419vw, 1.7rem);
  line-height: 100%;
  color: #121907;
  background: #fff;
  padding: 8px 14px;
  margin-bottom: 16px;
}

/*================================================
staff_content----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
archive----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.requirements_list__item + .requirements_list__item {
  margin-top: 24px;
}
@media screen and (max-width: 1000px) {
  .requirements_list__item + .requirements_list__item {
    margin-top: 16px;
  }
}

.requirements_list__link {
  position: relative;
  display: block;
  padding: 34px 40px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .requirements_list__link {
    padding: 24px 32px;
    padding-left: 20px;
  }
}
.requirements_list__link::before {
  content: "";
  background: url(../images/requirements/arrow_requirements_list.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  aspect-ratio: 52/30;
  width: 52px;
  height: auto;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .requirements_list__link::before {
    width: 40px;
    right: 24px;
  }
}

.requirements_list__title {
  display: block;
  position: relative;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.6rem, 1.7741935484vw, 2.2rem);
  color: #000000;
  padding-left: 34px;
  padding-right: 64px;
}
@media screen and (max-width: 1000px) {
  .requirements_list__title {
    padding-left: 26px;
    padding-right: 32px;
  }
}
.requirements_list__title::before {
  content: "";
  background-color: #008DD0;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .requirements_list__title::before {
    width: 16px;
    height: 16px;
  }
}

.requirements_list__link:hover {
  opacity: 1;
}
.requirements_list__link:hover::before {
  background: url(../images/requirements/arrow_requirements_list_hov.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

/*================================================
archive----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
requirements_single----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.requirements_single__wrap {
  padding: 64px 100px 72px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .requirements_single__wrap {
    padding: 56px 40px 64px;
  }
}
@media screen and (max-width: 500px) {
  .requirements_single__wrap {
    padding: 48px 20px 56px;
  }
}

.requirements_single__title {
  margin-bottom: 16px;
  position: relative;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.8rem, 1.7741935484vw, 2.2rem);
  line-height: 150%;
  color: #000000;
  padding-left: 34px;
}
@media screen and (max-width: 1000px) {
  .requirements_single__title {
    padding-left: 26px;
    margin-bottom: 56px;
  }
}
.requirements_single__title::before {
  content: "";
  background-color: #008DD0;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .requirements_single__title::before {
    width: 16px;
    height: 16px;
  }
}

.common_btn--requirements {
  text-align: center;
  margin-top: 40px;
}

.requirements_single__prev {
  text-align: center;
  margin-top: 32px;
}

.requirements_single__prev_link {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  text-align: center;
  text-decoration-line: underline;
  color: #008DD0;
}

/*================================================
requirements_single----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
access----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.access_wrap + .access_wrap {
  margin-top: 64px;
}
@media screen and (max-width: 1000px) {
  .access_wrap + .access_wrap {
    margin-top: 56px;
  }
}

.access_columns {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 500px) {
  .access_columns {
    display: block;
  }
}

.access_img {
  flex-basis: 22.5%;
}

.access_txt {
  flex-basis: 73.2%;
}
@media screen and (max-width: 500px) {
  .access_txt {
    margin-top: 16px;
  }
}

@media screen and (max-width: 500px) {
  .access_map iframe {
    height: 340px;
  }
}
/*================================================
access----END
==================================================*/
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
products----
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.products_list {
  margin-bottom: 56px;
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 500px) {
  .products_list {
    gap: 16px;
  }
}

.products_list__item + .products_list__item {
  position: relative;
}
.products_list__item + .products_list__item::before {
  content: "";
  width: 1px;
  height: 16px;
  right: calc(100% + 16px);
  position: absolute;
  background: #7A8086;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 500px) {
  .products_list__item + .products_list__item::before {
    right: calc(100% + 8px);
  }
}

.products_list__link {
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 100%;
  color: #7A8086;
}
.products_list__link:hover {
  opacity: 1;
  text-decoration-line: underline;
  color: #121907;
}

.products__wrap {
  background: #fff;
  padding: 76px 72px 96px;
}
@media screen and (max-width: 1000px) {
  .products__wrap {
    padding: 56px 40px 64px;
  }
}
@media screen and (max-width: 500px) {
  .products__wrap {
    padding: 48px 20px 56px;
  }
}

.products__wrap + .products__wrap {
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .products__wrap + .products__wrap {
    margin-top: 64px;
  }
}

.products__columns {
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .products__columns {
    display: block;
  }
}

.products__imgs {
  max-width: 47.35%;
  flex-basis: 47.35%;
}
@media screen and (max-width: 1000px) {
  .products__imgs {
    max-width: 100%;
  }
}

.products__txt {
  position: relative;
  flex-basis: 45.83%;
}
@media screen and (max-width: 1000px) {
  .products__txt {
    margin-top: 64px;
  }
}

.products__nav {
  margin: 0 -8px;
  margin-top: 32px;
}
@media screen and (max-width: 1000px) {
  .products__nav {
    margin: 0 -4px;
    margin-top: 8px;
  }
}

.products__nav__img {
  overflow: hidden;
  cursor: pointer;
  margin: 0 8px;
}
@media screen and (max-width: 1000px) {
  .products__nav__img {
    margin: 0 4px;
  }
}
.products__nav__img img {
  transition: all 0.6s;
}

.products__nav__img:hover img {
  transform: scale(1.1, 1.1);
}

.products__nav .slick-track {
  margin: 0;
}
.products__nav .slick-prev {
  content: "";
  left: auto;
  right: 51px;
  top: calc(100% + 32px);
  height: 20px;
  width: 36px;
  opacity: 1;
  line-height: initial;
  opacity: 1;
}
@media screen and (max-width: 1000px) {
  .products__nav .slick-prev {
    top: calc(100% + 26px);
  }
}
.products__nav .slick-prev::before {
  content: "";
  background: url(../images/products/arrow_products.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 36px;
  height: 20px;
  opacity: 1;
}
.products__nav .slick-prev:hover::before {
  background: url(../images/products/arrow_products_hov.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.products__nav .slick-next {
  content: "";
  left: auto;
  right: 8px;
  top: calc(100% + 32px);
  height: 20px;
  width: 36px;
  line-height: initial;
  background-size: contain;
  opacity: 1;
}
@media screen and (max-width: 1000px) {
  .products__nav .slick-next {
    top: calc(100% + 26px);
  }
}
.products__nav .slick-next::before {
  content: "";
  background: url(../images/products/arrow_products.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 36px;
  height: 20px;
  transform: rotate(180deg);
  opacity: 1;
}
.products__nav .slick-next:hover::before {
  background: url(../images/products/arrow_products_hov.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.products__headline {
  display: flex;
  gap: 22px;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .products__headline {
    gap: 16px;
  }
}
@media screen and (max-width: 500px) {
  .products__headline {
    gap: 8px;
  }
}

.products__headline__num {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(2.8rem, 3.8709677419vw, 4.8rem);
  line-height: 1;
  text-transform: uppercase;
  color: #121907;
}
.products__headline__num::after {
  content: "";
  width: 1px;
  height: 40px;
  background: #7A8086;
  display: inline-block;
}
@media screen and (max-width: 500px) {
  .products__headline__num::after {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .products__headline__num {
    gap: 16px;
  }
}

.products__headline__name {
  display: flex;
  gap: 24px;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2.2rem, 2.9032258065vw, 3.6rem);
  line-height: 1;
  color: #121907;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .products__headline__name {
    gap: 16px;
  }
}

.products__headline__eng {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  line-height: 80%;
  text-transform: uppercase;
  color: #008DD0;
}
@media screen and (max-width: 500px) {
  .products__headline__eng {
    padding-top: 6px;
  }
}

.products__caption {
  display: block;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  color: #121907;
  padding: 8px 16px;
  background: #F3F7F9;
  width: -moz-fit-content;
  width: fit-content;
  margin: 48px 0 16px;
}
@media screen and (max-width: 1000px) {
  .products__caption {
    margin: 32px 0 16px;
  }
}

@media screen and (min-width: 1001px) {
  .products__read {
    padding-bottom: 40px;
  }
}

.products__top_link {
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 1001px) {
  .products__top_link {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 1000px) {
  .products__top_link {
    margin-top: 32px;
    justify-content: flex-end;
  }
}

.products__top_link__inner {
  line-height: 1;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #121907;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 400;
  font-size: 1.3rem;
}

.products__top_link::after {
  content: "";
  background: url(../images/products/products_top_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 8px;
  height: 13px;
  opacity: 1;
}

.products__slider img {
  aspect-ratio: 500/380;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
}

.products__nav img {
  aspect-ratio: 156/118;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
}

/*================================================
products----END
==================================================*/
.contact_block__lead {
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  margin-bottom: 10px;
}

.contact_block__list {
  counter-reset: num;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1001px) {
  .contact_block__list {
    margin-top: 50px;
    margin-bottom: 80px;
    gap: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .contact_block__list {
    margin-top: 20px;
    margin-bottom: 50px;
    gap: 8px;
  }
}

.contact_block__tab {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1;
  color: #008DD0;
  background: #fff;
  border: 1px solid #008DD0;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  font-weight: 400;
  border-radius: 30px;
}
.contact_block__tab.active {
  color: #fff;
  background: #008DD0;
}
@media screen and (min-width: 1001px) {
  .contact_block__tab {
    line-height: 54px;
  }
}
@media screen and (max-width: 1000px) {
  .contact_block__tab {
    line-height: 34px;
  }
}
.contact_block__tab::before {
  counter-increment: num;
  content: counter(num) ".";
}

.contact_block__line {
  display: block;
  height: 1px;
  background: #008DD0;
}
@media screen and (min-width: 1001px) {
  .contact_block__line {
    width: 72px;
  }
}
@media screen and (max-width: 1000px) {
  .contact_block__line {
    width: 20px;
  }
}

.policy_block__back {
  background: #fff;
  padding: 92px 100px 84px;
}
@media screen and (max-width: 1000px) {
  .policy_block__back {
    padding: 64px 40px 72px;
  }
}
@media screen and (max-width: 500px) {
  .policy_block__back {
    padding: 56px 20px 64px;
  }
}

.policy_block__wrap + .policy_block__wrap {
  margin-top: clamp(24px, 2vw, 32px);
}

.policy_block__lead {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  line-height: 150%;
  color: #121907;
  margin-bottom: 4px;
}

.policy_block__description {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 400;
}

.found_block {
  padding-top: clamp(60px, 11.25vw, 180px);
}

.found_head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 88px;
}
@media screen and (max-width: 1000px) {
  .found_head {
    margin-bottom: 56px;
  }
}

.found_head__caption {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(4.2rem, 5.8064516129vw, 7.2rem);
  line-height: 80%;
  text-transform: uppercase;
  color: #121907;
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .found_head__caption {
    font-size: 5.6rem;
  }
}

.found_head__lead {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 100%;
  text-align: center;
  color: #121907;
}

.found_menu {
  margin-top: clamp(64px, 5vw, 80px);
}
.found_menu ul ul {
  display: none !important;
}
.found_menu li {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 500;
}
.found_menu a {
  display: block;
  font-size: inherit;
  text-align: center;
  font-weight: 500;
  box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  .found_menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 0;
    margin: auto;
  }
  .found_menu li {
    padding: 0 16px;
    box-sizing: border-box;
    line-height: 1;
  }
}
@media screen and (max-width: 1000px) {
  .found_menu li + li {
    border-top: 1px solid #121907;
  }
  .found_menu a {
    padding: 10px 0;
  }
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
  .found_menu ul {
    width: 360px;
    margin: auto;
  }
}

.common_btn--prev {
  text-align: center;
  margin-top: 64px;
}
@media screen and (max-width: 1000px) {
  .common_btn--prev {
    margin-top: 56px;
  }
}

.news_list_wrap {
  padding: 108px 100px 72px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .news_list_wrap {
    padding: 64px 40px 56px;
  }
}
@media screen and (max-width: 500px) {
  .news_list_wrap {
    padding: 56px 20px 48px;
  }
}

.news_list__link {
  position: relative;
  display: flex;
  gap: 40px;
  padding-right: 72px;
  padding-bottom: 48px;
  border-bottom: solid 1px #C4CCD4;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .news_list__link {
    gap: 32px;
    padding-right: 48px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 500px) {
  .news_list__link {
    display: block;
    padding-bottom: 64px;
    padding-right: 0px;
  }
}
.news_list__link::before {
  content: "";
  background: url(../images/news/arrow_news.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  aspect-ratio: 35/20;
  width: 35px;
  height: auto;
  position: absolute;
  bottom: 48px;
  right: 14px;
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .news_list__link::before {
    bottom: 40px;
  }
}
@media screen and (max-width: 500px) {
  .news_list__link::before {
    bottom: 24px;
  }
}
.news_list__link::after {
  content: "";
  background: #008DD0;
  height: 1px;
  width: 0%;
  transition: all 0.3s;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.news_list__link:hover {
  opacity: 1;
}
.news_list__link:hover::before {
  content: "";
  background: url(../images/news/arrow_news_hov.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.news_list__link:hover::after {
  width: 100%;
}
.news_list__link:hover .news_list__img img {
  transform: scale(1.1, 1.1) !important;
}

.news_list__img {
  overflow: hidden;
  width: 240px;
  flex-basis: 240px;
}
.news_list__img img {
  transition: all 0.6s;
  aspect-ratio: 240/160;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 500px) {
  .news_list__img {
    width: 100%;
    margin-bottom: 24px;
  }
}

.news_list__txt {
  flex: 1;
}

.news_list__time {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 100%;
  color: #008DD0;
}

.news_list__readline {
  margin-top: 16px;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 200%;
  color: #121907;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .news_list__readline {
    margin-top: 12px;
  }
}

.news_list__item + .news_list__item {
  margin-top: 48px;
}
@media screen and (max-width: 1000px) {
  .news_list__item + .news_list__item {
    margin-top: 32px;
  }
}

.news_sigle__wrap {
  padding: 72px 100px 88px;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .news_sigle__wrap {
    padding: 64px 40px 72px;
  }
}
@media screen and (max-width: 500px) {
  .news_sigle__wrap {
    padding: 56px 20px 64px;
  }
}

.news_sigle__time {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 100%;
  color: #008DD0;
}

.news_sigle__readline {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2rem, 2.2580645161vw, 2.8rem);
  line-height: 150%;
  color: #121907;
  margin: 16px 0 40px;
}
@media screen and (max-width: 1000px) {
  .news_sigle__readline {
    margin: 16px 0 32px;
  }
}

.news_sigle__inner a {
  text-decoration: underline;
  color: #008DD0;
}

.common_btn--news_sigle__wrap {
  margin-top: 80px;
  padding-top: 56px;
  border-top: solid 1px #C4CCD4;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .common_btn--news_sigle__wrap {
    margin-top: 64px;
    padding-top: 48px;
  }
}/*# sourceMappingURL=customize.css.map */