@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
/* デフォルトのpaddingを削除 */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
/* bodyのデフォルトを定義 */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
/* class属性を持つul、ol要素のリストスタイルを削除 */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
/* img要素の扱いを簡単にする */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Inherit fonts for inputs and buttons */
/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

/* Remove all animations and transitions for people that prefer not to see them */
/* 見たくない人用に、すべてのアニメーションとトランジションを削除 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

.wp-block[data-type="core/widget-area"] {
  max-width: 1200px;
}

html :where(.wp-block) {
  max-width: 860px;
}

.blocks-widgets-container .editor-styles-wrapper {
  max-width: 100%;
}

.block-editor-block-list__block:not(.is-selected) > .block-editor-block-list__block > .block-list-appender:only-child:after {
  border: 1px dashed !important;
}

body.post-php .editor-styles-wrapper {
  background-color: #e8ecf3;
}

.editor-styles-wrapper > *:first-child {
  margin-top: 0 !important;
}

/* editor-styles-wrapper
----------------------------------------------- */
.editor-styles-wrapper {
  line-height: 2.25;
}

.editor-styles-wrapper h2 {
  margin: 80px 0 40px;
  background: #fff;
  padding: 28px 45px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.editor-styles-wrapper h2:before {
  content: "";
  background: #029183;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  z-index: 0;
  margin: 15px 0 0;
}

.editor-styles-wrapper img {
  display: block;
  margin: 60px auto;
}

.editor-styles-wrapper h3 {
  font-size: 26px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0 0 22px;
  border-bottom: 2px #d8dadf solid;
  margin: 70px 0 50px;
  position: relative;
}

.editor-styles-wrapper h3:before {
  position: absolute;
  content: "";
  background: #029183;
  width: 80px;
  height: 2px;
  left: 0;
  bottom: -2px;
  z-index: 0;
}

.editor-styles-wrapper h4 {
  font-size: 20px;
  color: #029183;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin: 60px 0 45px;
}

.editor-styles-wrapper h5 {
  margin: 40px 0;
  padding: 3px 0 3px 27px;
  border-left: 2px #1f2933 solid;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.editor-styles-wrapper blockquote {
  background: #fff;
  margin: 45px 0 80px;
  padding: 50px 60px;
}

.editor-styles-wrapper blockquote ul,
.editor-styles-wrapper blockquote ol {
  margin: 0;
}

.editor-styles-wrapper ul {
  display: flex;
  flex-direction: column;
  margin: 80px 0;
}

.editor-styles-wrapper ul li {
  padding: 0 0 0 28px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  position: relative;
}

.editor-styles-wrapper ul li:before {
  position: absolute;
  content: "";
  background: #029183;
  width: 6px;
  height: 6px;
  left: 0;
  top: 16px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.editor-styles-wrapper ol {
  margin: 80px 0;
  display: flex;
  flex-direction: column;
}

.editor-styles-wrapper ol li {
  counter-increment: my-counter;
  padding: 0 0 0 55px;
  position: relative;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.editor-styles-wrapper ol li::before {
  position: absolute;
  left: 10px;
  top: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  content: counter(my-counter);
}

.editor-styles-wrapper .wp-block-flexible-table-block-table {
  width: 100%;
  margin-block: 40px;
}
@media screen and (max-width: 767.99px) {
  .editor-styles-wrapper .wp-block-flexible-table-block-table {
    width: 100%;
    margin-block: 20px;
  }
}
.editor-styles-wrapper .wp-block-flexible-table-block-table table {
  width: 100% !important;
  border: 1px #dcdee3 solid !important;
}
.editor-styles-wrapper .wp-block-flexible-table-block-table table tr:nth-child(even) td {
  background: #fff !important;
}
.editor-styles-wrapper .wp-block-flexible-table-block-table table th,
.editor-styles-wrapper .wp-block-flexible-table-block-table table td {
  border: 1px #dcdee3 solid !important;
  vertical-align: middle !important;
  line-height: 1.6 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
}
@media screen and (max-width: 767.99px) {
  .editor-styles-wrapper .wp-block-flexible-table-block-table table th,
  .editor-styles-wrapper .wp-block-flexible-table-block-table table td {
    font-size: 12px !important;
  }
}
.editor-styles-wrapper .wp-block-flexible-table-block-table table th {
  background: #525973 !important;
  font-weight: 700 !important;
  color: #fff !important;
  padding: 40px 10px !important;
}
@media screen and (max-width: 767.99px) {
  .editor-styles-wrapper .wp-block-flexible-table-block-table table th {
    padding: 15px 10px !important;
  }
}
.editor-styles-wrapper .wp-block-flexible-table-block-table table td {
  padding: 30px 10px !important;
  background: #f2f4fb !important;
}
@media screen and (max-width: 767.99px) {
  .editor-styles-wrapper .wp-block-flexible-table-block-table table td {
    padding: 15px 10px !important;
  }
}

@media (max-width: 767px) {
  .editor-styles-wrapper {
    line-height: 1.85;
  }
  .editor-styles-wrapper h2 {
    margin: 30px 0 20px;
    padding: 15px 30px 15px 20px;
    gap: 15px;
    font-size: 17px;
    line-height: 1.58;
  }
  .editor-styles-wrapper h2:before {
    width: 8px;
    height: 8px;
    margin: 10px 0 0;
  }
  .editor-styles-wrapper img {
    margin: 30px auto;
  }
  .editor-styles-wrapper h3 {
    font-size: 16px;
    padding: 0 0 12px;
    margin: 35px 0;
  }
  .editor-styles-wrapper h3:before {
    width: 50px;
  }
  .editor-styles-wrapper h4 {
    font-size: 15px;
    margin: 30px 0 20px;
  }
  .editor-styles-wrapper h5 {
    margin: 25px 0 20px;
    padding: 3px 0 3px 15px;
    border-left: 2px #1f2933 solid;
    font-size: 14px;
  }
  .editor-styles-wrapper blockquote {
    margin: 20px 0 30px;
    padding: 25px 20px;
  }
  .editor-styles-wrapper ul {
    margin: 30px 0;
    gap: 5px;
  }
  .editor-styles-wrapper ul li {
    padding: 0 0 0 20px;
    position: relative;
  }
  .editor-styles-wrapper ul li:before {
    top: 10px;
  }
  .editor-styles-wrapper ol {
    margin: 30px 0;
    gap: 5px;
  }
  .editor-styles-wrapper ol li {
    padding: 0 0 0 20px;
  }
  .editor-styles-wrapper ol li::before {
    left: 0;
  }
}
/* --------------------------------------------------
	Resetting default margin and padding
-------------------------------------------------- */
/* !HTML5 elements
---------------------------------------------------------- */
header,
footer,
nav,
section,
aside,
article {
  display: block;
}

/* !Reseting
---------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  background: #e8ecf3;
  color: #1f2933;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-text-size-adjust: none;
  font-feature-settings: "palt";
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td,
input,
a,
textarea,
select,
span,
nav,
section,
header {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

input,
textarea {
  margin: 0;
  font-size: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

fieldset,
img {
  border: 0;
}

img {
  vertical-align: top;
  max-width: 100%;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 500;
}

q:after,
q:before {
  content: "";
}

a,
input {
  /* outline: none; */
}

abbr,
acronym {
  border: 0;
}

/* !Clearfix
---------------------------------------------------------- */
.clearfix {
  display: block;
  min-height: 1%;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

* html .clearfix {
  height: 1%;
  /*\*/
  /*/
  height: auto;
  overflow: hidden;
  /**/
}

/* !Layout
---------------------------------------------------------- */
html {
  overflow-y: scroll;
}

@media print {
  html,
  html body {
    *zoom: 0.65;
  }
}
/* link
------------------------------------------------ */
a {
  color: #1f2933;
  text-decoration: none;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
}

a:hover {
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
}

.op,
.op a,
.op img,
.op input {
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

.op:hover,
.op a:hover,
.op:hover img,
.op:hover input {
  opacity: 0.5;
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  filter: alpha(opacity=50);
  /* IE lt 8 */
  -ms-filter: "alpha(opacity=50)";
  /* IE 8 */
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

@media (max-width: 767px) {
  .op:hover,
  .op a:hover,
  .op:hover img,
  .op:hover input {
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    /* IE lt 8 */
    -ms-filter: "alpha(opacity=100)";
    /* IE 8 */
  }
}
/* !fs
------------------------------------------------ */
.visible-pc {
  display: block !important;
}

.visible-tab {
  display: none !important;
}

.visible-ts {
  display: none !important;
}

.visible-pc-only {
  display: block !important;
}

@media (max-width: 1024px) {
  .visible-tab {
    display: block !important;
  }
  .visible-pc-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .visible-pc {
    display: none !important;
  }
  .visible-ts {
    display: block !important;
  }
}
/* !fonts
------------------------------------------------ */
.fwb {
  font-weight: 700;
}

.fwm {
  font-weight: 500;
}

.vat {
  vertical-align: top !important;
}

.vam {
  vertical-align: middle !important;
}

.tal {
  text-align: left !important;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

/* !ff
------------------------------------------------ */
.ff_manrope {
  font-family: "Manrope", sans-serif;
}

.ff_montserrat {
  font-family: "Montserrat", sans-serif;
}

.ff_dm {
  font-family: "DM Sans", sans-serif;
}

/* !fc
------------------------------------------------ */
/* !bg
------------------------------------------------ */
/* html
----------------------------------------------- */
html.html-lock {
  overflow: hidden;
  touch-action: none;
}

/* wrapper
----------------------------------------------- */
#wrapper {
  overflow: hidden;
}

.inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.inner_lar {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

/* header
----------------------------------------------- */
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 38px min(50px, 3.6%) 0;
  z-index: 9;
}

#header .header_in {
  height: 80px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 min(30px, 2.15vw) 0 min(40px, 2.86vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(251, 251, 251, 0);
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.show #header .header_in {
  background: rgb(251, 251, 251);
}

#header .header_logo {
  flex-shrink: 0;
}

#header .header_logo a {
  display: block;
  width: 123px;
}

#header .header_logo a:hover {
  opacity: 0.5;
}

#header .header_navi {
  display: flex;
  align-items: center;
  gap: 80px;
}

#header .header_link {
  display: flex;
  align-items: center;
  gap: 30px;
}

#header .header_link a {
  display: block;
  font-family: "Manrope", sans-serif;
  color: #1f2933;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

#header .header_link a:hover {
  color: #029183;
}

#header .header_btn {
  display: flex;
  align-items: center;
  gap: 17px;
}

#header .header_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 160px;
  height: 50px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.25;
  padding: 0 25px;
  font-family: "Manrope", sans-serif;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  position: relative;
}

#header .header_btn a:hover {
  opacity: 0.5;
}

#header .header_btn a:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  right: 20px;
  top: 50%;
  margin-top: -3px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

#header .header_btn .btn_rec {
  border: 1px #dadade solid;
  background: #fbfbfb;
  color: #1f2933;
}

#header .header_btn .btn_rec:before {
  background: #dadade;
}

#header .header_btn .btn_cta {
  background: #029183;
  color: #fbfbfb;
}

#header .header_btn .btn_cta:before {
  background: #fbfbfb;
}

#header .navbar-toggle {
  display: none;
}

#header .navbar-collapse {
  display: none;
}

@media (max-width: 1200px) {
  #header .header_navi {
    gap: 40px;
  }
  #header .header_link {
    gap: 20px;
  }
}
@media (max-width: 1100px) {
  #header .header_link a {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  #header {
    padding: 8px;
  }
  #header .header_in {
    height: 50px;
    padding: 0 10px 0 15px;
    gap: 10px;
    background: rgb(250, 250, 250);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
  }
  .show #header .header_in {
    background: rgb(250, 250, 250);
  }
  #header .header_logo {
    font-size: 0;
  }
  #header .header_logo a {
    width: 70px;
  }
  #header .header_logo a:hover {
    opacity: 1;
  }
  #header .header_navi {
    display: none;
  }
  #header .navbar-toggle {
    cursor: pointer;
    width: 36px;
    height: 36px;
    background: #029183;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    z-index: 99;
  }
  #header .navbar-toggle .toggle_menu {
    width: 11px;
    height: 5px;
    position: relative;
  }
  #header .navbar-toggle .toggle_menu span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    background-color: #fff;
    width: 100%;
    height: 1px;
  }
  #header .navbar-toggle.on .toggle_menu {
    width: 14px;
  }
  #header .navbar-toggle .toggle_menu span:nth-of-type(1) {
    top: 0;
  }
  #header .navbar-toggle .toggle_menu span:nth-of-type(2) {
    top: 4px;
  }
  #header .navbar-toggle.on .toggle_menu span:nth-of-type(1) {
    top: 0;
    transform: translateY(2px) rotate(25deg);
  }
  #header .navbar-toggle.on .toggle_menu span:nth-of-type(2) {
    top: 4px;
    transform: translateY(-2px) rotate(-25deg);
  }
  #header .navbar-collapse {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 80;
  }
  #header .navbar-collapse .navbar_inner {
    float: right;
    background: #fff;
    width: 250px;
    height: 100%;
    padding: 80px 25px 20px 45px;
  }
  #header .navbar-collapse .navbar_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  #header .navbar-collapse .navbar_list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    letter-spacing: 0.04em;
    gap: 10px;
  }
  #header .navbar-collapse .navbar_list a:after {
    content: "";
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    display: block;
    border: 1px #d6d6d9 solid;
    background-image: url("../img/common/arrow_menu.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 6px 6px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
  }
  #header .header_btn {
    flex-direction: column;
    gap: 15px;
    margin: 70px 0 0;
  }
  #header .header_btn li {
    width: 100%;
  }
  #header .header_btn a {
    width: 100%;
    height: 44px;
    font-size: 13px;
    letter-spacing: 0.08em;
  }
  #header .header_btn a:hover {
    opacity: 1;
  }
  #header .header_btn a:before {
    width: 4px;
    height: 4px;
    right: 17px;
    margin-top: -2px;
  }
}
/* header recruit
----------------------------------------------- */
#header_recruit {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
}

#header_recruit .header_in {
  height: 120px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0);
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
}

#header_recruit .header_box {
  max-width: 1360px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 15px;
  gap: 10px;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
}

#header_recruit .header_left {
  display: flex;
  align-items: center;
  gap: 30px;
}

#header_recruit .header_logo {
  flex-shrink: 0;
}

#header_recruit .header_logo a {
  display: block;
  width: 136px;
}

#header_recruit .header_logo a:hover {
  opacity: 0.5;
}

#header_recruit .header_logo_recruit {
  font-size: 20px;
  font-weight: 600;
  color: #1f2933;
  line-height: 1;
  letter-spacing: 0.03em;
  padding: 4px 0 0;
}

#header_recruit .header_navi {
  display: flex;
  align-items: center;
  gap: 60px;
}

#header_recruit .header_link {
  display: flex;
  align-items: center;
  gap: 60px;
}

#header_recruit .header_link a {
  display: block;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.25;
  font-weight: 500;
}

#header_recruit .header_link a:hover {
  color: #00b050;
}

#header_recruit .header_btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

#header_recruit .header_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 220px;
  height: 80px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.25;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(to bottom right, #049284, #06b254);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  position: relative;
}

#header_recruit .header_btn a:hover {
  opacity: 0.5;
}

.show #header_recruit .header_in {
  background: rgb(255, 255, 255);
  height: 80px;
}

.show #header_recruit .header_box {
  max-width: 1240px;
  padding: 0;
}

.show #header_recruit .header_left {
  gap: 25px;
}

.show #header_recruit .header_logo a {
  width: 127px;
}

.show #header_recruit .header_logo_recruit {
  font-size: 20px;
}

.show #header_recruit .header_navi {
  gap: 55px;
}

.show #header_recruit .header_link {
  gap: 40px;
}

.show #header_recruit .header_btn {
  gap: 15px;
}

.show #header_recruit .header_btn a {
  width: 160px;
  height: 58px;
  font-size: 16px;
  padding: 0 20px;
}

#header_recruit .navbar-toggle {
  display: none;
}

#header_recruit .navbar-collapse {
  display: none;
}

@media (max-width: 1200px) {
  #header_recruit .header_box {
    padding: 0;
  }
  #header_recruit .header_navi {
    gap: 30px;
  }
  #header_recruit .header_link {
    gap: 30px;
  }
  #header_recruit .header_btn a {
    width: 170px;
  }
  .show #header_recruit .header_navi {
    gap: 30px;
  }
  .show #header_recruit .header_link {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  #header_recruit {
    padding: 8px;
  }
  #header_recruit .header_in {
    height: 50px;
    padding: 0 10px 0 15px;
    gap: 10px;
    background: rgb(255, 255, 255);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
  }
  #header_recruit .header_left {
    gap: 10px;
  }
  #header_recruit .header_logo {
    font-size: 0;
  }
  #header_recruit .header_logo a {
    width: 70px;
  }
  #header_recruit .header_logo_recruit {
    font-size: 15px;
  }
  #header_recruit .header_logo a:hover {
    opacity: 1;
  }
  #header_recruit .header_navi {
    display: none;
  }
  .show #header_recruit .header_in {
    height: 50px;
  }
  .show #header_recruit .header_left {
    gap: 10px;
  }
  .show #header_recruit .header_logo a {
    width: 70px;
  }
  .show #header_recruit .header_logo_recruit {
    font-size: 15px;
  }
  #header_recruit .navbar-toggle {
    cursor: pointer;
    width: 36px;
    height: 36px;
    background: #029183;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    z-index: 99;
  }
  #header_recruit .navbar-toggle .toggle_menu {
    width: 11px;
    height: 5px;
    position: relative;
  }
  #header_recruit .navbar-toggle .toggle_menu span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    background-color: #fff;
    width: 100%;
    height: 1px;
  }
  #header_recruit .navbar-toggle.on .toggle_menu {
    width: 14px;
  }
  #header_recruit .navbar-toggle .toggle_menu span:nth-of-type(1) {
    top: 0;
  }
  #header_recruit .navbar-toggle .toggle_menu span:nth-of-type(2) {
    top: 4px;
  }
  #header_recruit .navbar-toggle.on .toggle_menu span:nth-of-type(1) {
    top: 0;
    transform: translateY(2px) rotate(25deg);
  }
  #header_recruit .navbar-toggle.on .toggle_menu span:nth-of-type(2) {
    top: 4px;
    transform: translateY(-2px) rotate(-25deg);
  }
  #header_recruit .navbar-collapse {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 80;
  }
  #header_recruit .navbar-collapse .navbar_inner {
    float: right;
    background: #fff;
    width: 250px;
    height: 100%;
    padding: 90px 25px 20px 35px;
    position: relative;
  }
  #header_recruit .navbar-collapse .navbar_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  #header_recruit .navbar-collapse .navbar_list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 0.03em;
    gap: 10px;
  }
  #header_recruit .navbar-collapse .navbar_list a:after {
    content: "";
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    display: block;
    border: 1px #d6d6d9 solid;
    background-image: url("../img/common/arrow_menu.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 6px 6px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
  }
  #header_recruit .navbar-collapse .navbar_home {
    margin: 40px 0 0;
    display: flex;
    justify-content: flex-start;
  }
  #header_recruit .navbar-collapse .navbar_home a {
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 500;
    font-size: 10px;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: #68829d;
  }
  #header_recruit .navbar-collapse .navbar_home a:after {
    content: "";
    background-image: url("../img/common/blank_home.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 9px;
    height: 9px;
  }
  #header_recruit .navbar-collapse .navbar_logo {
    position: absolute;
    left: 15px;
    top: 20px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  #header_recruit .navbar-collapse .navbar_logo .logo_home {
    width: 68px;
  }
  #header_recruit .navbar-collapse .navbar_logo .logo_rec {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 2px 0 0;
  }
  #header_recruit .header_btn {
    flex-direction: column;
    gap: 7px;
    margin: 35px 0 0;
  }
  #header_recruit .header_btn li {
    width: 100%;
  }
  #header_recruit .header_btn a {
    width: 100%;
    height: 44px;
    font-size: 10px;
    letter-spacing: 0.02em;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
  }
  #header_recruit .header_btn a:hover {
    opacity: 1;
  }
  .show #header_recruit .header_btn {
    gap: 7px;
  }
  .show #header_recruit .header_btn a {
    width: 100%;
    height: 44px;
    font-size: 10px;
  }
}
/* anchor
----------------------------------------------- */
.anchor {
  position: absolute;
  left: 0;
  top: 0;
  padding-top: 156px;
  margin-top: -156px;
  z-index: 0;
}

@media (max-width: 1024px) {
  .anchor {
    padding-top: 70px;
    margin-top: -70px;
  }
}
.anchor_recruit {
  position: absolute;
  left: 0;
  top: 0;
  padding-top: 80px;
  margin-top: -80px;
  z-index: 0;
}

@media (max-width: 1024px) {
  .anchor_recruit {
    padding-top: 70px;
    margin-top: -70px;
  }
}
/* footer
----------------------------------------------- */
#footer {
  padding: 55px 30px;
}

#footer.white {
  background: #fff;
}

#footer .footer_inner {
  max-width: 1230px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

#footer .footer_mess {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

#footer .footer_logo {
  align-self: flex-start;
}

#footer .footer_logo a {
  display: block;
  width: 174px;
}

#footer .footer_logo a:hover {
  opacity: 0.5;
}

