@charset "UTF-8";
/*--変数設定--*/
/*色指定*/
:root {
  --main-color1:#ffffff;
  --main-color2:#212121;
  --main-color3:#233666;
  --main-color4:#4064be;
  --main-accent:#e3007f;
  --main-accent2:#45ca81;
  --main-gray1:#dfdfdf;
  --main-gray2:#c2c2c2;
  --footer-color1:#f2f7fb;
}

/*横幅*/
/*ブレイクポイント設定*/
/*角丸*/
/*--mixin設定--*/
/*レスポンシブル*/
/*フォントサイズを調整*/
/*影*/
/*ヘッターを固定*/
header#masthead {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

div, p, h1, h2, h3, h4 {
  font-family: "Noto Sans JP", sans-serif;
}

.list-1 {
  list-style-type: disc;
}
.list-1 li::marker {
  color: var(--main-color3);
  font-size: 1.1em;
}

/*トップページの見出し*/
.toppage h2 {
  font-size: 3em !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.3 !important;
}
@media screen and (max-width: 820px) {
  .toppage h2 {
    font-size: 1.75em !important;
  }
}
.toppage h3 {
  font-size: 2em !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.3 !important;
}

.h-eng {
  font-family: "Inter", sans-serif;
  font-size: 1.2em !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.3 !important;
  margin-bottom: 0.5em !important;
  color: var(--main-color3);
}

.sticky-container .main-header {
  position: sticky;
  align-self: flex-start;
  top: 7%;
}
@media screen and (max-width: 820px) {
  .sticky-container .main-header {
    top: 70px;
  }
}
@media screen and (max-width: 540px) {
  .sticky-container .main-header {
    position: static;
  }
}
.sticky-container .main-content {
  padding-left: 5%;
}
@media screen and (max-width: 820px) {
  .sticky-container .main-content {
    padding-left: 0;
  }
}

footer .ast-footer-copyright {
  color: var(--main-color1);
  font-size: 13px;
}

/*Elementor又はAstaraの影響でsp表示でflexが崩れるのを防ぐ*/
@media (max-width: 767px) {
  .e-con.e-flex {
    flex-wrap: nowrap;
  }
}
.recruit-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 500px;
  padding: 0 36px;
  height: 72px;
  color: #fff;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background-color: var(--main-color3);
  text-decoration: none !important;
}
.recruit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #111418;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.recruit-btn:hover::before {
  transform: translateX(0%);
}
.recruit-btn:hover .recruit-btn__sub {
  color: rgba(160, 190, 255, 0.7);
}
.recruit-btn:hover .recruit-btn__dots {
  opacity: 1;
}
.recruit-btn:hover .recruit-btn__arrow-line {
  stroke-dashoffset: -4;
}
.recruit-btn:hover .recruit-btn__arrow-head {
  transform: translateX(4px);
}
.recruit-btn:active::before {
  background-color: #0a0c10;
}
.recruit-btn:focus-visible {
  outline: 3px solid rgba(99, 153, 255, 0.8);
  outline-offset: 3px;
}
.recruit-btn__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
}
.recruit-btn__sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(180, 210, 255, 0.85);
  font-weight: 400;
  transition: color 0.3s ease;
}
.recruit-btn__main {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #fff;
  line-height: 1;
}
.recruit-btn__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.recruit-btn__dots {
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0.45;
  transition: opacity 0.3s ease;
}
.recruit-btn__dots span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(160, 200, 255, 0.9);
}
.recruit-btn__arrow {
  width: 20px;
  height: 20px;
  overflow: visible;
}
.recruit-btn__arrow-line {
  stroke-dasharray: 12;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.3s ease;
}
.recruit-btn__arrow-head {
  transition: transform 0.3s ease;
  transform-origin: 16px 10px;
}

a.webbtn2 {
  display: inline-block;
  text-align: center;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: var(--main-color1);
  padding: 0.8em 2em;
  min-width: 200px;
  transition: 0.2s all;
  border: 1px solid var(--main-color4);
  background-color: var(--main-color4);
}
a.webbtn2:hover {
  background-color: var(--main-color1);
  color: var(--main-color4);
}

