@charset "UTF-8";
/* production date 2025/11/10 ~ 2026/01/26 */
/* コモンスタイル用(タイトルやボタン、カードなど) scss */
/*----------------------------------------------------------------------------------------------------------------
media query
----------------------------------------------------------------------------------------------------------------*/
/* variable declaration */
/* main margin */
/* main padding */
/*----------------------------------------------------------------------------------------------------------------
variable declaration / mixin
----------------------------------------------------------------------------------------------------------------*/
/* color */
/* gradient */
/* underline */
/* drop-shadow */
/* tx drop-shadow */
/* font */
/* hover transition */
/* img */
/*----------------------------------------------------------------------------------------------------------------
title
----------------------------------------------------------------------------------------------------------------*/
/* 小さい英語のタイトル | title-style--s */
.title-style--s {
  color: #00BAA5;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* 小さい英語のタイトル（縦書き） | title-style--s_vertical */
.title-style--s_vertical {
  color: #00BAA5;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 992px) {
  .title-style--s_vertical {
    writing-mode: horizontal-tb;
  }
}

/* 小さい英語のタイトル（縦書き）02 | title-style--s_vertical02 */
.title-style--s_vertical02 {
  color: #00BAA5;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1100px) {
  .title-style--s_vertical02 {
    writing-mode: horizontal-tb;
  }
}

/* 左側に縦ライン 少し大きい英語＋小さい日本語タイトル（白） | title-style--m */
.title-style--m {
  position: relative;
  left: 22px;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: 1.6px;
}
.title-style--m span {
  position: relative;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}
@media screen and (max-width: 576px) {
  .title-style--m span {
    font-size: 36px;
    letter-spacing: 3px;
  }
}
.title-style--m::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -22px;
  width: 9px;
  height: 3.7em;
  margin-top: 13px;
  background-color: #FFF;
  vertical-align: middle;
  opacity: 0.6;
  z-index: 5;
}

/* 左側に縦ライン 少し大きい英語＋小さい日本語タイトル（青緑） | title-style--m-blueGreen */
.title-style--m-blueGreen {
  position: relative;
  left: 22px;
  color: #00BAA5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: 1.6px;
}
.title-style--m-blueGreen span {
  position: relative;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}
@media screen and (max-width: 576px) {
  .title-style--m-blueGreen span {
    font-size: 36px;
    letter-spacing: 3px;
  }
}
.title-style--m-blueGreen::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -22px;
  width: 9px;
  height: 3.7em;
  margin-top: 13px;
  background-color: #00BAA5;
  vertical-align: middle;
  opacity: 0.6;
  z-index: 5;
}

/* 左側に縦ライン 少し大きい英語＋小さい日本語タイトル（黒） | title-style--m-black */
.title-style--m-black {
  position: relative;
  left: 22px;
  color: #37485A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: 1.6px;
}
.title-style--m-black span {
  position: relative;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}
@media screen and (max-width: 576px) {
  .title-style--m-black span {
    font-size: 36px;
    letter-spacing: 3px;
  }
}
.title-style--m-black::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -22px;
  width: 9px;
  height: 3.7em;
  margin-top: 13px;
  background-color: #37485A;
  vertical-align: middle;
  opacity: 0.6;
  z-index: 5;
}

/* 少し大きい英語＋小さい日本語タイトル（中央揃え、黒） | title-style--m-black-center */
.title-style--m-black-center {
  position: relative;
  color: #37485A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: 1.6px;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .title-style--m-black-center {
    font-size: 12px;
  }
}
.title-style--m-black-center span {
  position: relative;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .title-style--m-black-center span {
    font-size: 40px;
  }
}
@media screen and (max-width: 576px) {
  .title-style--m-black-center span {
    font-size: 34px;
  }
}