#footer .footer_navi {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px 40px;
}

#footer .footer_link {
  display: flex;
  align-items: center;
  gap: 40px;
}

#footer .footer_link a {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: #1f2933;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

#footer .footer_link a:hover {
  color: #029183;
}

#footer .footer_btn {
  display: flex;
  align-items: center;
  gap: 17px;
}

#footer .footer_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 160px;
  height: 50px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.25;
  padding: 0 25px;
  font-family: "Montserrat", sans-serif;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  position: relative;
}

#footer .footer_btn a:hover {
  opacity: 0.5;
}

#footer .footer_btn a:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  right: 20px;
  top: 50%;
  margin-top: -3px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

#footer .footer_btn .btn_rec {
  border: 1px #dadade solid;
  background: #fbfbfb;
  color: #1f2933;
}

#footer .footer_btn .btn_rec:before {
  background: #dadade;
}

#footer .footer_btn .btn_cta {
  background: #029183;
  color: #fbfbfb;
}

#footer .footer_btn .btn_cta:before {
  background: #fbfbfb;
}

#footer .footer_btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5px 0 10px;
  gap: 10px;
}

#footer .copyright {
  color: #68829d;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
}

#footer .footer_other {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 25px;
}

#footer .footer_other a {
  display: block;
  color: #68829d;
  font-size: 13px;
  font-weight: 300;
}

#footer .footer_other a:hover {
  opacity: 0.5;
}

@media (max-width: 1024px) {
  #footer .footer_other {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  #footer {
    padding: 30px;
  }
  #footer .footer_inner {
    gap: 95px;
  }
  #footer .footer_mess {
    flex-direction: column;
    gap: 55px;
  }
  #footer .footer_logo a {
    width: 115px;
  }
  #footer .footer_logo a:hover {
    opacity: 1;
  }
  #footer .footer_navi {
    flex-direction: column;
    gap: 55px;
    width: 100%;
  }
  #footer .footer_link {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    gap: 20px;
  }
  #footer .footer_link a {
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.08em;
  }
  #footer .footer_link a:hover {
    color: #1f2933;
  }
  #footer .footer_btn {
    display: flex;
    align-items: center;
    gap: 4.66vw;
    padding: 0 8px;
    width: 100%;
  }
  #footer .footer_btn li {
    width: calc((100% - 4.66vw) / 2);
  }
  #footer .footer_btn a {
    width: 100%;
    font-size: 14px;
    letter-spacing: 0.08em;
  }
  #footer .footer_btn a:hover {
    opacity: 1;
  }
  #footer .footer_btn a:before {
    width: 4px;
    height: 4px;
    right: 15px;
    margin-top: -2px;
  }
  #footer .footer_btm {
    flex-direction: column-reverse;
    padding: 0 20px;
    gap: 50px;
  }
  #footer .copyright {
    font-size: min(10px, 2.67vw);
    letter-spacing: 0.08em;
    width: 100%;
  }
  #footer .footer_other {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px 10px;
  }
  #footer .footer_other li {
    max-width: calc((100% - 10px) / 2);
  }
  #footer .footer_other a {
    font-size: min(11px, 2.94vw);
    white-space: nowrap;
  }
  #footer .footer_other a:hover {
    opacity: 1;
  }
}
/* H
----------------------------------------------- */
.section_hdl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #1f2933;
  gap: 15px;
}

.section_hdl .hdl_eng {
  font-size: 65px;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  line-height: 1;
}

.section_hdl .hdl_jps {
  padding: 0 0 0 20px;
  font-size: 16px;
  letter-spacing: 0.02em;
  position: relative;
}