/*--カスタム：テキストブロック--*/
/*表デザインnormal*/
table.table_normal {
  border-collapse: collapse;
  width: 100%;
}
table.table_normal th, table.table_normal td {
  border-top: 1px solid var(--main-gray2);
  border-bottom: 1px solid var(--main-gray2);
  padding: 0.5em 0.5em 0.5em 1em;
  min-width: 5.5em;
}
@media screen and (max-width: 820px) {
  table.table_normal th, table.table_normal td {
    display: block;
    padding: 0.4em 0.4em;
    font-size: 0.9em;
  }
}
table.table_normal th {
  color: var(--main-color2);
  text-align: left;
  min-width: 25%;
  background-color: var(--main-gray1);
}
@media screen and (max-width: 820px) {
  table.table_normal th {
    border-bottom: none;
    width: 100%;
  }
}
table.table_normal td {
  background-color: var(--main-color1);
}
@media screen and (max-width: 820px) {
  table.table_normal td {
    border-top: none;
    border-bottom: 1px solid var(--main-gray1);
  }
}

table.table_normal.white th, table.table_normal.white td {
  background-color: var(--main-color1);
}
@media screen and (max-width: 820px) {
  table.table_normal.white th {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 820px) {
  table.table_normal.white td {
    padding-top: 0.25em;
  }
}

/*表デザイン01*/
table.table_design01 {
  border-collapse: collapse;
  width: 100%;
}
table.table_design01 th, table.table_design01 td {
  border: 2px solid var(--main-gray1);
  background-color: var(--main-color1);
  padding: 0.7em 1em;
}
@media screen and (max-width: 820px) {
  table.table_design01 th, table.table_design01 td {
    display: block;
    padding: 0.4em 0.4em;
    border: none;
    font-size: 0.9em;
  }
}
table.table_design01 th {
  background-color: var(--main-color3);
  color: var(--main-color1);
  font-weight: 500;
  text-align: center;
  width: 20%;
  font-weight: 500;
}
@media screen and (max-width: 820px) {
  table.table_design01 th {
    text-align: left;
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  table.table_design01 td {
    border-bottom: 2px solid var(--main-gray1);
  }
}

#page {
  padding-top: 80px;
}

span.border-color {
  border: 2px solid var(--main-color4);
  color: var(--main-color4);
  padding: 0.2em 0.5em;
}

/*◇トップページ*/
/*ファーストビュー*/
section.firstview div.firstview__catch-main span {
  display: inline-block;
  opacity: 0;
  transform: translateX(50px);
}
section.firstview .firstview__slider-wrap .middle {
  position: absolute;
  inset: 0;
  background-color: var(--main-color4);
  animation: 0.4s topBlindAnime 0.5s forwards ease-in-out;
}
section.firstview .firstview__slider-wrap .front {
  position: absolute;
  inset: 0;
  background-color: var(--main-color3);
  animation: 0.4s topBlindAnime 0.4s forwards ease-in-out;
}
section.firstview .firstview__slider-wrap .white {
  position: absolute;
  inset: 0;
  background-color: var(--main-color1);
  animation: 0.4s topBlindAnime 0.15s forwards;
}
section.firstview p.firstview__catch-sub {
  opacity: 0;
  animation: 0.5s SubCatchCopy 2.75s forwards;
}

@keyframes topBlindAnime {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes SubCatchCopy {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*テキストのアニメーション*/
.text-anime-area {
  overflow-x: hidden;
  overflow-x: clip;
}
.text-anime-area .box {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 1px;
}
.text-anime-area .box .item {
  font-size: 9.5em;
  font-weight: 400;
  line-height: 1;
  color: #e4e4e4;
  opacity: 0.3;
  width: -moz-max-content;
  width: max-content;
  pointer-events: none;
  white-space: nowrap;
  padding: 0 1em;
  mix-blend-mode: multiply;
  font-family: "Inter", sans-serif;
  z-index: 1;
  animation: textAnime 35s linear 0s infinite normal none;
}
.text-anime-area .box .item span {
  color: transparent;
  -webkit-text-stroke: 2px #c5c5c5;
}

@keyframes textAnime {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(-100%);
  }
}
@keyframes textAnime-sp {
  0% {
    left: 100%;
  }
  100% {
    left: -350%;
  }
}
@media screen and (max-width: 540px) {
  .business-photo-box-parent {
    width: 100%;
    height: auto;
    aspect-ratio: 16/7;
  }
}

.business-photo-box {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/7;
  overflow: hidden;
}
.business-photo-box > div {
  width: 100%;
  height: 100%;
}
.business-photo-box > div.front {
  position: absolute;
  inset: 0;
  background-color: var(--main-color3);
  z-index: 3;
}
.business-photo-box > div.middle {
  position: absolute;
  inset: 0;
  background-color: var(--main-color4);
  z-index: 2;
}
.business-photo-box > div.photo {
  height: 120%;
  aspect-ratio: unset;
  background-color: #ffffff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.business-text-box {
  position: relative;
  overflow-x: hidden;
  overflow-x: clip !important;
}
.business-text-box .back-text {
  position: absolute;
  top: -100px;
  right: -0.4em;
  font-family: "Inter", sans-serif;
  font-size: 15em;
  font-weight: 500;
  line-height: 1;
  color: var(--main-gray2);
  opacity: 0.2;
}
@media screen and (max-width: 540px) {
  .business-text-box .back-text {
    right: -0.25em;
    font-size: 10em;
  }
}

.parallax__bg {
  position: absolute;
  background-image: url();
  background-size: cover;
  background-position: center;
}

.company-photos {
  position: relative;
  margin-left: 12%;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 540px) {
  .company-photos {
    margin-left: 0;
  }
}
.company-photos .item {
  position: relative;
  width: 50%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.company-photos .item > div {
  width: 100%;
  height: 100%;
}
.company-photos .item > div.front {
  position: absolute;
  inset: 0;
  background-color: var(--main-color3);
  z-index: 3;
}
.company-photos .item > div.middle {
  position: absolute;
  inset: 0;
  background-color: var(--main-color4);
  z-index: 2;
}
.company-photos .item > div.photo {
  height: 120%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.company-photos .item:nth-child(1) {
  top: 25px;
  left: 0px;
}
.company-photos .item:nth-child(2) {
  top: -25px;
  left: 20px;
}

.slider {
  width: 100%;
  overflow: hidden;
}
.slider .slider-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
.slider .slider-track img {
  display: block;
}
.slider .slider-track > div {
  width: 350px;
  aspect-ratio: 4/3;
  background-repeat: none;
  background-position: center;
  background-size: cover;
}

section.contact-area {
  background-color: var(--main-color2);
}
section.contact-area .wrap {
  padding: 70px 5%;
}
section.contact-area .wrap .box .title {
  margin-bottom: 30px;
}
section.contact-area .wrap .box .title .eng {
  font-family: "Inter", sans-serif;
  text-align: center;
  font-size: 1.2em !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.3 !important;
  color: var(--main-color1);
  margin-bottom: 0.5em;
}
section.contact-area .wrap .box .title h2.jp {
  text-align: center;
  font-size: 2.5em !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.3 !important;
  color: var(--main-color1);
}
section.contact-area .wrap .box .item-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  section.contact-area .wrap .box .item-box {
    grid-template-columns: 1fr;
  }
}
section.contact-area .wrap .box .item-box .item {
  color: var(--main-color1);
  text-align: center;
  padding: 10px;
}
section.contact-area .wrap .box .item-box .item p {
  margin-bottom: 1em;
}
section.contact-area .wrap .box .item-box .item:first-child {
  border-right: 1px solid var(--main-color1);
}
@media screen and (max-width: 540px) {
  section.contact-area .wrap .box .item-box .item:first-child {
    border-right: none;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

a.product-top-item {
  width: 100%;
  filter: drop-shadow(0px 3px 6px rgba(50, 50, 50, 0.1)) drop-shadow(0px 3px 6px rgba(50, 50, 50, 0.16));
}
a.product-top-item .wrap {
  background-color: var(--main-color1);
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--main-color3);
  transition: all 0.25s;
}
a.product-top-item .wrap .img-box {
  display: flex;
  aspect-ratio: 4/3;
  justify-content: center;
  align-items: center;
}
a.product-top-item .wrap .name {
  padding: 10px 10px;
  color: var(--main-color2);
  font-weight: 600;
  background-color: var(--main-color1);
}
a.product-top-item .wrap .tag {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 10px 10px;
  background-color: var(--main-color3);
  transition: all 0.25s;
}
a.product-top-item .wrap .tag span {
  position: relative;
  display: inline-block;
  background-color: var(--main-color1);
  padding: 4px 5px 5px 1em;
  font-size: 0.85em;
  color: var(--main-color2);
  border-radius: 5px;
  overflow: hidden;
}
a.product-top-item .wrap .tag span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0.25em;
  width: 0.25em;
  height: 1em;
  transform: translateY(-50%);
  background-color: var(--main-gray1);
}
a.product-top-item:hover .wrap {
  border-color: var(--main-color4);
}
a.product-top-item:hover .wrap .tag {
  background-color: var(--main-color4);
}

/*◇カスタム投稿*/
.product h2 {
  font-size: 1.6em !important;
}

.single .post-navigation .nav-links {
  display: none !important;
}

/*◇子ページ*/
.subpage h2 {
  font-size: 2.5em !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  line-height: 1.3 !important;
}
@media screen and (max-width: 540px) {
  .subpage h2 {
    font-size: 1.8em !important;
  }
}
.subpage h3 {
  font-size: 2em !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  line-height: 1.3 !important;
  border-left: 5px solid var(--main-color3);
  padding-left: 0.5em;
}
@media screen and (max-width: 540px) {
  .subpage h3 {
    font-size: 1.6em !important;
  }
}

.sub-eng {
  font-size: 1.15em;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  font-family: "Inter", sans-serif;
  color: var(--main-accent);
}

/*大見出し*/
#subpage-top {
  position: relative;
  padding-left: 13%;
}
@media screen and (max-width: 1025px) {
  #subpage-top {
    padding-left: 5%;
  }
}
#subpage-top .h-wrap {
  display: flex;
  align-items: flex-end;
  margin-top: 80px;
  padding: 30px 10px;
}
@media screen and (max-width: 540px) {
  #subpage-top .h-wrap {
    margin-top: 40px;
  }
}
#subpage-top .h-wrap .box {
  opacity: 0;
  transform: translateY(25px);
  animation: 0.3s subpage-text-fadein 0.2s forwards ease-out;
}
#subpage-top .h-wrap .box .eng {
  font-family: "Inter", sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.05;
  margin-bottom: 0.75em;
  color: var(--main-color3);
}
@media screen and (max-width: 540px) {
  #subpage-top .h-wrap .box .eng {
    font-size: 1.2em;
  }
}
#subpage-top .h-wrap .box h1 {
  font-size: 3.75em !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  line-height: 1 !important;
}
@media screen and (max-width: 540px) {
  #subpage-top .h-wrap .box h1 {
    font-size: 2.5em !important;
    margin-bottom: 0 !important;
  }
}
#subpage-top .img-wrap {
  position: relative;
  aspect-ratio: 16/6;
  overflow: hidden;
  z-index: 10;
}
@media screen and (max-width: 540px) {
  #subpage-top .img-wrap {
    aspect-ratio: 16/8;
  }
}
#subpage-top .img-wrap div.img {
  width: 100%;
  height: 120%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#subpage-top .img-wrap div.middle {
  position: absolute;
  width: inherit;
  height: 100%;
  inset: 0;
  background-color: var(--main-color4);
  animation: 0.7s subpage-img-slide 0.74s forwards ease-in-out;
}
#subpage-top .img-wrap div.front {
  position: absolute;
  width: inherit;
  height: 100%;
  inset: 0;
  background-color: var(--main-color3);
  animation: 0.7s subpage-img-slide 0.65s forwards ease-in-out;
}
#subpage-top.bg-blue::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: #f2f7fb;
}