/*  title-style--lower */
.title-style--lower {
  position: relative;
  left: 22px;
  color: #00BAA5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: 1.4px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .title-style--lower {
    font-size: 18px;
    letter-spacing: 1.2px;
  }
}
@media screen and (max-width: 576px) {
  .title-style--lower {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 2 !important;
  }
}
@media screen and (max-width: 400px) {
  .title-style--lower {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
.title-style--lower span {
  position: relative;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 72px;
  line-height: 1;
  letter-spacing: 4.2px;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .title-style--lower span {
    font-size: 64px;
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 768px) {
  .title-style--lower span {
    font-size: 57px;
    letter-spacing: 3.5px;
  }
}
@media screen and (max-width: 576px) {
  .title-style--lower span {
    font-size: 48px;
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 400px) {
  .title-style--lower span {
    font-size: 44px;
    letter-spacing: 2px;
  }
}
.title-style--lower::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -24px;
  width: 9px;
  height: 4.7em;
  margin-top: 15px;
  background-color: #00BAA5;
  vertical-align: middle;
  opacity: 0.6;
  z-index: 5;
}
@media screen and (max-width: 992px) {
  .title-style--lower::before {
    height: 4.4em;
  }
}
@media screen and (max-width: 768px) {
  .title-style--lower::before {
    height: 4.3em;
  }
}
@media screen and (max-width: 576px) {
  .title-style--lower::before {
    height: 4.1em;
    margin-top: 9px;
  }
}
@media screen and (max-width: 400px) {
  .title-style--lower::before {
    height: 3.9em;
  }
}

/* （白） | title-style--lower-white */
.title-style--lower-white {
  position: relative;
  left: 22px;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: 1.4px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .title-style--lower-white {
    font-size: 18px;
    letter-spacing: 1.2px;
  }
}
@media screen and (max-width: 576px) {
  .title-style--lower-white {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 2 !important;
  }
}
@media screen and (max-width: 400px) {
  .title-style--lower-white {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
.title-style--lower-white span {
  position: relative;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 72px;
  line-height: 1;
  letter-spacing: 4.2px;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .title-style--lower-white span {
    font-size: 64px;
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 768px) {
  .title-style--lower-white span {
    font-size: 57px;
    letter-spacing: 3.5px;
  }
}
@media screen and (max-width: 576px) {
  .title-style--lower-white span {
    font-size: 48px;
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 400px) {
  .title-style--lower-white span {
    font-size: 44px;
    letter-spacing: 2px;
  }
}
.title-style--lower-white::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -24px;
  width: 9px;
  height: 4.7em;
  margin-top: 15px;
  background-color: #FFF;
  vertical-align: middle;
  opacity: 0.6;
  z-index: 5;
}
@media screen and (max-width: 992px) {
  .title-style--lower-white::before {
    height: 4.4em;
  }
}
@media screen and (max-width: 768px) {
  .title-style--lower-white::before {
    height: 4.3em;
  }
}
@media screen and (max-width: 576px) {
  .title-style--lower-white::before {
    margin-top: 9px;
    height: 4.1em;
  }
}
@media screen and (max-width: 400px) {
  .title-style--lower-white::before {
    height: 3.9em;
  }
}

/* 第三階層のbusiness01~03 タイトル | title-style--lower02 */
.title-style--lower02 {
  position: relative;
  left: 22px;
  color: #FFF;
  font-family: "Roboto";
  font-size: 12px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.96px;
  white-space: nowrap;
}
.title-style--lower02 span {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.28px;
}
@media screen and (max-width: 992px) {
  .title-style--lower02 span {
    font-size: 28px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 768px) {
  .title-style--lower02 span {
    font-size: 26px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 576px) {
  .title-style--lower02 span {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}
.title-style--lower02::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -24px;
  width: 9px;
  height: 4.6em;
  margin-top: 9px;
  background-color: #FFF;
  vertical-align: middle;
  opacity: 0.6;
  z-index: 5;
}
@media screen and (max-width: 992px) {
  .title-style--lower02::before {
    height: 4.1em;
  }
}
@media screen and (max-width: 768px) {
  .title-style--lower02::before {
    height: 4em;
  }
}
@media screen and (max-width: 576px) {
  .title-style--lower02::before {
    height: 3.8em;
    margin-top: 9px;
  }
}

/* 少し小さい（白） | title-style--lower02-s */
.title-style--lower02-s {
  position: relative;
  left: 22px;
  color: #FFF;
  font-family: "Roboto";
  font-size: 12px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.96px;
  white-space: nowrap;
  text-align: start;
}
.title-style--lower02-s span {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.3px;
}
@media screen and (max-width: 1200px) {
  .title-style--lower02-s span {
    font-size: 20px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 768px) {
  .title-style--lower02-s span {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .title-style--lower02-s span {
    font-size: 18px;
    letter-spacing: 0.96px;
  }
}
.title-style--lower02-s::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -22px;
  width: 7px;
  height: 3.8em;
  margin-top: 9px;
  background-color: #FFF;
  vertical-align: middle;
  opacity: 0.6;
  z-index: 5;
}
@media screen and (max-width: 1200px) {
  .title-style--lower02-s::before {
    height: 3.6em;
  }
}
@media screen and (max-width: 992px) {
  .title-style--lower02-s::before {
    height: 3.5em;
  }
}
@media screen and (max-width: 768px) {
  .title-style--lower02-s::before {
    height: 3.4em;
  }
}
@media screen and (max-width: 576px) {
  .title-style--lower02-s::before {
    height: 3.5em;
  }
}

/* 少し小さい（黒） | title-style--lower02-s-black */
.title-style--lower02-s-black {
  position: relative;
  left: 22px;
  color: #37485A;
  font-family: "Roboto";
  font-size: 12px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.96px;
  white-space: nowrap;
  text-align: start;
}
.title-style--lower02-s-black span {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.3px;
}
@media screen and (max-width: 1200px) {
  .title-style--lower02-s-black span {
    font-size: 20px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 768px) {
  .title-style--lower02-s-black span {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .title-style--lower02-s-black span {
    font-size: 18px;
    letter-spacing: 0.96px;
  }
}
.title-style--lower02-s-black::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -22px;
  width: 7px;
  height: 3.8em;
  margin-top: 9px;
  background-color: #37485A;
  vertical-align: middle;
  opacity: 0.6;
  z-index: 5;
}
@media screen and (max-width: 1200px) {
  .title-style--lower02-s-black::before {
    height: 3.6em;
  }
}
@media screen and (max-width: 992px) {
  .title-style--lower02-s-black::before {
    height: 3.5em;
  }
}
@media screen and (max-width: 768px) {
  .title-style--lower02-s-black::before {
    height: 3.4em;
  }
}
@media screen and (max-width: 576px) {
  .title-style--lower02-s-black::before {
    height: 3.5em;
  }
}

/* 採用情報ページの下層fv用 タイトル | title-style--lower03 */
.title-style--lower03 {
  position: relative;
  left: 22px;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 1.2px;
  white-space: nowrap;
}
@media screen and (max-width: 576px) {
  .title-style--lower03 {
    font-size: 15px;
    line-height: 36px;
  }
}
.title-style--lower03 span {
  position: relative;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .title-style--lower03 span {
    font-size: 38px;
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 768px) {
  .title-style--lower03 span {
    font-size: 36px;
    letter-spacing: 2.8px;
  }
}
@media screen and (max-width: 576px) {
  .title-style--lower03 span {
    font-size: 34px;
    letter-spacing: 2.6px;
  }
}
.title-style--lower03::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -24px;
  width: 9px;
  height: 3.8em;
  margin-top: 14px;
  background-color: #FFF;
  vertical-align: middle;
  opacity: 0.6;
  z-index: 5;
}
@media screen and (max-width: 992px) {
  .title-style--lower03::before {
    height: 3.7em;
  }
}
@media screen and (max-width: 768px) {
  .title-style--lower03::before {
    height: 3.6em;
    margin-top: 13px;
  }
}
@media screen and (max-width: 576px) {
  .title-style--lower03::before {
    height: 3.5em;
  }
}

/* 日本語メインのh3タイトル（主にグループページの一覧） | title-style__h3--jp */
.title-style__h3--jp {
  position: relative;
  left: 22px;
  color: #00BAA5;
  font-family: "Roboto";
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.96px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .title-style__h3--jp {
    font-size: 10px;
    letter-spacing: 0.7px;
  }
}
@media screen and (max-width: 576px) {
  .title-style__h3--jp {
    font-size: 9px;
  }
}
.title-style__h3--jp span {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 1.28px;
}
@media screen and (max-width: 992px) {
  .title-style__h3--jp span {
    font-size: 30px;
    letter-spacing: 1.1px;
    line-height: 28px;
  }
}
@media screen and (max-width: 768px) {
  .title-style__h3--jp span {
    font-size: 28px;
    letter-spacing: 1px;
    line-height: 26px;
  }
}
@media screen and (max-width: 576px) {
  .title-style__h3--jp span {
    font-size: 24px;
    line-height: 18px;
  }
}
.title-style__h3--jp::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -24px;
  width: 9px;
  height: 4.25em;
  margin-top: 10px;
  background-color: #00BAA5;
  vertical-align: middle;
  opacity: 0.6;
  z-index: 5;
}
@media screen and (max-width: 992px) {
  .title-style__h3--jp::before {
    width: 8px;
    height: 4.1em;
    margin-top: 8px;
  }
}
@media screen and (max-width: 768px) {
  .title-style__h3--jp::before {
    width: 7.5px;
    height: 4.5em;
    margin-top: 10px;
  }
}
@media screen and (max-width: 576px) {
  .title-style__h3--jp::before {
    left: -20px;
    width: 6.5px;
    height: 4.5em;
    margin-top: 9px;
  }
}
@media screen and (max-width: 400px) {
  .title-style__h3--jp::before {
    left: -19px;
    height: 4.5em;
    margin-top: 10px;
  }
}

/* 学校名のタイトル 1行（主にグループページの一覧） | title-style__groupName */
.title-style__groupName {
  position: relative;
  display: inline-block;
  color: #37485A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 1.08px;
  margin-left: 10px;
}
.title-style__groupName span {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.72px;
}
.title-style__groupName::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 3px;
  left: -10px;
  width: 3px;
  height: 1em;
  margin-right: 20px;
  background-color: #B4D700;
}

/* 学校名のタイトル 2行（主にグループページの一覧） | title-style__groupName--2 */
.title-style__groupName--2 {
  position: relative;
  display: inline-block;
  color: #37485A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 1.08px;
  margin-left: 10px;
}
.title-style__groupName--2 span {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.72px;
}
.title-style__groupName--2::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 5px;
  left: -10px;
  width: 3px;
  height: 2.1em;
  margin-right: 20px;
  background-color: #B4D700;
}

/* 学校名のタイトル 2行、小さい（主にグループページの一覧） | title-style__groupName--2s */
.title-style__groupName--2s {
  position: relative;
  display: inline-block;
  color: #37485A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 1.08px;
  margin-left: 10px;
}
.title-style__groupName--2s span {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.72px;
  opacity: 0.8;
}
.title-style__groupName--2s::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 9px;
  left: -10px;
  width: 3px;
  height: 2em;
  margin-right: 20px;
  background-color: #B4D700;
}

/* 学校名のタイトル 3行、小さい（主にグループページの一覧） | title-style__groupName--2s */
.title-style__groupName--3s {
  position: relative;
  display: inline-block;
  color: #37485A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 1.08px;
  margin-left: 10px;
}
.title-style__groupName--3s span {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px !important;
  letter-spacing: 0.72px;
  opacity: 0.8;
}
.title-style__groupName--3s::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 4px;
  left: -10px;
  width: 3px;
  height: 2.8em;
  margin-right: 20px;
  background-color: #B4D700;
}

/* 小さい部門名のタイトル（主にグループページの一覧） | title-style__field */
.title-style__field {
  margin-bottom: 6px;
  color: #00BAA5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.84px;
}

/* 大きいタイトルのまとまり（主にトップのaboutやrecruit）（白） | title-style--l */
.title-style--l {
  display: block;
  width: auto;
  height: auto;
  margin-left: 40px;
}
@media screen and (max-width: 576px) {
  .title-style--l {
    margin-left: 50px;
  }
}
@media screen and (max-width: 400px) {
  .title-style--l {
    margin-left: 30px;
  }
}
.title-style--l .h2_inner {
  margin-bottom: 18px;
  opacity: 0.2;
}
@media screen and (max-width: 576px) {
  .title-style--l .h2_inner {
    opacity: 0.3;
  }
}
.title-style--l .h2_inner__tx {
  color: #FFF;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 128px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 10.24px;
  text-transform: uppercase;
  white-space: nowrap;
  mix-blend-mode: screen;
}
@media screen and (max-width: 768px) {
  .title-style--l .h2_inner__tx {
    font-size: 110px;
    letter-spacing: 8.5px;
  }
}
@media screen and (max-width: 576px) {
  .title-style--l .h2_inner__tx {
    font-size: 80px;
    letter-spacing: 5px;
    margin-left: -30px;
  }
}
@media screen and (max-width: 480px) {
  .title-style--l .h2_inner__tx {
    font-size: 72px;
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 400px) {
  .title-style--l .h2_inner__tx {
    font-size: 64px;
    letter-spacing: 3px;
  }
}
.title-style--l .tx_inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .title-style--l .tx_inner {
    gap: 40px;
  }
}
@media screen and (max-width: 576px) {
  .title-style--l .tx_inner {
    gap: 30px !important;
  }
}
@media screen and (max-width: 450px) {
  .title-style--l .tx_inner {
    gap: 20px !important;
  }
}
.title-style--l .tx_inner--left {
  margin-top: 5px;
  margin-left: 8vw;
}
@media screen and (max-width: 1600px) {
  .title-style--l .tx_inner--left {
    margin-left: 6vw;
  }
}
@media screen and (max-width: 1200px) {
  .title-style--l .tx_inner--left {
    margin-left: 0;
  }
}
@media screen and (max-width: 992px) {
  .title-style--l .tx_inner--left {
    margin-top: 5px;
  }
}
@media screen and (max-width: 450px) {
  .title-style--l .tx_inner--left {
    margin-top: 3px;
  }
}
.title-style--l .tx_inner__vertical-tx {
  display: block;
}
@media screen and (max-width: 576px) {
  .title-style--l .tx_inner__vertical-tx {
    margin-left: -32px;
  }
}
.title-style--l .tx_inner__vertical-tx span {
  display: inline-block;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
@media screen and (max-width: 576px) {
  .title-style--l .tx_inner__vertical-tx span {
    font-size: 14px;
    letter-spacing: 0.15em;
  }
}
.title-style--l .tx_inner--right {
  display: block;
  text-align: start;
}
.title-style--l .tx_inner__copy {
  margin-bottom: 40px;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 2px;
  white-space: nowrap;
}
@media screen and (max-width: 992px) {
  .title-style--l .tx_inner__copy {
    font-size: 35px;
    line-height: 45px;
    letter-spacing: 1.7px;
  }
}
@media screen and (max-width: 576px) {
  .title-style--l .tx_inner__copy {
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 35px;
    letter-spacing: 1.4px;
  }
}
@media screen and (max-width: 450px) {
  .title-style--l .tx_inner__copy {
    font-size: 24px;
    line-height: 33px;
    letter-spacing: 1.2px;
  }
}
.title-style--l .tx_inner__tx {
  margin-bottom: 40px;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  text-align: justify;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 1.28px;
}
@media screen and (max-width: 768px) {
  .title-style--l .tx_inner__tx {
    width: 110%;
  }
}
@media screen and (max-width: 576px) {
  .title-style--l .tx_inner__tx {
    width: 106%;
    margin-bottom: 30px;
    margin-right: 40px;
    margin-left: -50px;
    font-size: 15px;
    line-height: 28px;
  }
}
@media screen and (max-width: 500px) {
  .title-style--l .tx_inner__tx {
    width: 108%;
    margin-right: 30px;
  }
}
@media screen and (max-width: 450px) {
  .title-style--l .tx_inner__tx {
    width: 110%;
  }
}
@media screen and (max-width: 400px) {
  .title-style--l .tx_inner__tx {
    width: 118%;
  }
}
@media screen and (max-width: 380px) {
  .title-style--l .tx_inner__tx {
    width: 120%;
  }
}
@media screen and (max-width: 576px) {
  .title-style--l .tx_inner__btn {
    position: relative;
    width: calc(100% - 28px);
  }
}
@media screen and (max-width: 400px) {
  .title-style--l .tx_inner__btn {
    position: relative;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .title-style--l .tx_inner__btn .btn_style--more_white, .title-style--l .tx_inner__btn .btn_style--more {
    position: absolute;
    right: 0;
    display: inline-block;
  }
}

/* 大きいタイトルのまとまり（主にトップのaboutやrecruit）（青緑） | title-style--l-blueGreen */
.title-style--l-blueGreen {
  display: block;
  width: auto;
  height: auto;
  margin-left: 40px;
}
@media screen and (max-width: 576px) {
  .title-style--l-blueGreen {
    margin-left: 50px;
  }
}
@media screen and (max-width: 400px) {
  .title-style--l-blueGreen {
    margin-left: 30px;
  }
}
.title-style--l-blueGreen .h2_inner {
  margin-bottom: 18px;
  opacity: 0.2;
}
.title-style--l-blueGreen .h2_inner__tx {
  color: #00BAA5;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 128px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 10.24px;
  text-transform: uppercase;
  white-space: nowrap;
  mix-blend-mode: screen;
}
@media screen and (max-width: 768px) {
  .title-style--l-blueGreen .h2_inner__tx {
    font-size: 110px;
    letter-spacing: 8.5px;
  }
}
@media screen and (max-width: 576px) {
  .title-style--l-blueGreen .h2_inner__tx {
    font-size: 80px;
    letter-spacing: 5px;
    margin-left: -30px;
  }
}
@media screen and (max-width: 480px) {
  .title-style--l-blueGreen .h2_inner__tx {
    font-size: 72px;
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 400px) {
  .title-style--l-blueGreen .h2_inner__tx {
    font-size: 64px;
    letter-spacing: 3px;
  }
}
.title-style--l-blueGreen .tx_inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .title-style--l-blueGreen .tx_inner {
    gap: 40px;
  }
}
@media screen and (max-width: 576px) {
  .title-style--l-blueGreen .tx_inner {
    gap: 30px;
  }
}
@media screen and (max-width: 450px) {
  .title-style--l-blueGreen .tx_inner {
    gap: 20px;
  }
}
.title-style--l-blueGreen .tx_inner--left {
  margin-top: 5px;
  margin-left: 8vw;
}
@media screen and (max-width: 1600px) {
  .title-style--l-blueGreen .tx_inner--left {
    margin-left: 6vw;
  }
}
@media screen and (max-width: 1200px) {
  .title-style--l-blueGreen .tx_inner--left {
    margin-left: 0;
  }
}
@media screen and (max-width: 992px) {
  .title-style--l-blueGreen .tx_inner--left {
    margin-top: 5px;
  }
}
@media screen and (max-width: 450px) {
  .title-style--l-blueGreen .tx_inner--left {
    margin-top: 3px;
  }
}
.title-style--l-blueGreen .tx_inner__vertical-tx {
  display: block;
}
@media screen and (max-width: 576px) {
  .title-style--l-blueGreen .tx_inner__vertical-tx {
    margin-left: -32px;
  }
}
.title-style--l-blueGreen .tx_inner__vertical-tx span {
  display: inline-block;
  color: #00BAA5 !important;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 576px) {
  .title-style--l-blueGreen .tx_inner__vertical-tx span {
    font-size: 14px;
    letter-spacing: 0.15em;
  }
}
.title-style--l-blueGreen .tx_inner--right {
  display: block;
  text-align: start;
}
.title-style--l-blueGreen .tx_inner__copy {
  margin-bottom: 40px;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 2px;
  white-space: nowrap;
}
@media screen and (max-width: 992px) {
  .title-style--l-blueGreen .tx_inner__copy {
    font-size: 35px;
    line-height: 45px;
    letter-spacing: 1.7px;
  }
}
@media screen and (max-width: 576px) {
  .title-style--l-blueGreen .tx_inner__copy {
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 35px;
    letter-spacing: 1.4px;
  }
}
@media screen and (max-width: 450px) {
  .title-style--l-blueGreen .tx_inner__copy {
    font-size: 24px;
    line-height: 33px;
    letter-spacing: 1.2px;
  }
}
.title-style--l-blueGreen .tx_inner__tx {
  margin-bottom: 0px;
  color: #37485A;
  font-family: "Noto Sans JP", sans-serif;
  text-align: justify;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 1.28px;
}
@media screen and (max-width: 768px) {
  .title-style--l-blueGreen .tx_inner__tx {
    width: 110%;
  }
}
@media screen and (max-width: 576px) {
  .title-style--l-blueGreen .tx_inner__tx {
    width: 106%;
    margin-bottom: 30px;
    margin-right: 40px;
    margin-left: -50px;
    font-size: 15px;
    line-height: 28px;
  }
}
@media screen and (max-width: 500px) {
  .title-style--l-blueGreen .tx_inner__tx {
    width: 108%;
    margin-right: 0px;
  }
}
@media screen and (max-width: 450px) {
  .title-style--l-blueGreen .tx_inner__tx {
    width: 110%;
  }
}
@media screen and (max-width: 400px) {
  .title-style--l-blueGreen .tx_inner__tx {
    width: 118%;
  }
}
@media screen and (max-width: 380px) {
  .title-style--l-blueGreen .tx_inner__tx {
    width: 120%;
  }
}
@media screen and (max-width: 576px) {
  .title-style--l-blueGreen .tx_inner__btn {
    position: relative;
    width: calc(100% - 28px);
  }
}
@media screen and (max-width: 400px) {
  .title-style--l-blueGreen .tx_inner__btn {
    position: relative;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .title-style--l-blueGreen .tx_inner__btn .btn_style--more_white, .title-style--l-blueGreen .tx_inner__btn .btn_style--more {
    position: absolute;
    right: 0;
    display: inline-block;
  }
}

/* 大きいタイトルのまとまり（主に採用情報のvalue）（青緑） | title-style--l-value */
.title-style--l-value {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: auto;
}
.title-style--l-value .h2_inner {
  margin-bottom: 18px;
  opacity: 0.2;
}
@media screen and (max-width: 992px) {
  .title-style--l-value .h2_inner {
    margin-bottom: 0px;
  }
}
.title-style--l-value .h2_inner__tx {
  color: #00BAA5;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 128px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 10.24px;
  text-transform: uppercase;
  white-space: nowrap;
  mix-blend-mode: screen;
}
@media screen and (max-width: 992px) {
  .title-style--l-value .h2_inner__tx {
    font-size: 110px;
    letter-spacing: 8.5px;
  }
}
@media screen and (max-width: 768px) {
  .title-style--l-value .h2_inner__tx {
    font-size: 90px;
    letter-spacing: 7px;
  }
}
@media screen and (max-width: 576px) {
  .title-style--l-value .h2_inner__tx {
    font-size: 80px;
    letter-spacing: 5px;
  }
}
@media screen and (max-width: 480px) {
  .title-style--l-value .h2_inner__tx {
    font-size: 72px;
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 400px) {
  .title-style--l-value .h2_inner__tx {
    font-size: 64px;
    letter-spacing: 3px;
  }
}
.title-style--l-value .tx_inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
}
@media screen and (max-width: 992px) {
  .title-style--l-value .tx_inner {
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .title-style--l-value .tx_inner {
    gap: 40px;
  }
}
@media screen and (max-width: 576px) {
  .title-style--l-value .tx_inner {
    gap: 30px;
  }
}
@media screen and (max-width: 450px) {
  .title-style--l-value .tx_inner {
    gap: 20px;
  }
}
.title-style--l-value .tx_inner--left {
  margin-top: 14px;
}
.title-style--l-value .tx_inner__vertical-tx {
  color: #00BAA5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 992px) {
  .title-style--l-value .tx_inner__vertical-tx {
    writing-mode: horizontal-tb;
    letter-spacing: 0.08em;
  }
}
@media screen and (max-width: 576px) {
  .title-style--l-value .tx_inner__vertical-tx {
    font-size: 14px;
  }
}
.title-style--l-value .tx_inner--right {
  display: block;
  text-align: start;
}
.title-style--l-value .tx_inner__copy {
  margin-bottom: 40px;
  color: #00BAA5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 2px;
  white-space: nowrap;
}
@media screen and (max-width: 1600px) {
  .title-style--l-value .tx_inner__copy {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 58px;
    letter-spacing: 1.6px;
  }
}
@media screen and (max-width: 1400px) {
  .title-style--l-value .tx_inner__copy {
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 48px;
    letter-spacing: 1.4px;
  }
}
@media screen and (max-width: 768px) {
  .title-style--l-value .tx_inner__copy {
    font-size: 24px;
    line-height: 42px;
    letter-spacing: 1.2px;
  }
}
@media screen and (max-width: 576px) {
  .title-style--l-value .tx_inner__copy {
    font-size: 20px;
    line-height: 36px;
    letter-spacing: 0.08em;
  }
}
.title-style--l-value .tx_inner__tx {
  margin-bottom: 40px;
  color: #37485A;
  font-family: "Noto Sans JP", sans-serif;
  text-align: justify;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 1.28px;
}
@media screen and (max-width: 576px) {
  .title-style--l-value .tx_inner__tx {
    margin: 0;
    font-size: 15px;
    line-height: 28px;
  }
}
@media screen and (max-width: 435px) {
  .title-style--l-value .tx_inner__tx {
    margin-right: 0px;
  }
}

/*----------------------------------------------------------------------------------------------------------------
text
----------------------------------------------------------------------------------------------------------------*/
/* 本文などのメインテキスト（白） | tx-style--main */
.tx-style--main {
  color: #FFF;
  text-align: justify;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8 !important;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .tx-style--main {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* 本文などのメインテキスト（黒） | tx-style--main-black */
.tx-style--main-black {
  color: #37485A;
  text-align: justify;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8 !important;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .tx-style--main-black {
    font-size: 15px;
    line-height: 1.6;
  }
}
.span-num{
  padding-right: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

/* 採用情報のヘッダーのロゴ下テキスト「RECRUIT」（黄緑） | recruit_tx-style */
.recruit_tx-style {
  margin-top: 9.5px;
  color: #B4D700;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.28px;
  text-transform: uppercase;
}

/*----------------------------------------------------------------------------------------------------------------
link
----------------------------------------------------------------------------------------------------------------*/
/* 小さい下線アリのリンクテキスト（青緑） | link-style--s */
.link-style--s {
  display: inline-block;
  margin-right: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #00BAA5;
  border-bottom: #00BAA5 1.5px solid;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 768px) {
  .link-style--s {
    font-size: 15px;
  }
}
.link-style--s:hover, .link-style--s:focus {
  opacity: 0.5;
}

/* かなり小さいロゴマークの下のテキスト（主にフッターグループや事業紹介ページ）（灰色） | logo_link-style--s */
.logo_link-style--s {
  opacity: 0.6;
  color: #37485A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
@media screen and (max-width: 992px) {
  .logo_link-style--s {
    white-space: wrap;
    word-break: auto-phrase;
  }
}
.logo_link-style--s a {
  display: inline-block;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.logo_link-style--s a:hover, .logo_link-style--s a:focus {
  opacity: 0.4;
}

/* 中くらいのリンクテキスト 改行OK（主に404ページ）（青緑） | link-style--m */
.link-style--m {
  display: inline-block;
  margin-right: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #00BAA5;
  text-decoration: underline #00BAA5 1.5px solid;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 768px) {
  .link-style--m {
    font-size: 15px;
  }
}
.link-style--m:hover, .link-style--m:focus {
  opacity: 0.5;
}

/*----------------------------------------------------------------------------------------------------------------
news （category / time / tags / title）
----------------------------------------------------------------------------------------------------------------*/
/* category */
.category {
  display: flex;
  color: #00BAA5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.category::before {
  content: "";
  width: 3px;
  height: auto;
  margin-right: 6px;
  background-color: #B4D700;
}

/* time */
.time {
  color: #37485A;
  font-family: "Roboto";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.6px;
  white-space: nowrap;
}

/* tags */
.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags {
  color: rgba(55, 72, 90, 0.6);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* title */
.news_title {
  margin: 12px 0px;
  color: #37485A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: start;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: anywhere !important;
  line-break: strict !important;
}

.news_title--s {
  overflow: hidden;
  color: #37485A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: start;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: anywhere !important;
  line-break: strict !important;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 992px) {
  .news_title--s {
    line-height: 1.4;
    -webkit-line-clamp: 2;
  }
}

/*----------------------------------------------------------------------------------------------------------------
btn
----------------------------------------------------------------------------------------------------------------*/
/* もっと見るボタン「VIEW MORE」（青緑） | btn_style--more */
.btn_style--more {
  position: relative;
  display: inline-block;
}
.btn_style--more a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  height: auto;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--more a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #00BAA5;
  transition: transform 0.5s ease;
  transform: translateX(0);
  z-index: 0;
}
.btn_style--more a:hover::before {
  transform: translateX(-100%);
}
.btn_style--more a:hover p {
  color: #FFF;
}
.btn_style--more a:hover .svg_inner svg {
  left: 2px;
}
.btn_style--more a:hover .svg_inner02 {
  opacity: 0.6;
}
.btn_style--more a * {
  position: relative;
  z-index: 2;
}
.btn_style--more__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0px 0px 0px 22px;
}
.btn_style--more .tx_inner {
  margin-top: 2px;
}
.btn_style--more .tx_inner p {
  color: #00BAA5;
  font-family: "Roboto";
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.78px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--more .svg_inner {
  position: relative;
  width: 34px;
  height: 34px;
  aspect-ratio: 1/1;
  background: #00BAA5;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--more .svg_inner svg {
  position: absolute;
  top: 10px;
  left: 8.5px;
  width: 20px;
  height: 15px;
  color: #FFF;
  border: #00BAA5 1.5px solid;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--more .svg_inner svg path {
  width: 7px;
  height: 10px;
}
.btn_style--more .svg_inner02 {
  position: absolute;
  width: 34px;
  height: 34px;
  aspect-ratio: 1/1;
  opacity: 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--more .svg_inner02 svg {
  position: absolute;
  top: 11.5px;
  right: -75px;
  width: 20px;
  height: 12px;
  color: #F8F8F8;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--more .svg_inner02 svg path {
  width: 7px;
  height: 10px;
}

/* もっと見るボタン「VIEW MORE」（白） | btn_style--more_white */
.btn_style--more_white {
  display: inline-block;
}
.btn_style--more_white a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  height: auto;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--more_white a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #FFF;
  transition: transform 0.5s ease;
  transform: translateX(0);
  z-index: 0;
}
.btn_style--more_white a:hover::before {
  transform: translateX(-100%);
}
.btn_style--more_white a:hover p {
  color: #00BAA5;
}
.btn_style--more_white a:hover .svg_inner svg {
  left: 2px;
}
.btn_style--more_white a:hover .svg_inner02 {
  opacity: 0.6;
}
.btn_style--more_white a * {
  position: relative;
  z-index: 2;
}
.btn_style--more_white__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0px 0px 0px 22px;
}
.btn_style--more_white .tx_inner {
  margin-top: 2px;
}
.btn_style--more_white .tx_inner p {
  color: #FFF;
  font-family: "Roboto";
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.78px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--more_white .svg_inner {
  position: relative;
  width: 34px;
  height: 34px;
  aspect-ratio: 1/1;
  background: #FFF;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--more_white .svg_inner svg {
  position: absolute;
  top: 10px;
  left: 8.5px;
  width: 20px;
  height: 15px;
  color: #00BAA5;
  border: #FFF 1.5px solid;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--more_white .svg_inner svg path {
  width: 7px;
  height: 10px;
}
.btn_style--more_white .svg_inner02 {
  position: absolute;
  width: 34px;
  height: 34px;
  aspect-ratio: 1/1;
  opacity: 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--more_white .svg_inner02 svg {
  position: absolute;
  top: 11.5px;
  right: -75px;
  width: 20px;
  height: 12px;
  color: #00BAA5;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--more_white .svg_inner02 svg path {
  width: 7px;
  height: 10px;
}

/* 外部サイトに飛ばすボタン「ホームページを見る」（主にグループページの一覧）（青緑） | btn_style--outside */
.btn_style--outside {
  display: inline-block;
  width: auto;
}
.btn_style--outside a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  height: auto;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--outside a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #00BAA5;
  transition: transform 0.5s ease;
  transform: translateX(0);
  z-index: 0;
}
.btn_style--outside a:hover::before {
  transform: translateX(-100%);
}
.btn_style--outside a:hover p {
  color: #FFF;
}
.btn_style--outside a:hover .svg_inner svg {
  left: 2px;
}
.btn_style--outside a:hover .svg_inner02 {
  opacity: 0.6;
}
.btn_style--outside a * {
  position: relative;
  z-index: 2;
}
.btn_style--outside__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0px 0px 0px 22px;
}
@media screen and (max-width: 1800px) {
  .btn_style--outside__inner {
    gap: 10px;
    padding: 0px 0px 0px 16px;
  }
}
.btn_style--outside .tx_inner p {
  color: #00BAA5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.8px;
  white-space: nowrap;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 1800px) {
  .btn_style--outside .tx_inner p {
    font-size: 11px;
  }
}
.btn_style--outside .svg_inner {
  position: relative;
  width: 34px;
  height: 34px;
  aspect-ratio: 1/1;
  background: #00BAA5;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 1800px) {
  .btn_style--outside .svg_inner {
    width: 30px;
    height: 30px;
  }
}
.btn_style--outside .svg_inner svg {
  position: absolute;
  top: 10px;
  left: 8.5px;
  width: 20px;
  height: 15px;
  color: #FFF;
  border: #00BAA5 1.5px solid;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 1800px) {
  .btn_style--outside .svg_inner svg {
    top: 9px;
    left: 7px;
    width: 18px;
    height: 13px;
  }
}
.btn_style--outside .svg_inner svg path {
  width: 7px;
  height: 10px;
}
.btn_style--outside .svg_inner02 {
  position: absolute;
  width: 34px;
  height: 34px;
  aspect-ratio: 1/1;
  opacity: 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 1800px) {
  .btn_style--outside .svg_inner02 {
    width: 30px;
    height: 30px;
  }
}
.btn_style--outside .svg_inner02 svg {
  position: absolute;
  top: 11.5px;
  right: -79px;
  width: 20px;
  height: 12px;
  color: #F8F8F8;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 1800px) {
  .btn_style--outside .svg_inner02 svg {
    top: 10.5px;
    right: -63px;
    width: 18px;
    height: 10px;
  }
}
.btn_style--outside .svg_inner02 svg path {
  width: 7px;
  height: 10px;
}

/* 外部サイトに飛ばすボタン「お問い合わせ」（主にグループページの一覧）（黒） | btn_style--outside-black */
.btn_style--outside-black {
  display: inline-block;
  width: auto;
}
.btn_style--outside-black a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  height: auto;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--outside-black a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #37485A;
  transition: transform 0.5s ease;
  transform: translateX(0);
  z-index: 0;
}
.btn_style--outside-black a:hover::before {
  transform: translateX(-100%);
}
.btn_style--outside-black a:hover p {
  color: #FFF;
}
.btn_style--outside-black a:hover .svg_inner svg {
  left: 2px;
}
.btn_style--outside-black a:hover .svg_inner02 {
  opacity: 0.6;
}
.btn_style--outside-black a * {
  position: relative;
  z-index: 2;
}
.btn_style--outside-black__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0px 0px 0px 22px;
}
@media screen and (max-width: 1800px) {
  .btn_style--outside-black__inner {
    gap: 10px;
    padding: 0px 0px 0px 16px;
  }
}
.btn_style--outside-black .tx_inner p {
  color: #37485A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.8px;
  white-space: nowrap;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 1800px) {
  .btn_style--outside-black .tx_inner p {
    font-size: 11px;
  }
}
.btn_style--outside-black .svg_inner {
  position: relative;
  width: 34px;
  height: 34px;
  aspect-ratio: 1/1;
  background: #37485A;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 1800px) {
  .btn_style--outside-black .svg_inner {
    width: 30px;
    height: 30px;
  }
}
.btn_style--outside-black .svg_inner svg {
  position: absolute;
  top: 10px;
  left: 8.5px;
  width: 20px;
  height: 15px;
  color: #FFF;
  border: #37485A 1.5px solid;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 1800px) {
  .btn_style--outside-black .svg_inner svg {
    top: 9px;
    left: 7px;
    width: 18px;
    height: 13px;
  }
}
.btn_style--outside-black .svg_inner svg path {
  width: 7px;
  height: 10px;
}
.btn_style--outside-black .svg_inner02 {
  position: absolute;
  width: 34px;
  height: 34px;
  aspect-ratio: 1/1;
  opacity: 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 1800px) {
  .btn_style--outside-black .svg_inner02 {
    width: 30px;
    height: 30px;
  }
}
.btn_style--outside-black .svg_inner02 svg {
  position: absolute;
  top: 11.5px;
  right: -79px;
  width: 20px;
  height: 12px;
  color: #FFF;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 1800px) {
  .btn_style--outside-black .svg_inner02 svg {
    top: 10.5px;
    right: -63px;
    width: 18px;
    height: 10px;
  }
}
.btn_style--outside-black .svg_inner02 svg path {
  width: 7px;
  height: 10px;
}

/* 小さい画像アリボタン（主にご寄付についてボタン）（白） | btn_style--s */
.btn_style--s {
  position: relative;
  width: 350px;
  height: 110px;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .btn_style--s {
    width: 350px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .btn_style--s {
    width: 100%;
    height: 100px;
  }
}
.btn_style--s a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 28px 38px;
  background-color: #00BAA5;
  z-index: 1;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.btn_style--s a:hover, .btn_style--s a:focus {
  background-color: rgba(0, 186, 164, 0.7843137255);
}
.btn_style--s a p {
  position: relative;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  filter: drop-shadow(0 0 10px rgba(55, 72, 90, 0.3));
  z-index: 2;
}
.btn_style--s a p::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.9em;
  margin-right: 8px;
  margin-top: -2px;
  background-color: #FFF;
  vertical-align: middle;
  z-index: 5;
}
.btn_style--s a:hover .bg_inner, .btn_style--s a:focus .bg_inner {
  filter: brightness(1);
}
.btn_style--s a:hover .bg_inner img, .btn_style--s a:focus .bg_inner img {
  scale: 1.05;
}
.btn_style--s a:hover .svg_inner svg, .btn_style--s a:focus .svg_inner svg {
  color: #FFF;
  background: #00BAA5;
  border: #00BAA5 1.5px solid;
}
.btn_style--s a .svg_inner {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 26px;
  background: #F8F8F8;
  z-index: 10;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--s a .svg_inner svg {
  width: 36px;
  height: 36px;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px 8px 10px 11px;
  color: #00BAA5;
  background: #F8F8F8;
  border: #00BAA5 1.5px solid;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--s a .bg_inner {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  filter: brightness(0.8);
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 992px) {
  .btn_style--s a .bg_inner {
    top: -100px;
  }
}
@media screen and (max-width: 768px) {
  .btn_style--s a .bg_inner {
    top: -50px;
  }
}
@media screen and (max-width: 576px) {
  .btn_style--s a .bg_inner {
    top: -30px;
  }
}
.btn_style--s a .bg_inner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}

/* 中くらいの画像アリボタン（主にトップ後半の、採用情報各種リンクへボタン）（青緑） | btn_style--m */
.btn_style--m {
  position: relative;
  width: 340px;
  height: 220px;
}
@media screen and (max-width: 1400px) {
  .btn_style--m {
    height: auto;
    aspect-ratio: 3/2;
  }
}
@media screen and (max-width: 992px) {
  .btn_style--m {
    width: 100%;
    height: 180px;
  }
}
@media screen and (max-width: 768px) {
  .btn_style--m {
    height: 160px;
  }
}
@media screen and (max-width: 576px) {
  .btn_style--m {
    height: 120px;
  }
}
.btn_style--m a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.btn_style--m a:hover .bg_inner, .btn_style--m a:focus .bg_inner {
  filter: brightness(1);
}
.btn_style--m a:hover .bg_inner img, .btn_style--m a:focus .bg_inner img {
  scale: 1.05;
}
.btn_style--m a:hover .svg_inner svg, .btn_style--m a:focus .svg_inner svg {
  color: #FFF;
  background: #00BAA5;
  border: #00BAA5 1.5px solid;
}
.btn_style--m a .svg_inner {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 26px;
  background: #F8F8F8;
  z-index: 10;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--m a .svg_inner svg {
  width: 36px;
  height: 36px;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px 8px 10px 11px;
  color: #00BAA5;
  background: #F8F8F8;
  border: #00BAA5 1.5px solid;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--m a .bg_inner {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  scale: 1.1;
  z-index: 0;
  filter: brightness(0.8);
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--m a .bg_inner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  height: 100%;
  transform: scale(1);
  transform-origin: center center;
}
@media screen and (max-width: 1200px) {
  .btn_style--m a .bg_inner {
    scale: 1;
  }
}
.btn_style--m .tx_inner {
  position: absolute;
  margin-top: 10px;
}
.btn_style--m .tx_inner h3 {
  position: relative;
  color: #00BAA5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1px;
  white-space: nowrap;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  .btn_style--m .tx_inner h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .btn_style--m .tx_inner h3 {
    font-size: 16px;
  }
}
.btn_style--m .tx_inner h3::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.9em;
  margin-right: 8px;
  margin-top: -2px;
  background-color: #B4D700;
  vertical-align: middle;
  z-index: 5;
}

/* 大きい事業紹介01~03へのボタン | btn_style--m-business01~03 */
.btn_style--m-business01,
.btn_style--m-business02,
.btn_style--m-business03 {
  position: relative;
  display: flex;
  width: 50%;
  height: auto;
  overflow: hidden;
  margin: 0px auto;
  z-index: 1000;
}
@media screen and (max-width: 992px) {
  .btn_style--m-business01,
  .btn_style--m-business02,
  .btn_style--m-business03 {
    display: block;
    width: 100%;
  }
}
.btn_style--m-business01 a,
.btn_style--m-business02 a,
.btn_style--m-business03 a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
  z-index: 5;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.btn_style--m-business01 a h4,
.btn_style--m-business02 a h4,
.btn_style--m-business03 a h4 {
  z-index: 5;
}
.btn_style--m-business01 a:hover .bg_inner img, .btn_style--m-business01 a:focus .bg_inner img,
.btn_style--m-business02 a:hover .bg_inner img,
.btn_style--m-business02 a:focus .bg_inner img,
.btn_style--m-business03 a:hover .bg_inner img,
.btn_style--m-business03 a:focus .bg_inner img {
  scale: 1.05;
}
.btn_style--m-business01 a:hover .svg_inner svg, .btn_style--m-business01 a:focus .svg_inner svg,
.btn_style--m-business02 a:hover .svg_inner svg,
.btn_style--m-business02 a:focus .svg_inner svg,
.btn_style--m-business03 a:hover .svg_inner svg,
.btn_style--m-business03 a:focus .svg_inner svg {
  color: #FFF;
  background: #7486FF;
  border: #7486FF 1.5px solid;
}
.btn_style--m-business01 a .svg_inner,
.btn_style--m-business02 a .svg_inner,
.btn_style--m-business03 a .svg_inner {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 38px;
  background: #F8F8F8;
  z-index: 10;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .btn_style--m-business01 a .svg_inner,
  .btn_style--m-business02 a .svg_inner,
  .btn_style--m-business03 a .svg_inner {
    padding: 30px;
  }
}
@media screen and (max-width: 576px) {
  .btn_style--m-business01 a .svg_inner,
  .btn_style--m-business02 a .svg_inner,
  .btn_style--m-business03 a .svg_inner {
    padding: 26px;
  }
}
.btn_style--m-business01 a .svg_inner svg,
.btn_style--m-business02 a .svg_inner svg,
.btn_style--m-business03 a .svg_inner svg {
  width: 58px;
  height: 58px;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 20px 18px 20px 21px;
  color: #7486FF;
  background: #F8F8F8;
  border: #7486FF 1.5px solid;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .btn_style--m-business01 a .svg_inner svg,
  .btn_style--m-business02 a .svg_inner svg,
  .btn_style--m-business03 a .svg_inner svg {
    width: 45px;
    height: 45px;
    padding: 14px 12px 14px 15px;
  }
}
@media screen and (max-width: 576px) {
  .btn_style--m-business01 a .svg_inner svg,
  .btn_style--m-business02 a .svg_inner svg,
  .btn_style--m-business03 a .svg_inner svg {
    width: 38px;
    height: 38px;
    padding: 11px 9px 11px 12px;
  }
}
.btn_style--m-business01 a .overlay_inner,
.btn_style--m-business02 a .overlay_inner,
.btn_style--m-business03 a .overlay_inner {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 50vh;
  background: linear-gradient(270deg, rgba(116, 134, 255, 0) 0%, rgba(116, 134, 255, 0.76) 29.33%, #7486FF 66.83%);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .btn_style--m-business01 a .overlay_inner,
  .btn_style--m-business02 a .overlay_inner,
  .btn_style--m-business03 a .overlay_inner {
    height: 100vh;
  }
}
.btn_style--m-business01 a .bg_inner,
.btn_style--m-business02 a .bg_inner,
.btn_style--m-business03 a .bg_inner {
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  width: 70%;
  height: auto;
  background: #7486FF;
  z-index: -1;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 1400px) {
  .btn_style--m-business01 a .bg_inner,
  .btn_style--m-business02 a .bg_inner,
  .btn_style--m-business03 a .bg_inner {
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .btn_style--m-business01 a .bg_inner,
  .btn_style--m-business02 a .bg_inner,
  .btn_style--m-business03 a .bg_inner {
    width: 100%;
    transform: scale(1.1);
  }
}
@media screen and (max-width: 992px) {
  .btn_style--m-business01 a .bg_inner,
  .btn_style--m-business02 a .bg_inner,
  .btn_style--m-business03 a .bg_inner {
    width: 100%;
    transform: scale(1.2);
  }
}
.btn_style--m-business01 a .bg_inner img,
.btn_style--m-business02 a .bg_inner img,
.btn_style--m-business03 a .bg_inner img {
  position: relative;
  right: -60px;
  width: 75%;
  height: auto;
  object-fit: cover;
  object-position: top right;
  opacity: 0.8;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .btn_style--m-business01 a .bg_inner img,
  .btn_style--m-business02 a .bg_inner img,
  .btn_style--m-business03 a .bg_inner img {
    width: 70%;
    right: -50px;
  }
}
@media screen and (max-width: 992px) {
  .btn_style--m-business01 a .bg_inner img,
  .btn_style--m-business02 a .bg_inner img,
  .btn_style--m-business03 a .bg_inner img {
    width: 40%;
    top: 10px;
    right: -130px;
  }
}
@media screen and (max-width: 768px) {
  .btn_style--m-business01 a .bg_inner img,
  .btn_style--m-business02 a .bg_inner img,
  .btn_style--m-business03 a .bg_inner img {
    width: 45%;
    top: 30px;
    right: -100px;
  }
}
@media screen and (max-width: 576px) {
  .btn_style--m-business01 a .bg_inner img,
  .btn_style--m-business02 a .bg_inner img,
  .btn_style--m-business03 a .bg_inner img {
    width: 45%;
    top: 30px;
    right: -80px;
  }
}
@media screen and (max-width: 450px) {
  .btn_style--m-business01 a .bg_inner img,
  .btn_style--m-business02 a .bg_inner img,
  .btn_style--m-business03 a .bg_inner img {
    width: 50%;
    top: 30px;
    right: -60px;
  }
}
.btn_style--m-business01 a .tx_inner,
.btn_style--m-business02 a .tx_inner,
.btn_style--m-business03 a .tx_inner {
  padding: 40px 40vw 120px 50px;
  z-index: 10;
}
@media screen and (max-width: 992px) {
  .btn_style--m-business01 a .tx_inner,
  .btn_style--m-business02 a .tx_inner,
  .btn_style--m-business03 a .tx_inner {
    padding: 40px 40vw 120px 50px;
  }
}
@media screen and (max-width: 768px) {
  .btn_style--m-business01 a .tx_inner,
  .btn_style--m-business02 a .tx_inner,
  .btn_style--m-business03 a .tx_inner {
    padding: 30px 36vw 100px 30px;
  }
}
@media screen and (max-width: 576px) {
  .btn_style--m-business01 a .tx_inner,
  .btn_style--m-business02 a .tx_inner,
  .btn_style--m-business03 a .tx_inner {
    padding: 30px 30vw 80px 30px;
  }
}

/* business02 カラー */
.btn_style--m-business02 a:hover .svg_inner svg, .btn_style--m-business02 a:focus .svg_inner svg {
  color: #FFF !important;
  background: #B4D700 !important;
  border: #B4D700 1.5px solid !important;
}
.btn_style--m-business02 .svg_inner svg {
  color: #B4D700 !important;
  border: #B4D700 1.5px solid !important;
}
.btn_style--m-business02 .overlay_inner {
  background: linear-gradient(270deg, rgba(180, 215, 0, 0) 0%, rgba(180, 215, 0, 0.76) 29.33%, #B4D700 66.83%) !important;
}
.btn_style--m-business02 .bg_inner {
  background: #B4D700 !important;
}

/* business03 カラー */
.btn_style--m-business03 a:hover .svg_inner svg, .btn_style--m-business03 a:focus .svg_inner svg {
  color: #FFF !important;
  background: #FF9698 !important;
  border: #FF9698 1.5px solid !important;
}
.btn_style--m-business03 .svg_inner svg {
  color: #FF9698 !important;
  border: #FF9698 1.5px solid !important;
}
.btn_style--m-business03 .overlay_inner {
  background: linear-gradient(270deg, rgba(255, 150, 152, 0) 0%, rgba(255, 150, 152, 0.76) 29.33%, #FF9698 66.83%) !important;
}
.btn_style--m-business03 .bg_inner {
  background: #FF9698 !important;
}

/* 大きい横長のボタン（主にバナーの、contact,entryへのボタン） | btn_style--l */
.btn_style--l {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0px auto;
  z-index: 1000;
}
.btn_style--l a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
  z-index: 5;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.btn_style--l a h2 {
  filter: drop-shadow(0 0 10px rgba(55, 72, 90, 0.3));
  margin-bottom: 20px;
  z-index: 5;
}
.btn_style--l a p {
  filter: drop-shadow(0 0 10px rgba(55, 72, 90, 0.3));
  z-index: 5;
}
.btn_style--l a:hover .bg_inner, .btn_style--l a:focus .bg_inner {
  filter: brightness(1);
}
.btn_style--l a:hover .bg_inner img, .btn_style--l a:focus .bg_inner img {
  scale: 1.05;
}
.btn_style--l a:hover .svg_inner svg, .btn_style--l a:focus .svg_inner svg {
  color: #FFF;
  background: #37485A;
  border: #37485A 1.5px solid;
}
.btn_style--l a .svg_inner {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 38px;
  background: #F8F8F8;
  z-index: 10;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--l a .svg_inner svg {
  width: 58px;
  height: 58px;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 20px 18px 20px 21px;
  color: #37485A;
  background: #F8F8F8;
  border: #37485A 1.5px solid;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--l a .overlay_inner {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 60vh;
  background: linear-gradient(90deg, #51657A 34.13%, rgba(81, 101, 122, 0.94) 60.1%, rgba(81, 101, 122, 0.8) 78.37%, rgba(81, 101, 122, 0.4) 100%);
  z-index: 0;
}
@media screen and (max-width: 992px) {
  .btn_style--l a .overlay_inner {
    height: 60vh;
  }
}
@media screen and (max-width: 768px) {
  .btn_style--l a .overlay_inner {
    height: 100vh;
    background: linear-gradient(0deg, #51657A 34.13%, rgba(81, 101, 122, 0.94) 60.1%, rgba(81, 101, 122, 0.8) 78.37%, rgba(81, 101, 122, 0.4) 100%);
  }
}
@media screen and (max-width: 576px) {
  .btn_style--l a .overlay_inner {
    height: 90vh;
    background: linear-gradient(0deg, #51657A 34.13%, rgba(81, 101, 122, 0.94) 60.1%, rgba(81, 101, 122, 0.8) 78.37%, rgba(81, 101, 122, 0.4) 100%);
  }
}
@media screen and (max-width: 400px) {
  .btn_style--l a .overlay_inner {
    height: 80vh;
    background: linear-gradient(0deg, #51657A 34.13%, rgba(81, 101, 122, 0.94) 60.1%, rgba(81, 101, 122, 0.8) 78.37%, rgba(81, 101, 122, 0.4) 100%);
  }
}
.btn_style--l a .bg_inner {
  position: absolute;
  overflow: hidden;
  top: -100px;
  right: 0;
  width: 80%;
  height: auto;
  z-index: -1;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 1400px) {
  .btn_style--l a .bg_inner {
    top: -40px;
    width: 80%;
  }
}
@media screen and (max-width: 992px) {
  .btn_style--l a .bg_inner {
    width: 100%;
    right: -80px;
    transform: scale(1.2);
  }
}
@media screen and (max-width: 768px) {
  .btn_style--l a .bg_inner {
    top: 100px;
    left: -120px;
    transform: scale(2);
  }
}
@media screen and (max-width: 576px) {
  .btn_style--l a .bg_inner {
    top: 150px;
    left: -100px;
    transform: scale(2.5);
  }
}
@media screen and (max-width: 400px) {
  .btn_style--l a .bg_inner {
    top: 100px;
    left: -110px;
    transform: scale(2.5);
  }
}
.btn_style--l a .bg_inner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--l a .tx_inner {
  padding: 80px 40vw 80px 100px;
  z-index: 10;
}
@media screen and (max-width: 1400px) {
  .btn_style--l a .tx_inner {
    padding: 60px 30vw 60px 80px;
  }
}
@media screen and (max-width: 992px) {
  .btn_style--l a .tx_inner {
    padding: 60px 30vw 80px 60px;
  }
}
@media screen and (max-width: 768px) {
  .btn_style--l a .tx_inner {
    padding: 250px 20vw 80px 50px;
  }
}
@media screen and (max-width: 576px) {
  .btn_style--l a .tx_inner {
    text-align: justify;
    padding: 200px 30px 100px 30px;
  }
}

/* ロゴあり白い背景のボタン（主にトップのクレド（私たちの価値観）へのボタン） | btn_style--credo */
.btn_style--credo {
  display: block;
  position: relative;
  width: 415px;
  height: auto;
  margin: 0px auto;
  overflow: hidden;
  text-align: center;
  z-index: 100;
  box-shadow: 2px 3px 6px 0 rgba(55, 72, 90, 0.1);
}
@media screen and (max-width: 576px) {
  .btn_style--credo {
    width: 100%;
  }
}
.btn_style--credo a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 30px 50px;
  background: #FFF;
  z-index: 1;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
@media screen and (max-width: 450px) {
  .btn_style--credo a {
    padding: 30px 40px;
  }
}
@media screen and (max-width: 400px) {
  .btn_style--credo a {
    padding: 30px 40px;
  }
}
.btn_style--credo a:hover, .btn_style--credo a:focus {
  opacity: 0.8;
}
.btn_style--credo a:hover img, .btn_style--credo a:focus img {
  scale: 1.1;
}
.btn_style--credo .img-tx_inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .btn_style--credo .img-tx_inner {
    justify-content: center;
  }
}
@media screen and (max-width: 530px) {
  .btn_style--credo .img-tx_inner {
    justify-content: space-between;
  }
}
.btn_style--credo .img_inner {
  width: 50px;
  height: auto;
  margin-top: 2px;
  margin-right: 40px;
  z-index: 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 576px) {
  .btn_style--credo .img_inner {
    width: 70px;
    margin-top: 10px;
    margin-right: 30px;
    margin-left: 0px;
  }
}
@media screen and (max-width: 450px) {
  .btn_style--credo .img_inner {
    width: 50px;
    margin-top: 10px;
    margin-right: 20px;
    margin-left: 0;
  }
}
@media screen and (max-width: 400px) {
  .btn_style--credo .img_inner {
    margin-right: 30px;
    margin-left: 0;
  }
}
.btn_style--credo .img_inner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--credo .tx_inner p {
  color: #00BAA5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.96px;
  text-align: start;
  white-space: nowrap;
}
@media screen and (max-width: 450px) {
  .btn_style--credo .tx_inner p {
    font-size: 15px;
    line-height: 24px;
  }
}
.btn_style--credo .btn_inner {
  display: none;
  width: 100%;
  height: auto;
  margin-top: 20px;
}
@media screen and (max-width: 576px) {
  .btn_style--credo .btn_inner {
    display: flex;
    justify-content: end;
  }
}

/* 大きいロゴあり白い背景のボタン（主に採用情報のクレド（私たちの価値観）へのボタン） | btn_style--credo-l */
.btn_style--credo-l {
  position: relative;
  overflow: hidden;
  display: block;
  width: 650px;
  height: auto;
  text-align: start;
  z-index: 100;
  box-shadow: 2px 3px 6px 0 rgba(55, 72, 90, 0.1);
}
@media screen and (max-width: 1200px) {
  .btn_style--credo-l {
    width: 550px;
  }
}
@media screen and (max-width: 992px) {
  .btn_style--credo-l {
    width: 600px;
  }
}
@media screen and (max-width: 768px) {
  .btn_style--credo-l {
    width: 420px;
  }
}
@media screen and (max-width: 576px) {
  .btn_style--credo-l {
    width: 100%;
    margin-left: -50px;
  }
}
@media screen and (max-width: 400px) {
  .btn_style--credo-l {
    margin-left: -30px;
  }
}
.btn_style--credo-l a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 40px 80px;
  background: #FFF;
  z-index: 1;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .btn_style--credo-l a {
    padding: 40px 60px;
  }
}
@media screen and (max-width: 768px) {
  .btn_style--credo-l a {
    padding: 30px 50px;
  }
}
@media screen and (max-width: 450px) {
  .btn_style--credo-l a {
    padding: 30px 40px;
  }
}
@media screen and (max-width: 400px) {
  .btn_style--credo-l a {
    padding: 30px 30px;
  }
}
.btn_style--credo-l a:hover, .btn_style--credo-l a:focus {
  opacity: 0.8;
}
.btn_style--credo-l a:hover img, .btn_style--credo-l a:focus img {
  scale: 1.1;
}
.btn_style--credo-l .img-tx_inner {
  display: flex;
  justify-content: start;
  align-items: center;
}
.btn_style--credo-l .img_inner {
  width: 100px;
  height: auto;
  margin-right: 80px;
  z-index: 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
@media screen and (max-width: 768px) {
  .btn_style--credo-l .img_inner {
    width: 80px;
    margin-right: 40px;
  }
}
@media screen and (max-width: 576px) {
  .btn_style--credo-l .img_inner {
    width: 100px;
    margin-right: 60px;
  }
}
@media screen and (max-width: 450px) {
  .btn_style--credo-l .img_inner {
    width: 110px;
    margin-right: 40px;
  }
}
@media screen and (max-width: 400px) {
  .btn_style--credo-l .img_inner {
    width: 100px;
  }
}
.btn_style--credo-l .img_inner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.btn_style--credo-l .tx_inner p {
  color: #00BAA5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.96px;
  text-align: start;
  white-space: nowrap;
}
@media screen and (max-width: 450px) {
  .btn_style--credo-l .tx_inner p {
    font-size: 15px;
    line-height: 24px;
  }
}
.btn_style--credo-l .btn_inner {
  display: flex;
  justify-content: start;
  width: 100%;
  height: auto;
  margin-top: 30px;
  margin-left: -20px;
}
@media screen and (max-width: 576px) {
  .btn_style--credo-l .btn_inner {
    justify-content: end;
    margin-top: 20px;
    margin-left: -10px;
  }
}

/*----------------------------------------------------------------------------------------------------------------
card
----------------------------------------------------------------------------------------------------------------*/
/* topicsのサムネありニュースカード（主にトップ） | card-style__news */
.card-style__news {
  position: relative;
  overflow: hidden;
  width: auto;
  height: auto;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.card-style__news a {
  width: auto;
  height: auto;
  padding: 18px;
  display: inline-block;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.card-style__news--thumbnail {
  overflow: hidden;
  width: 100%;
  height: auto;
  margin-bottom: 14px;
  aspect-ratio: 3/2;
}
.card-style__news img {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.card-style__news a:hover, .card-style__news a:focus {
  background: #FFF;
}
.card-style__news a:hover img, .card-style__news a:focus img {
  scale: 1.1;
}

/* newsの文章のみ横ニュースカード（主にトップ） | card-style__news-landscape */
.card-style__news-landscape a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.card-style__news-landscape a svg {
  flex-shrink: 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.card-style__news-landscape a:hover, .card-style__news-landscape a:focus {
  background: #FFF;
}
.card-style__news-landscape a:hover .news_title--s, .card-style__news-landscape a:focus .news_title--s {
  letter-spacing: 0.06em;
}
.card-style__news-landscape a:hover svg, .card-style__news-landscape a:focus svg {
  color: #00BAA5;
  transform: translateX(-10px);
}
.card-style__news-landscape--txBox {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  gap: 20px;
  padding: 20px 10px;
  border-bottom: 1px solid rgba(55, 72, 90, 0.3);
}
@media screen and (max-width: 992px) {
  .card-style__news-landscape--txBox {
    padding: 20px 0px;
    gap: 0px;
  }
}
.card-style__news-landscape--flexBox {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .card-style__news-landscape--flexBox {
    display: inline-block;
    gap: 0px;
  }
}
.card-style__news-landscape--flexBox02 {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .card-style__news-landscape--flexBox02 {
    display: inline-block;
    gap: 0px;
  }
}
.card-style__news-landscape--spFlexBox {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .card-style__news-landscape--spFlexBox {
    display: flex;
    justify-content: start;
    gap: 20px;
    margin-bottom: 10px;
  }
}
.card-style__news-landscape--spFlexBox02 {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .card-style__news-landscape--spFlexBox02 {
    display: flex;
    justify-content: start;
    gap: 20px;
    margin-bottom: 10px;
  }
}
.card-style__news-landscape:first-child {
  border-top: 1px solid rgba(55, 72, 90, 0.3);
}

/* groupのピクトグラムあり横スライド用カード（主にトップ） | card-style__group */
.card-style__group {
  width: auto;
  height: auto;
}
.card-style__group .cardInner {
  width: 100%;
  height: auto;
  padding: 18px;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.card-style__group .cardInner:hover, .card-style__group .cardInner:focus {
  background-color: #FFF;
}
.card-style__group .cardInner:hover .imgBox img, .card-style__group .cardInner:focus .imgBox img {
  scale: 1.05;
}
.card-style__group .titleBox {
  margin-bottom: 12px;
}
.card-style__group .imgBox {
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
}
.card-style__group .imgBox a {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
}
.card-style__group .imgBox a img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.card-style__group .addressBox {
  margin: 12px 0 20px;
}
.card-style__group .addressBox p {
  color: #37485A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.9px;
}
.card-style__group .addressBox .phoneSet {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.card-style__group .addressBox .phoneSet svg {
  margin-left: 2px;
}
.card-style__group .addressBox .phoneSet p a {
  display: inline-block;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.card-style__group .addressBox .phoneSet p a:hover, .card-style__group .addressBox .phoneSet p a:focus {
  opacity: 0.6;
}
.card-style__group .addressBox .faxSet {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.card-style__group .addressBox .faxSet p a {
  display: inline-block;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.card-style__group .addressBox .faxSet p a:hover, .card-style__group .addressBox .faxSet p a:focus {
  opacity: 0.6;
}
.card-style__group .btnBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 850px) {
  .card-style__group .btnBox {
    justify-content: start;
    gap: 80px;
  }
}
@media screen and (max-width: 600px) {
  .card-style__group .btnBox {
    justify-content: space-between;
    gap: 10px;
  }
}

/*----------------------------------------------------------------------------------------------------------------
wrap
----------------------------------------------------------------------------------------------------------------*/
/* ページ全体のラップ（主に第四階層など） | low-common-bodyWrap */
.low-common-bodyWrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  background: #F8F8F8;
  padding: 150px 160px;
}
@media screen and (max-width: 1200px) {
  .low-common-bodyWrap {
    padding: 160px 150px;
  }
}
@media screen and (max-width: 992px) {
  .low-common-bodyWrap {
    padding: 150px 120px;
  }
}
@media screen and (max-width: 768px) {
  .low-common-bodyWrap {
    padding: 120px 100px;
  }
}
@media screen and (max-width: 576px) {
  .low-common-bodyWrap {
    padding: 100px 50px;
  }
}
@media screen and (max-width: 400px) {
  .low-common-bodyWrap {
    padding: 90px 30px;
  }
}

/* 横幅が狭いページ全体のラップ（主にニュース記事ページなど） | low-common-bodyWrap02 */
.low-common-bodyWrap02 {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  background: #F8F8F8;
  padding: 180px 20vw;
}
@media screen and (max-width: 1400px) {
  .low-common-bodyWrap02 {
    padding: 180px 150px;
  }
}
@media screen and (max-width: 1200px) {
  .low-common-bodyWrap02 {
    padding: 160px 150px;
  }
}
@media screen and (max-width: 992px) {
  .low-common-bodyWrap02 {
    padding: 150px 120px;
  }
}
@media screen and (max-width: 768px) {
  .low-common-bodyWrap02 {
    padding: 120px 100px;
  }
}
@media screen and (max-width: 576px) {
  .low-common-bodyWrap02 {
    padding: 100px 50px;
  }
}
@media screen and (max-width: 400px) {
  .low-common-bodyWrap02 {
    padding: 90px 30px;
  }
}

/* 採用情報専用ページ全体のラップ（主に採用情報 第四階層） | low-recruitCommon-bodyWrap */
.low-recruitCommon-bodyWrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  background: #F8F8F8;
  padding: 80px 150px 160px 347px;
}
@media screen and (max-width: 1200px) {
  .low-recruitCommon-bodyWrap {
    padding: 80px 150px 160px 347px;
  }
}
@media screen and (max-width: 992px) {
  .low-recruitCommon-bodyWrap {
    padding: 150px 120px 150px;
  }
}
@media screen and (max-width: 768px) {
  .low-recruitCommon-bodyWrap {
    padding: 120px 100px 120px;
  }
}
@media screen and (max-width: 576px) {
  .low-recruitCommon-bodyWrap {
    padding: 100px 50px 100px;
  }
}
@media screen and (max-width: 400px) {
  .low-recruitCommon-bodyWrap {
    padding: 90px 30px 90px;
  }
}

/* 記事ページのラップ（主に第四階層、ニュースなど） | articleWrap */
.articleWrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .articleWrap {
    margin-top: 80px;
  }
}
@media screen and (max-width: 576px) {
  .articleWrap {
    margin-top: 60px;
  }
}

/*----------------------------------------------------------------------------------------------------------------
article
----------------------------------------------------------------------------------------------------------------*/
/* 記事スタイル（主に第四階層、ニュースなど） | article-style */
.article-style__titleBox {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-bottom: 80px;
  margin-bottom: 90px;
  border-bottom: 1px dashed #00BAA5;
}
@media screen and (max-width: 576px) {
  .article-style__titleBox {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.article-style__titleBox div {
  gap: 30px;
}
.article-style__titleBox div time {
  margin-top: 0.5px;
}
.article-style__title {
  color: #37485A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.4px;
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: anywhere !important;
  line-break: strict !important;
}
@media screen and (max-width: 992px) {
  .article-style__title {
    font-size: 26px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 768px) {
  .article-style__title {
    font-size: 24px;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 576px) {
  .article-style__title {
    font-size: 20px;
    letter-spacing: 0.02em;
  }
}
.article-style__contentBox {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.article-style__thumbnail {
  width: 100%;
  height: auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .article-style__thumbnail {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  .article-style__thumbnail {
    margin-bottom: 20px;
  }
}
.article-style__thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/*----------------------------------------------------------------------------------------------------------------
content
----------------------------------------------------------------------------------------------------------------*/
/* 下層用コモンコンテンツ（主にプライバシーポリシー・サイトポリシーなど） | low-common-content */
.low-common-content {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.low-common-content__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
}
@media screen and (max-width: 576px) {
  .low-common-content__inner {
    gap: 60px;
  }
}

.low-common-content__inner section h2:first-child{
  padding-top: 0!important;
}

.low-common-content__readTxBox {
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .low-common-content__readTxBox {
    margin-bottom: 20px;
  }
}
.low-common-content__readTxBox p {
  color: #37485A !important;
}

.low-common-content__txBox {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.low-common-content__txBox h1 {
  color: #00BAA5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 1.2px;
  word-break: auto-phrase;
  /* 文節改行が機能しないブラウザ用フォールバック */
  overflow-wrap: break-word;
  text-wrap: balance;
}
@media screen and (max-width: 576px) {
  .low-common-content__txBox h1 {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.04em;
  }
}
.low-common-content__txBox h1 span {
  display: inline-block;
  margin-right: 6px;
  font-family: "Roboto";
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 576px) {
  .low-common-content__txBox h1 span {
    margin-right: 4px;
    font-size: 30px;
    letter-spacing: 0.02em;
  }
}
.low-common-content__txBox h2 {
  padding-top: 60px;
  margin-bottom: 10px;
  color: #37485A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.2px;
  word-break: auto-phrase;
  /* 文節改行が機能しないブラウザ用フォールバック */
  overflow-wrap: break-word;
  text-wrap: balance;
}
@media screen and (max-width: 576px) {
  .low-common-content__txBox h2 {
    padding-top: 30px;
    margin-bottom: 0px;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.04em;
  }
}
.low-common-content__txBox p {
  margin-bottom: 20px;
  color: #37485A !important;
}
@media screen and (max-width: 576px) {
  .low-common-content__txBox p {
    margin-bottom: 10px;
  }
}
.low-common-content__h2Box {
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .low-common-content__h2Box {
    margin-bottom: 30px;
  }
}
.low-common-content__h2Box h2 {
  color: #00BAA5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 1px;
}
@media screen and (max-width: 576px) {
  .low-common-content__h2Box h2 {
    font-size: 17px;
    line-height: 24px;
  }
}
.low-common-content__h2Box p {
  color: #37485A !important;
}
.low-common-content__listBox li {
  width: calc(100% - 19px);
  position: relative;
  left: 19px;
  color: #37485A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 1.1px;
  text-align: start;
}
.low-common-content__listBox li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -17px;
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #00BAA5;
  opacity: 0.6;
}

.low-common-content__listBox li a {
  display: inline-block;
  margin-bottom: 0.4rem;
  padding-bottom: -3px;
  color: #00BAA5;
  border-bottom: #00BAA5 1.5px solid;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.low-common-content__listBox li a:hover,
.low-common-content__listBox li a:focus {
  opacity: 0.6;
}

.low-common-content__listGroup p{
  margin-bottom: 8px;
}
@media screen and (max-width: 576px) {
  .low-common-content__listGroup p{
    margin-bottom: 4px;
  }
}

.low-common-content__listGroup--head{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.low-common-content__listGroup--head ul{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}


.low-common-content__table {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin-top: 40px;
}
@media screen and (max-width: 576px) {
  .low-common-content__table {
    margin-top: 20px;
  }
}
.low-common-content__table tr {
  display: flex;
  align-items: center;
  border-top: rgba(30, 30, 30, 0.3) 1px solid;
  padding: 20px 20px;
}
@media screen and (max-width: 768px) {
  .low-common-content__table tr {
    padding: 20px 0;
  }
}
.low-common-content__table tr:last-child {
  border-bottom: rgba(30, 30, 30, 0.3) 1px solid;
}
.low-common-content__table th {
  width: 50px;
  margin-right: 120px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: 600;
  white-space: nowrap;
  color: #00BAA5;
}
@media screen and (max-width: 768px) {
  .low-common-content__table th {
    width: 50px;
    margin-right: 80px;
    font-size: 17px;
  }
}
@media screen and (max-width: 576px) {
  .low-common-content__table th {
    width: 50px;
    margin-right: 60px;
  }
}
@media screen and (max-width: 400px) {
  .low-common-content__table th {
    width: 50px;
    margin-right: 30px;
  }
}
.low-common-content__table td {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.04em;
  word-break: auto-phrase;
  /* 文節改行が機能しないブラウザ用フォールバック */
  overflow-wrap: break-word;
  text-wrap: balance;
}
@media screen and (max-width: 400px) {
  .low-common-content__table td {
    font-size: 15px;
  }
}
.low-common-content__table td a {
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.low-common-content__table td a:hover, .low-common-content__table td a:focus {
  opacity: 0.6;
}

/*----------------------------------------------------------------------------------------------------------------
deco
----------------------------------------------------------------------------------------------------------------*/
/* 縦縞のデコレーション | common_rectangle-deco */
.common_rectangle-deco {
  position: relative;
  width: 100%;
  height: 76px;
  background: repeating-linear-gradient(90deg, #00BAA5 0px, #00BAA5 16px, #F8F8F8 16px, #F8F8F8 32px, #B4D700 32px, #B4D700 48px, #F8F8F8 48px, #F8F8F8 64px);
}
@media screen and (max-width: 992px) {
  .common_rectangle-deco {
    height: 66px;
    background: repeating-linear-gradient(90deg, #00BAA5 0px, #00BAA5 14px, #F8F8F8 14px, #F8F8F8 28px, #B4D700 28px, #B4D700 42px, #F8F8F8 42px, #F8F8F8 56px);
  }
}
@media screen and (max-width: 576px) {
  .common_rectangle-deco {
    height: 60px;
  }
}