.section_hdl .hdl_jps:before {
  position: absolute;
  content: "";
  background: #029183;
  width: 10px;
  height: 10px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.section_hdl.white {
  color: #e8ecf3;
}

.section_hdl.whitelight {
  color: #fff;
}

.section_hdl.white_dot .hdl_jps:before {
  background: #fff;
}

.section_hdl.mingap {
  gap: 5px;
}

@media (max-width: 767px) {
  .section_hdl {
    gap: 10px;
  }
  .section_hdl .hdl_eng {
    font-size: 28px;
  }
  .section_hdl .hdl_jps {
    padding: 0 0 0 15px;
    font-size: 13px;
    letter-spacing: 0.02em;
  }
  .section_hdl .hdl_jps:before {
    width: 10px;
    height: 10px;
  }
  .section_hdl.mingap {
    gap: 10px;
  }
}
/* breadcrumb
----------------------------------------------- */
.breadcrumb {
  padding: 50px 30px;
  position: relative;
  z-index: 1;
}

.breadcrumb.white {
  background: #fff;
  padding-top: 70px;
}

.breadcrumb .bread_in {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 10px;
}

.breadcrumb .bread_in a {
  display: block;
}

.breadcrumb .bread_in a:hover {
  opacity: 0.5;
}

.breadcrumb .bread_line {
  color: #a6b3c1;
  display: block;
}

@media (max-width: 767px) {
  .breadcrumb {
    padding: 25px 30px;
  }
  .breadcrumb.white {
    padding-top: 30px;
  }
  .breadcrumb .bread_in {
    font-size: 12px;
    gap: 5px 12px;
  }
  .breadcrumb .bread_in a:hover {
    opacity: 1;
  }
}
/* common
----------------------------------------------- */
@keyframes transformLeftRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.com_radius {
  -webkit-border-radius: 80px;
  -moz-border-radius: 80px;
  -ms-border-radius: 80px;
  -o-border-radius: 80px;
  border-radius: 80px;
}

@media (max-width: 767px) {
  .com_radius {
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
  }
}
.com_seemore {
  background: #1f2933;
  margin: 0 0 20px;
  padding: 90px 30px 145px;
  position: relative;
  z-index: 1;
}

.com_seemore .seemore_inner {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px #51575d solid;
  padding: 50px 0 0;
}

.com_seemore .seemore_hd {
  font-size: 40px;
  color: #fbfbfb;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 60px;
  font-family: "Manrope", sans-serif;
}

.com_seemore .seemore_cs {
  margin: 0 0 125px;
  display: flex;
  align-items: stretch;
  gap: 25px;
}

.com_seemore .seemore_cs .cs_item {
  width: calc((100% - 30px) / 2);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #2e3b47;
  gap: 10px;
  padding: 40px 4.5% 40px 2.7%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.com_seemore .seemore_cs .cs_cap {
  color: #029183;
  font-size: 14px;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
  line-height: 1.2;
  margin: 0 0 80px;
}

.com_seemore .seemore_cs .cs_tit {
  font-size: 18px;
  margin: 0 0 10px;
  color: #fbfbfb;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.com_seemore .seemore_cs .cs_txt {
  font-size: 13px;
  color: #657786;
  letter-spacing: 0.02em;
}

.com_seemore .seemore_cs .cs_img {
  overflow: hidden;
  width: 167px;
  flex-shrink: 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}

.com_seemore .seemore_cs .cs_img img {
  width: 100%;
  transition: all 0.6s !important;
  -moz-transition: all 0.6s !important;
  /* Firefox */
  -webkit-transition: all 0.6s !important;
  /* Chrome&Safari */
}

.com_seemore .seemore_cs .cs_item:hover .cs_img img {
  transform: scale(1.05);
}

.com_seemore .seemore_rc {
  display: flex;
  align-items: stretch;
  gap: 32px;
}

.com_seemore .seemore_rc .rc_item {
  width: calc((100% - 32px) / 2);
  color: #e8ecf3;
  display: block;
  padding: 45px 5% 50px 5.4%;
  -webkit-border-radius: 34px;
  -moz-border-radius: 34px;
  -ms-border-radius: 34px;
  -o-border-radius: 34px;
  border-radius: 34px;
}

.com_seemore .seemore_rc .rc_item:hover {
  opacity: 0.5;
}

.com_seemore .seemore_rc .rc_item.rc_recruit {
  background: linear-gradient(to bottom right, #029183, #00607c);
}

.com_seemore .seemore_rc .rc_item.rc_contact {
  background: linear-gradient(to bottom right, #68829d, #425c7c);
}

.com_seemore .seemore_rc .rc_tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 90px;
  font-family: "Manrope", sans-serif;
  position: relative;
}

.com_seemore .seemore_rc .rc_tit:after {
  content: "";
  width: 74px;
  height: 74px;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../img/common/arrow_s_wh.png");
  background-size: 10px 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.com_seemore .seemore_rc .rc_recruit .rc_tit:after {
  background-color: #1d8b8d;
}

.com_seemore .seemore_rc .rc_contact .rc_tit:after {
  background-color: #6d84a1;
}

.com_seemore .seemore_rc .rc_txt {
  font-size: 13px;
  line-height: 1.85;
  color: #e8ecf3;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .com_seemore {
    margin: 0;
    padding: 60px 30px 75px;
  }
  .com_seemore .seemore_inner {
    padding: 20px 0 0;
  }
  .com_seemore .seemore_hd {
    font-size: 30px;
    margin: 0 0 30px;
  }
  .com_seemore .seemore_cs {
    margin: 0 0 15px;
    flex-direction: column;
    gap: 15px;
  }
  .com_seemore .seemore_cs .cs_item {
    width: 100%;
    gap: 5px;
    padding: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .com_seemore .seemore_cs .cs_cap {
    font-size: 12px;
    margin: 0 0 50px;
  }
  .com_seemore .seemore_cs .cs_tit {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.02em;
  }
  .com_seemore .seemore_cs .cs_txt {
    font-size: 11px;
    letter-spacing: 0.02em;
  }
  .com_seemore .seemore_cs .cs_img {
    width: 105px;
    flex-shrink: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
  }
  .com_seemore .seemore_cs .cs_item:hover .cs_img img {
    transform: scale(1);
  }
  .com_seemore .seemore_rc {
    flex-direction: column;
    gap: 14px;
  }
  .com_seemore .seemore_rc .rc_item {
    width: 100%;
    padding: 25px;
    -webkit-border-radius: 17px;
    -moz-border-radius: 17px;
    -ms-border-radius: 17px;
    -o-border-radius: 17px;
    border-radius: 17px;
  }
  .com_seemore .seemore_rc .rc_item:hover {
    opacity: 1;
  }
  .com_seemore .seemore_rc .rc_tit {
    font-size: 30px;
    margin: 0 0 50px;
  }
  .com_seemore .seemore_rc .rc_tit:after {
    width: 45px;
    height: 45px;
    background-size: 5px 5px;
  }
  .com_seemore .seemore_rc .rc_txt {
    font-size: 10px;
    letter-spacing: 0.02em;
  }
}
.com_back {
  margin: 100px 0 0;
  display: flex;
  justify-content: center;
}

.com_back a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px #1f2933 solid;
  width: 260px;
  height: 80px;
  font-size: 15px;
  letter-spacing: 0.02em;
  -webkit-border-radius: 80px;
  -moz-border-radius: 80px;
  -ms-border-radius: 80px;
  -o-border-radius: 80px;
  border-radius: 80px;
}

.com_back a:hover {
  background: #1f2933;
  color: #fff;
}

@media (max-width: 767px) {
  .com_back {
    margin: 50px 0 0;
  }
  .com_back a {
    width: 185px;
    height: 60px;
    font-size: 13px;
  }
  .com_back a:hover {
    background: none;
    color: #1f2933;
  }
}
.com_blank {
  display: flex;
  justify-content: center;
}

.com_blank a {
  width: 260px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px #000 solid;
  background-color: #000;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.02em;
  background-image: url("../img/common/arrow_blank_wh.png");
  background-position: right 30px center;
  background-repeat: no-repeat;
  background-size: 8px 8px;
  padding: 0 40px;
  -webkit-border-radius: 80px;
  -moz-border-radius: 80px;
  -ms-border-radius: 80px;
  -o-border-radius: 80px;
  border-radius: 80px;
}

.com_blank a:hover {
  background-color: #fff;
  color: #000;
  background-image: url("../img/common/arrow_blank_bk.png");
}

@media (max-width: 767px) {
  .com_blank a {
    width: 205px;
    height: 60px;
    font-size: 13px;
    background-position: right 25px center;
    background-repeat: no-repeat;
    padding: 0 30px;
  }
  .com_blank a:hover {
    background-color: #000;
    color: #fff;
    background-image: url("../img/common/arrow_blank_wh.png");
  }
}
.com_links {
  display: flex;
  justify-content: center;
}

.com_links a {
  width: 260px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px #000 solid;
  background-color: #000;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.02em;
  background-image: url("../img/common/arrow_s_wh.png");
  background-position: right 25px center;
  background-repeat: no-repeat;
  background-size: 10px 10px;
  padding: 0 40px;
  -webkit-border-radius: 80px;
  -moz-border-radius: 80px;
  -ms-border-radius: 80px;
  -o-border-radius: 80px;
  border-radius: 80px;
}

.com_links a:hover {
  background-color: #fff;
  color: #000;
  background-image: url("../img/common/arrow_s_bk.png");
}

.com_links.blue a {
  background-color: #202a34;
  border: 1px #202a34 solid;
}

.com_links.blue a:hover {
  background-color: #fff;
  color: #202a34;
  background-image: url("../img/common/arrow_s_bl.png");
}

.com_links.white a {
  background-color: #e8ecf3;
  border: 1px #e8ecf3 solid;
  color: #1e6d87;
  background-image: url("../img/common/arrow_s_dark.png");
}

.com_links.white a:hover {
  background-color: #1e6d87;
  color: #e8ecf3;
  background-image: url("../img/common/arrow_s_wh.png");
}

@media (max-width: 767px) {
  .com_links a {
    width: 185px;
    height: 60px;
    font-size: 13px;
    background-position: right 25px center;
    background-repeat: no-repeat;
    padding: 0 35px;
  }
  .com_links a:hover {
    background-color: #000;
    color: #fff;
    background-image: url("../img/common/arrow_s_wh.png");
  }
  .com_links.blue a {
    width: 220px;
  }
  .com_links.blue a:hover {
    background-color: #202a34;
    color: #fff;
    background-image: url("../img/common/arrow_s_wh.png");
  }
  .com_links.white a:hover {
    background-color: #e8ecf3;
    color: #1e6d87;
    background-image: url("../img/common/arrow_s_dark.png");
  }
}
.com_case_box .com_case_control {
  margin: 60px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.com_case_box .com_case_navi {
  width: 59%;
  display: flex;
  align-items: center;
  gap: 50px;
}

.com_case_box .com_case_arrow {
  display: flex;
  align-items: stretch;
  gap: 15px;
  flex-shrink: 0;
}

.com_case_box .com_case_prev,
.com_case_box .com_case_next {
  width: 90px;
  height: 90px;
  cursor: pointer;
  border: 1px #1f2933 solid;
  background-image: url("../img/common/arrow_m_bk.png");
  background-size: 11px 11px;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
}

.com_case_box .com_case_prev.slick-disabled,
.com_case_box .com_case_next.slick-disabled {
  opacity: 0.2;
  cursor: auto;
}

.com_case_box .com_case_prev {
  transform: rotate(180deg);
}

.com_case_box .progress-container {
  display: block;
  width: 100%;
  background: #b7bac4;
  position: relative;
  overflow: hidden;
}

.com_case_box .progress-bar {
  display: block;
  height: 1px;
  background: #029183;
  width: 0;
  transition: width 0.2s linear;
}

.com_case_box .com_case_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 260px;
  height: 80px;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px #202a34 solid;
  background-color: #202a34;
  background-image: url("../img/common/arrow_s_wh.png");
  background-size: 10px 10px;
  background-position: right 25px center;
  background-repeat: no-repeat;
  padding: 0 40px;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
}

.com_case_box .com_case_btn a:hover {
  background-color: #fff;
  color: #202a34;
  background-image: url("../img/common/arrow_s_bl.png");
}

.com_case_box .com_case_slider .slick-slide {
  margin: 0 50px 0 0;
}

.com_case_box .com_case_item {
  width: 350px;
}

.com_case_box .com_case_item .com_case_img {
  margin: 0 0 30px;
  position: relative;
  background-color: transparent;
}
.com_case_box .com_case_item .com_case_img::before {
  content: "";
  display: block;
  padding-top: 68.5714285714%;
}
.com_case_box .com_case_item .com_case_img img,
.com_case_box .com_case_item .com_case_img iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.com_case_box .com_case_item .com_case_img img {
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.com_case_box .com_case_item .com_case_name {
  font-size: 15px;
  color: #029183;
  line-height: 1.2;
  margin: 0 0 18px;
}

.com_case_box .com_case_item .com_case_tit {
  font-size: 20px;
  color: #24262c;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 22px;
}

.com_case_box .com_case_item .com_case_txt {
  font-size: 16px;
  line-height: 1.875;
  color: #556572;
  letter-spacing: 0.02em;
  margin: 0 0 25px;
}

.com_case_box .com_case_item .com_case_more {
  display: flex;
  justify-content: flex-end;
}

.com_case_box .com_case_item .com_case_more a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: #202a34;
  width: 130px;
  height: 40px;
  font-family: "Manrope", sans-serif;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border-radius: 40px;
}

.com_case_box .com_case_item .com_case_more a:hover {
  opacity: 0.5;
}

.com_case_box .com_case_slider .slick-list {
  overflow: visible;
}

.com_case_box.com_case_white .com_case_tit {
  color: #fbfbfb;
}

.com_case_box.com_case_white .com_case_item .com_case_more a {
  color: #67717a;
  background: #000;
}

.com_case_box.com_case_white .com_case_btn a {
  background-color: #000;
  border: 1px #000 solid;
}

.com_case_box.com_case_white .com_case_btn a:hover {
  background-color: #fff;
  color: #000;
}

.com_case_box.com_case_white .com_case_prev,
.com_case_box.com_case_white .com_case_next {
  border: 1px #fbfbfb solid;
  background-image: url("../img/common/arrow_m_wh.png");
}

.com_case_box.com_case_white .progress-container {
  background: #333c44;
}

@media (max-width: 767px) {
  .com_case_box .com_case_control {
    margin: 50px 0 0;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .com_case_box .com_case_navi {
    width: 100%;
    gap: 18px;
  }
  .com_case_box .com_case_arrow {
    gap: 7px;
  }
  .com_case_box .com_case_prev,
  .com_case_box .com_case_next {
    width: 45px;
    height: 45px;
    background-size: 6px 6px;
  }
  .com_case_box .com_case_btn a {
    width: 185px;
    height: 50px;
    font-size: 13px;
    background-size: 8px 8px;
  }
  .com_case_box .com_case_btn a:hover {
    background-color: #202a34;
    color: #fff;
    background-image: url("../img/common/arrow_s_wh.png");
  }
  .com_case_box .com_case_slider .slick-slide {
    margin: 0 9.33vw 0 0;
  }
  .com_case_box .com_case_item {
    width: 70.66vw;
  }
  .com_case_box .com_case_item .com_case_img {
    margin: 0 0 20px;
  }
  .com_case_box .com_case_item .com_case_img img {
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .com_case_box .com_case_item .com_case_name {
    font-size: 11px;
    margin: 0 0 10px;
  }
  .com_case_box .com_case_item .com_case_tit {
    font-size: 15px;
    margin: 0 0 15px;
  }
  .com_case_box .com_case_item .com_case_txt {
    font-size: 14px;
    line-height: 1.93;
    margin: 0 0 20px;
  }
  .com_case_box .com_case_item .com_case_more a {
    font-size: 12px;
    width: 130px;
    height: 35px;
  }
  .com_case_box .com_case_item .com_case_more a:hover {
    opacity: 1;
  }
  .com_case_box.com_case_white .com_case_btn a:hover {
    background-color: #000;
    color: #fff;
  }
}
.com_office_box .com_office_slider {
  margin: 0 0 60px;
}

.com_office_box .com_office_slider .slick-list {
  overflow: visible;
}

.com_office_box .com_office_slider .slick-slide {
  transform: scaleY(0.74);
  margin: 0 30px;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
}

.com_office_box .com_office_slider img {
  width: 880px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}

.com_office_box .com_office_slider .slick-slide.slick-center {
  transform: scaleY(1);
}

.com_office_box .com_office_slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.com_office_box .com_office_slider .slick-dots li {
  font-size: 0;
  margin: 0;
  padding: 0;
}

.com_office_box .com_office_slider .slick-dots li button {
  width: 10px;
  height: 10px;
  font-size: 0;
  background: #d3d7dc;
  padding: 0;
  cursor: pointer;
  outline: none;
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

.com_office_box .com_office_slider .slick-dots li.slick-active button {
  background: #029183;
}

.com_office_box .com_office_slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #1f2933;
  background-image: url("../img/common/arrow_m_wh.png");
  background-size: 15px 15px;
  background-position: center center;
  background-repeat: no-repeat;
  text-indent: -9999px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
  z-index: 1;
}

.com_office_box .com_office_slider .slick-arrow:hover {
  opacity: 0.5;
}

.com_office_box .com_office_slider .slick-prev {
  right: calc(50% + 415px);
  transform: translateY(-50%) rotate(180deg);
}

.com_office_box .com_office_slider .slick-next {
  left: calc(50% + 415px);
}

@media (max-width: 1024px) {
  .com_office_box .com_office_slider img {
    width: 500px;
  }
  .com_office_box .com_office_slider .slick-prev {
    right: calc(50% + 225px);
  }
  .com_office_box .com_office_slider .slick-next {
    left: calc(50% + 225px);
  }
}
@media (max-width: 767px) {
  .com_office_box .com_office_slider {
    margin: 0 0 33px;
  }
  .com_office_box .com_office_slider .slick-slide {
    margin: 0 9px;
  }
  .com_office_box .com_office_slider img {
    width: 280px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
  }
  .com_office_box .com_office_slider .slick-dots {
    bottom: -33px;
    gap: 10px;
  }
  .com_office_box .com_office_slider .slick-dots li button {
    width: 8px;
    height: 8px;
  }
  .com_office_box .com_office_slider .slick-arrow {
    background-size: 8px 8px;
    width: 26px;
    height: 26px;
  }
  .com_office_box .com_office_slider .slick-arrow:hover {
    opacity: 1;
  }
  .com_office_box .com_office_slider .slick-prev {
    right: calc(50% + 127px);
  }
  .com_office_box .com_office_slider .slick-next {
    left: calc(50% + 127px);
  }
}
.com_profess_box .com_profess_list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 34px;
}

.com_profess_box .com_profess_list li {
  width: calc((100% - 68px) / 3);
}
.com_profess_box .com_profess_list li a {
  display: block;
  aspect-ratio: 344/258;
}

.com_profess_box .com_profess_img {
  overflow: hidden;
  margin: 0 0 25px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.com_profess_box .com_profess_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s !important;
  -moz-transition: all 0.6s !important;
  /* Firefox */
  -webkit-transition: all 0.6s !important;
  /* Chrome&Safari */
}

.com_profess_box .com_profess_img a:hover img {
  transform: scale(1.05);
}

.com_profess_box .com_profess_name {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
}

.com_profess_box .com_profess_job {
  color: #029183;
  letter-spacing: 0.02em;
}

.com_profess_box .com_profess_more {
  margin: 80px 0 0;
  background: #fff;
  border: 1px #dadade solid;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.com_profess_box .com_profess_more:hover {
  opacity: 0.5;
}

.com_profess_box .com_profess_more .more_txt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.com_profess_box .com_profess_more .more_txt:after {
  content: "";
  background-image: url("../img/common/arrow_down_gr.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 14px;
  height: 14px;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
  z-index: 0;
}

.com_profess_box .com_profess_more.on .more_txt:after {
  transform: rotate(180deg);
}

.fancybox-skin {
  background: #fff;
  color: #1f2933;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border-radius: 40px;
}

.fancybox-close {
  background-image: url("../img/common/close.png");
  background-size: cover;
  right: 30px;
  top: 30px;
  width: 40px;
  height: 40px;
}

.fancybox-overlay {
  background: rgba(31, 41, 51, 0.5);
}

.profess_pop {
  display: none;
  padding: 60px;
  width: 1090px;
  max-width: 100%;
}

.profess_pop .pop_mess {
  display: flex;
  align-items: center;
  gap: 40px;
}

.profess_pop .pop_mess .pop_mess_img {
  flex-shrink: 0;
  align-self: flex-start;
}

.profess_pop .pop_mess .pop_mess_img img {
  width: 344px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.profess_pop .pop_mess .pop_mess_job {
  color: #029183;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
}

.profess_pop .pop_mess .pop_mess_name {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
}

.profess_pop .pop_mess .pop_mess_en {
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0.5;
  font-family: "Manrope", sans-serif;
}

.profess_pop .pop_mess .pop_mess_exp {
  margin: 50px 0 0;
}

.profess_pop .pop_mess .pop_mess_exp .mess_exp_tit {
  margin: 0 0 15px;
  padding: 0 0 0 15px;
  letter-spacing: 0.02em;
  position: relative;
}

.profess_pop .pop_mess .pop_mess_exp .mess_exp_tit:before {
  position: absolute;
  content: "";
  background: #029183;
  width: 10px;
  height: 10px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.profess_pop .pop_mess .pop_mess_exp .mess_exp_type {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profess_pop .pop_mess .pop_mess_exp .mess_exp_type .type_in {
  background: #f3f3f7;
  min-width: 180px;
  height: 40px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border-radius: 40px;
}

.profess_pop .pop_detail {
  margin: 40px 0 0;
  line-height: 2.125;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .com_profess_box .com_profess_list {
    flex-direction: column;
    gap: 35px;
  }
  .com_profess_box .com_profess_list li {
    width: 100%;
  }
  .com_profess_box .com_profess_img {
    margin: 0 0 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .com_profess_box .com_profess_img a:hover img {
    transform: scale(1);
  }
  .com_profess_box .com_profess_name {
    font-size: 19px;
    margin: 0 0 5px;
  }
  .com_profess_box .com_profess_job {
    font-size: 11px;
  }
  .com_profess_box .com_profess_more {
    margin: 45px 0 0;
    height: 55px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .com_profess_box .com_profess_more:hover {
    opacity: 1;
  }
  .com_profess_box .com_profess_more .more_txt {
    width: 100%;
    display: block;
    text-align: center;
    gap: 0;
    font-size: 14px;
    position: relative;
  }
  .com_profess_box .com_profess_more .more_txt:after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
  }
  .com_profess_box .com_profess_more.on .more_txt:after {
    transform: translateY(-50%) rotate(180deg);
  }
  .fancybox-skin {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
  }
  .fancybox-close {
    right: -10px;
    top: -10px;
    width: 36px;
    height: 36px;
  }
  .profess_pop {
    padding: 30px;
  }
  .profess_pop .pop_mess {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .profess_pop .pop_mess .pop_mess_img {
    width: 100%;
  }
  .profess_pop .pop_mess .pop_mess_img img {
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .profess_pop .pop_mess .pop_mess_cont {
    width: 100%;
  }
  .profess_pop .pop_mess .pop_mess_job {
    font-size: 11px;
    margin: 0 0 10px;
  }
  .profess_pop .pop_mess .pop_mess_name {
    font-size: 21px;
    margin: 0 0 5px;
  }
  .profess_pop .pop_mess .pop_mess_en {
    font-size: 11px;
  }
  .profess_pop .pop_mess .pop_mess_exp {
    margin: 20px 0 0;
  }
  .profess_pop .pop_mess .pop_mess_exp .mess_exp_tit {
    margin: 0 0 10px;
    padding: 0 0 0 12px;
    font-size: 11px;
  }
  .profess_pop .pop_mess .pop_mess_exp .mess_exp_tit:before {
    width: 8px;
    height: 8px;
  }
  .profess_pop .pop_mess .pop_mess_exp .mess_exp_type {
    gap: 5px;
    font-size: 11px;
  }
  .profess_pop .pop_mess .pop_mess_exp .mess_exp_type .type_in {
    min-width: 120px;
    height: 30px;
  }
  .profess_pop .pop_detail {
    margin: 25px 0 0;
    line-height: 1.77;
  }
}
/* filter-container
----------------------------------------------- */
.filter-container {
  position: relative;
  z-index: 1;
}

.filter_tag {
  margin: 0 0 50px;
  position: relative;
  z-index: 1;
}

.filter_tag .tag_inner {
  gap: 40px;
  display: flex;
  align-items: stretch;
}

.filter_tag .tag_inner .tag_item {
  width: calc((100% - 40px) / 2);
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #00b050;
  cursor: pointer;
  letter-spacing: 0.02em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background: #deeeeb;
  border: 1px #00b050 solid;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
}

.filter_tag .tag_inner .tag_item:hover {
  background: #00b050;
  color: #fff;
}

.filter_tag .tag_inner .tag_item.is-active {
  background: #00b050;
  color: #fff;
}

.filter_tag .tag_inner .tag_item.is-active:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .filter_tag {
    margin: 0 0 30px;
  }
  .filter_tag .tag_inner {
    gap: 15px;
  }
  .filter_tag .tag_inner .tag_item {
    width: calc((100% - 15px) / 2);
    height: 60px;
    font-size: 14px;
    letter-spacing: 0.02em;
  }
}
.filter_category {
  position: relative;
}

.filter_category .category_item {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.filter_category .category_item.is-show {
  opacity: 1;
  height: auto;
  overflow: visible;
}

/* animate
----------------------------------------------- */
@keyframes fadeInLeftLit {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftLit {
  animation-name: fadeInLeftLit;
}

@keyframes fadeInRightLit {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightLit {
  animation-name: fadeInRightLit;
}

@keyframes fadeInUpLit {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpLit {
  animation-name: fadeInUpLit;
}

/* teaser
----------------------------------------------- */
.teaser {
  padding: 100px 30px 0;
  border-bottom: 1px #b7bac4 solid;
  position: relative;
  z-index: 1;
}
.teaser.with-bg {
  background-image: url("../img/common/sub-mv-bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
@media screen and (max-width: 767.99px) {
  .teaser.with-bg {
    background-image: url("../img/common/sub-mv-bg-sp.png");
  }
}

.teaser .teaser_inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 300px;
}

.teaser .teaser_hd {
  font-size: 85px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  font-family: "Manrope", sans-serif;
  position: relative;
}

.teaser .teaser_hd:before {
  position: absolute;
  content: "";
  background-image: url("../img/common/ico_teaser.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  left: -30px;
  top: 0;
  width: 25px;
  height: 23px;
  z-index: 0;
}

@media (max-width: 767px) {
  .teaser {
    padding: 58px 20px 0 40px;
  }
  .teaser .teaser_inner {
    height: 125px;
  }
  .teaser .teaser_hd {
    font-size: min(33px, 8.8vw);
    letter-spacing: -0.01em;
  }
  .teaser .teaser_hd:before {
    left: -20px;
    top: -10px;
    width: 16px;
    height: 15px;
  }
}
/* wp-pagenavi
----------------------------------------------- */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 34px;
  margin: 80px 0 0;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #1f2933;
  font-family: "Manrope", sans-serif;
  display: flex;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  position: relative;
}

.wp-pagenavi a:hover {
  opacity: 0.5;
}

.wp-pagenavi span {
  color: #029183;
}

.wp-pagenavi span:before {
  position: absolute;
  content: "";
  background: #029183;
  width: 26px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  height: 2px;
  z-index: 0;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: 50px;
  height: 50px;
  background-color: #1f2933;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-image: url("../img/common/arrow_m_wh.png");
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

.wp-pagenavi .previouspostslink {
  margin: 0 15px 0 0;
  transform: rotate(180deg);
}

.wp-pagenavi .nextpostslink {
  margin: 0 0 0 15px;
}

@media (max-width: 767px) {
  .wp-pagenavi {
    gap: 10px 22px;
    margin: 40px 0 0;
  }
  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 18px;
  }
  .wp-pagenavi a:hover {
    opacity: 1;
  }
  .wp-pagenavi span:before {
    width: 18px;
    height: 1px;
  }
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: 35px;
    height: 35px;
    background-size: 10px 10px;
  }
  .wp-pagenavi .previouspostslink {
    margin: 0 10px 0 0;
  }
  .wp-pagenavi .nextpostslink {
    margin: 0 0 0 10px;
  }
}
/* post
----------------------------------------------- */
.post_block {
  padding: 60px 0 100px;
}

.post_cate {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 60px;
  gap: 20px 10px;
}

.post_cate .cate_item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 170px;
  height: 40px;
  border: 1px #445e7e solid;
  font-size: 18px;
  color: #425c7c;
  font-weight: 500;
  letter-spacing: 0.02em;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border-radius: 40px;
}

.post_cate .cate_item:hover,
.post_cate .cate_item.current {
  background: #445e7e;
  color: #fff;
}

@media (max-width: 767px) {
  .post_block {
    padding: 30px 0 50px;
  }
  .post_block .inner {
    padding: 0 20px;
  }
  .post_cate {
    margin: 0 0 25px;
    gap: 15px 6px;
  }
  .post_cate .cate_item {
    width: 106px;
    height: 30px;
    font-size: 12px;
  }
  .post_cate .cate_item:hover {
    background: none;
    color: #425c7c;
  }
}
/* news
----------------------------------------------- */
.news_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news_list .news_list_item {
  display: flex;
  align-items: center;
  background: #dbe1ea;
  gap: 40px;
  font-weight: 500;
  position: relative;
  padding: 30px 130px 30px 50px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
}

.news_list .news_list_item:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  border: 1px #dadade solid;
  background-image: url("../img/common/arrow_m_gy.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 11px 11px;
  background-color: #fff;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.news_list .news_list_dc {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.news_list .news_list_date {
  width: 95px;
  flex-shrink: 0;
  font-size: 14px;
  color: #000;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "Manrope", sans-serif;
}

.news_list .news_list_cate {
  background: #e8ecf3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 112px;
  min-height: 30px;
  font-size: 15px;
  line-height: 1.2;
  color: #425c7c;
  padding: 5px 0;
  border: 1px #445e7e solid;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
}
.news_list .news_list_cate.empty {
  border: none;
  background-color: transparent;
}

.news_list .news_list_txt {
  font-size: 18px;
  line-height: 1.66;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
}

.news_list .news_list_item:hover .news_list_txt {
  text-decoration: underline;
}

.news_list .news_list_item:hover:before {
  border: 1px #029183 solid;
  background-image: url("../img/common/arrow_m_gr.png");
}

@media (max-width: 1024px) {
  .news_list .news_list_item {
    padding: 30px 110px 30px 50px;
  }
}
@media (max-width: 767px) {
  .news_list {
    gap: 15px;
  }
  .news_list .news_list_item {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 50px 15px 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
  }
  .news_list .news_list_item:before {
    width: 26px;
    height: 26px;
    background-size: 6px 6px;
    right: 15px;
  }
  .news_list .news_list_dc {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  .news_list .news_list_date {
    width: 67px;
    font-size: 11px;
    flex-shrink: 0;
  }
  .news_list .news_list_cate {
    width: auto;
    min-width: 82px;
    height: 20px;
    min-height: inherit;
    font-size: 10px;
    padding: 3px 0;
  }
  .news_list .news_list_txt {
    font-size: 13px;
    line-height: 1.93;
  }
  .news_list .news_list_item:hover .news_list_txt {
    text-decoration: none;
  }
  .news_list .news_list_item:hover:before {
    border: 1px #dadade solid;
    background-image: url("../img/common/arrow_m_gy.png");
  }
}
/* case list
----------------------------------------------- */
.case_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case_list .case_list_item {
  background: #dbe1ea;
  padding: 40px 150px 40px 50px;
  display: flex;
  align-items: flex-start;
  gap: 50px;
  position: relative;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
}

.case_list .case_list_item:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  border: 1px #dadade solid;
  background-image: url("../img/common/arrow_m_gy.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 11px 11px;
  background-color: #fff;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.case_list .case_list_item:hover:before {
  border: 1px #029183 solid;
  background-image: url("../img/common/arrow_m_gr.png");
}

.case_list .case_list_img {
  overflow: hidden;
  flex-shrink: 0;
  width: 350px;
  max-width: 39%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.case_list .case_list_img img {
  width: 100%;
  transition: all 0.6s !important;
  -moz-transition: all 0.6s !important;
  /* Firefox */
  -webkit-transition: all 0.6s !important;
  /* Chrome&Safari */
}

.case_list .case_list_item:hover .case_list_img img {
  transform: scale(1.05);
}

.case_list .case_list_cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 5px 0 0;
  gap: 20px;
}

.case_list .case_list_name {
  font-size: 15px;
  color: #029183;
}

.case_list .case_list_tit {
  color: #24262c;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.case_list .case_list_txt {
  font-size: 16px;
  line-height: 1.875;
  color: #556572;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .case_list .case_list_item {
    padding: 40px 100px 40px 40px;
  }
}
@media (max-width: 767px) {
  .case_list .case_list_item {
    padding: 20px 20px 60px;
    flex-direction: column;
    gap: 15px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
  }
  .case_list .case_list_item:before {
    width: 35px;
    height: 35px;
    background-size: 8px 8px;
    right: 20px;
    top: auto;
    bottom: 17px;
    transform: translateY(0);
  }
  .case_list .case_list_item:hover:before {
    border: 1px #dadade solid;
    background-image: url("../img/common/arrow_m_gy.png");
  }
  .case_list .case_list_img {
    width: 100%;
    max-width: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .case_list .case_list_item:hover .case_list_img img {
    transform: scale(1);
  }
  .case_list .case_list_cont {
    padding: 0;
    gap: 10px;
  }
  .case_list .case_list_name {
    font-size: 11px;
    line-height: 1.2;
  }
  .case_list .case_list_tit {
    font-size: 15px;
    line-height: 1.73;
    letter-spacing: 0.02em;
  }
  .case_list .case_list_txt {
    font-size: 14px;
    line-height: 1.93;
  }
}
/* contact
----------------------------------------------- */
.contact_block {
  padding: 70px 0 50px;
}

.contact_block .contact_det {
  margin: 0 0 55px;
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
}

@media (max-width: 767px) {
  .contact_block {
    padding: 25px 0 10px;
  }
  .contact_block .inner {
    padding: 0 20px;
  }
  .contact_block .contact_det {
    margin: 0 0 25px;
    font-size: 14px;
    line-height: 1.93;
  }
}
/* form
----------------------------------------------- */
.form_box {
  padding: 80px 30px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
}

.form_box.form_parent {
  background: #dbe1ea;
}

.form_box.form_sublayer {
  background: rgba(255, 255, 255, 0.5);
}

.form_box .form_inner {
  max-width: 860px;
  margin: 0 auto;
}

.form_box .smf-form .smf-item {
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  letter-spacing: 0.02em;
  gap: 20px;
}

.form_box .smf-form .smf-item .smf-item__col--label {
  display: flex;
  align-items: center;
  font-weight: 700;
  width: 100%;
  gap: 10px;
  position: relative;
}

.form_box .smf-form .smf-item .smf-item__col--label:before {
  content: "任意";
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 60px;
  height: 26px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  z-index: 0;
}

.form_box .smf-form .smf-item.must .smf-item__col--label:before {
  content: "必須";
}

.form_box.form_parent .smf-form .smf-item .smf-item__col--label:before {
  background: rgba(68, 94, 126, 0.4);
}

.form_box.form_parent .smf-form .smf-item.must .smf-item__col--label:before {
  background: rgb(68, 94, 126);
}

.form_box.form_sublayer .smf-form .smf-item .smf-item__col--label:before {
  background: #929695;
}

.form_box.form_sublayer .smf-form .smf-item.must .smf-item__col--label:before {
  background: #00b050;
}

.form_box .smf-form .smf-item .smf-item__col--controls {
  width: 100%;
}

.form_box .smf-form input[type=text],
.form_box .smf-form input[type=email],
.form_box .smf-form input[type=tel] {
  width: 100%;
  height: 70px;
  padding: 10px 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  font-family: "Noto Sans JP", sans-serif;
}

.form_box .smf-form input::placeholder {
  letter-spacing: 0.02em;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.form_box.form_parent .smf-form input[type=text],
.form_box.form_parent .smf-form input[type=email],
.form_box.form_parent .smf-form input[type=tel] {
  background: #f3f6f9;
}

.form_box.form_parent .smf-form input::placeholder {
  color: #b6c3d0;
}

.form_box.form_sublayer .smf-form input[type=text],
.form_box.form_sublayer .smf-form input[type=email],
.form_box.form_sublayer .smf-form input[type=tel] {
  background: #fff;
  border: 1px #e8edec solid;
}

.form_box.form_sublayer .smf-form input::placeholder {
  color: #e0e0e0;
}

.form_box .smf-form textarea {
  width: 100%;
  height: 140px;
  padding: 10px 20px;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}

.form_box.form_parent .smf-form textarea {
  background: #f3f6f9;
}

.form_box.form_sublayer .smf-form textarea {
  background: #fff;
  border: 1px #e8edec solid;
}

.form_box .smf-form .smf-radio-buttons-control__control {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
  margin: 10px 0 0;
}

.form_box .smf-form .smf-radio-button-control {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
  font-weight: 500;
}

.form_box .smf-form .smf-radio-button-control input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  position: relative;
}

.form_box .smf-form .smf-radio-button-control input:checked:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 1;
}

.form_box.form_parent .smf-form .smf-radio-button-control input {
  background: #f3f6f9;
}

.form_box.form_parent .smf-form .smf-radio-button-control input:checked:before {
  background: #445e7e;
}

.form_box.form_sublayer .smf-form .smf-radio-button-control input {
  background: #fff;
  border: 1px #c9cdcd solid;
}

.form_box.form_sublayer .smf-form .smf-radio-button-control input:checked:before {
  background: #00b050;
}

.form_box .smf-action button {
  width: 260px;
  height: 80px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  cursor: pointer;
  border: none;
  font-size: 15px;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  -webkit-transition: all 0.3s !important;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
}

.form_box .smf-action button:hover {
  opacity: 0.5;
}

.form_box.form_parent .smf-action button {
  background: #202a34;
}

.form_box.form_sublayer .smf-action button {
  background: linear-gradient(to bottom right, #029183, #00b050);
}

.form_box .check {
  margin: 40px 0 0;
  text-align: center;
}
.form_box .check .smf-item__col--label {
  display: none !important;
}

.form_box .check .smf-label {
  display: flex;
  justify-content: center;
}

.form_box .check .smf-checkbox-control {
  font-size: 16px;
  font-weight: 500;
  color: #1f2933;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.form_box .check .smf-checkbox-control input[type=checkbox] {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.form_box .check .smf-checkbox-control input[type=checkbox]:checked:before {
  position: absolute;
  content: "";
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../img/common/ico_check.png");
  background-size: 22px 22px;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}

.form_box .check .smf-checkbox-control a {
  text-decoration: underline;
  text-underline-offset: 8px;
}

.form_box .check .smf-checkbox-control a:hover {
  opacity: 0.5;
}

.form_box.form_parent .check .smf-checkbox-control input[type=checkbox] {
  background: #f3f6f9;
}

.form_box.form_sublayer .check .smf-checkbox-control input[type=checkbox] {
  background: #fff;
  border: 1px #eef3f3 solid;
}

@media (max-width: 767px) {
  .form_box {
    padding: 30px 20px 40px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
  }
  .form_box .smf-form .smf-item {
    margin: 0 0 20px;
    font-size: 13px;
    letter-spacing: 0.02em;
    gap: 10px;
  }
  .form_box .smf-form .smf-item .smf-item__col--label {
    font-size: 14px;
  }
  .form_box .smf-form .smf-item .smf-item__col--label:before {
    font-size: 10px;
    width: 38px;
    height: 16px;
  }
  .form_box .smf-form input[type=text],
  .form_box .smf-form input[type=email],
  .form_box .smf-form input[type=tel] {
    height: 50px;
    padding: 10px 15px;
    letter-spacing: 0.02em;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
  }
  .form_box .smf-form textarea {
    width: 100%;
    height: 150px;
    padding: 10px 15px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
  }
  .form_box .smf-form .smf-radio-buttons-control__control {
    flex-direction: column;
    gap: 17px 0;
  }
  .form_box .smf-form .smf-radio-button-control input {
    width: 16px;
    height: 16px;
  }
  .form_box .smf-form .smf-radio-button-control input:checked:before {
    width: 8px;
    height: 8px;
  }
  .form_box .smf-action button {
    width: 185px;
    height: 60px;
    margin: 30px auto 0;
    font-size: 13px;
  }
  .form_box .smf-action button:hover {
    opacity: 1;
  }
  .form_box .check {
    margin: 30px 0 0;
  }
  .form_box .check .smf-checkbox-control {
    font-size: 13px;
    gap: 10px;
  }
  .form_box .check .smf-checkbox-control input[type=checkbox] {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
  }
  .form_box .check .smf-checkbox-control input[type=checkbox]:checked:before {
    background-size: 16px 16px;
  }
  .form_box .check .smf-checkbox-control a {
    text-underline-offset: 5px;
  }
  .form_box .check .smf-checkbox-control a:hover {
    opacity: 1;
  }
}
/* news detail
----------------------------------------------- */
.newsdet_teaser {
  padding: 210px 30px 65px;
  border-bottom: 1px #b7bac4 solid;
  margin: 0 0 75px;
}

.newsdet_teaser .teaser_inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.newsdet_teaser .teaser_dc {
  display: flex;
  align-items: center;
  gap: 25px;
}

.newsdet_teaser .teaser_date {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: "Manrope", sans-serif;
  color: #000;
}

.newsdet_teaser .teaser_cate {
  height: 30px;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  color: #425c7c;
  padding: 0 10px;
  border: 1px #445e7e solid;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
}

.newsdet_teaser .teaser_hd {
  font-size: 36px;
  line-height: 1.45;
  font-weight: 700;
}

.newsdet_inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 30px 170px;
}

@media (max-width: 767px) {
  .newsdet_teaser {
    padding: 80px 20px 25px;
    margin: 0 0 30px;
  }
  .newsdet_teaser .teaser_inner {
    gap: 10px;
  }
  .newsdet_teaser .teaser_dc {
    gap: 15px;
  }
  .newsdet_teaser .teaser_date {
    font-size: 11px;
    letter-spacing: 0.02em;
  }
  .newsdet_teaser .teaser_cate {
    height: 20px;
    min-width: 82px;
    font-size: 10px;
  }
  .newsdet_teaser .teaser_hd {
    font-size: 19px;
    line-height: 1.68;
  }
  .newsdet_inner {
    padding: 0 20px 75px;
  }
}
/* editor-styles-wrapper
----------------------------------------------- */
.editor-styles-wrapper {
  line-height: 2.25;
}

.editor-styles-wrapper h2 {
  margin: 80px 0 40px;
  background: #fff;
  padding: 28px 45px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.editor-styles-wrapper h2:before {
  content: "";
  background: #029183;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  z-index: 0;
  margin: 15px 0 0;
}

.editor-styles-wrapper img {
  display: block;
  margin: 60px auto;
}

.editor-styles-wrapper h3 {
  font-size: 26px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0 0 22px;
  border-bottom: 2px #d8dadf solid;
  margin: 70px 0 50px;
  position: relative;
}

.editor-styles-wrapper h3:before {
  position: absolute;
  content: "";
  background: #029183;
  width: 80px;
  height: 2px;
  left: 0;
  bottom: -2px;
  z-index: 0;
}

.editor-styles-wrapper h4 {
  font-size: 20px;
  color: #029183;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin: 60px 0 45px;
}

.editor-styles-wrapper h5 {
  margin: 40px 0;
  padding: 3px 0 3px 27px;
  border-left: 2px #1f2933 solid;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.editor-styles-wrapper blockquote {
  background: #fff;
  margin: 45px 0 80px;
  padding: 50px 60px;
}

.editor-styles-wrapper blockquote ul,
.editor-styles-wrapper blockquote ol {
  margin: 0;
}

.editor-styles-wrapper ul {
  display: flex;
  flex-direction: column;
  margin: 80px 0;
}

.editor-styles-wrapper ul li {
  padding: 0 0 0 28px;
  position: relative;
}

.editor-styles-wrapper ul li:before {
  position: absolute;
  content: "";
  background: #029183;
  width: 6px;
  height: 6px;
  left: 0;
  top: 16px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.editor-styles-wrapper ol {
  margin: 80px 0;
  display: flex;
  flex-direction: column;
}

.editor-styles-wrapper ol li {
  counter-increment: my-counter;
  padding: 0 0 0 55px;
  position: relative;
}

.editor-styles-wrapper ol li::before {
  position: absolute;
  left: 10px;
  top: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  content: counter(my-counter);
}

.editor-styles-wrapper table {
  width: 100%;
  margin: 40px 0;
  border-left: 1px #dcdee3 solid;
  border-top: 1px #dcdee3 solid;
}

.editor-styles-wrapper table th,
.editor-styles-wrapper table td {
  border-right: 1px #dcdee3 solid;
  border-bottom: 1px #dcdee3 solid;
  vertical-align: middle;
  text-align: center;
  width: 25%;
  line-height: 1.6;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.editor-styles-wrapper table th:first-child {
  width: 50%;
}

.editor-styles-wrapper table th {
  background: #525973;
  font-weight: 700;
  color: #fff;
  padding: 40px 10px;
}

.editor-styles-wrapper table td {
  padding: 30px 10px;
  background: #f2f4fb;
}

.editor-styles-wrapper table tr:nth-child(even) td {
  background: #fff;
}

@media (max-width: 767px) {
  .editor-styles-wrapper {
    line-height: 1.85;
  }
  .editor-styles-wrapper h2 {
    margin: 30px 0 20px;
    padding: 15px 30px 15px 20px;
    gap: 15px;
    font-size: 17px;
    line-height: 1.58;
  }
  .editor-styles-wrapper h2:before {
    width: 8px;
    height: 8px;
    margin: 10px 0 0;
  }
  .editor-styles-wrapper img {
    margin: 30px auto;
  }
  .editor-styles-wrapper h3 {
    font-size: 16px;
    padding: 0 0 12px;
    margin: 35px 0;
  }
  .editor-styles-wrapper h3:before {
    width: 50px;
  }
  .editor-styles-wrapper h4 {
    font-size: 15px;
    margin: 30px 0 20px;
  }
  .editor-styles-wrapper h5 {
    margin: 25px 0 20px;
    padding: 3px 0 3px 15px;
    border-left: 2px #1f2933 solid;
    font-size: 14px;
  }
  .editor-styles-wrapper blockquote {
    margin: 20px 0 30px;
    padding: 25px 20px;
  }
  .editor-styles-wrapper ul {
    margin: 30px 0;
    gap: 5px;
  }
  .editor-styles-wrapper ul li {
    padding: 0 0 0 20px;
    position: relative;
  }
  .editor-styles-wrapper ul li:before {
    top: 10px;
  }
  .editor-styles-wrapper ol {
    margin: 30px 0;
    gap: 5px;
  }
  .editor-styles-wrapper ol li {
    padding: 0 0 0 20px;
  }
  .editor-styles-wrapper ol li::before {
    left: 0;
  }
  .editor-styles-wrapper table {
    width: 100%;
    margin: 20px 0;
  }
  .editor-styles-wrapper table th,
  .editor-styles-wrapper table td {
    width: 30%;
    font-size: 12px;
    text-align: left;
  }
  .editor-styles-wrapper table th:first-child {
    width: 40%;
  }
  .editor-styles-wrapper table th {
    color: #fff;
    padding: 15px 10px;
  }
  .editor-styles-wrapper table td {
    padding: 15px 10px;
  }
}
/* case detail
----------------------------------------------- */
.casedet_inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 210px 30px 170px;
}

.casedet_main {
  display: flex;
  align-items: stretch;
  gap: 4%;
  margin: 0 0 60px;
}

.casedet_main .main_img {
  width: 306px;
  max-width: 36%;
  flex-shrink: 0;
}

.casedet_main .main_img img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.casedet_main .main_cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.casedet_main .main_nt {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.casedet_main .main_name {
  color: #029183;
  letter-spacing: 0.02em;
}

.casedet_main .main_tit {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.68;
  letter-spacing: 0.02em;
  color: #24262c;
}

.casedet_main .main_ser {
  display: flex;
  align-items: stretch;
  color: #24262c;
}

.casedet_main .main_ser .ser_tit {
  border-bottom: 1px #445e7e solid;
  padding: 0 0 10px;
  font-weight: 700;
  width: 120px;
  flex-shrink: 0;
}

.casedet_main .main_ser .ser_txt {
  flex: 1;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
  padding: 0 0 10px;
  border-bottom: 1px #b7bac4 solid;
}

.casedet_results {
  margin: 0 0 80px;
  background: #fff;
  padding: 50px 60px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
}

.casedet_results .results_tit {
  margin: 0 0 25px;
  line-height: 1.5;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.casedet_results .results_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.casedet_results .results_list li {
  position: relative;
  padding: 0 0 0 50px;
  font-size: 18px;
  line-height: 1.78;
  letter-spacing: 0.02em;
}

.casedet_results .results_list li:before {
  position: absolute;
  content: "";
  background-image: url("../img/case/check.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 25px;
  height: 25px;
  left: 0;
  top: 4px;
  z-index: 0;
}

@media (max-width: 767px) {
  .casedet_inner {
    padding: 85px 20px 75px;
  }
  .casedet_main {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
    margin: 0 0 30px;
  }
  .casedet_main .main_img {
    width: 295px;
    max-width: none;
  }
  .casedet_main .main_img img {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .casedet_main .main_cont {
    gap: 15px;
    width: 100%;
  }
  .casedet_main .main_nt {
    gap: 10px;
  }
  .casedet_main .main_name {
    font-size: 11px;
  }
  .casedet_main .main_tit {
    font-size: 19px;
  }
  .casedet_main .main_ser .ser_tit {
    padding: 0 0 5px;
    width: 90px;
    font-size: 12px;
  }
  .casedet_main .main_ser .ser_txt {
    font-size: 12px;
    padding: 0 0 5px;
  }
  .casedet_results {
    margin: 0 0 40px;
    padding: 25px 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
  }
  .casedet_results .results_tit {
    margin: 0 0 15px;
    font-size: 18px;
    letter-spacing: 0.02em;
  }
  .casedet_results .results_list {
    gap: 15px;
  }
  .casedet_results .results_list li {
    padding: 0 0 0 30px;
    font-size: 14px;
  }
  .casedet_results .results_list li:before {
    width: 16px;
    height: 16px;
    left: 0;
    top: 5px;
  }
}
.casedet_other {
  background: #dbe1ea;
  padding: 100px 0 85px;
}

.casedet_other .other_inner {
  border-top: 1px #51575d solid;
  padding: 40px 0 0;
}

.casedet_other .section_hdl {
  margin: 0 0 70px;
}

@media (max-width: 767px) {
  .casedet_other {
    padding: 60px 0;
  }
  .casedet_other .other_inner {
    padding: 20px 0 0;
  }
  .casedet_other .section_hdl {
    margin: 0 0 35px;
  }
}
/* about
----------------------------------------------- */
.about_philosophy {
  padding: 100px 0 120px;
  position: relative;
}

.about_philosophy:before {
  position: absolute;
  content: "";
  background-image: url("../img/about/bg_philosophy.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 72.43vw;
  left: 0;
  bottom: -80px;
  z-index: 0;
}

.about_philosophy .section_hdl {
  margin: 0 0 80px;
}

.about_philosophy .phil_box {
  padding: 0 50px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.about_philosophy .phil_box li:not(:last-child) {
  border-bottom: 1px #d3dae7 solid;
}

.about_philosophy .phil_box li {
  height: 158px;
  display: flex;
  align-items: center;
}

.about_philosophy .phil_box .phil_tit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #029183;
  line-height: 1;
  width: 220px;
  flex-shrink: 0;
  font-family: "Manrope", sans-serif;
  padding: 0 0 0 45px;
  position: relative;
}

.about_philosophy .phil_box .phil_tit:before {
  position: absolute;
  left: 0;
  bottom: -5px;
  content: "";
  background-image: url("../img/common/ico_logo.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-shrink: 0;
  width: 33px;
  height: 33px;
}

.about_philosophy .phil_box .phil_txt {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.36;
}

.about_philosophy .phil_box .phil_txt span {
  font-weight: 800;
}

@media (max-width: 767px) {
  .about_philosophy {
    padding: 60px 0 70px;
  }
  .about_philosophy:before {
    position: absolute;
    content: "";
    background-image: url("../img/about/bg_philosophy_sp.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 82.67vw;
    bottom: -40px;
  }
  .about_philosophy .inner {
    padding: 0 20px;
  }
  .about_philosophy .section_hdl {
    margin: 0 0 45px;
  }
  .about_philosophy .phil_box {
    padding: 0 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .about_philosophy .phil_box li {
    height: 80px;
  }
  .about_philosophy .phil_box .phil_tit {
    gap: 4px;
    font-size: 12px;
    width: 120px;
    padding: 0 0 0 32px;
  }
  .about_philosophy .phil_box .phil_tit:before {
    left: 10px;
    bottom: -2px;
    width: 18px;
    height: 18px;
  }
  .about_philosophy .phil_box .phil_txt {
    font-size: 13px;
    line-height: 1.15;
    font-weight: 500;
  }
  .about_philosophy .phil_box .phil_txt span {
    font-weight: 600;
  }
}
.about_thought {
  background: #1f2933;
  padding: 160px 0 240px;
  position: relative;
  z-index: 1;
}

.about_thought .section_hdl {
  margin: 0 0 70px;
}

.about_thought .thought_det {
  font-size: 36px;
  font-weight: 700;
  color: #e8ecf3;
  line-height: 1.45;
  letter-spacing: 0.02em;
  margin: 0 0 70px;
}

.about_thought .thought_box {
  padding: 90px 0 0 0;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.about_thought .thought_txt {
  width: 40%;
  line-height: 2.25;
  color: #e8ecf3;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.about_thought .thought_img {
  position: absolute;
  left: -25px;
  bottom: -130px;
  width: 71%;
}

.about_thought .thought_img .img_cap {
  position: absolute;
  left: 25px;
  top: 80px;
  color: #0cc9b3;
  font-size: min(22px, 2vw);
  font-weight: 500;
  line-height: 1.8;
  z-index: 0;
}

@media (max-width: 1024px) {
  .about_thought {
    padding: 160px 0;
  }
  .about_thought .thought_box {
    padding: 0;
  }
  .about_thought .thought_img {
    bottom: -60px;
    width: 70%;
  }
  .about_thought .thought_txt {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .about_thought {
    padding: 65px 0 80px;
  }
  .about_thought .section_hdl {
    margin: 0 0 45px;
  }
  .about_thought .thought_det {
    font-size: 20px;
    line-height: 1.5;
    margin: 0 0 35px;
  }
  .about_thought .thought_box {
    display: block;
  }
  .about_thought .thought_txt {
    width: 100%;
    font-size: 13px;
    line-height: 1.92;
    letter-spacing: 0.02em;
    margin: 40px 0 0;
  }
  .about_thought .thought_img {
    margin: 0 -30px;
    position: relative;
    width: auto;
    left: auto;
    bottom: auto;
  }
  .about_thought .thought_img img {
    width: 100%;
  }
  .about_thought .thought_img .img_cap {
    left: 55px;
    top: 45px;
    font-size: 2.93vw;
  }
}
.about_products {
  padding: 180px 0 175px;
}

.about_products .section_hdl {
  margin: 0 0 60px;
}

.about_products .products_det {
  margin: 0 0 110px;
  line-height: 2.25;
  letter-spacing: 0.02em;
}

.about_products .products_box + .products_box {
  margin: 60px 0 0;
}

.about_products .products_box {
  background: #fff;
  padding: 85px 30px 55px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border-radius: 40px;
}

.about_products .products_inner {
  max-width: 960px;
  margin: 0 auto;
}

.about_products .products_flex {
  display: flex;
  align-items: flex-start;
  gap: 8.5%;
  margin: 0 0 50px;
}

.about_products .products_flex .flex_media {
  width: 48.5%;
  overflow: hidden;
  flex-shrink: 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.about_products .products_flex .flex_media iframe {
  width: 100%;
  height: 260px;
  float: left;
}

.about_products .products_flex .flex_in {
  width: 43%;
}

.about_products .products_flex .flex_logo {
  margin: 0 0 55px;
}

.about_products .products_flex .flex_logo01 img {
  height: 42px;
}

.about_products .products_flex .flex_logo02 img {
  height: 38px;
}

.about_products .products_flex .flex_tit {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin: 0 0 20px;
}

.about_products .products_flex .flex_txt {
  line-height: 2.125;
  letter-spacing: 0.02em;
}

.about_products .products_feature {
  display: flex;
  gap: 15px;
  align-items: stretch;
  margin: 0 0 55px;
}

.about_products .products_feature li {
  width: calc((100% - 30px) / 3);
  border: 1px #3f566c solid;
  height: 164px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  color: #3f566c;
  gap: 15px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.about_products .products_feature .feature_tit {
  font-size: 13px;
  line-height: 1.2;
  font-family: "Manrope", sans-serif;
}

.about_products .products_feature .feature_txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.about_products .products_mv {
  display: flex;
  gap: 15px;
  margin: 0 0 60px;
}

.about_products .products_mv li {
  width: calc((100% - 30px) / 3);
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.about_products .products_mv iframe {
  width: 100%;
  height: 163px;
  float: left;
}

@media (max-width: 767px) {
  .about_products {
    padding: 70px 0;
  }
  .about_products .section_hdl {
    margin: 0 0 30px;
  }
  .about_products .products_det {
    margin: 0 0 35px;
    line-height: 1.92;
  }
  .about_products .products_box + .products_box {
    margin: 40px 0 0;
  }
  .about_products .products_box {
    padding: 50px 25px 70px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
  }
  .about_products .products_flex {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 0 0 25px;
  }
  .about_products .products_flex .flex_media {
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .about_products .products_flex .flex_media img {
    width: 100%;
  }
  .about_products .products_flex .flex_media iframe {
    width: 100%;
    height: 38.66vw;
  }
  .about_products .products_flex .flex_in {
    width: 100%;
  }
  .about_products .products_flex .flex_logo {
    margin: 0 0 35px;
  }
  .about_products .products_flex .flex_logo01 img {
    height: 30px;
  }
  .about_products .products_flex .flex_logo02 img {
    height: 24px;
  }
  .about_products .products_flex .flex_tit {
    font-size: 16px;
    line-height: 1.56;
    margin: 0 0 15px;
  }
  .about_products .products_flex .flex_txt {
    line-height: 1.92;
  }
  .about_products .products_feature {
    flex-direction: column;
    gap: 10px;
    margin: 0 0 50px;
  }
  .about_products .products_feature li {
    width: 100%;
    height: auto;
    min-height: 70px;
    padding: 10px;
    gap: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .about_products .products_feature .feature_tit {
    font-size: 10px;
  }
  .about_products .products_feature .feature_txt {
    font-size: 14px;
  }
  .about_products .products_mv {
    flex-direction: column;
    gap: 20px;
    margin: 0 0 50px;
  }
  .about_products .products_mv li {
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .about_products .products_mv iframe {
    height: 40vw;
  }
}
/* company
----------------------------------------------- */
.company_overview {
  padding: 95px 0 120px;
  position: relative;
}

.company_overview:before {
  position: absolute;
  content: "";
  background-image: url("../img/company/bg_overview.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 97.68vw;
  left: 0;
  bottom: -80px;
  z-index: 0;
}

.company_overview .section_hdl {
  margin: 0 0 35px;
}

.company_overview .overview_table {
  max-width: 1000px;
  margin: 0 auto 65px;
}

.company_overview .overview_table table {
  width: 100%;
}

.company_overview .overview_table table th,
.company_overview .overview_table table td {
  vertical-align: top;
  font-size: 18px;
  font-weight: 500;
  padding: 35px 0;
}

.company_overview .overview_table table th {
  width: 20%;
  font-weight: 700;
  border-bottom: 1px #445e7e solid;
}

.company_overview .overview_table table td {
  border-bottom: 1px #b7bac4 solid;
}

.company_overview .overview_table .list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.company_overview .overview_box {
  background: #fff;
  padding: 50px 20px;
  display: flex;
  align-items: stretch;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border-radius: 40px;
}

.company_overview .sap_silver {
  display: flex;
  align-items: center;
  padding: 10px 40px;
  gap: 40px;
}

.company_overview .sap_silver .silver_logo {
  width: 195px;
  flex-shrink: 0;
}

.company_overview .sap_silver .silver_tit {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
}

.company_overview .sap_silver .silver_txt {
  line-height: 1.75;
  font-weight: 500;
}

.company_overview .sap_iso {
  border-left: 2px #b7bac4 solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  gap: 20px;
  flex-shrink: 0;
}

.company_overview .sap_iso .iso_txt {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.company_overview .sap_iso .iso_ico {
  width: 100px;
}

@media (max-width: 1024px) {
  .company_overview .sap_silver {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .company_overview {
    padding: 60px 0 70px;
  }
  .company_overview:before {
    background-image: url("../img/company/bg_overview_sp.png");
    height: 178.4vw;
    bottom: -40px;
  }
  .company_overview .section_hdl {
    margin: 0 0 25px;
  }
  .company_overview .overview_table {
    margin: 0 auto 50px;
  }
  .company_overview .overview_table table th,
  .company_overview .overview_table table td {
    font-size: 14px;
    padding: 25px 0;
  }
  .company_overview .overview_table table th {
    width: 32%;
  }
  .company_overview .overview_table .list {
    gap: 5px;
  }
  .company_overview .overview_box {
    padding: 0 30px;
    flex-direction: column;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
  }
  .company_overview .sap_silver {
    flex-direction: column;
    align-items: center;
    padding: 30px 0 20px;
    gap: 25px;
  }
  .company_overview .sap_silver .silver_logo {
    width: 130px;
  }
  .company_overview .sap_silver .silver_tit {
    font-size: 16px;
    margin: 0 0 10px;
  }
  .company_overview .sap_silver .silver_txt {
    line-height: 1.92;
  }
  .company_overview .sap_iso {
    border-left: none;
    border-top: 1px #b7bac4 solid;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 25px 5px 25px 0;
    gap: 10px;
  }
  .company_overview .sap_iso .iso_txt {
    font-size: 12px;
  }
  .company_overview .sap_iso .iso_ico {
    width: 81px;
    flex-shrink: 0;
  }
}
.company_message {
  background: #1f2933;
  overflow: hidden;
  padding: 80px 0 100px;
  position: relative;
  z-index: 1;
}

.company_message .message_dec01 {
  position: absolute;
  left: 40px;
  top: 124px;
  z-index: 0;
}

.company_message .message_dec02 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.company_message .message_dec03 {
  position: absolute;
  right: 70px;
  bottom: 173px;
  z-index: 0;
}

.company_message .message_inner {
  border-top: 1px #51575d solid;
  padding: 45px 0 0;
  color: #e8ecf3;
}

.company_message .section_hdl {
  margin: 0 0 30px;
}

.company_message .message_det {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
  margin: 0 0 60px;
}

.company_message .message_cont {
  max-width: 860px;
  margin: 0 auto;
}

.company_message .message_txt {
  line-height: 2.25;
  margin: 0 0 50px;
}

.company_message .message_name {
  text-align: right;
  font-weight: 700;
}

.company_message .message_name .name_lar {
  margin: 5px 0 0;
  display: block;
  font-size: 26px;
}

@media (max-width: 767px) {
  .company_message {
    padding: 40px 0 60px;
  }
  .company_message .message_dec01 {
    left: 10px;
    top: 140px;
    width: 145px;
  }
  .company_message .message_dec02 {
    width: 240px;
  }
  .company_message .message_dec03 {
    right: 15px;
    bottom: auto;
    top: 90px;
    width: 55px;
    z-index: 0;
  }
  .company_message .message_inner {
    padding: 30px 0 0;
  }
  .company_message .message_det {
    font-size: 20px;
    line-height: 1.5;
    margin: 0 0 25px;
  }
  .company_message .message_txt {
    line-height: 1.92;
    margin: 0 0 25px;
  }
  .company_message .message_name .name_lar {
    font-size: 18px;
  }
}
.company_history {
  padding: 100px 0 55px;
}

.company_history .history_mess {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 0 50px;
}

.company_history .history_navi {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.company_history .history_arrow {
  width: 90px;
  height: 50px;
  background-color: #202a34;
  background-image: url("../img/common/arrow_s_wh.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 10px 10px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
}

.company_history .history_arrow:hover {
  opacity: 0.5;
}

.company_history .history_prev {
  transform: rotate(180deg);
}

.company_history .history_slider .slick-list {
  overflow: visible;
}

.company_history .history_item {
  width: 220px;
  outline: none;
}

.company_history .history_item .history_item_year {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.company_history .history_item .history_item_in {
  border-top: 2px #d0cece solid;
  margin: 25px 0 0;
  padding: 40px 5px 0 0;
  position: relative;
}

.company_history .history_item .history_item_in:before {
  position: absolute;
  content: "";
  background: #029183;
  width: 10px;
  height: 10px;
  left: 0;
  top: -6px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.company_history .history_item .history_item_in:after {
  position: absolute;
  content: "";
  background: #029183;
  opacity: 0.1;
  width: 30px;
  height: 30px;
  left: -10px;
  top: -16px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.company_history .history_item .history_item_month {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.company_history .history_item .history_item_txt {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.86;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .company_history {
    padding: 60px 0 40px;
  }
  .company_history .history_mess {
    gap: 10px;
    margin: 0 0 55px;
  }
  .company_history .history_navi {
    gap: 5px;
    flex-shrink: 0;
  }
  .company_history .history_arrow {
    width: 45px;
    height: 25px;
    background-size: 5px 5px;
  }
  .company_history .history_arrow:hover {
    opacity: 1;
  }
  .company_history .history_item {
    width: 155px;
    outline: none;
  }
  .company_history .history_item .history_item_year {
    font-size: 20px;
  }
  .company_history .history_item .history_item_in {
    border-top: 1px #d0cece solid;
    padding: 25px 5px 0 0;
  }
  .company_history .history_item .history_item_in:before {
    width: 9px;
    height: 9px;
    top: -5px;
  }
  .company_history .history_item .history_item_in:after {
    width: 23px;
    height: 23px;
    left: -7px;
    top: -12px;
  }
  .company_history .history_item .history_item_txt {
    font-size: 10px;
    line-height: 1.9;
    margin: 5px 0 0;
  }
}
.company_office {
  padding: 55px 0 120px;
}

.company_office .section_hdl {
  margin: 0 0 55px;
}

@media (max-width: 767px) {
  .company_office {
    padding: 40px 0 70px;
  }
  .company_office .section_hdl {
    margin: 0 0 35px;
  }
}
/* service
----------------------------------------------- */
.service_erp {
  padding: 65px 0 90px;
  position: relative;
}

.service_erp:before {
  position: absolute;
  content: "";
  background-image: url("../img/service/bg_erp.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  bottom: -80px;
  left: 0;
  height: 87.64vw;
  z-index: 0;
}

.service_erp .erp_hd {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.73;
  margin: 0 0 65px;
}

.service_erp .erp_hd span {
  font-weight: 800;
}

.service_erp .erp_box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service_erp .erp_box .erp_txt {
  padding: 10px 0 0;
  line-height: 2;
  letter-spacing: 0.02em;
  width: 39%;
  font-weight: 500;
}

.service_erp .erp_box .erp_img {
  max-width: 54%;
}

.service_erp .erp_box .erp_img img {
  width: 589px;
}

@media (max-width: 767px) {
  .service_erp {
    padding: 50px 0 70px;
  }
  .service_erp:before {
    background-image: url("../img/service/bg_erp_sp.png");
    bottom: -40px;
    height: 164.6vw;
  }
  .service_erp .erp_hd {
    font-size: 21px;
    line-height: 1.52;
    margin: 0 0 30px;
  }
  .service_erp .erp_box {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .service_erp .erp_box .erp_txt {
    padding: 0;
    line-height: 1.92;
    letter-spacing: 0.02em;
    width: 100%;
  }
  .service_erp .erp_box .erp_img {
    max-width: none;
    margin: 0 -10px;
  }
  .service_erp .erp_box .erp_img img {
    width: 100%;
  }
}
.service_case {
  background: #1f2933;
  padding: 100px 0 115px;
  position: relative;
  z-index: 1;
}

.service_case .case_inner {
  border-top: 1px #51575d solid;
  padding: 40px 0 0;
}

.service_case .section_hdl {
  margin: 0 0 75px;
}

@media (max-width: 767px) {
  .service_case {
    padding: 45px 0 80px;
  }
  .service_case .case_inner {
    padding: 25px 0 0;
  }
  .service_case .section_hdl {
    margin: 0 0 45px;
  }
}
.service_feat {
  overflow: hidden;
  margin: -80px 0 0;
  padding: 160px 0 140px;
  background: linear-gradient(to bottom, #029183, #00607c);
  position: relative;
}

.service_feat:before {
  position: absolute;
  content: "";
  background-image: url("../img/service/kirakira_feature.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 359px;
  height: 819px;
  bottom: 35px;
  right: 70px;
  z-index: 0;
}

.service_feat .section_hdl {
  margin: 0 0 75px;
}

.service_feat .feat_inner {
  border-top: 1px #48afb7 solid;
  padding: 45px 0 0;
}

.service_feat .feat_box {
  position: relative;
}

.service_feat .feat_box:before {
  position: absolute;
  content: "";
  background-image: url("../img/service/frame_feature.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 750px;
  height: 942px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.service_feat .feat_list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.service_feat .feat_list li {
  padding: 60px 50px;
  color: #fbfbfb;
  width: calc((100% - 20px) / 2);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  background: radial-gradient(circle at center, #168288, #439ca0);
}

.service_feat .feat_list .list_cap {
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
}

.service_feat .feat_list .list_tit {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 45px;
  letter-spacing: 0.05em;
}

.service_feat .feat_list .list_txt {
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.service_feat .feat_list .list_tit .ff_montserrat {
  font-weight: 500;
}

@media (max-width: 1024px) {
  .service_feat .feat_list li {
    padding: 30px 25px;
  }
}
@media (max-width: 767px) {
  .service_feat {
    margin: -40px 0 0;
    padding: 95px 0 70px;
  }
  .service_feat:before {
    width: 180px;
    height: 411px;
    bottom: 0;
    right: -3px;
  }
  .service_feat .section_hdl {
    margin: 0 0 45px;
  }
  .service_feat .feat_inner {
    padding: 30px 0 0;
  }
  .service_feat .feat_box:before {
    width: 375px;
    height: 471px;
    left: auto;
    right: -145px;
    top: 35px;
    transform: translate(0, 0);
    z-index: 0;
  }
  .service_feat .feat_list {
    flex-direction: column;
  }
  .service_feat .feat_list li {
    padding: 40px 25px;
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .service_feat .feat_list .list_cap {
    font-size: 11px;
    margin: 0 0 10px;
  }
  .service_feat .feat_list .list_tit {
    font-size: 16px;
    line-height: 1.43;
    margin: 0 0 25px;
  }
  .service_feat .feat_list .list_txt {
    line-height: 1.77;
  }
}
.service_profess {
  padding: 100px 0 120px;
  position: relative;
}

.service_profess .section_hdl {
  margin: 0 0 45px;
}

.service_profess .profess_det {
  margin: 0 0 65px;
}

@media (max-width: 767px) {
  .service_profess {
    padding: 70px 0;
  }
  .service_profess .section_hdl {
    margin: 0 0 30px;
  }
  .service_profess .profess_det {
    margin: 0 0 35px;
  }
}
/* thanks
----------------------------------------------- */
.thanks_block {
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(31, 41, 51, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  z-index: 999;
}

.thanks_block .thanks_inner {
  width: 1100px;
  max-width: 100%;
  padding: 90px 40px 100px;
  background: #fff;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border-radius: 40px;
  position: relative;
}

.thanks_block .thanks_close {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 40px;
  cursor: pointer;
  z-index: 1;
}

.thanks_block .thanks_tit {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 25px;
}

.thanks_block .thanks_txt {
  font-weight: 500;
  line-height: 2.125;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0 0 30px;
}

@media (max-width: 767px) {
  .thanks_block {
    padding: 20px;
  }
  .thanks_block .thanks_inner {
    padding: 45px 20px 50px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
  }
  .thanks_block .thanks_close {
    right: 20px;
    top: 15px;
    width: 25px;
  }
  .thanks_block .thanks_tit {
    font-size: 16px;
    line-height: 1.68;
    margin: 0 0 20px;
  }
  .thanks_block .thanks_txt {
    line-height: 1.85;
    margin: 0 0 25px;
  }
}
/* top
----------------------------------------------- */
body.top {
  background: #fff;
}

body.top #header .header_in {
  background: rgb(251, 251, 251);
}

html:has(#topArticle:not([data-anim=done])):has(.top-first-movie) {
  overflow: clip;
  overscroll-behavior: none;
}
html:has(#topArticle:not([data-anim=done])) #header {
  opacity: 0;
  transition: opacity 0.5s;
  transition-delay: 2s;
}

html:has(#topArticle.top-animate) #header {
  opacity: 1;
}

article#topArticle:not([data-anim=done]).top-animate .top_main video {
  opacity: 1;
}
article#topArticle:not([data-anim=done]).top-animate .top_main .main_inner,
article#topArticle:not([data-anim=done]).top-animate .top_main .scroll_swiper {
  opacity: 1;
}
article#topArticle:not([data-anim=done]).top-animate .top_about,
article#topArticle:not([data-anim=done]).top-animate .top_service {
  opacity: 1;
}
article#topArticle:not([data-anim=done]) .top_main video {
  opacity: 0;
  transition: opacity 1.5s;
}
article#topArticle:not([data-anim=done]) .top_main .main_inner,
article#topArticle:not([data-anim=done]) .top_main .scroll_swiper {
  opacity: 0;
  transition: opacity 0.5s;
  transition-delay: 2s;
}
article#topArticle:not([data-anim=done]) .top_about,
article#topArticle:not([data-anim=done]) .top_service {
  opacity: 0;
  transition: opacity 0.3s;
  transition-delay: 2s;
}

.top-first-movie {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.top-first-movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_main {
  background: #000;
  padding: 450px 0 0;
  margin: 0 0 -175px;
  position: relative;
}

.top_main video {
  position: absolute;
  right: 0;
  top: 0;
  width: 800px;
  z-index: 0;
}

.top_main .main_inner {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.top_main .main_hd {
  font-size: 91px;
  color: #fff;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.top_main .main_det {
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.27;
  letter-spacing: 0.09em;
  margin: 0 0 10px;
}

.top_main .main_cap {
  font-weight: 300;
  color: #029183;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  max-width: 450px;
  margin: 0 0 50px;
}

.top_main .main_btn {
  margin: 0 0 230px;
}

.top_main .main_btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.15em;
  width: 320px;
  height: 85px;
  padding: 0 30px;
  background: linear-gradient(to bottom right, #3ba492, #1d786f);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  position: relative;
}

.top_main .main_btn a:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.25);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.top_main .main_btn .btn_eng {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.top_main .main_btn a:hover {
  opacity: 0.5;
}

.top_main .main_cloud {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 120px;
}

.top_main .main_cloud .cloud_hd {
  font-size: 24px;
  font-weight: 700;
  color: #3ba492;
  flex-shrink: 0;
}

.top_main .main_cloud .cloud_det {
  font-size: 52px;
  color: #fbfbfb;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 50px;
}

.top_main .main_cloud .cloud_txt {
  font-size: 18px;
  font-weight: 500;
  color: #aaa;
  letter-spacing: 0.02em;
  line-height: 2.22;
}

.scroll_swiper {
  overflow: hidden;
}

.scroll_swiper .scroll_list {
  display: flex;
  align-items: flex-start;
  gap: 0 80px;
  white-space: nowrap;
  width: max-content;
}

.scroll_swiper .scroll_list li {
  flex-shrink: 0;
}

.scroll_swiper .scroll_list li:nth-child(even) {
  margin: 70px 0 0;
}

.scroll_swiper .scroll_list li img {
  width: 380px;
}

@media (max-width: 1024px) {
  .top_main video {
    right: 0;
    top: 0;
    width: 500px;
  }
  .top_main .main_btn {
    margin: 0 0 150px;
  }
}
@media (max-width: 767px) {
  .top_main {
    padding: 410px 0 0;
    margin: 0 0 -90px;
  }
  .top_main video {
    right: 0;
    top: 0;
    width: 400px;
    z-index: 0;
  }
  .top_main .main_hd {
    font-size: min(46px, 12.27vw);
  }
  .top_main .main_det {
    font-size: 18px;
    margin: 0 0 5px;
  }
  .top_main .main_cap {
    font-size: 9px;
    max-width: 260px;
    margin: 0 0 35px;
  }
  .top_main .main_btn {
    margin: 0 0 85px;
  }
  .top_main .main_btn a {
    gap: 2px;
    font-size: 8px;
    letter-spacing: 0.15em;
    width: 175px;
    height: 46px;
    padding: 0 15px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    position: relative;
  }
  .top_main .main_btn a:before {
    width: 5px;
    height: 5px;
    right: 10px;
  }
  .top_main .main_btn .btn_eng {
    font-size: 10px;
  }
  .top_main .main_btn a:hover {
    opacity: 1;
  }
  .top_main .main_cloud {
    flex-direction: column;
    gap: 30px;
    margin: 0 0 70px;
  }
  .top_main .main_cloud .cloud_hd {
    font-size: 12px;
  }
  .top_main .main_cloud .cloud_det {
    font-size: 27px;
    margin: 0 0 40px;
  }
  .top_main .main_cloud .cloud_txt {
    font-size: 14px;
    line-height: 2.07;
  }
  .scroll_swiper {
    overflow: hidden;
  }
  .scroll_swiper .scroll_list {
    gap: 0 40px;
  }
  .scroll_swiper .scroll_list li {
    flex-shrink: 0;
  }
  .scroll_swiper .scroll_list li:nth-child(even) {
    margin: 40px 0 0;
  }
  .scroll_swiper .scroll_list li img {
    width: 190px;
  }
}
.top_hdl {
  padding: 0 0 0 42px;
  position: relative;
  color: #1f2933;
  font-weight: 800;
  font-size: 60px;
  line-height: 1;
  font-family: "Manrope", sans-serif;
}

.top_hdl:before {
  position: absolute;
  content: "";
  background-image: url("../img/common/ico_logo.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  left: 5px;
  top: 10px;
  width: 25px;
  height: 25px;
  z-index: 0;
}

.top_hdl.white {
  color: #fbfbfb;
}

@media (max-width: 767px) {
  .top_hdl {
    padding: 0 0 0 20px;
    font-size: 30px;
  }
  .top_hdl:before {
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
  }
}
.top_about {
  background: #fbfbfb;
  padding: 125px 30px 85px;
  margin: 0 0 -80px;
  position: relative;
  z-index: 1;
}

.top_about .top_about_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 35px 0 0;
  border-top: 1px #b7bac4 solid;
}

.top_about .top_hdl {
  margin: 0 0 40px;
}

.top_about .top_about_box {
  margin: 0 0 60px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 9%;
}

.top_about .top_about_box .box_img {
  width: 420px;
  padding: 10px 0 0;
  max-width: 38.5%;
  flex-shrink: 0;
}

.top_about .top_about_box .box_det {
  font-size: 44px;
  font-weight: 700;
  margin: 0 0 65px;
  letter-spacing: 0.05em;
}

.top_about .top_about_box .box_txt {
  line-height: 2.25;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .top_about {
    padding: 60px 30px 55px;
    margin: 0 0 -40px;
  }
  .top_about .top_about_inner {
    padding: 20px 0 0;
  }
  .top_about .top_hdl {
    margin: 0 0 20px;
  }
  .top_about .top_about_box {
    margin: 0 0 45px;
    flex-direction: column;
    align-items: center;
    gap: 50px 0;
  }
  .top_about .top_about_box .box_img {
    width: 100%;
    padding: 0;
    max-width: none;
  }
  .top_about .top_about_box .box_cont {
    width: 100%;
  }
  .top_about .top_about_box .box_det {
    font-size: 22px;
    margin: 0 0 35px;
  }
  .top_about .top_about_box .box_txt {
    font-size: 14px;
    line-height: 2.07;
    letter-spacing: 0.02em;
  }
}
.top_service {
  background: linear-gradient(to bottom, #029183, #00607c);
  padding: 255px 30px 200px;
  margin: 0 0 -80px;
  position: relative;
}

.top_service .top_hdl {
  margin: 0 0 80px;
}

.top_service .top_service_inner {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px #48afb7 solid;
  padding: 40px 0 0;
}

.top_service .top_service_box {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  padding: 0 50px 100px 0;
  position: relative;
}

.top_service .top_service_box .box_det {
  font-size: 40px;
  font-weight: 700;
  color: #fbfbfb;
}

.top_service .top_service_box .box_circle {
  margin: 35px 0 0;
  flex-shrink: 0;
  position: relative;
}

.top_service .top_service_box .box_circle:before {
  position: absolute;
  content: "";
  background-image: url("../img/top/kirakira_service.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  top: -90px;
  right: -130px;
  width: 360px;
  height: 820px;
  z-index: 0;
}

.top_service .top_service_box .box_circle .circle_in img {
  width: 424px;
}

.top_service .top_service_box .box_circle .circle_cont {
  position: absolute;
  width: 290px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.top_service .top_service_box .box_circle .circle_01 {
  top: -135px;
  right: -30px;
}

.top_service .top_service_box .box_circle .circle_02 {
  top: 130px;
  right: -85px;
}

.top_service .top_service_box .box_circle .circle_03 {
  top: 380px;
  right: 190px;
}

.top_service .top_service_box .box_circle .circle_04 {
  top: 100px;
  right: 250px;
}

.top_service .top_service_box .box_circle .circle_cont:before {
  position: absolute;
  content: "";
  right: 0;
  top: 15px;
  width: 320px;
  height: 220px;
  transform: rotate(-35deg);
  background: radial-gradient(circle at center, #168288, #439ca0);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.top_service .top_service_box .box_circle .circle_txt {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.66;
  color: #fbfbfb;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.top_service .top_service_box .box_circle .circle_txt .ff_montserrat {
  font-weight: 500;
}

.top_service .top_service_box .com_links {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 1200px) {
  .top_service .top_service_box .box_det {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .top_service .top_service_box {
    flex-direction: column;
    align-items: center;
    gap: 120px;
    padding: 0;
  }
  .top_service .top_service_box .box_det {
    width: 100%;
  }
  .top_service .top_service_box .com_links {
    position: static;
    margin: 140px 0 0;
  }
}
@media (max-width: 767px) {
  .top_service {
    padding: 115px 30px 90px;
    margin: 0 0 -40px;
  }
  .top_service .top_hdl {
    margin: 0 0 40px;
  }
  .top_service .top_service_inner {
    padding: 20px 0 0;
  }
  .top_service .top_service_box {
    gap: 120px;
  }
  .top_service .top_service_box .box_det {
    font-size: 20px;
  }
  .top_service .top_service_box .box_circle {
    margin: 0 0 0 15px;
  }
  .top_service .top_service_box .box_circle:before {
    background-image: url("../img/top/kirakira_service_sp.png");
    top: -95px;
    right: -65px;
    width: 210px;
    height: 459px;
  }
  .top_service .top_service_box .box_circle .circle_in img {
    width: 212px;
  }
  .top_service .top_service_box .box_circle .circle_cont {
    width: 145px;
    height: 125px;
  }
  .top_service .top_service_box .box_circle .circle_01 {
    top: -72px;
    right: -15px;
  }
  .top_service .top_service_box .box_circle .circle_02 {
    top: 65px;
    right: -35px;
  }
  .top_service .top_service_box .box_circle .circle_03 {
    top: 190px;
    right: 97px;
  }
  .top_service .top_service_box .box_circle .circle_04 {
    top: 50px;
    right: 118px;
  }
  .top_service .top_service_box .box_circle .circle_cont:before {
    top: 8px;
    width: 150px;
    height: 110px;
  }
  .top_service .top_service_box .box_circle .circle_txt {
    font-size: 10px;
    line-height: 1.7;
  }
  .top_service .top_service_box .com_links {
    position: static;
    margin: 0;
  }
}
.top_case {
  background: #1f2933;
  padding: 125px 30px 130px;
  position: relative;
  z-index: 1;
}

.top_case .top_case_inner {
  padding: 40px 0 0;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px #51575d solid;
}

.top_case .top_hdl {
  margin: 0 0 55px;
}

.top_case .top_case_mess {
  display: flex;
  align-items: center;
  gap: 100px;
  margin: 0 0 60px;
  color: #fbfbfb;
}

.top_case .top_case_det {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.top_case .top_case_txt {
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .top_case {
    padding: 60px 30px 75px;
  }
  .top_case .top_case_inner {
    padding: 20px 0 0;
  }
  .top_case .top_hdl {
    margin: 0 0 30px;
  }
  .top_case .top_case_mess {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin: 0 0 50px;
  }
  .top_case .top_case_det {
    font-size: 20px;
  }
  .top_case .top_case_txt {
    font-size: 11px;
    line-height: 1.63;
  }
}
.top_mc {
  background: #e8ecf3;
  padding: 180px 30px 90px;
  margin: -80px 0 0;
  display: flex;
  flex-direction: column;
  gap: 200px;
}

.top_mc .top_mc_inner {
  border-top: 1px #b7bac4 solid;
  padding: 40px 0 0;
  max-width: 1100px;
  margin: 0 auto;
}

.top_media .top_hdl {
  margin: 0 0 70px;
}

.top_media .top_media_box + .top_media_box {
  margin: 60px 0 0;
}

.top_media .top_media_box {
  display: flex;
  align-items: flex-start;
  gap: 0 8.2%;
}

.top_media .top_media_img {
  width: 42.1%;
  overflow: hidden;
  flex-shrink: 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.top_media .top_media_img iframe {
  float: left;
  width: 100%;
  height: 260px;
}

.top_media .top_media_logo img {
  height: 40px;
}

.top_media .top_media_logo.logo_sap {
  margin: 0 0 45px;
}

.top_media .top_media_logo.logo_sapch {
  margin: 0 0 70px;
}

.top_media .top_media_tit {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin: 0 0 20px;
}

.top_media .top_media_txt {
  line-height: 2.25;
  margin: 0 0 10px;
}

.top_media .top_media_link {
  display: flex;
  justify-content: flex-end;
}

.top_media .top_media_link a {
  display: block;
  padding: 0 6px 18px 3px;
  width: 240px;
  border-bottom: 1px #1f2933 solid;
}

.top_media .top_media_link .link_in {
  display: block;
  background-image: url("../img/common/arrow_blank_bk.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 8px 8px;
}

.top_media .top_media_link a:hover {
  opacity: 0.5;
}

@media (max-width: 767px) {
  .top_mc {
    padding: 115px 30px 60px;
    margin: -40px 0 0;
    gap: 125px;
  }
  .top_mc .top_mc_inner {
    padding: 20px 0 0;
  }
  .top_media .top_hdl {
    margin: 0 0 50px;
  }
  .top_media .top_media_box + .top_media_box {
    margin: 90px 0 0;
  }
  .top_media .top_media_box {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .top_media .top_media_img {
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .top_media .top_media_img img {
    width: 100%;
  }
  .top_media .top_media_img iframe {
    height: 46.66vw;
  }
  .top_media .top_media_logo img {
    height: 25px;
  }
  .top_media .top_media_logo.logo_sap {
    margin: 0 0 25px;
  }
  .top_media .top_media_logo.logo_sapch {
    margin: 0 0 25px;
  }
  .top_media .top_media_tit {
    font-size: 15px;
    line-height: 1.73;
    letter-spacing: 0.02em;
    margin: 0 0 25px;
  }
  .top_media .top_media_txt {
    line-height: 1.93;
    margin: 0 0 60px;
    font-size: 14px;
  }
  .top_media .top_media_link a {
    padding: 0 5px 15px 2px;
    width: 200px;
  }
  .top_media .top_media_link .link_in {
    background-size: 6px 6px;
  }
  .top_media .top_media_link a:hover {
    opacity: 1;
  }
}
.top_company .top_hdl {
  margin: 0 0 100px;
}

.top_company .top_company_box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  gap: 20px;
}

.top_company .top_company_cont {
  width: 36%;
  padding: 0 0 100px;
}

.top_company .top_company_img {
  align-self: flex-start;
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
  padding: 30px 0 0;
  width: 56%;
}

.top_company .top_company_img img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.top_company .top_company_img .img_left {
  width: 51.7%;
  margin: 0 -19% 0 0;
  position: relative;
}

.top_company .top_company_img .img_right {
  width: 67.5%;
  flex-shrink: 0;
  margin: 0 0 100px;
}

.top_company .top_company_txt {
  line-height: 2.25;
  letter-spacing: 0.02em;
}

.top_company .com_links {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .top_company .top_hdl {
    margin: 0 0 40px;
  }
  .top_company .top_company_box {
    flex-direction: column;
    gap: 35px;
    padding: 0 0 95px;
  }
  .top_company .top_company_cont {
    width: 100%;
    padding: 0;
  }
  .top_company .top_company_img {
    display: flex;
    align-items: flex-end;
    padding: 0;
    width: 100%;
  }
  .top_company .top_company_img img {
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .top_company .top_company_img .img_left {
    width: 51.5%;
    margin: 0 -18.5 0 0;
  }
  .top_company .top_company_img .img_right {
    margin: 0 0 50px;
  }
  .top_company .top_company_txt {
    line-height: 1.93;
    font-size: 14px;
    letter-spacing: 0.02em;
  }
  .top_company .com_links {
    width: 100%;
  }
}
.top_recruit {
  overflow: hidden;
  background: linear-gradient(to bottom right, #029183, #00607c);
  position: relative;
  height: 500px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #e8ecf3;
}

.top_recruit:before {
  position: absolute;
  content: "";
  background-image: url("../img/top/bg_recruit.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 615px;
  height: 500px;
  top: 0;
  left: 50px;
  z-index: 0;
}

.top_recruit .top_recruit_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.top_recruit .top_recruit_hd {
  text-align: center;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  line-height: 1;
  margin: 0 0 40px;
  font-size: 60px;
}

.top_recruit .top_recruit_det {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.21;
  letter-spacing: 0.02em;
}

.top_recruit .top_recruit_txt {
  font-size: 14px;
  letter-spacing: 0.02em;
  margin: 0 0 55px;
}

@media (max-width: 767px) {
  .top_recruit {
    height: 375px;
    padding: 10px;
  }
  .top_recruit:before {
    position: absolute;
    content: "";
    background-image: url("../img/top/bg_recruit_sp.png");
    width: 172px;
    height: 375px;
    top: 0;
    left: 0;
  }
  .top_recruit .top_recruit_hd {
    margin: 0 0 35px;
    font-size: 30px;
  }
  .top_recruit .top_recruit_det {
    margin: 0 0 17px;
    font-size: 16px;
  }
  .top_recruit .top_recruit_txt {
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 35px;
  }
}
.top_news {
  padding: 120px 30px 90px;
}

.top_news .top_news_inner {
  border-top: 1px #b7bac4 solid;
  padding: 40px 0 0;
  max-width: 1100px;
  margin: 0 auto;
}

.top_news .top_hdl {
  margin: 0 0 75px;
}

.top_news .top_news_box {
  display: flex;
  align-items: flex-start;
  gap: 7.3%;
}

.top_news .com_links {
  flex-shrink: 0;
}

.top_news .top_news_cont {
  flex: 1;
}

.top_news .top_news_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.top_news .top_news_list .top_news_item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #e8ecf3;
  position: relative;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  padding: 40px 150px 35px 50px;
}

.top_news .top_news_list .top_news_item:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  border: 1px #dadade solid;
  background-image: url(../img/common/arrow_m_gy.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 11px 11px;
  background-color: #fff;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  -webkit-transition: all 0.3s !important;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.top_news .top_news_list .top_news_item:hover:before {
  border: 1px #029183 solid;
  background-image: url("../img/common/arrow_m_gr.png");
}

.top_news .top_news_list .top_news_dc {
  display: flex;
  align-items: center;
  gap: 25px;
}

.top_news .top_news_list .top_news_date {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  font-family: "Manrope", sans-serif;
}

.top_news .top_news_list .top_news_cate {
  border: 1px #425c7c solid;
  height: 30px;
  font-size: 15px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #425c7c;
  padding: 5px 15px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
}

.top_news .top_news_list .top_news_txt {
  font-size: 17px;
  line-height: 1.7;
}

.top_news .top_news_list .top_news_item:hover .top_news_txt {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .top_news .top_news_box {
    flex-direction: column-reverse;
    align-items: center;
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .top_news {
    padding: 75px 30px 50px;
  }
  .top_news .top_news_inner {
    padding: 20px 0 0;
  }
  .top_news .top_hdl {
    margin: 0 0 35px;
  }
  .top_news .top_news_box {
    gap: 30px;
  }
  .top_news .top_news_list {
    gap: 25px;
  }
  .top_news .top_news_list .top_news_item {
    gap: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    padding: 20px 60px 25px 20px;
  }
  .top_news .top_news_list .top_news_item:before {
    width: 26px;
    height: 26px;
    background-size: 6px 6px;
    right: 18px;
  }
  .top_news .top_news_list .top_news_item:hover:before {
    border: 1px #dadade solid;
    background-image: url("../img/common/arrow_m_gy.png");
  }
  .top_news .top_news_list .top_news_dc {
    gap: 12px;
  }
  .top_news .top_news_list .top_news_date {
    font-size: 11px;
  }
  .top_news .top_news_list .top_news_cate {
    height: 20px;
    font-size: 10px;
    padding: 2px 10px;
  }
  .top_news .top_news_list .top_news_txt {
    font-size: 13px;
    line-height: 1.92;
  }
  .top_news .top_news_list .top_news_item:hover .top_news_txt {
    text-decoration: none;
  }
}
.top_cta {
  padding: 0 30px;
  margin: 0 0 90px;
}

.top_cta .top_cta_box {
  max-width: 1320px;
  margin: 0 auto;
}

.top_cta .top_cta_box .top_cta_item {
  height: 290px;
  display: flex;
  align-items: center;
  padding: 0 95px 0 150px;
  color: #e8ecf3;
  background: linear-gradient(to bottom right, #68829d, #425c7c);
  gap: 80px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
}

.top_cta .top_cta_box .top_cta_item:hover {
  opacity: 0.5;
}

.top_cta .top_cta_box .top_cta_hd {
  flex-shrink: 0;
  font-size: 60px;
  line-height: 1;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
}

.top_cta .top_cta_box .top_cta_txt {
  flex: 1;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 2.57;
  padding: 0 100px 0 0;
  position: relative;
}

.top_cta .top_cta_box .top_cta_txt:before {
  position: absolute;
  content: "";
  width: 90px;
  height: 90px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #6d84a1;
  background-image: url("../img/common/arrow_s_wh.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 10px 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

@media (max-width: 1024px) {
  .top_cta .top_cta_box .top_cta_item {
    padding: 0 50px;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .top_cta {
    padding: 0 10px;
    margin: 0 0 55px;
  }
  .top_cta .top_cta_box .top_cta_item {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 35px 30px 40px;
    gap: 45px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
  }
  .top_cta .top_cta_box .top_cta_item:hover {
    opacity: 1;
  }
  .top_cta .top_cta_box .top_cta_hd {
    font-size: 30px;
  }
  .top_cta .top_cta_box .top_cta_txt {
    width: 100%;
    font-size: 11px;
    letter-spacing: 0.02em;
    line-height: 1.81;
    padding: 0 85px 0 0;
  }
  .top_cta .top_cta_box .top_cta_txt:before {
    width: 45px;
    height: 45px;
    right: 0;
    top: auto;
    bottom: 0;
    transform: translateY(0);
    background-size: 5px 5px;
  }
}
/* sub_recruit
----------------------------------------------- */
article.sub_recruit {
  background-image: url("../img/common/bg_recruit.png"), linear-gradient(to right, #f0f7f6, #daecea);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 606px 480px, auto;
  position: relative;
}

@media (max-width: 1024px) {
  article.sub_recruit {
    background-size: 300px 238px, auto;
  }
}
@media (max-width: 767px) {
  article.sub_recruit {
    background-image: url("../img/common/bg_recruit_sp.png"), linear-gradient(to right, #f0f7f6, #daecea);
    background-size: 206px 190px, auto;
  }
}
/* sub_recruit teaser
----------------------------------------------- */
.recruit_teaser {
  padding: 0 30px;
}

.recruit_teaser .teaser_inner {
  display: flex;
  flex-direction: column;
  max-width: 1160px;
  margin: 0 auto;
  gap: 20px;
}

.recruit_teaser .teaser_inner .teaser_eng {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1;
  font-weight: 700;
  padding: 0 0 0 34px;
  position: relative;
}

.recruit_teaser .teaser_inner .teaser_eng:before {
  position: absolute;
  content: "";
  background-image: url("../img/common/ico_teaser.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 25px;
  height: 23px;
  left: 2px;
  top: -6px;
  z-index: 0;
}

.recruit_teaser .teaser_inner .teaser_jps {
  font-size: 68px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .recruit_teaser .teaser_inner {
    gap: 20px;
  }
  .recruit_teaser .teaser_inner .teaser_eng {
    font-size: 13px;
    padding: 0 0 0 25px;
  }
  .recruit_teaser .teaser_inner .teaser_eng:before {
    width: 20px;
    height: 18px;
    left: 0;
    top: -3px;
  }
  .recruit_teaser .teaser_inner .teaser_jps {
    font-size: 27px;
    letter-spacing: 0.02em;
  }
}
/* sub_recruit entry
----------------------------------------------- */
.recruit-entry {
  padding: 150px 0 0;
}

.recruit-entry .entry_teaser {
  margin: 0 0 75px;
}

.recruit-entry .entry_block {
  border-top: 1px #b7bac4 solid;
  padding: 40px 0 120px;
}

.recruit-entry .entry_block .entry_det {
  margin: 0 0 65px;
  line-height: 2.125;
  font-weight: 500;
}

@media (max-width: 767px) {
  .recruit-entry {
    padding: 115px 0 0;
  }
  .recruit-entry .entry_teaser {
    margin: 0 0 45px;
  }
  .recruit-entry .entry_block {
    padding: 25px 0 60px;
  }
  .recruit-entry .entry_block .entry_det {
    margin: 0 0 30px;
    line-height: 1.92;
  }
}
/* recruit cover
----------------------------------------------- */
.recruit_cover {
  position: relative;
  z-index: 1;
}

.recruit_cover:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  z-index: 0;
}

/* recruit-info
----------------------------------------------- */
.recruit-info {
  padding: 150px 0 0;
}

.recruit-info .info_teaser {
  margin: 0 0 75px;
}

.recruit-info .info_block {
  overflow: hidden;
  border-top: 1px #b7bac4 solid;
  position: relative;
}

.recruit-info .info_filter {
  padding: 50px 0 175px;
  position: relative;
}

.recruit-info .info_filter:before {
  position: absolute;
  content: "";
  background: #d7e6e4;
  right: 69%;
  top: 0;
  width: 100vw;
  height: calc(100% + 100vh);
  z-index: 0;
}

.recruit-info .info_btn_pc {
  margin: 80px 0 0;
}

.recruit-info .info_btn_sp {
  display: none;
}

.recruit-info .info_btn {
  display: flex;
  justify-content: center;
}

.recruit-info .info_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 350px;
  height: 90px;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
  max-width: 100%;
  background: linear-gradient(to bottom right, #029183, #00b050);
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  -ms-border-radius: 90px;
  -o-border-radius: 90px;
  border-radius: 90px;
}

.recruit-info .info_btn a:hover {
  opacity: 0.5;
}

@media (max-width: 767px) {
  .recruit-info {
    padding: 115px 0 0;
  }
  .recruit-info .info_teaser {
    margin: 0 0 45px;
  }
  .recruit-info .info_block {
    padding: 20px 0 0;
  }
  .recruit-info .info_block .inner_lar {
    padding: 0 20px;
  }
  .recruit-info .info_filter:before {
    display: none;
  }
  .recruit-info .info_filter {
    padding: 0 0 70px;
  }
  .recruit-info .info_btn_pc {
    display: none;
  }
  .recruit-info .info_btn_sp {
    display: block;
    margin: 15px 0 0;
  }
  .recruit-info .info_btn a {
    width: 215px;
    height: 60px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .recruit-info .info_btn a:hover {
    opacity: 1;
  }
}
.recruit-info .info_sub_box {
  display: flex;
  align-items: flex-start;
}

.recruit-info .info_sub_box .info_sub_side {
  width: 31%;
}

.recruit-info .info_sub_box .info_sub_main {
  width: 69%;
}

.recruit-info .info_sub_box .job_item {
  cursor: pointer;
  padding: 0 40px 0 25px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  -ms-border-radius: 10px 0 0 10px;
  -o-border-radius: 10px 0 0 10px;
  border-radius: 10px 0 0 10px;
}

.recruit-info .info_sub_box .job_item_in {
  position: relative;
  min-height: 125px;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.recruit-info .info_sub_box .job_item_in:before {
  position: absolute;
  content: "";
  background: #b5c0be;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  z-index: 0;
}

.recruit-info .info_sub_box .job_item.is-active {
  background: #fff;
}

.recruit-info .info_sub_box .job_item.is-active .job_item_in:before {
  display: none;
}

.recruit-info .info_sub_box .job_category {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.recruit-info .info_sub_box .job_category.is-show {
  opacity: 1;
  height: auto;
  overflow: visible;
}

.recruit-info .info_sub_box .job_type_sp {
  display: none;
}

.recruit-info .info_sub_box .job_inner {
  background: #fff;
  padding: 10px 40px 20px;
  -webkit-border-radius: 0 20px 20px 0;
  -moz-border-radius: 0 20px 20px 0;
  -ms-border-radius: 0 20px 20px 0;
  -o-border-radius: 0 20px 20px 0;
  border-radius: 0 20px 20px 0;
}

.recruit-info .info_sub_box .job_table {
  width: 100%;
}

.recruit-info .info_sub_box .job_table tr:not(:last-child) th,
.recruit-info .info_sub_box .job_table tr:not(:last-child) td {
  border-bottom: 1px #d7e6e4 solid;
}

.recruit-info .info_sub_box .job_table th,
.recruit-info .info_sub_box .job_table td {
  vertical-align: top;
  padding: 35px 10px 35px 0;
}

.recruit-info .info_sub_box .job_table th {
  font-size: 18px;
  font-weight: 700;
  color: #00b050;
  letter-spacing: 0.03em;
  width: 28%;
}

.recruit-info .info_sub_box .job_table td {
  width: 72%;
  font-weight: 500;
}

.recruit-info .info_sub_box .job_busicont {
  display: flex;
  flex-direction: column;
  line-height: 1.625;
  gap: 15px;
}

.recruit-info .info_sub_box .job_busiprice {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
}

.recruit-info .info_sub_box .job_businote {
  font-size: 12px;
  font-weight: 500;
  margin: 10px 0 0;
}

.recruit-info .info_sub_box .job_busidot {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.recruit-info .info_sub_box .job_busidot li {
  font-weight: 500;
  padding: 0 0 0 20px;
  position: relative;
}

.recruit-info .info_sub_box .job_busidot li:before {
  position: absolute;
  content: "";
  background: #00b050;
  width: 10px;
  height: 10px;
  left: 0;
  top: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

@media (max-width: 1024px) {
  .recruit-info .info_sub_box .job_item {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .recruit-info .info_sub_box {
    display: block;
  }
  .recruit-info .info_sub_box .info_sub_side {
    display: none;
  }
  .recruit-info .info_sub_box .info_sub_main {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .recruit-info .info_sub_box .job_category {
    opacity: 1;
    height: auto;
    overflow: visible;
  }
  .recruit-info .info_sub_box .job_category.is-show {
    opacity: 1;
    height: auto;
    overflow: visible;
  }
  .recruit-info .info_sub_box .job_type_sp {
    display: block;
    background: #d7e6e4;
    font-size: 14px;
    font-weight: 700;
    padding: 20px 45px 20px 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    position: relative;
  }
  .recruit-info .info_sub_box .job_type_sp:before {
    position: absolute;
    content: "";
    background-image: url("../img/common/arrow_down_gy.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 6px 6px;
    background-color: #fff;
    border: 1px #b5c0be solid;
    width: 26px;
    height: 26px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s !important;
    -moz-transition: all 0.3s !important;
    /* Firefox */
    -webkit-transition: all 0.3s !important;
    /* Chrome&Safari */
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    z-index: 0;
  }
  .recruit-info .info_sub_box .job_type_sp.on {
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
  }
  .recruit-info .info_sub_box .job_type_sp.on:before {
    transform: translateY(-50%) rotate(180deg);
  }
  .recruit-info .info_sub_box .job_inner {
    display: none;
    padding: 0 20px 30px;
    -webkit-border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
    -ms-border-radius: 0 0 10px 10px;
    -o-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
  }
  .recruit-info .info_sub_box .job_table {
    width: 100%;
  }
  .recruit-info .info_sub_box .job_table tr:not(:last-child) th,
  .recruit-info .info_sub_box .job_table tr:not(:last-child) td {
    border-bottom: 1px #d7e6e4 solid;
  }
  .recruit-info .info_sub_box .job_table tr:not(:last-child) th {
    border: none;
  }
  .recruit-info .info_sub_box .job_table th,
  .recruit-info .info_sub_box .job_table td {
    display: block;
    padding: 35px 10px 35px 0;
  }
  .recruit-info .info_sub_box .job_table th {
    font-size: 15px;
    letter-spacing: 0.03em;
    width: auto;
    padding: 20px 0 7px;
  }
  .recruit-info .info_sub_box .job_table td {
    width: auto;
    padding: 7px 0 20px;
  }
  .recruit-info .info_sub_box .job_busicont {
    gap: 10px;
  }
  .recruit-info .info_sub_box .job_busiprice {
    font-size: 13px;
  }
  .recruit-info .info_sub_box .job_businote {
    font-size: 11px;
    margin: 5px 0 0;
  }
  .recruit-info .info_sub_box .job_busidot li {
    line-height: 1.77;
    padding: 0 0 0 15px;
    position: relative;
  }
  .recruit-info .info_sub_box .job_busidot li:before {
    width: 8px;
    height: 8px;
    left: 0;
    top: 8px;
  }
}
@media (min-width: 768px) {
  .recruit-info .info_sub_box .job_inner {
    display: block !important;
  }
}
.recruit_learn {
  position: relative;
  z-index: 1;
}

.recruit_learn .learn_inner {
  max-width: 1260px;
  padding: 0 30px;
  margin: 0 auto;
}

.recruit_learn .learn_hd {
  padding: 0 0 0 35px;
  margin: 0 0 65px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  position: relative;
}

.recruit_learn .learn_hd:before {
  position: absolute;
  content: "";
  background: #00b050;
  width: 6px;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  z-index: 0;
}

.recruit_learn .learn_three_col {
  display: flex;
  gap: 30px;
  max-width: 1260px;
  padding: 0 30px;
  margin: 0 auto;
}

.recruit_learn .learn_three_col.learn_two_col {
  gap: 40px;
}

.recruit_learn .learn_three_col li {
  width: calc((100% - 60px) / 3);
}

.recruit_learn .learn_three_col.learn_two_col li {
  width: calc((100% - 40px) / 2);
}

.recruit_learn .learn_three_col a {
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.recruit_learn .learn_three_col a img {
  width: 100%;
  transition: all 0.6 !important;
  -moz-transition: all 0.6s !important;
  /* Firefox */
  -webkit-transition: all 0.6s !important;
  /* Chrome&Safari */
}

.recruit_learn .learn_three_col a:hover img {
  transform: scale(1.05);
}

.recruit_learn .learn_three_col a:before {
  position: absolute;
  content: "";
  background: rgba(31, 41, 51, 0.7);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.recruit_learn .learn_three_col .col_txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  z-index: 1;
}

@media (max-width: 767px) {
  .recruit_learn .learn_hd {
    padding: 10px 0 10px 16px;
    margin: 0 0 30px;
    font-size: 24px;
  }
  .recruit_learn .learn_hd:before {
    width: 3px;
  }
  .recruit_learn .learn_three_col {
    flex-direction: column;
    gap: 15px;
  }
  .recruit_learn .learn_three_col.learn_two_col {
    gap: 15px;
  }
  .recruit_learn .learn_three_col li {
    width: 100%;
  }
  .recruit_learn .learn_three_col.learn_two_col li {
    width: 100%;
  }
  .recruit_learn .learn_three_col a {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .recruit_learn .learn_three_col a:hover img {
    transform: scale(1);
  }
  .recruit_learn .learn_three_col .col_txt {
    font-size: 16px;
  }
}
/* recruit-about
----------------------------------------------- */
.recruit-about {
  padding: 180px 0 0;
}

.recruit-about .recabt_teaser {
  margin: 0 0 60px;
}

@media (max-width: 767px) {
  .recruit-about {
    padding: 110px 0 0;
  }
  .recruit-about .recabt_teaser {
    margin: 0 0 40px;
  }
}
.recruit-about .recabt_intro {
  padding: 0 0 55px;
}

.recruit-about .recabt_intro .intro_flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.recruit-about .recabt_intro .intro_flex .flex_cont {
  padding: 30px 0 0;
  width: 43%;
  font-weight: 500;
  line-height: 2.124;
  letter-spacing: 0.02em;
}

.recruit-about .recabt_intro .intro_flex .flex_img {
  width: 575px;
  max-width: 50%;
  margin: 0 -20px 0 0;
}

@media (max-width: 1024px) {
  .recruit-about .recabt_intro .intro_flex .flex_cont {
    padding: 0;
  }
  .recruit-about .recabt_intro .intro_flex .flex_img {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .recruit-about .recabt_intro {
    padding: 0 0 70px;
  }
  .recruit-about .recabt_intro .intro_flex {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .recruit-about .recabt_intro .intro_flex .flex_cont {
    padding: 0;
    width: 100%;
    line-height: 1.77;
    letter-spacing: 0.02em;
  }
  .recruit-about .recabt_intro .intro_flex .flex_img {
    width: auto;
    max-width: none;
    margin: 0 -10px;
  }
}
.recruit-about .recabt_data {
  padding: 110px 0 120px;
  background-image: url("../img/recruit-about/bg_data.png");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.recruit-about .recabt_data:before {
  position: absolute;
  content: "";
  background-image: url("../img/recruit-about/lattice_data.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 710px;
  height: 838px;
  right: 0;
  top: 0;
  z-index: 0;
}

.recruit-about .recabt_data:after {
  position: absolute;
  content: "";
  background-image: url("../img/recruit-about/light_data.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 78px;
  height: 78px;
  top: 105px;
  right: 60px;
  filter: blur(3px);
  z-index: 0;
}

.recruit-about .recabt_data .section_hdl {
  margin: 0 0 45px;
}

.recruit-about .recabt_data .data_note {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
  padding: 0 10px;
  margin: 0 0 20px;
}

.recruit-about .recabt_data .data_circle_r {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 125px;
  right: 75px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.recruit-about .recabt_data .data_circle_m {
  position: absolute;
  width: 160px;
  height: 160px;
  left: 50%;
  bottom: 100px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.recruit-about .recabt_data .data_box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.recruit-about .recabt_data .data_box li {
  width: calc((100% - 20px) / 2);
  background: #fff;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 20px 30px 20px 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.recruit-about .recabt_data .data_box .box_img {
  flex-shrink: 0;
  width: 190px;
}

.recruit-about .recabt_data .data_box .box_cont {
  flex: 1;
}

.recruit-about .recabt_data .data_box .box_tit {
  border-bottom: 2px #dedede solid;
  padding: 15px 0;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 20px;
}

.recruit-about .recabt_data .data_box .box_txt {
  line-height: 1.3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.02em;
  color: #00b050;
}

.recruit-about .recabt_data .data_box .box_txt .txt_mid {
  font-size: 42px;
  line-height: 1.1;
}

.recruit-about .recabt_data .data_box .box_num {
  font-size: 80px;
  line-height: 0.9;
  font-family: "Manrope", sans-serif;
}

@media (max-width: 1024px) {
  .recruit-about .recabt_data .data_box {
    flex-direction: column;
    max-width: 700px;
    margin: 0 auto;
  }
  .recruit-about .recabt_data .data_box li {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .recruit-about .recabt_data {
    padding: 65px 0 70px;
    background-image: url("../img/recruit-about/bg_data_sp.png");
  }
  .recruit-about .recabt_data:before {
    background-image: url("../img/recruit-about/lattice_data_sp.png");
    width: 241px;
    height: 270px;
  }
  .recruit-about .recabt_data:after {
    width: 40px;
    height: 40px;
    top: 35px;
    right: 15px;
  }
  .recruit-about .recabt_data .section_hdl {
    margin: 0 0 30px;
  }
  .recruit-about .recabt_data .data_note {
    font-size: 10px;
    padding: 0;
    margin: 0 0 15px;
  }
  .recruit-about .recabt_data .data_circle_r {
    width: 80px;
    height: 80px;
    top: 400px;
    right: auto;
    left: 45px;
  }
  .recruit-about .recabt_data .data_circle_m {
    display: none;
  }
  .recruit-about .recabt_data .data_box {
    gap: 10px;
    max-width: none;
  }
  .recruit-about .recabt_data .data_box li {
    gap: 15px;
    padding: 10px 20px 10px 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .recruit-about .recabt_data .data_box .box_img {
    flex-shrink: 0;
    width: 105px;
  }
  .recruit-about .recabt_data .data_box .box_tit {
    padding: 7px 0;
    font-size: 15px;
    margin: 0 0 10px;
  }
  .recruit-about .recabt_data .data_box .box_txt {
    font-size: 17px;
  }
  .recruit-about .recabt_data .data_box .box_txt .txt_mid {
    font-size: 21px;
  }
  .recruit-about .recabt_data .data_box .box_num {
    font-size: 40px;
  }
}
.recruit-about .recabt_message {
  padding: 120px 0 160px;
}

.recruit-about .recabt_message .message_box {
  display: flex;
  align-items: stretch;
  gap: 6.9%;
}

.recruit-about .recabt_message .message_img {
  width: 380px;
  max-width: 33%;
  flex-shrink: 0;
}

.recruit-about .recabt_message .message_img img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.recruit-about .recabt_message .message_cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.recruit-about .recabt_message .section_hdl {
  margin: 0 0 30px;
}

.recruit-about .recabt_message .message_txt {
  line-height: 2.125;
  font-weight: 500;
}

.recruit-about .recabt_message .message_name {
  align-self: flex-end;
  margin: 30px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.recruit-about .recabt_message .name_cap {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.recruit-about .recabt_message .name_txt {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.recruit-about .recabt_message .message_img_sp {
  display: none;
}

@media (max-width: 767px) {
  .recruit-about .recabt_message {
    padding: 70px 0 60px;
  }
  .recruit-about .recabt_message .message_box {
    display: block;
  }
  .recruit-about .recabt_message .message_img {
    display: none;
  }
  .recruit-about .recabt_message .message_cont {
    align-items: center;
    gap: 30px;
  }
  .recruit-about .recabt_message .section_hdl {
    margin: 0 0 5px;
    width: 100%;
  }
  .recruit-about .recabt_message .message_txt {
    line-height: 1.92;
  }
  .recruit-about .recabt_message .message_name {
    margin: 0;
    gap: 5px;
  }
  .recruit-about .recabt_message .name_cap {
    font-size: 12px;
  }
  .recruit-about .recabt_message .name_txt {
    font-size: 18px;
  }
  .recruit-about .recabt_message .message_img_sp {
    display: block;
    width: 190px;
  }
  .recruit-about .recabt_message .message_img_sp img {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
}
.recruit_value {
  padding: 80px 0 0;
  position: relative;
  z-index: 2;
}

.recruit_value .value_inner {
  max-width: 1300px;
  padding: 0 30px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.recruit_value .value_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border: 1px #fff solid;
  background-image: url("../img/recruit/bg_value.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 0 30px rgba(68, 119, 115, 0.2);
  -moz-box-shadow: 0 0 30px rgba(68, 119, 115, 0.2);
  -ms-box-shadow: 0 0 30px rgba(68, 119, 115, 0.2);
  -o-box-shadow: 0 0 30px rgba(68, 119, 115, 0.2);
  box-shadow: 0 0 30px rgba(68, 119, 115, 0.2);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
}

.recruit_value .value_box .value_img {
  border: 1px #fff solid;
  overflow: hidden;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
}

.recruit_value .value_box .value_img img {
  width: 258px;
  height: 498px;
  object-fit: cover;
}

.recruit_value .value_box .value_cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.recruit_value .value_box .value_hd {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.recruit_value .value_box .value_hd .hd_eng {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.2em;
  font-family: "Manrope", sans-serif;
}

.recruit_value .value_box .value_hd .hd_jps {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.recruit_value .value_box .value_txt {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.86;
  margin: 45px 0 40px;
  letter-spacing: 0.03em;
}

.recruit_value .value_box .value_btn {
  max-width: 100%;
}

.recruit_value .value_box .value_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 330px;
  max-width: 100%;
  height: 70px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.03em;
  background: linear-gradient(to bottom right, #029183, #00b050);
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  -ms-border-radius: 90px;
  -o-border-radius: 90px;
  border-radius: 90px;
}

.recruit_value .value_box .value_btn a:hover {
  opacity: 0.5;
}

.recruit_value .value_box .value_img_sp {
  display: none;
}

@media (max-width: 1024px) {
  .recruit_value .value_box .value_btn a {
    width: 240px;
  }
}
@media (max-width: 767px) {
  .recruit_value {
    padding: 60px 0 0;
  }
  .recruit_value .value_inner {
    padding: 0 20px;
  }
  .recruit_value .value_box {
    display: block;
    gap: 0;
    padding: 0;
    overflow: hidden;
    background-image: url("../img/recruit/bg_value_sp.jpg");
    background-position: left center;
    -webkit-box-shadow: 0 0 20px rgba(68, 119, 115, 0.2);
    -moz-box-shadow: 0 0 20px rgba(68, 119, 115, 0.2);
    -ms-box-shadow: 0 0 20px rgba(68, 119, 115, 0.2);
    -o-box-shadow: 0 0 20px rgba(68, 119, 115, 0.2);
    box-shadow: 0 0 20px rgba(68, 119, 115, 0.2);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
  }
  .recruit_value .value_box .value_img {
    border: 1px #fff solid;
    display: none;
  }
  .recruit_value .value_box .value_cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px 30px 50px;
  }
  .recruit_value .value_box .value_hd {
    gap: 15px;
  }
  .recruit_value .value_box .value_hd .hd_eng {
    font-size: 11px;
  }
  .recruit_value .value_box .value_hd .hd_jps {
    font-size: 26px;
    line-height: 1.38;
  }
  .recruit_value .value_box .value_txt {
    text-align: left;
    font-size: 12px;
    line-height: 1.92;
    margin: 20px 0 40px;
  }
  .recruit_value .value_box .value_btn a {
    width: 215px;
    height: 60px;
    font-size: 13px;
  }
  .recruit_value .value_box .value_btn a:hover {
    opacity: 1;
  }
  .recruit_value .value_box .value_img_sp {
    display: flex;
  }
  .recruit_value .value_box .value_img_sp img {
    width: 50%;
  }
}
/* recruit-enviroment
----------------------------------------------- */
.recruit-enviroment {
  padding: 180px 0 0;
}

.recruit-enviroment .enviroment_teaser {
  margin: 0 0 100px;
}

@media (max-width: 767px) {
  .recruit-enviroment {
    padding: 115px 0 0;
  }
  .recruit-enviroment .enviroment_teaser {
    margin: 0 0 45px;
  }
}
.recruit-enviroment .envi_benefit {
  padding: 0 0 120px;
  position: relative;
}

.recruit-enviroment .envi_benefit .section_hdl {
  margin: 0 0 45px;
}

.recruit-enviroment .envi_benefit .benefit_box {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}

.recruit-enviroment .envi_benefit .benefit_box li {
  background: #fff;
  width: calc((100% - 20px) / 2);
  padding: 60px 40px 50px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.recruit-enviroment .envi_benefit .benefit_mess {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 40px;
}

.recruit-enviroment .envi_benefit .benefit_ico {
  width: 120px;
  flex-shrink: 0;
  align-self: flex-start;
}

.recruit-enviroment .envi_benefit .benefit_tit {
  font-size: 32px;
  color: #00b050;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.43;
}

.recruit-enviroment .envi_benefit .benefit_txt {
  font-weight: 500;
  line-height: 2.125;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .recruit-enviroment .envi_benefit .benefit_box li {
    padding: 30px 20px;
  }
  .recruit-enviroment .envi_benefit .benefit_ico {
    width: 80px;
  }
  .recruit-enviroment .envi_benefit .benefit_tit {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .recruit-enviroment .envi_benefit {
    padding: 0 0 70px;
  }
  .recruit-enviroment .envi_benefit .section_hdl {
    margin: 0 0 35px;
  }
  .recruit-enviroment .envi_benefit .benefit_box {
    flex-direction: column;
    gap: 10px;
  }
  .recruit-enviroment .envi_benefit .benefit_box li {
    width: 100%;
    padding: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .recruit-enviroment .envi_benefit .benefit_mess {
    gap: 10px;
    margin: 0 0 15px;
  }
  .recruit-enviroment .envi_benefit .benefit_ico {
    width: min(60px, 16vw);
  }
  .recruit-enviroment .envi_benefit .benefit_tit {
    font-size: min(18px, 4.8vw);
    line-height: 1.55;
  }
  .recruit-enviroment .envi_benefit .benefit_txt {
    line-height: 1.85;
  }
}
.recruit-enviroment .envi_system {
  padding: 120px 0 150px;
  position: relative;
}

.recruit-enviroment .envi_system .section_hdl {
  margin: 0 0 55px;
}

.recruit-enviroment .envi_system .system_box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.recruit-enviroment .envi_system .system_box li {
  width: calc((100% - 20px) / 2);
  background: rgba(255, 255, 255, 0.5);
  border: 1px #fff solid;
  padding: 35px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.recruit-enviroment .envi_system .system_tit {
  font-size: 24px;
  color: #00b050;
  font-weight: 700;
  margin: 0 0 15px;
  letter-spacing: 0.02em;
}

.recruit-enviroment .envi_system .system_txt {
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .recruit-enviroment .envi_system {
    padding: 70px 0;
  }
  .recruit-enviroment .envi_system .section_hdl {
    margin: 0 0 35px;
  }
  .recruit-enviroment .envi_system .system_box {
    flex-direction: column;
    gap: 10px;
  }
  .recruit-enviroment .envi_system .system_box li {
    width: 100%;
    padding: 17px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .recruit-enviroment .envi_system .system_tit {
    font-size: 15px;
    margin: 0 0 10px;
  }
  .recruit-enviroment .envi_system .system_txt {
    line-height: 1.85;
  }
}
.recruit-enviroment .envi_culture {
  padding: 0 20px;
  position: relative;
}

.recruit-enviroment .envi_culture .culture_box {
  max-width: 1360px;
  margin: 0 auto;
  background: #1f2933;
  padding: 120px 0 140px;
  overflow: hidden;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
  position: relative;
}

.recruit-enviroment .envi_culture .culture_box:before {
  position: absolute;
  content: "";
  background-image: url("../img/recruit-enviroment/bg_culture01.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 50px;
  right: 15px;
  width: 440px;
  height: 380px;
  z-index: 0;
}

.recruit-enviroment .envi_culture .culture_box:after {
  position: absolute;
  content: "";
  background-image: url("../img/recruit-enviroment/bg_culture02.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
  width: 360px;
  height: 280px;
  z-index: 0;
}

.recruit-enviroment .envi_culture .section_hdl {
  margin: 0 0 40px;
}

.recruit-enviroment .envi_culture .culture_det {
  color: #fff;
  font-weight: 500;
  margin: 0 0 95px;
}

.recruit-enviroment .envi_culture .culture_item + .culture_item {
  border-top: 1px #43484c solid;
  margin: 60px 0 0;
  padding: 60px 0 0;
}

.recruit-enviroment .envi_culture .culture_item img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.recruit-enviroment .envi_culture .culture_flex {
  display: flex;
  align-items: stretch;
  color: #fff;
  margin: 0 0 40px;
}

.recruit-enviroment .envi_culture .culture_flex .flex_cont {
  width: 50%;
  padding: 40px 6% 0 0;
}

.recruit-enviroment .envi_culture .culture_flex .flex_num {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Manrope", sans-serif;
  margin: 0 0 10px;
}

.recruit-enviroment .envi_culture .culture_flex .flex_tit {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin: 0 0 45px;
}

.recruit-enviroment .envi_culture .culture_flex .flex_txt {
  font-weight: 500;
  line-height: 2.125;
  letter-spacing: 0.02em;
}

.recruit-enviroment .envi_culture .culture_flex .flex_img {
  width: 50%;
}

.recruit-enviroment .envi_culture .culture_show {
  display: flex;
  gap: 20px;
}

.recruit-enviroment .envi_culture .culture_show li {
  width: calc((100% - 60px) / 4);
}

@media (max-width: 1024px) {
  .recruit-enviroment .envi_culture .culture_flex .flex_cont {
    width: 50%;
    padding: 0 3% 0 0;
  }
}
@media (max-width: 767px) {
  .recruit-enviroment .envi_culture {
    padding: 0 10px;
  }
  .recruit-enviroment .envi_culture .culture_box {
    padding: 60px 0;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
  }
  .recruit-enviroment .envi_culture .culture_box:before {
    width: 163px;
    right: -30px;
    top: -50px;
    height: 141px;
  }
  .recruit-enviroment .envi_culture .culture_box:after {
    width: 143px;
    height: 111px;
    left: -20px;
  }
  .recruit-enviroment .envi_culture .section_hdl {
    margin: 0 0 30px;
  }
  .recruit-enviroment .envi_culture .culture_det {
    margin: 0 0 40px;
  }
  .recruit-enviroment .envi_culture .culture_item + .culture_item {
    margin: 35px 0 0;
    padding: 35px 0 0;
  }
  .recruit-enviroment .envi_culture .culture_item img {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .recruit-enviroment .envi_culture .culture_flex {
    display: flex;
    flex-direction: column;
    margin: 0 0 20px;
    gap: 25px;
  }
  .recruit-enviroment .envi_culture .culture_flex .flex_cont {
    width: auto;
    padding: 0;
  }
  .recruit-enviroment .envi_culture .culture_flex .flex_num {
    font-size: 12px;
    margin: 0 0 5px;
  }
  .recruit-enviroment .envi_culture .culture_flex .flex_tit {
    font-size: 20px;
    margin: 0 0 20px;
  }
  .recruit-enviroment .envi_culture .culture_flex .flex_txt {
    line-height: 1.92;
  }
  .recruit-enviroment .envi_culture .culture_flex .flex_img {
    width: 100%;
  }
  .recruit-enviroment .envi_culture .culture_flex .flex_img img {
    width: 100%;
  }
  .recruit-enviroment .envi_culture .culture_show {
    flex-wrap: wrap;
    gap: 10px;
  }
  .recruit-enviroment .envi_culture .culture_show li {
    width: calc((100% - 10px) / 2);
  }
  .recruit-enviroment .envi_culture .culture_show img {
    width: 100%;
  }
  .recruit-enviroment .envi_culture .inner_lar {
    padding: 0 20px;
  }
}
/* recruit top
----------------------------------------------- */
.recruit_office {
  padding: 120px 0 40px;
  position: relative;
}

.recruit_office .section_hdl {
  margin: 0 0 55px;
}

.recruit_office:before {
  position: absolute;
  content: "";
  background-image: url("../img/recruit/bg_office.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  bottom: calc(100% - 240px);
  width: min(605px, 43.215vw);
  height: min(697px, 49.786vw);
  z-index: 0;
}

@media (max-width: 767px) {
  .recruit_office {
    padding: 70px 0 10px;
  }
  .recruit_office .section_hdl {
    margin: 0 0 35px;
  }
  .recruit_office:before {
    background-image: url("../img/recruit/bg_office_sp.png");
    left: 0;
    width: 57.2vw;
    height: 91.47vw;
    bottom: calc(100% - 275px);
    z-index: 0;
  }
}
.recruit_envir {
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.recruit_envir:before {
  position: absolute;
  content: "";
  background: #fff;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  z-index: 0;
}

.recruit_envir .section_hdl {
  margin: 0 0 70px;
}

.recruit_envir .recruit_envir_box {
  background: #1f2933;
  max-width: 1360px;
  margin: 0 auto;
  padding: 90px 0 30px;
  overflow: hidden;
  position: relative;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
}

.recruit_envir .recruit_envir_box:before {
  position: absolute;
  content: "";
  background-image: url("../img/recruit/bg_envir.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  right: -10px;
  top: -100px;
  width: 440px;
  height: 380px;
  z-index: 0;
}

.recruit_envir .recruit_envir_box:after {
  position: absolute;
  content: "";
  background-image: url("../img/recruit/bg_envir.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 360px;
  height: 328px;
  bottom: -24px;
  left: -3px;
  z-index: 0;
}

.recruit_envir .recruit_envir_flex {
  display: flex;
  align-items: center;
}

.recruit_envir .recruit_envir_flex .envir_flex_img {
  width: 50%;
  height: 600px;
  position: relative;
}

.recruit_envir .recruit_envir_flex .envir_flex_img li {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  height: 100%;
  width: calc(100% + 70px);
  transform: translateX(-50px);
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
  z-index: 0;
}

.recruit_envir .recruit_envir_flex .envir_flex_img li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border-radius: 40px;
}

.recruit_envir .recruit_envir_flex .envir_flex_img li.current {
  transform: translateX(0);
  opacity: 1;
}

.recruit_envir .recruit_envir_flex .envir_flex_cont {
  width: 50%;
}

.recruit_envir .recruit_envir_flex .envir_flex_cont li a {
  display: block;
  padding: 49px 130px 49px 19.5%;
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  position: relative;
}

.recruit_envir .recruit_envir_flex .envir_flex_cont li a:after {
  position: absolute;
  content: "";
  border: 1px #fff solid;
  background-image: url("../img/common/arrow_m_wh.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  width: 120px;
  height: 120px;
  opacity: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.recruit_envir .recruit_envir_flex .envir_flex_cont li a:before {
  position: absolute;
  content: "";
  background: #eaeaea;
  height: 1px;
  width: 84.5%;
  right: 0;
  bottom: 0;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
  z-index: 0;
}

.recruit_envir .recruit_envir_flex .envir_flex_cont li.current a {
  font-size: 38px;
  padding-top: 130px;
  padding-bottom: 130px;
}

.recruit_envir .recruit_envir_flex .envir_flex_cont li.current a:before {
  width: 100%;
}

.recruit_envir .recruit_envir_flex .envir_flex_cont li.current a:after {
  opacity: 1;
}

@media (max-width: 1400px) {
  .recruit_envir .recruit_envir_flex .envir_flex_img li {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .recruit_envir .recruit_envir_flex .envir_flex_img {
    height: 500px;
  }
  .recruit_envir .recruit_envir_flex .envir_flex_cont li a {
    padding: 30px 100px 30px 19.5%;
    font-size: 20px;
  }
  .recruit_envir .recruit_envir_flex .envir_flex_cont li.current a {
    font-size: 30px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .recruit_envir .recruit_envir_flex .envir_flex_cont li a:after {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 767px) {
  .recruit_envir {
    padding: 0 10px;
  }
  .recruit_envir .section_hdl {
    margin: 0 0 40px;
  }
  .recruit_envir .recruit_envir_box {
    padding: 60px 0;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
  }
  .recruit_envir .recruit_envir_box:before {
    right: -25px;
    top: 0;
    width: 160px;
    height: 138px;
  }
  .recruit_envir .recruit_envir_box:after {
    display: none;
  }
  .recruit_envir .recruit_envir_flex {
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
  }
  .recruit_envir .recruit_envir_flex .envir_flex_img {
    width: 100%;
    height: auto;
  }
  .recruit_envir .recruit_envir_flex .envir_flex_img li {
    position: static;
    display: none;
    width: 100%;
    transform: translateX(0);
  }
  .recruit_envir .recruit_envir_flex .envir_flex_img li:first-child {
    opacity: 1;
    display: block;
  }
  .recruit_envir .recruit_envir_flex .envir_flex_img li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
  }
  .recruit_envir .recruit_envir_flex .envir_flex_img li.current {
    transform: translateX(0);
    opacity: 1;
  }
  .recruit_envir .recruit_envir_flex .envir_flex_cont {
    width: 100%;
  }
  .recruit_envir .recruit_envir_flex .envir_flex_cont li a {
    display: block;
    padding: 30px 40px 30px 0;
    font-size: 14px;
    font-weight: 700;
  }
  .recruit_envir .recruit_envir_flex .envir_flex_cont li a:after {
    background-size: 6px 6px;
    width: 36px;
    height: 36px;
    opacity: 1;
  }
  .recruit_envir .recruit_envir_flex .envir_flex_cont li a:before {
    width: 100%;
  }
  .recruit_envir .recruit_envir_flex .envir_flex_cont li.current a {
    padding: 30px 40px 30px 0;
    font-size: 14px;
  }
}
.recruit_profess {
  padding: 160px 0 120px;
  background: #fff;
}

.recruit_profess .section_hdl {
  margin: 0 0 50px;
}

@media (max-width: 767px) {
  .recruit_profess {
    padding: 70px 0;
  }
  .recruit_profess .section_hdl {
    margin: 0 0 45px;
  }
}
.recruit_scp {
  padding: 0 30px;
  position: relative;
}

.recruit_scp:before {
  position: absolute;
  content: "";
  background: #fff;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  z-index: 0;
}

.recruit_scp .recruit_scp_box {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 1;
  gap: 30px;
}

.recruit_scp .recruit_scp_box li {
  width: calc((100% - 60px) / 3);
}

.recruit_scp .recruit_scp_box a {
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.recruit_scp .recruit_scp_box a .arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/recruit/bg_scp.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  transition: all 0.6s !important;
  -moz-transition: all 0.6s !important;
  /* Firefox */
  -webkit-transition: all 0.6s !important;
  /* Chrome&Safari */
  z-index: 1;
}

.recruit_scp .recruit_scp_box a .arrow:before {
  position: absolute;
  content: "";
  background-image: url("../img/common/arrow_m_wh.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  width: 100%;
  height: 100%;
  right: 100%;
  opacity: 0;
  transition: right 0.3s ease 0s;
  z-index: 0;
}

.recruit_scp .recruit_scp_box a:hover .arrow:before {
  right: 0;
  opacity: 1;
  transition-delay: 0.4s;
}

.recruit_scp .recruit_scp_box a:hover .arrow {
  right: 20px;
  bottom: 20px;
  background-image: url("../img/recruit/bg_scp02.png");
  background-position: center center;
  background-repeat: no-repeat;
  width: 120px;
  height: 120px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

.recruit_scp .recruit_scp_box .recruit_scp_img img {
  transform: scale(1.1);
  height: 540px;
  width: 100%;
  object-fit: cover;
  object-position: center bottom;
  transition: all 0.8s !important;
  -moz-transition: all 0.8s !important;
  /* Firefox */
  -webkit-transition: all 0.8s !important;
  /* Chrome&Safari */
}

.recruit_scp .recruit_scp_box a:hover .recruit_scp_img img {
  transform: scale(1);
}

.recruit_scp .recruit_scp_box .recruit_scp_cont {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 50px 40px;
  z-index: 2;
}

.recruit_scp .recruit_scp_box .recruit_scp_tit {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  font-family: "Manrope", sans-serif;
  margin: 0 0 25px;
}

.recruit_scp .recruit_scp_box .recruit_scp_txt {
  line-height: 2;
  letter-spacing: 0.02em;
  color: #fff;
}

.recruit_scp .recruit_scp_box a:hover .recruit_scp_tit {
  background: linear-gradient(to right, #00b050, #097980);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.recruit_scp .recruit_scp_box a:hover .recruit_scp_txt {
  color: #1f2933;
}

@media (max-width: 1024px) {
  .recruit_scp .recruit_scp_box {
    gap: 20px;
  }
  .recruit_scp .recruit_scp_box li {
    width: calc((100% - 40px) / 3);
  }
  .recruit_scp .recruit_scp_box .recruit_scp_img img {
    height: 400px;
  }
  .recruit_scp .recruit_scp_box .recruit_scp_cont {
    padding: 40px 20px;
  }
  .recruit_scp .recruit_scp_box .recruit_scp_tit {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .recruit_scp {
    padding: 0 30px;
    position: relative;
  }
  .recruit_scp:before {
    height: 135px;
  }
  .recruit_scp .recruit_scp_box {
    flex-direction: column;
    gap: 20px;
  }
  .recruit_scp .recruit_scp_box li {
    width: 100%;
  }
  .recruit_scp .recruit_scp_box a {
    display: block;
    position: relative;
    height: 72vw;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
  .recruit_scp .recruit_scp_box a .arrow {
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: #03b154;
    background-image: url("../img/common/arrow_m_wh.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 11px 11px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
  }
  .recruit_scp .recruit_scp_box a .arrow:before {
    display: none;
  }
  .recruit_scp .recruit_scp_box a:hover .arrow {
    right: 20px;
    bottom: 20px;
    background-image: url("../img/common/arrow_m_wh.png");
    width: 60px;
    height: 60px;
  }
  .recruit_scp .recruit_scp_box .recruit_scp_img {
    display: none;
  }
  .recruit_scp .recruit_scp_box .recruit_scp_cont {
    padding: 35px 15px;
  }
  .recruit_scp .recruit_scp_box .recruit_scp_tit {
    font-size: 26px;
    margin: 0 0 20px;
  }
  .recruit_scp .recruit_scp_box .recruit_scp_txt {
    line-height: 1.92;
  }
  .recruit_scp .recruit_scp_box a:hover .recruit_scp_tit {
    background: none;
    color: #fff;
    -webkit-text-fill-color: initial;
    background-clip: border-box;
  }
  .recruit_scp .recruit_scp_box a:hover .recruit_scp_txt {
    color: #fff;
  }
  .recruit_scp .recruit_scp_box a.scp_service {
    background-image: url("../img/recruit/bg_service.png");
  }
  .recruit_scp .recruit_scp_box a.scp_case {
    background-image: url("../img/recruit/bg_case.png");
  }
  .recruit_scp .recruit_scp_box a.scp_philosophy {
    background-image: url("../img/recruit/bg_philosophy.png");
  }
}
.recruit_bw {
  padding: 100px 30px;
  position: relative;
}

.recruit_bw:before {
  position: absolute;
  content: "";
  background-image: url("../img/recruit/bg_bw.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 571px;
  height: 393px;
  bottom: -230px;
  right: 50%;
  z-index: 0;
}

.recruit_bw .recruit_bw_eng {
  position: absolute;
  font-size: 124px;
  line-height: 1;
  font-weight: 700;
  left: 0;
  top: 200px;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  color: #d8e7e5;
}

.recruit_bw .recruit_bw_inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.recruit_bw .recruit_bw_cont {
  width: 50%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruit_bw .recruit_bw_img {
  width: 50%;
  align-self: flex-start;
}

.recruit_bw .recruit_bw_hd {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 35px;
}

.recruit_bw .recruit_bw_txt {
  line-height: 2.375;
}

.recruit_bw .recruit_bw_img_sp {
  display: none;
}

@media (max-width: 767px) {
  .recruit_bw {
    padding: 80px 30px 70px;
  }
  .recruit_bw:before {
    background-image: url("../img/recruit/bg_bw_sp.png");
    width: 262px;
    height: 168px;
    bottom: -73px;
    right: 0;
    z-index: 0;
  }
  .recruit_bw .recruit_bw_eng {
    font-size: 62px;
    top: 50px;
  }
  .recruit_bw .recruit_bw_inner {
    display: block;
  }
  .recruit_bw .recruit_bw_cont {
    width: auto;
    padding: 0;
    display: block;
  }
  .recruit_bw .recruit_bw_img {
    display: none;
  }
  .recruit_bw .recruit_bw_hd {
    font-size: 22px;
    line-height: 1.54;
    margin: 0 0 30px;
  }
  .recruit_bw .recruit_bw_txt {
    line-height: 1.92;
    margin: 35px 0 0;
  }
  .recruit_bw .recruit_bw_img_sp {
    display: block;
  }
  .recruit_bw .recruit_bw_img_sp img {
    width: 100%;
  }
}
.recruit_main {
  background-image: url("../img/recruit/bg_main.png");
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.recruit_main .main_inner {
  padding: 90px 0 0;
  background-image: url("../img/recruit/lattice_main.png");
  background-position: right bottom;
  background-repeat: no-repeat;
}

.recruit_main .main_box {
  position: relative;
}

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

.recruit_main .main_img img {
  width: 100%;
}

.recruit_main .main_cont {
  position: absolute;
  left: 0;
  top: 31%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: 0 50px;
  z-index: 2;
}

.recruit_main .main_cont_logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  z-index: 0;
}

.recruit_main .main_cont_txt {
  width: min(908px, 64.86vw);
  max-width: 100%;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  position: relative;
  z-index: 1;
}

.recruit_main .main_cont.animated .main_cont_txt {
  animation: ltor 1s ease-in-out forwards;
}

.recruit_main .main_intro {
  max-width: 1160px;
  margin: 50px auto 0;
  padding: 0 30px 120px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4.5%;
}

.recruit_main .main_intro .intro_cont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.recruit_main .main_intro .intro_txt {
  line-height: 2.25;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.recruit_main .main_intro .intro_txt .txt_lar {
  font-size: 18px;
}

.recruit_main .main_intro .intro_img {
  width: 480px;
  max-width: 44%;
  flex-shrink: 0;
  position: relative;
}

.recruit_main .main_intro .intro_img img {
  position: relative;
  z-index: 1;
}

.recruit_main .main_intro .intro_img:before {
  position: absolute;
  content: "";
  background: #fff;
  opacity: 0.1;
  width: 160px;
  height: 160px;
  bottom: 22%;
  left: -65px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

.recruit_main .main_intro .intro_img:after {
  position: absolute;
  content: "";
  background-image: url("../img/recruit/light.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 78px;
  height: 76px;
  right: calc(100% + 10px);
  filter: blur(3px);
  bottom: 38%;
  z-index: 0;
}

@media (max-width: 1024px) {
  .recruit_main .main_cont_logo {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .recruit_main {
    background-image: url("../img/recruit/bg_main_sp.png");
  }
  .recruit_main .main_inner {
    padding: 60px 0 0;
    background-image: none;
  }
  .recruit_main .main_cont {
    top: 46.66vw;
    width: 100%;
    padding: 0;
  }
  .recruit_main .main_cont_logo {
    width: 49.6vw;
  }
  .recruit_main .main_cont_txt {
    width: 84.8vw;
  }
  .recruit_main .main_intro {
    margin: 9.33vw auto 0;
    padding: 0 0 40px;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .recruit_main .main_intro .intro_cont {
    display: block;
    padding: 0 30px;
  }
  .recruit_main .main_intro .intro_txt {
    line-height: 1.96;
  }
  .recruit_main .main_intro .intro_txt .txt_lar {
    font-size: 14px;
  }
  .recruit_main .main_intro .intro_img {
    width: 100%;
    max-width: none;
    flex-shrink: 0;
    position: relative;
  }
  .recruit_main .main_intro .intro_img img {
    width: 100%;
  }
  .recruit_main .main_intro .intro_img:before {
    width: 80px;
    height: 80px;
    top: 4vw;
    bottom: auto;
    left: 3.33vw;
  }
  .recruit_main .main_intro .intro_img:after {
    width: 39px;
    height: 38px;
    left: 1.33vw;
    right: auto;
    top: 2.66vw;
    bottom: auto;
  }
}
/* animation
----------------------------------------------- */
@keyframes ltor {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.smf-system-error-content-ready,
.smf-sending {
  display: none;
}

.smf-error-messages {
  color: #ff0000;
  margin-top: 5px;
}

html:has(.snow-monkey-form) .thanks_block {
  display: none;
}

html:has(.snow-monkey-form[data-screen=complete]) {
  overflow: clip;
  overscroll-behavior: none;
}
html:has(.snow-monkey-form[data-screen=complete]) .thanks_block {
  display: flex;
}