@keyframes subpage-text-fadein {
  0% {
    transform: translateY(25px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes subpage-img-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(105%);
  }
}
.business-copy-box {
  font-size: 1.5em;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2;
}
.business-copy-box span {
  color: var(--main-color4);
  font-weight: 700;
}

ol.business-links {
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin: 0;
}
ol.business-links li {
  counter-increment: item;
  position: relative;
  margin-bottom: 0.5em;
  font-size: 1.1em;
  line-height: 1.3;
  border-bottom: 2px dotted var(--main-gray2);
}
ol.business-links li::before {
  content: "#" counter(item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0em;
  color: #27c797;
}
ol.business-links li a {
  display: block;
  color: var(--main-color3);
  font-size: 1.4em;
  font-weight: 500;
  padding: 0.5em 0.5em 0.5em 2.75rem;
  transition: all 0.2s;
}
ol.business-links li a:hover {
  color: var(--main-accent);
  background-color: rgba(255, 255, 255, 0.8);
}

.subpage-line {
  position: relative;
  width: 100%;
  height: 4px;
  background-color: var(--main-gray2);
}
.subpage-line::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: var(--main-color4);
}

.line-box {
  position: relative;
  border: 1px solid var(--main-color2);
  padding: 1em;
}
.line-box h3 {
  display: inline-block;
  position: absolute;
  top: -0.75em;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--main-color1);
  padding: 0 1em;
}
.line-box .info ul {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 2.5em;
       column-gap: 2.5em;
  row-gap: 1em;
}
.subpage-card .sub-title {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin-bottom: 0.25em;
}
.subpage-card .title {
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin-bottom: 0.5em;
  color: var(--main-color4);
}
.subpage-card ul {
  margin-top: 0;
}

/*製品紹介ページ*/
#product-tag .e-n-tab-title {
  justify-content: flex-start;
}
#product-tag .e-n-tab-title span.e-n-tab-title-text {
  text-align: left !important;
}

/*会社紹介ページ*/
.company-slogan-box {
  max-width: 650px;
  margin: 0 auto;
}
.company-slogan-box .bold {
  position: relative;
  z-index: 1;
  font-size: 2.5em;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 540px) {
  .company-slogan-box .bold {
    font-size: 1.8em;
  }
}
.company-slogan-box .bold span {
  color: var(--main-color4);
  padding-right: 0.05em;
}
.company-slogan-box .bold::before {
  content: "“";
  position: absolute;
  left: -0.5em;
  top: -0.3em;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--main-gray1);
  z-index: -1;
  text-shadow: none;
  line-height: 1;
}
@media screen and (max-width: 820px) {
  .company-slogan-box .bold::before {
    left: -0.2em;
  }
}
.company-slogan-box .bold::after {
  content: "”";
  position: absolute;
  right: -0.3em;
  bottom: -0.5em;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--main-gray1);
  z-index: -1;
  text-shadow: none;
  line-height: 1;
}
@media screen and (max-width: 820px) {
  .company-slogan-box .bold::after {
    bottom: -0.8em;
  }
}
.company-slogan-box .explanation {
  font-size: 1.1em;
  font-weight: 500;
}
@media screen and (max-width: 540px) {
  .company-slogan-box .explanation {
    font-size: 1em;
  }
}
@media screen and (max-width: 540px) {
  .company-slogan-box .pc-tb-only {
    display: none;
  }
}

/*◇採用ページ*/
.recruit-page .eng-box {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.recruit-page .eng-box .bar {
  display: inline-block;
  width: 1.5em;
  height: 0.2em;
  margin-right: 0.8em;
  background-color: var(--main-color4);
}
.recruit-page .eng-box .eng {
  font-size: 1.2em;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}
.recruit-page h2 {
  font-size: 2.5em !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.com-data {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 30px;
  background-color: rgba(240, 240, 240, 0.6);
  min-height: 250px;
  border: 2px solid #f0f0f0;
}
@media screen and (max-width: 540px) {
  .com-data {
    min-height: 200px;
  }
}
.com-data p {
  font-size: 1.2em;
  font-weight: 450;
  margin-bottom: 5px;
  line-height: 1;
  letter-spacing: 0.05em;
}
.com-data p span {
  font-size: 3.2em;
  font-family: "Roboto", sans-serif;
}

.recruit-info-box {
  position: relative;
}
.recruit-info-box .flex-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  padding-top: 10px;
  border-top: 1px solid var(--main-color3);
}
@media screen and (max-width: 540px) {
  .recruit-info-box .flex-box {
    display: block;
  }
}
.recruit-info-box .flex-box .num {
  color: var(--main-color4);
  font-size: 2em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 540px) {
  .recruit-info-box .flex-box .num {
    font-size: 1.5em;
  }
}
.recruit-info-box .flex-box .text .bold {
  font-size: 1.7em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 0.2em;
}
@media screen and (max-width: 820px) {
  .recruit-info-box .flex-box .text .bold {
    font-size: 1.4em;
    padding-bottom: 0.4em;
  }
}
.recruit-info-box .flex-box .text .normal {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
.recruit-info-box .flex-box .text .normal .sub {
  font-size: 1.2em;
  font-weight: 700;
  padding-top: 5px;
  padding-bottom: 5px;
  color: var(--main-color4);
}
@media screen and (max-width: 820px) {
  .recruit-info-box .flex-box .text .normal .sub {
    font-size: 1em;
  }
}

.featur-img-wrap {
  padding: 0 5%;
  display: flex;
  align-items: center;
  height: 90vh;
}
@media screen and (max-width: 540px) {
  .featur-img-wrap {
    height: auto;
    margin-top: -20px;
    padding-bottom: 30px;
  }
}
.featur-img-wrap .img-box {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 300/350;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1600px) {
  .featur-img-wrap .img-box {
    max-width: 350px;
  }
}

.recruit-illust {
  position: relative;
  width: 100%;
}
.recruit-illust > img {
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
@media screen and (max-width: 1600px) {
  .recruit-illust > img {
    max-width: 250px !important;
  }
}
@media screen and (max-width: 1025px) {
  .recruit-illust > img {
    max-width: 220px !important;
  }
}
@media screen and (max-width: 540px) {
  .recruit-illust > img {
    max-width: 170px !important;
  }
}/*# sourceMappingURL=sakuraglobal.css.map */