@charset "UTF-8";
/* destyle.css*/
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
html {
  line-height: 1.15;
  /* Correct the line height */
  -webkit-text-size-adjust: 100%;
  /* Prevent font size adjustment */
  -webkit-tap-highlight-color: transparent;
  /* Remove gray overlay on links */
}

/* Sections */
body {
  margin: 0;
  /* Remove margin */
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
  /* Render `main` consistently */
}

/* Vertical rhythm */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

/* Text-level semantics */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Forms */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  appearance: none;
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

/* Interactive */
details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

/* Tables */
table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/********** base **********/
body {
  font-family: "Noto Sans JP", "serif";
  color: #275A5B;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1px;
  font-size: 16px;
}

.section-ttl {
  font-size: xx;
  color: xx;
  font-family: "Poppins", "serif";
  font-weight: 300;
}
@media (max-width: 576px) {
  .section-ttl {
    font-size: xx;
  }
}

/********** variable **********/
/********** mixin **********/
/********** module **********/
/* spナビをデフォルトで非表示 */
.m-sp-nav {
  display: block;
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
  opacity: 0;
  z-index: 100;
}
@media (max-width: 576px) {
  .m-sp-nav {
    display: none;
  }
}
.m-sp-nav__sns-container {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 36px;
}
.m-sp-nav__sns-icon {
  width: 40px;
  height: 40px;
}
.m-sp-nav__sns-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ナビボタンを押すとspナビを表示 */
.m-sp-nav.active {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(0%);
  transition: ease 1s;
  opacity: 1;
}

/* spナビリストを上下中央寄せ */
.m-sp-nav__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}

/* ナビのリンク */
.m-sp-nav__item a {
  color: #fff;
  /*リンクの文字色*/
  width: 100%;
  display: block;
  text-align: center;
  font-size: 15px;
  margin-bottom: 23px;
  padding: 10px 22px;
}

.m-sp-nav__item--border a {
  margin-bottom: 0;
  border-radius: 50px;
  border: 1px solid #fff;
}

.contents {
  padding: 80px 0 0 0;
}
@media (max-width: 576px) {
  .contents {
    padding: 120px 0 0 0;
  }
}

.container-sm {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(800px + 20px);
}

.container-md {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(1020px + 20px);
}

.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(1100px + 20px);
}

.container-lg {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(1200px + 20px);
}

.page-body {
  position: relative;
  z-index: -100;
  height: 100%;
}

.page-main {
  position: relative;
  z-index: 3;
}

.page-main--recruit {
  background: #FDFDEF;
}

.page-main--works-style {
  background: #EDF9FF;
}

.page-main--company {
  background: #EFFAF9;
}

.page-main--work {
  background: #FFF5F0;
}

.page-main--career {
  background: #EFFCF6;
}

.page-main--column {
  background: #FEFAFF;
}

.m-page-head {
  padding-top: 208px;
}
@media (max-width: 576px) {
  .m-page-head {
    padding-top: 100px;
  }
}

@media (max-width: 576px) {
  .m-page-head__inner {
    display: flex;
    flex-direction: column;
  }
}

.m-page-head__inner-container {
  width: 90%;
  margin: 0 auto;
}

.m-page-head__inner {
  position: relative;
}

.m-page-head__title {
  display: flex;
  flex-direction: column;
}

.m-page-sub-head {
  padding-top: 150px;
}
@media (max-width: 576px) {
  .m-page-sub-head {
    padding-top: 80px;
  }
}

.m-page-sub-head-contents {
  gap: 0 !important;
}

.m-page-sub-head-title {
  width: 50%;
  font-size: 32px;
  color: #275A5B;
  font-weight: 500;
}
@media (max-width: 1080px) {
  .m-page-sub-head-title {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .m-page-sub-head-title {
    width: 100%;
    font-size: 22px;
  }
}

.m-page-sub-head-text {
  width: 50%;
  line-height: 2;
}
@media (max-width: 576px) {
  .m-page-sub-head-text {
    width: 100%;
    margin-top: 32px;
    font-size: 14px;
  }
}

.m-page-head__title span:first-child {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  font-family: "Poppins", "serif";
}
@media (max-width: 576px) {
  .m-page-head__title span:first-child {
    font-size: 16px;
  }
}

.m-page-head__title span:last-child {
  font-size: 52px;
  line-height: 1.5;
  color: #275A5B;
}
@media (max-width: 1080px) {
  .m-page-head__title span:last-child {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .m-page-head__title span:last-child {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .m-page-head__title span:last-child {
    font-size: 28px;
  }
}

.m-page-head__sub-title {
  display: inline-block;
  margin-top: 30px;
  font-size: 18px;
  line-height: 1;
}

.m-page-head__breadcrumb {
  margin-top: 110px;
  display: flex;
  align-items: center;
  font-size: 11px;
  gap: 10px;
  border-bottom: 1px solid #CECECE;
  padding-bottom: 11px;
}
@media (max-width: 576px) {
  .m-page-head__breadcrumb {
    margin-top: 38px;
  }
}

.m-page-head__breadcrumb a {
  font-weight: 500;
  line-height: 1;
}

.m-page-head__breadcrumb span:not(:first-child) {
  color: #B1B1B1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.m-page-head__breadcrumb span:not(:first-child)::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #B1B1B1;
  border-radius: 50%;
  display: inline-block;
}

.m-page-head__accent {
  max-width: 300px;
  height: auto;
  position: absolute;
  right: 10%;
  bottom: -54px;
}
@media (max-width: 1080px) {
  .m-page-head__accent {
    max-width: 200px;
    right: 5%;
  }
}
@media (max-width: 768px) {
  .m-page-head__accent {
    max-width: 150px;
    position: relative;
    right: 0;
    bottom: 0;
    margin: 0 0 0 auto;
  }
}
@media (max-width: 576px) {
  .m-page-head__accent {
    max-width: 100px;
  }
}

.m-page-head__accent--career {
  max-width: 140px;
}
@media (max-width: 576px) {
  .m-page-head__accent--career {
    max-width: 60px;
  }
}

@media (max-width: 576px) {
  .m-page-head__accent--work {
    max-width: 120px;
  }
}

.m-page-head__accent--company {
  max-width: 280px;
}
@media (max-width: 1080px) {
  .m-page-head__accent--company {
    max-width: 200px;
  }
}
@media (max-width: 768px) {
  .m-page-head__accent--company {
    max-width: 140px;
  }
}
@media (max-width: 576px) {
  .m-page-head__accent--company {
    max-width: 100px;
  }
}

.m-page-head__accent--column {
  max-width: 300px;
}
@media (max-width: 1080px) {
  .m-page-head__accent--column {
    max-width: 200px;
  }
}
@media (max-width: 768px) {
  .m-page-head__accent--column {
    max-width: 140px;
  }
}
@media (max-width: 576px) {
  .m-page-head__accent--column {
    max-width: 100px;
  }
}

@media (max-width: 576px) {
  .m-page-head__accent--works-style {
    max-width: 120px;
  }
}

.m-page-desc {
  padding-top: 150px;
}
@media (max-width: 576px) {
  .m-page-desc {
    padding-top: 80px;
  }
}

.m-page-desc__text {
  width: 50%;
  margin: 0 0 0 auto;
  line-height: 2;
  color: #275A5B;
}
@media (max-width: 576px) {
  .m-page-desc__text {
    width: 100%;
  }
}

.rebranding-info {
  margin-top: 80px;
}

.rebranding-report__inner {
  background: #DFEFEC;
  border-radius: 20px;
  padding: 55px 60px;
  color: #275A5B;
}
@media (max-width: 576px) {
  .rebranding-report__inner {
    padding: 30px 20px;
  }
}

.rebranding-report__head {
  font-weight: bold;
  border-bottom: 1px solid #275A5B;
  padding-bottom: 10px;
}

.rebranding-report__head-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rebranding-report__text {
  line-height: 2;
  margin-top: 20px;
}
@media (max-width: 576px) {
  .rebranding-report__text {
    font-size: 14px;
  }
}

.rebranding-report__text-desc {
  margin-top: 10px;
  line-height: 2;
}

.rebranding-report__content:not(:first-child) {
  margin-top: 50px;
}

.rebranding-report__first-inner {
  background: #fff;
  border-radius: 20px;
  padding: 80px 8%;
  color: #275A5B;
  margin-top: 100px;
}
@media (max-width: 576px) {
  .rebranding-report__first-inner {
    margin-top: 80px;
    padding: 40px 20px;
  }
}

.rebranding-report__first-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 75px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
@media (max-width: 576px) {
  .rebranding-report__first-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}

.rebranding-report__first-title::before {
  content: "";
  width: 13px;
  height: 13px;
  background: #00A0A5;
  border-radius: 50%;
  display: inline-block;
  transform: translateY(-25%);
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .rebranding-report__first-title::before {
    width: 10px;
    height: 10px;
  }
}

.rebranding-report__first-content-wrap {
  display: flex;
  gap: 50px;
}
@media (max-width: 576px) {
  .rebranding-report__first-content-wrap {
    gap: 20px;
    flex-direction: column;
  }
}

.rebranding-report__first-content-img {
  flex-shrink: 0;
  aspect-ratio: 1/1;
  max-width: 160px;
  max-height: 160px;
}
@media (max-width: 576px) {
  .rebranding-report__first-content-img {
    max-width: 100%;
    max-height: 100%;
  }
}

.rebranding-report__first-content-img img {
  object-fit: cover;
}

.rebranding-report__first-content-title {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 576px) {
  .rebranding-report__first-content-title {
    font-size: 20px;
  }
}

.rebranding-report__first-content-text {
  line-height: 2;
  margin-top: 20px;
}
@media (max-width: 576px) {
  .rebranding-report__first-content-text {
    font-size: 14px;
  }
}

.rebranding-report__first-content-btm {
  background: #F8F8F8;
  border-radius: 10px;
  padding: 30px;
  margin-top: 50px;
}
@media (max-width: 576px) {
  .rebranding-report__first-content-btm {
    margin-top: 30px;
    padding: 20px;
  }
}

.rebranding-report__first-content-btm-title {
  font-size: 24px;
  font-weight: bold;
}

.rebranding-report__first-content-btm-head {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 13px;
}

.rebranding-report__first-content-btm-text {
  font-size: 15px;
  line-height: 1.75;
}

.rebranding-report__first-content--second {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid #E0E0E0;
}
@media (max-width: 576px) {
  .rebranding-report__first-content--second {
    margin-top: 40px;
    padding-top: 40px;
  }
}

.rebranding-report__second {
  padding-top: 100px;
}

.rebranding-report__second-img {
  max-width: 210px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .rebranding-report__second-img {
    max-width: 160px;
  }
}

.rebranding-report__second-inner {
  color: #275A5B;
  text-align: center;
}

.rebranding-report__second-head {
  font-size: 36px;
  font-weight: bold;
  margin-top: 50px;
}
@media (max-width: 576px) {
  .rebranding-report__second-head {
    font-size: 24px;
    margin-top: 30px;
  }
}

.rebranding-report__second-text {
  line-height: 2;
  margin-top: 50px;
}
@media (max-width: 576px) {
  .rebranding-report__second-text {
    font-size: 15px;
  }
}

.rebranding-report__box-inner {
  margin-top: 40px;
  padding: 40px 8%;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  color: #275A5B;
}

.rebranding-report__box-head-wrap {
  display: flex;
  align-items: flex-end;
  width: 100%;
  padding-bottom: 30px;
  border-bottom: 1px solid #275A5B;
}
@media (max-width: 576px) {
  .rebranding-report__box-head-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

.rebranding-report__box-head {
  display: flex;
  flex-direction: column;
  justify-content: left;
}

.rebranding-report__box-head-title {
  font-size: 28px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .rebranding-report__box-head-title {
    font-size: 24px;
  }
}

.rebranding-report__box-head-title span {
  font-size: 14px;
  font-weight: 400;
}

.rebranding-report__box-head-en {
  font-size: 14px;
  font-family: "Poppins", "serif";
}

.rebranding-report__box-head-num {
  font-weight: 200;
  position: relative;
  font-size: clamp(80px, 9vw, 110px);
  font-family: "Poppins", "serif";
  line-height: 1;
  margin-right: 40px;
  z-index: 1;
  transform: translateY(8px);
}
@media (max-width: 576px) {
  .rebranding-report__box-head-num {
    transform: translateY(0);
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.rebranding-report__box-head-num::before {
  content: "";
  width: 100%;
  height: 20px;
  background: #FDF771;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 576px) {
  .rebranding-report__box-head-num::before {
    height: 15px;
  }
}

.rebranding-report__box-desc {
  margin-top: 40px;
  line-height: 2;
}
@media (max-width: 576px) {
  .rebranding-report__box-desc {
    font-size: 14px;
    margin-top: 20px;
  }
}

.rebranding-report__box-img {
  max-width: 700px;
  margin: 0 auto;
}

.rebranding-report__box-caption {
  font-size: 13px;
  font-weight: 400;
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 576px) {
  .rebranding-report__box-caption {
    font-size: 11px;
  }
}

.rebranding-report__box-flex-item {
  display: flex;
  gap: 34px;
  margin-top: 50px;
}
@media (max-width: 576px) {
  .rebranding-report__box-flex-item {
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
  }
}

.rebranding-report__box-flex-item-img {
  flex-shrink: 0;
  aspect-ratio: 1/1;
  max-width: 120px;
}
@media (max-width: 576px) {
  .rebranding-report__box-flex-item-img {
    max-width: 150px;
  }
}

.rebranding-report__box-flex-item-img img {
  object-fit: contain;
}

.rebranding-report__box-flex-item-title {
  font-size: 20px;
  font-weight: bold;
}

.rebranding-report__box-flex-item-title::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #00A0A5;
  border-radius: 50%;
  margin-right: 5px;
  display: inline-block;
  transform: translateY(-50%);
}

.rebranding-report__box-flex-item-text {
  line-height: 2;
}

.rebranding-report__box-flex-item-text-desc {
  margin-top: 10px;
}

.rebranding-report__box-grid {
  margin-top: 40px;
  gap: 20px !important;
}

.rebranding-report__box-grid .rebranding-report__box-desc {
  margin-top: 0;
}

.rebranding-report__box-grid-2col {
  gap: 40px !important;
  padding-bottom: 160px;
}

/* ハンバーガーメニューのボタン位置 */
.hamburger-menu {
  width: 32px;
  /*ハンバーガーメニューの線の幅*/
  height: 24px;
  position: fixed;
  top: 24px;
  /*(ヘッダーの高さ)ー(メニューボタンの高さ)/2*/
  right: 20px;
  background: transparent;
  z-index: 999;
  display: none;
}
@media (max-width: 1080px) {
  .hamburger-menu {
    display: block;
  }
}
.hamburger-menu__icon {
  position: relative;
  width: 100%;
  height: 100%;
}
.hamburger-menu__icon span {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background: #555;
  /*メニューバーの色*/
  transition: ease 0.4s;
}

.hamburger-menu span:nth-child(1) {
  top: 0;
}
.hamburger-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-menu span:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}
.hamburger-menu.active span:nth-child(1) {
  top: 50%;
  transform: translateY(50%);
  transform: rotate(45deg);
}
.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
  top: 50%;
  transform: translateY(50%);
  transform: rotate(-45deg);
}

a {
  transition: 0.2s;
}

a:hover {
  opacity: 0.7;
}

.m-font-en {
  font-family: "Poppins", "serif";
}

.m-btn a {
  display: inline-block;
  background-color: #00A0A5;
  white-space: nowrap;
  width: fit-content;
  padding: 16px 32px;
  border-radius: 100px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}

.body-bg {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}

.m-gb-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
  z-index: 1;
}

.body-bg__img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-size: cover;
  background-position: bottom;
  z-index: 100;
  opacity: 1;
}

.body-bg__img--orange {
  background-image: url(../img/common/body-bg__img--orange.png);
}

.body-bg__img--green {
  background-image: url(../img/common/body-bg__img--green.png);
}

.body-bg__img--light-green {
  background-image: url(../img/common/body-bg__img--light-green.png);
}

.body-bg__img--blue {
  background-image: url(../img/common/body-bg__img--blue.png);
}

.body-bg__img--yellow {
  background-image: url(../img/common/body-bg__img--yellow.png);
}

.body-bg__img--purple {
  background-image: url(../img/common/body-bg__img--purple.png);
}

.m-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .m-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .m-grid-3col {
    grid-template-columns: repeat(1, 1fr);
  }
}

.m-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
@media (max-width: 576px) {
  .m-grid-2col {
    grid-template-columns: repeat(1, 1fr);
  }
}

.m-flex-2col {
  display: flex;
  gap: 80px;
}
@media (max-width: 576px) {
  .m-flex-2col {
    flex-direction: column;
  }
}

.m-site-map {
  width: 100%;
  padding: 80px 0;
}
@media (max-width: 576px) {
  .m-site-map {
    padding: 60px 0;
  }
}

.m-site-map--recruit {
  background: #FDF771;
}

.m-site-map--works-style {
  background: #AAE2FF;
}

.m-site-map--company {
  background: #5AD5C7;
}

.m-site-map--work {
  background: #FFAB7F;
}

.m-site-map--career {
  background: #7DEDB3;
}

.m-site-map--column {
  background: #E0A9E3;
}

.m-site-map__inner {
  width: 85%;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1080px) {
  .m-site-map__inner {
    flex-direction: column;
    gap: 54px;
  }
}

@media (max-width: 1080px) {
  .m-site-map__head {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 576px) {
  .m-site-map__head {
    gap: 20px;
  }
}

.m-site-map__head h2 {
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .m-site-map__head h2 {
    font-size: 24px;
  }
}

.m-site-map__head-accent {
  max-width: 290px;
  margin-top: 60px;
  transform: translateX(25%);
}
@media (max-width: 1080px) {
  .m-site-map__head-accent {
    max-width: 200px;
    transform: translateX(0%);
  }
}
@media (max-width: 768px) {
  .m-site-map__head-accent {
    margin-top: 0;
    transform: translateX(0);
  }
}

.m-site-map__head-accent--career {
  max-width: 90px !important;
  transform: translateX(200%);
}
@media (max-width: 1080px) {
  .m-site-map__head-accent--career {
    transform: translateX(0);
  }
}

.m-site-map__head-accent--recruit {
  max-width: 180px !important;
  transform: translateX(50%);
}
@media (max-width: 1080px) {
  .m-site-map__head-accent--recruit {
    transform: translateX(0%);
  }
}
@media (max-width: 768px) {
  .m-site-map__head-accent--recruit {
    max-width: 100px !important;
  }
}

.m-site-map__head-accent--column {
  max-width: 190px !important;
  transform: translateX(50%);
}
@media (max-width: 1080px) {
  .m-site-map__head-accent--column {
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .m-site-map__head-accent--column {
    max-width: 100px !important;
  }
}

.m-site-map__head-accent--company {
  max-width: 200px;
  transform: translateX(100%);
}
@media (max-width: 1080px) {
  .m-site-map__head-accent--company {
    max-width: 150px !important;
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .m-site-map__head-accent--company {
    max-width: 100px !important;
  }
}

.m-site-map__head-accent img {
  object-fit: contain;
}

.m-site-map__head-line {
  display: block;
  width: 1px;
  height: 200px;
  background: #fff;
}
@media (max-width: 576px) {
  .m-site-map__head-line {
    width: 100%;
    height: 1px;
  }
}

.m-site-map__head span {
  color: #275A5B;
  display: block;
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 576px) {
  .m-site-map__head span {
    font-size: 13px;
  }
}

.m-site-map__head span:first-child {
  font-size: 52px;
  font-family: "Poppins", "serif";
  font-weight: 400;
}
@media (max-width: 1080px) {
  .m-site-map__head span:first-child {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .m-site-map__head span:first-child {
    font-size: 32px;
    flex-shrink: 0;
  }
}

.m-site-map__body {
  width: 50%;
}
@media (max-width: 1080px) {
  .m-site-map__body {
    width: 100%;
  }
}

.m-site-map__body ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 576px) {
  .m-site-map__body ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

.m-site-map__body ul li a {
  max-width: 320px;
  font-size: 18px;
  width: 100%;
  display: flex;
  align-items: center;
  color: #275A5B;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  font-weight: 500;
  justify-content: space-between;
  height: 88px;
}
@media (max-width: 1080px) {
  .m-site-map__body ul li a {
    max-width: 100%;
  }
}

.m-site-map__body-arrow {
  width: 28px;
  height: 28px;
  background: url("../img/common/arrow-right02.png") center center/contain no-repeat;
}

.m-switch-btn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 576px) {
  .m-switch-btn {
    gap: 10px;
  }
}

.m-switch-btn__item {
  font-size: 18px;
  color: #B1B1B1;
  border: 1px solid #B1B1B1;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border-radius: 40px;
  transition: 0.2s;
}
@media (max-width: 576px) {
  .m-switch-btn__item {
    font-size: 15px;
    padding: 12px;
  }
}

.m-switch-btn__item:hover {
  background: #ccc;
}

.m-switch-btn__item.active {
  color: white;
  border: 1px solid transparent;
}

.m-switch-btn__item--career.active {
  background: #25C170;
}

.m-switch-btn__item--work.active {
  background: #F7884E;
}

.m-switch-btn__item--experience.active {
  background: #A358A7;
}

.m-switch-btn_btm {
  margin-top: 60px;
}

.m-switch__contents__body {
  display: none;
  margin-top: 20px;
}

.m-switch__contents__body.active {
  display: block;
}

.m-scale-change {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}

.m-scale-change img {
  height: auto;
  transition: transform 0.6s ease;
  /* ゆっくり変化させる */
}

.m-scale-change:hover img {
  transform: scale(1.05);
  /* 拡大 */
}

.footer {
  position: relative;
  z-index: 30;
  width: 100%;
  background: #fff;
}
@media (max-width: 576px) {
  .footer {
    height: auto;
  }
}

.footer__container {
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 5% 0 0;
}
@media (max-width: 576px) {
  .footer__container {
    display: none;
  }
}

.footer__logo {
  max-width: 340px;
}
@media (max-width: 768px) {
  .footer__logo {
    max-width: 230px;
  }
}

.footer__logo img {
  object-fit: contain;
}

.footer__logo-text {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 0;
  font-family: "Poppins", "serif";
  font-size: 19px;
  margin-top: 30px;
  line-height: 1;
  color: #275A5B;
}
@media (max-width: 768px) {
  .footer__logo-text {
    margin: 0;
    margin-top: 20px;
    font-size: 13px;
  }
}

.footer__top-contents {
  padding-top: 94px;
  grid-template-columns: 1fr 2fr;
}
@media (max-width: 576px) {
  .footer__top-contents {
    padding-top: 60px;
  }
}

.footer__top-contents-left {
  padding-top: 100px;
  width: 30vw;
  position: relative;
}

.footer__top-contents-img {
  width: 50%;
  min-width: 300px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.footer__top-contents-copy {
  font-size: 36px;
  font-weight: bold;
  color: #00A0A5;
}
@media (max-width: 576px) {
  .footer__top-contents-copy {
    font-size: 26px;
  }
}

.footer__top-contents-logo {
  width: 23vw;
  max-width: 340px;
  min-width: 200px;
}

.footer__top-contents-list {
  margin-bottom: 36px;
}

.footer__top-contents-list-head {
  font-family: "Poppins", "serif";
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.footer__top-contents-item {
  margin-top: 15px;
  font-size: 14px;
  color: #666666;
  line-height: 1.25;
}

.footer__top-contents-right {
  margin-bottom: 70px;
}
@media (max-width: 1080px) {
  .footer__top-contents-right {
    gap: 40px;
  }
}

.footer__btm-contents {
  display: flex;
  width: 100%;
  height: auto;
  padding: 0 5%;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  background: #00A0A5;
}
@media (max-width: 768px) {
  .footer__btm-contents {
    text-align: center;
    display: block;
    padding: 40px 20px;
  }
}
@media (max-width: 576px) {
  .footer__btm-contents {
    text-align: justify;
    padding: 30px 20px;
  }
}

.footer__nav-list {
  padding: 40px 0;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .footer__nav-list {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .footer__nav-list {
    display: none;
  }
}

.footer__nav-item {
  font-size: 14px;
}

.footer__nav-list .footer__nav-item--link span {
  width: 12px;
  height: 12px;
  display: inline-block;
  background: url("../img/common/link-icon.png") no-repeat center center/contain;
}

.footer__copy-text {
  font-size: 11px;
}
@media (max-width: 576px) {
  .footer__copy-text {
    display: block;
    text-align: center;
  }
}

.footer__sp {
  display: none;
}
@media (max-width: 576px) {
  .footer__sp {
    display: block;
    padding: 70px 20px;
  }
}

.footer__sp-logo {
  width: 70%;
  max-width: 340px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}

.footer__sp-logo p {
  font-family: "Poppins", "serif";
  font-size: 14px;
  color: #275A5B;
  margin-top: 24px;
}

.footer__sp-logo img {
  object-fit: contain;
}

.header {
  width: 100%;
  height: 72px;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  top: 0;
  left: 0;
  z-index: 100;
  color: #333333;
  background: #fff;
}
@media (max-width: 1080px) {
  .header {
    padding: 0 16px;
  }
}

.header__logo {
  width: 16vw;
  min-width: 200px;
}

.header__nav {
  display: block;
}
@media (max-width: 1080px) {
  .header__nav {
    width: 40%;
    background: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    padding: 40px 46px;
    padding-top: 80px;
    pointer-events: none;
    transform: translateX(80%);
    transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
    z-index: 99;
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .header__nav {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .header__nav {
    width: 70%;
  }
}
.header__nav.active {
  z-index: 500;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.header__nav-list {
  display: flex;
  gap: 48px;
}
@media (max-width: 1080px) {
  .header__nav-list {
    flex-direction: column;
    gap: 0;
  }
}

.header__nav-link {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 1080px) {
  .header__nav-item {
    padding: 20px 0;
  }
}

.m-header {
  width: 100%;
  height: 80px;
  position: fixed;
  display: flex;
  align-items: center;
  top: 0px;
  left: 0;
  z-index: 200;
}
@media (max-width: 1080px) {
  .m-header {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    background: #fff;
  }
}
@media (max-width: 420px) {
  .m-header {
    padding: 0 13px;
  }
}

.m-header__inner {
  width: 100%;
  padding: 0 60px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1080px) {
  .m-header__inner {
    padding: 0px;
  }
}

.m-header__logo-wrap {
  background: #fff;
  width: 30%;
  min-width: 200px;
  max-width: 510px;
  height: 80px;
  padding: 0 2%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 20px 0;
  flex-shrink: 0;
}
@media (max-width: 1080px) {
  .m-header__logo-wrap {
    display: contents;
  }
}

.m-header__logo {
  width: 100%;
  min-width: 100px;
}
@media (max-width: 1080px) {
  .m-header__logo {
    width: 45%;
    max-width: 200px;
  }
}

.m-header__nav-list {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 1080px) {
  .m-header__nav-list {
    gap: 8px;
  }
}

.m-header__nav-link {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.m-header__nav-item--menu button {
  color: #fff;
  width: 140px;
  height: 45px;
  font-weight: 500;
  border-radius: 23px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #275A5B;
  font-size: 18px;
  font-family: "Poppins", "serif";
  padding: 20px;
  gap: 10px;
}
@media (max-width: 576px) {
  .m-header__nav-item--menu button {
    width: 60px;
    height: 38px;
    padding: 10px;
    gap: 0;
    justify-content: center;
  }
}

.m-header__nav-btn {
  transition: opacity 0.3s ease-in-out;
}

.m-header__nav-btn:hover {
  opacity: 0.8;
}

.m-header__nav-btn-icon {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 12px;
  transform: translateY(1px);
}

.m-header__nav-btn span {
  display: block;
  position: absolute;
  width: 20px;
  height: 1px;
  background: #fff;
  transition: all 0.1s ease-in-out;
}

.m-header__nav-btn span:nth-child(1) {
  top: 0;
}

.m-header__nav-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.m-header__nav-btn span:nth-child(3) {
  bottom: 0;
}

.m-header__nav-btn.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(35deg);
}

.m-header__nav-btn.active span:nth-child(2) {
  opacity: 0;
}

.m-header__nav-btn.active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-35deg);
}

.m-nav {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.m-nav.is-active {
  opacity: 1;
  pointer-events: auto;
}

.m-nav__inner {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  padding: 0 3%;
  padding-top: 152px;
  padding-bottom: 40px;
  margin: 0 auto;
  overflow-y: auto;
}
@media (max-width: 576px) {
  .m-nav__inner {
    padding: 0 20px;
    padding-top: 120px;
  }
}

.m-nav__list {
  gap: 3.5vw;
}
@media (max-width: 1080px) {
  .m-nav__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .m-nav__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.m-nav__item {
  display: flex;
  align-items: center;
  gap: 2vw;
}
@media (max-width: 576px) {
  .m-nav__item {
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid #275A5B;
    gap: 5vw;
  }
}

.m-nav__item-img {
  width: 9.7vw;
  max-width: 140px;
  height: auto;
  max-height: 140px;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .m-nav__item-img {
    width: 15vw;
    transform: translateY(-15%);
  }
}

.m-nav__item-img img {
  object-fit: contain;
}

.m-nav__item-box {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.m-nav__item-title-box {
  display: contents;
}
@media (max-width: 576px) {
  .m-nav__item-title-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.m-nav__item-title-btn {
  display: none;
  position: relative;
  width: 24px;
  height: 24px;
  transform: translateX(-10px);
}
@media (max-width: 576px) {
  .m-nav__item-title-btn {
    display: block;
  }
}

.m-nav__item-title-btn span {
  display: block;
  position: absolute;
  width: 24px;
  height: 1px;
  background: #275A5B;
  transition: all 0.1s ease-in-out;
}

.m-nav__item-title-btn span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%);
}

.m-nav__item-title-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

.m-nav__item-title-btn.is-active span:nth-child(2) {
  transform: translateY(-50%) rotate(0deg);
}

.m-nav__item-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #275A5B;
  padding-bottom: 7px;
  border-bottom: 1px solid #275A5B;
}
@media (max-width: 576px) {
  .m-nav__item-title {
    border-bottom: none;
  }
}

.m-nav__item-title-ja {
  font-size: clamp(11px, 0.09vw, 13px);
  line-height: 1;
  font-weight: 500;
}

.m-nav__item-title-en {
  font-size: clamp(18px, 1.9vw, 28px);
  font-family: "Poppins", "serif";
  line-height: 1;
  font-weight: 500;
}

.m-nav__item-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 576px) {
  .m-nav__item-list {
    padding-bottom: 40px;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }
  .m-nav__item-list.is-active {
    display: flex;
    max-height: 500px;
  }
}

.m-nav__item-list-item {
  font-size: clamp(12px, 1.04vw, 15px);
  display: flex;
  align-items: center;
  color: #275A5B;
  line-height: 1;
}

.m-nav__item-list-item::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #275A5B;
  border-right: 1px solid #275A5B;
  transform: rotate(45deg) translateY(1px);
  margin-right: 5px;
}

.m-nav__item--header {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1080px) {
  .m-nav__item--header {
    grid-column: span 2;
  }
}
@media (max-width: 576px) {
  .m-nav__item--header {
    grid-column: span 1;
  }
}

.m-nav__item--header .m-nav__item-nav-list {
  display: flex;
  flex-direction: column;
  margin: 0;
}
@media (max-width: 1080px) {
  .m-nav__item--header .m-nav__item-nav-list {
    margin: 0 0 0 auto;
    flex-direction: row;
  }
}
@media (max-width: 576px) {
  .m-nav__item--header .m-nav__item-nav-list {
    margin: 0 auto;
    flex-direction: column;
  }
}

.m-nav__item-title-box a {
  width: 100%;
}

.m-nav__item-title--news {
  position: relative;
}

.m-nav__item-news-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #275A5B;
  border-right: 2px solid #275A5B;
  transform: rotate(45deg) translateY(1px);
  margin-right: 5px;
}
@media (max-width: 576px) {
  .m-nav__item-news-btn {
    width: 8px;
    height: 8px;
    border-top: 1px solid #275A5B;
    border-right: 1px solid #275A5B;
    transform: rotate(45deg) translateY(1px);
    margin-right: 5px;
  }
}

.m-nav__item-nav-list {
  margin: 0 0 0 auto;
  display: flex;
  gap: 18px;
  justify-content: center;
}
@media (max-width: 576px) {
  .m-nav__item-nav-list {
    margin: 0;
    flex-direction: column;
    align-items: center;
  }
}

.m-nav__item-nav-item {
  font-size: clamp(12px, 0.97vw, 14px);
  display: flex;
  color: #275A5B;
  align-items: center;
}

.m-nav__item-nav-item--link span {
  width: 12px;
  height: 12px;
  display: inline-block;
  background: url("/saiyo/assets/img/common/link-icon02.png") no-repeat center center/contain;
}

.m-nav__item-copy-text {
  display: inline-block;
  margin: 0 0 0 auto;
  font-size: 11px;
  color: #275A5B;
}
@media (max-width: 576px) {
  .m-nav__item-copy-text {
    margin: 0 auto;
    margin-top: 24px;
    padding-bottom: 20px;
    font-size: 10px;
  }
}

/* エントリーポップアップ */
.entry-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.entry-popup.is-active {
  opacity: 1;
  visibility: visible;
}

.entry-popup__inner {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  max-width: 680px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.is-active .entry-popup__inner {
  transform: translateY(0);
}

.entry-popup__header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}

.entry-popup__title {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin: 0;
  text-align: center;
}

.entry-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
@media (max-width: 576px) {
  .entry-popup__close {
    top: 0px;
    right: 0px;
  }
}

.entry-popup__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #666;
  transition: background 0.3s ease;
}

.entry-popup__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.entry-popup__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.entry-popup__close:hover span {
  background: #333;
}

.entry-popup__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.entry-popup__section {
  padding: 20px;
}

.entry-popup__section-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 16px 0;
}

.entry-popup__buttons {
  display: flex;
  gap: 12px;
}
@media (max-width: 576px) {
  .entry-popup__buttons {
    flex-direction: column;
    align-items: center;
  }
}

.entry-popup__buttons a {
  width: 50%;
}
@media (max-width: 576px) {
  .entry-popup__buttons a {
    width: 90%;
  }
}

.entry-popup__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.entry-popup__button--primary {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  border-color: #007bff;
}

.entry-popup__button--primary:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.entry-popup__button--secondary {
  background: #fff;
  color: #007bff;
  border-color: #007bff;
}

.entry-popup__button--secondary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.1);
}

.entry-popup__button-text {
  flex: 1;
}

.entry-popup__button-icon {
  font-size: 18px;
  font-weight: 700;
}

.entry-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: -1;
}

.m-header__nav-btn-text {
  font-family: "Noto Sans JP", "serif";
  line-height: 1;
}

.m-header__nav-item--entry .entry-popup-trigger {
  color: #fff;
  width: 140px;
  height: 45px;
  font-weight: 500;
  border-radius: 23px;
  text-align: center;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00A0A5;
  font-size: 18px;
  font-family: "Poppins", "serif";
  padding: 20px;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
  .m-header__nav-item--entry .entry-popup-trigger {
    width: fit-content;
    font-size: 13px;
    height: 38px;
    padding: 0 18px;
  }
}
/* エントリーボタンのスタイル */
.entry-popup-trigger {
  background: none;
  border: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
  padding: 0;
  margin: 0;
  z-index: 100;
  transition: opacity 0.3s ease;
}

.entry-popup-trigger:hover {
  opacity: 0.8;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .entry-popup__inner {
    padding: 32px;
    width: 95%;
  }
  .entry-popup__title {
    font-size: 13px;
  }
  .entry-popup__section {
    padding: 16px;
  }
  .entry-popup__section-title {
    font-size: 16px;
  }
  .entry-popup__button {
    padding: 14px 16px;
    font-size: 14px;
  }
}
/********** utils **********/
.u-mt5 {
  margin-top: 5px;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mt16 {
  margin-top: 16px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt24 {
  margin-top: 24px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt64 {
  margin-top: 64px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mb5 {
  margin-bottom: 5px;
}

.u-mb16 {
  margin-bottom: 16px;
}

.u-mb24 {
  margin-bottom: 24px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb64 {
  margin-bottom: 64px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-pt5 {
  padding-top: 5px;
}

.u-pt16 {
  padding-top: 16px;
}

.u-pt24 {
  padding-top: 24px;
}

.u-pt40 {
  padding-top: 40px;
}

.u-pt64 {
  padding-top: 64px;
}

.u-pt80 {
  padding-top: 80px;
}

.u-pb5 {
  padding-bottom: 5px;
}

.u-pb16 {
  padding-bottom: 16px;
}

.u-pb24 {
  padding-bottom: 24px;
}

.u-pb40 {
  padding-bottom: 40px;
}

.u-pb64 {
  padding-bottom: 64px;
}

.u-pb80 {
  padding-bottom: 80px;
}

.u-sp {
  display: none;
}
@media (max-width: 576px) {
  .u-sp {
    display: block;
  }
}

.u-pc {
  display: block;
}
@media (max-width: 576px) {
  .u-pc {
    display: none;
  }
}

.u-pc-only {
  display: block;
}
@media (max-width: 1080px) {
  .u-pc-only {
    display: none;
  }
}

.u-right {
  text-align: right;
  margin: 0 0 0 auto;
}

.u-text-center {
  text-align: center;
  margin: 0 auto;
}

.u-text-left {
  text-align: left;
  margin: auto 0 0 0;
}

.u-align-left {
  align-items: flex-start !important;
}

/********** pages **********/
/* top-page*/
.m-top-info {
  margin-top: 200px;
  color: #333333;
}
@media (max-width: 576px) {
  .m-top-info {
    margin-top: 100px;
  }
}

.m-top-info__wrap {
  text-align: center;
}

.m-top-info__title {
  font-weight: 500;
  line-height: 1.5;
  position: relative;
}

.m-top-info__title-en {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -20%);
  font-size: 140px;
  color: #F4F4F4;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  z-index: -1;
}
@media (max-width: 576px) {
  .m-top-info__title-en {
    font-size: 40px;
  }
}

.m-top-info__title-ja {
  font-size: 56px;
  color: #00A0A5;
  font-weight: bold;
}
@media (max-width: 576px) {
  .m-top-info__title-ja {
    font-size: 28px;
  }
}

.m-top-info__text {
  margin-top: 64px;
  line-height: 2;
}
@media (max-width: 576px) {
  .m-top-info__text {
    font-size: 14px;
  }
}

.top-recruit {
  padding-top: 80px;
  color: #333333;
}

.top-recruit__content-img--01 {
  position: relative;
}

.top-recruit__content-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 24px;
}
@media (max-width: 576px) {
  .top-recruit__content-title {
    font-size: 15px;
  }
}

.top-recruit__content-title::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../img/common/arrow-right01.png") center center/contain no-repeat;
}
@media (max-width: 576px) {
  .top-recruit__content-title::before {
    width: 16px;
    height: 16px;
  }
}

.top-recruit__content-img--01 img {
  min-height: 200px;
  border-radius: 10px;
}

.top-recruit__content-text {
  background: #fff;
  font-size: 32px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  width: fit-content;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  padding: 16px 16px 12px 16px;
  color: #00A0A5;
}
@media (max-width: 576px) {
  .top-recruit__content-text {
    font-size: 16px;
  }
}

.top-recruit__content-list {
  margin-top: 64px;
}
@media (max-width: 576px) {
  .top-recruit__content-list {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.top-company {
  background: #F8F8F8;
  padding: 100px 0;
  margin-top: 100px;
  color: #333333;
}
@media (max-width: 576px) {
  .top-company {
    padding: 60px 0;
    margin-top: 60px;
  }
}

.top-company__content-link {
  display: flex;
  max-height: 160px;
  border-radius: 10px;
  background: #fff;
}
@media (max-width: 576px) {
  .top-company__content-link {
    max-height: 120px;
  }
}

.top-company__content-wrap {
  position: relative;
  padding: 20px;
  flex-shrink: 0;
  width: 60%;
}

.top-company__content-img {
  width: 40%;
}

.top-company__content-img img {
  border-radius: 10px 0 0 10px;
}

.top-company__content-title {
  font-weight: bold;
}

.btn-arrow {
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  bottom: 20px;
  right: 20px;
}

.btn-arrow__icon img {
  object-fit: contain;
}

.top-company-page {
  color: #333333;
}

.m-company-info {
  padding: 80px 0;
}
@media (max-width: 576px) {
  .m-company-info {
    padding: 40px 0;
  }
}

.m-company-info__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #00A0A5;
}
@media (max-width: 576px) {
  .m-company-info__title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

.m-company-info__content-list {
  display: grid;
  grid-template-columns: 200px 3fr;
  gap: 0;
}
@media (max-width: 576px) {
  .m-company-info__content-list {
    grid-template-columns: 1fr;
  }
}

.m-company-info__content-item-title,
.m-company-info__content-item-text {
  padding: 28px 16px;
  border-top: 1px solid #E0E0E0;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .m-company-info__content-item-title,
  .m-company-info__content-item-text {
    padding: 12px;
  }
}

.m-company-info__content-item-text-wrap {
  width: fit-content;
}

.m-company-info__content-item-text-sub {
  display: flex;
  justify-content: end;
}

.m-company-info__content-flex {
  display: flex;
  line-height: 1.6;
}

.m-company-info__content-flex span:first-child {
  flex-shrink: 0;
  min-width: 3em;
}

.m-company-info__content-item-title {
  font-weight: bold;
}

.m-company-info__content-item-text {
  background: #fff;
}

.m-company-info__content-item-text:last-child {
  border-bottom: 1px solid #E0E0E0;
}

.m-company-info__content-list dt:last-of-type {
  border-bottom: 1px solid #E0E0E0;
}

.m-company-info__content-history {
  display: flex;
  line-height: 2;
}

.m-company-info__content-history span:first-child {
  color: #AFAFAF;
  margin-right: 2em;
}

.m-company-info__content-item-text .m-company-info__content-history:first-child {
  padding: 0 16px 0px 16px;
}

.m-company-info__content-history:not(:first-child) {
  border-top: 1px solid #E0E0E0;
  padding: 28px 16px 0px 16px;
  margin-top: 28px;
}
@media (max-width: 576px) {
  .m-company-info__content-history:not(:first-child) {
    padding: 12px;
  }
}

.m-company-info__content-history--not-border {
  border-top: none !important;
}

.m-company-info__content-history:last-child {
  padding: 28px 16px 0x 16px;
}

.m-company-info__content-history span:first-child {
  display: inline-block;
  min-width: 2.5em;
}

.company-info--location .m-company-info__title span {
  font-size: 13px;
  color: #6F6F6F;
  display: block;
  font-weight: 400;
}

.company-info--location__map {
  width: 50%;
  height: auto;
  margin: 0 auto;
  margin-bottom: 80px;
}
@media (max-width: 576px) {
  .company-info--location__map {
    width: 100%;
  }
}

.company-info--location__map img {
  object-fit: contain;
}

.company-info--location__link {
  display: inline-block;
  margin-left: 3em;
  text-decoration: underline;
}

.m-company-info__table-list {
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  padding-left: 5em;
  margin-top: 30px;
}
@media (max-width: 576px) {
  .m-company-info__table-list {
    padding-left: 0;
  }
}

.m-company-info__table-list-wrapper:not(:first-child) {
  margin-top: 30px;
}

.m-company-info__table-list-wrapper-title {
  margin-bottom: 1em;
  font-weight: bold;
}

.m-company-info__table-list:last-child {
  border-bottom: none;
}

.m-company-info__table-item {
  border-top: 1px solid #E0E0E0;
  display: flex;
}

.m-company-info__table-item:first-child {
  border-top: none;
}

.m-company-info__table-head {
  background: #F8F8F8;
  padding: 20px;
  flex-shrink: 0;
  width: 8em;
}

.m-company-info__table-body {
  padding: 20px;
}

.company-info--location .m-company-info__content-item-text:last-child {
  padding-bottom: 0;
}

.top-service-page {
  color: #333333;
}

.top-service__info {
  margin-top: 110px;
  margin-bottom: 160px;
}

.top-service__info-title {
  font-size: 36px;
  font-weight: bold;
  color: #00A0A5;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .top-service__info-title {
    font-size: 24px;
  }
}

.top-service__info-text {
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  line-height: 2;
}

.top-service__info-img {
  width: 80%;
  margin: 0 auto;
  max-width: 600px;
  margin-top: 90px;
}
@media (max-width: 768px) {
  .top-service__info-img {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .top-service__info-img {
    width: 80%;
  }
}

.top-service__info-img img {
  object-fit: contain;
}

.font-sm--company {
  min-width: fit-content !important;
  display: inline-block;
  font-size: 10px;
  width: fit-content !important;
  margin: 0 !important;
  vertical-align: top;
}

.top-service__inner {
  width: 90%;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .top-service__inner {
    width: 100%;
    padding: 0 16px;
  }
}

.top-service__contents-item {
  position: relative;
}

.top-service__item {
  align-items: end;
  margin-top: 40px;
  position: relative;
  gap: 0px;
}
@media (max-width: 768px) {
  .top-service__item {
    flex-direction: column;
  }
}

.top-service__item-img {
  width: 50vw;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .top-service__item-img {
    width: 100%;
  }
}

.top-service__item-title {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .top-service__item-title {
    font-size: 24px;
  }
}

.top-service__item-content {
  width: 100%;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 20px;
  padding-left: 80px;
}
@media (max-width: 768px) {
  .top-service__item-content {
    padding-left: 0;
    padding-top: 22px;
    border-bottom: none;
  }
}

.top-service__item-text {
  margin-top: 26px;
  margin-bottom: 56px;
  line-height: 2;
}

.top-service__item-name {
  font-size: 18px;
  font-weight: bold;
  margin-top: 34px;
}

.top-service__item-name a {
  color: #059FA8;
  font-size: 13px;
}

.top-service__item-name a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  transform: translateY(1px);
  margin-top: 1em;
  background: url("../img/common/link-icon_02.png") center center/contain no-repeat;
}

.top-service__flex-text {
  display: flex;
  margin-top: 1em;
  align-items: baseline;
  font-size: 13px;
  color: #666;
}

.top-service__flex-wrap {
  margin-top: 24px;
}

.top-service__flex-text {
  display: flex;
  gap: 1.5em;
}

.top-service__flex-text span {
  min-width: 5em;
}

.top-service__contents-list {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .top-service__contents-list {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.top-service__contents-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 32px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 576px) {
  .top-service__contents-title {
    font-size: 22px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.top-service__contents-title span {
  font-size: 16px;
  font-weight: 400;
}

.top-service__contents-text {
  line-height: 2;
}

.top-service__item-btn {
  display: flex;
  gap: 1px;
  width: fit-content;
  margin: 0 0 0 auto;
  position: absolute;
  bottom: 0;
  right: 0;
}

.top-service__contents-item .swiper-button-prev {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  display: block !important;
  background: #333333;
}

.top-service__contents-item .swiper-button-next {
  position: relative !important;
  top: auto !important;
  right: 0 !important;
  display: block !important;
  background: #333333;
}

.swiper-button-next,
.swiper-button-prev {
  width: 48px !important;
  height: 48px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 15px !important;
  color: #fff !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.swiper-button-prev,
.swiper-button-next {
  transition: 0.2s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.7;
}

.top-history {
  color: #333;
  margin-top: 200px;
  padding-top: 80px;
  padding-bottom: 120px;
  border-top: 1px solid #E0E0E0;
}
@media (max-width: 576px) {
  .top-history {
    margin-top: 100px;
  }
}

.top-history__inner .top-history__content-item:nth-child(even) {
  background: #F7F7F5;
}

.top-history__content-item--last {
  position: relative;
}

.top-history__content-item--last .top-history__content-label {
  height: 100%;
}

.top-history__content-item--last .top-history__content-wrap::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  top: 52px;
  left: 0;
  background: #fff;
  transform: translateX(-50%);
  z-index: 1;
}
@media (max-width: 576px) {
  .top-history__content-item--last .top-history__content-wrap::before {
    display: none;
  }
}

.top-history__content {
  width: 80%;
  display: flex;
  margin: 0 auto;
}
@media (max-width: 1080px) {
  .top-history__content {
    width: 90%;
  }
}
@media (max-width: 576px) {
  .top-history__content {
    width: 100%;
  }
}

.top-history__content-inner {
  display: flex;
}
@media (max-width: 576px) {
  .top-history__content-inner {
    flex-direction: column;
    margin-bottom: 40px;
  }
}

.top-history__content-label {
  width: fit-content;
  background: #CECECE;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-history__content-label-text {
  writing-mode: vertical-lr;
  font-size: 32px;
  padding: 24px;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 1080px) {
  .top-history__content-label-text {
    font-size: 20px;
    padding: 12px;
  }
}
@media (max-width: 576px) {
  .top-history__content-label-text {
    font-size: 20px;
    padding: 12px;
  }
}

.top-history__content-label-text--transparent {
  color: transparent;
}

.top-history__content-wrap {
  margin: 0 40px;
  padding: 40px 20px 80px 40px;
  border-left: 1px solid #707070;
  position: relative;
}
@media (max-width: 1080px) {
  .top-history__content-wrap {
    margin: 0 20px;
    padding: 40px 20px;
  }
}
@media (max-width: 576px) {
  .top-history__content-wrap {
    margin: 10px 0;
    padding: 20px;
    border-left: none;
  }
}

.top-history__content-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 22px;
}
@media (max-width: 1080px) {
  .top-history__content-title {
    font-size: 20px;
  }
}

.top-history__content-title::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  transform: translate(-55%, 90%);
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #00A0A5;
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 576px) {
  .top-history__content-title::before {
    display: none;
  }
}

.top-history__content-desc p {
  line-height: 1.75;
}
@media (max-width: 1080px) {
  .top-history__content-desc p {
    font-size: 14px;
  }
}

.top-history__content-desc-sub {
  font-size: 12px;
  margin-top: 10px;
}
@media (max-width: 576px) {
  .top-history__content-desc-sub {
    font-size: 12px;
  }
}

.top-history__content-label-first {
  background: #A4BBBC;
}

.top-history__content-label--top {
  background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 60%), #A4BBBC;
}

.top-history__content-label--second {
  background: #82BDBF;
}

.top-history__content-label--last {
  background: #00A0A5;
}

.top-history__content-img-wrap {
  width: 20%;
  aspect-ratio: 16/9;
  flex-shrink: 0;
  margin-top: 40px;
}
@media (max-width: 576px) {
  .top-history__content-img-wrap {
    width: 100%;
    margin-top: 20px;
  }
}

.top-history__content-img-wrap p {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}
@media (max-width: 1080px) {
  .top-history__content-img-wrap p {
    font-size: 12px;
  }
}

.top-history__content-label--end {
  position: relative;
}

.top-history__content-label--end::after {
  content: "";
  position: absolute;
  bottom: -32px;
  /* 三角の高さ分ずらす */
  left: 0;
  width: 100%;
  /* 親と同じ幅 */
  height: 32px;
  /* 三角の高さ */
  /* 親の背景色と同じ */
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media (max-width: 576px) {
  .top-history__content-label--end::after {
    height: 20px;
    bottom: -20px;
  }
}

.top-history__content-label--end01::after {
  background: #A4BBBC;
}

.top-history__content-label--end02::after {
  background: #82BDBF;
}

.top-history__content-label--end03::after {
  background: #00A0A5;
}

@media (max-width: 1080px) {
  .top-history__content-slide-inner {
    flex-direction: column;
  }
}

.top-history__content-slider-wrap {
  margin-top: 40px;
  width: 40%;
  display: flex;
  flex-direction: row-reverse;
  align-items: end;
  gap: 20px;
  flex-shrink: 0;
}
@media (max-width: 1080px) {
  .top-history__content-slider-wrap {
    width: 60%;
    margin: 0 0 0 auto;
  }
}
@media (max-width: 576px) {
  .top-history__content-slider-wrap {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.top-history__content-btn .swiper-button-prev {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  display: block !important;
  background: #333333;
  color: #fff;
  /* 矢印を白に */
  width: 48px;
  /* 必要ならサイズ調整 */
  height: 48px;
}

.top-history__content-btn .swiper-button-next {
  position: relative !important;
  top: auto !important;
  right: 0 !important;
  display: block !important;
  background: #333333;
  color: #fff;
  /* 矢印を白に */
  width: 40px;
  /* 必要ならサイズ調整 */
  height: 40px;
}

.top-history__content-btn {
  display: flex;
  gap: 1px;
  flex-shrink: 0;
  align-items: end;
  height: 48px;
}

@media (max-width: 576px) {
  .top-history__content-slider {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .top-history__content-slider .swiper-slide {
    height: auto;
    max-height: 320px;
  }
}

@media (max-width: 576px) {
  .top-history__content-slider .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
  }
}

.m-2col-contents__inner {
  width: 95%;
  margin: 0 0 0 auto;
  margin-top: 150px;
  padding-bottom: 160px;
  display: grid;
  grid-template-columns: 200px 1fr;
}
@media (max-width: 1080px) {
  .m-2col-contents__inner {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 80px;
    padding-bottom: 80px;
  }
}

.m-2col-contents__left {
  position: relative;
}
@media (max-width: 1080px) {
  .m-2col-contents__left {
    display: none;
  }
}

.m-2col-contents__list {
  position: sticky;
  top: 140px;
  left: 0;
  width: 200px;
  height: fit-content;
  z-index: 10;
}

.m-2col-contents__list li {
  margin-top: 28px;
  font-weight: 500;
}

.m-2col-contents__list a {
  text-decoration: none;
  color: #6F6F6F;
  transition: color 0.3s ease;
  position: relative;
  display: block;
  padding: 8px 0;
}

.m-2col-contents__list a:hover {
  color: #00A0A5;
}

.m-2col-contents__list a.active {
  color: #00A0A5;
  font-weight: 500;
}

.m-2col-contents__list a.active::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #00A0A5;
  border-radius: 50%;
}

.m-2col-contents__right-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 576px) {
  .m-2col-contents__right-container {
    gap: 60px;
  }
}

.m-2col-contents__right {
  background: #fff;
  border-radius: 40px 0 0 40px;
}
@media (max-width: 576px) {
  .m-2col-contents__right {
    border-radius: 40px;
  }
}

.m-2col-contents__right-table {
  width: 90%;
  margin: 0 auto;
  padding: 80px 10px;
}
@media (max-width: 576px) {
  .m-2col-contents__right-table {
    width: 100%;
    padding: 64px 7% 80px 7%;
  }
}

.m-2col-contents__right-head-container {
  padding-bottom: 40px;
  border-bottom: 1px solid #CECECE;
}
@media (max-width: 768px) {
  .m-2col-contents__right-head-container {
    padding-bottom: 32px;
  }
}
@media (max-width: 576px) {
  .m-2col-contents__right-head-container {
    padding-bottom: 26px;
  }
}

.m-2col-contents__right-head-container p {
  font-size: 16px;
  line-height: 2;
  margin-top: 24px;
}

.m-2col-contents__right-head {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #275A5B;
}
@media (max-width: 576px) {
  .m-2col-contents__right-head {
    font-size: 22px;
  }
}

.m-2col-contents__right-head::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background: #00A0A5;
  border-radius: 50%;
  transform: translateY(4px);
}

.m-2col-contents__right-head span {
  font-size: 20px;
  font-weight: 500;
}

.m-2col-contents__right-table dl {
  display: flex;
  align-items: baseline;
  padding: 35px 0 32px 0;
  border-bottom: 1px solid #CECECE;
  color: #275A5B;
}
@media (max-width: 576px) {
  .m-2col-contents__right-table dl {
    padding: 24px 0;
    flex-direction: column;
  }
}

.m-2col-contents__right-table dt {
  width: 200px;
  display: block;
  font-size: 16px;
  font-weight: bold;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .m-2col-contents__right-table dt {
    width: 100%;
    font-size: 15px;
  }
}

.m-2col-contents__right-table dd {
  line-height: 2;
}
@media (max-width: 576px) {
  .m-2col-contents__right-table dd {
    font-size: 15px;
    margin-top: 10px;
  }
}

.m-2col-contents__detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 76px;
}
@media (max-width: 576px) {
  .m-2col-contents__detail {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }
}

.m-2col-contents__detail-item {
  font-size: 16px;
  line-height: 2;
}

.m-2col-contents__detail-desc li {
  line-height: 2;
}

#selection-flow .m-2col-contents__right-head {
  border-bottom: none;
}

.m-2col-contents__right-flow-item-head {
  background: #00A0A5;
  height: 85px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
}
@media (max-width: 576px) {
  .m-2col-contents__right-flow-item-head {
    font-size: 16px;
    height: 48px;
    padding: 0 16px;
  }
}

.arrow-triangle {
  display: block;
  margin: 24px 40px;
  width: 30px;
  height: 18px;
  background: url("../img/common/arrow-triangle.png") center center/contain no-repeat;
}
@media (max-width: 576px) {
  .arrow-triangle {
    margin: 16px 16px;
    width: 20px;
    height: 12px;
  }
}

.m-2col-contents__right-flow-item-body {
  background: #F4F4F4;
  height: 85px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  border-radius: 8px;
  color: #275A5B;
}
@media (max-width: 576px) {
  .m-2col-contents__right-flow-item-body {
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 10px;
  }
}

.m-2col-contents__right-flow-item-body span {
  color: #00A0A5;
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .m-2col-contents__right-flow-item-body span {
    font-size: 16px;
  }
}

.m-2col-contents__right-flow-item-body p {
  font-weight: 600;
  margin-left: 25px;
  font-size: 20px;
}
@media (max-width: 576px) {
  .m-2col-contents__right-flow-item-body p {
    font-size: 16px;
    margin-left: 0;
  }
}

.m-2col-contents__right-flow-item-child {
  padding: 24px 40px;
  border-bottom: 1px solid #CECECE;
  color: #275A5B;
}
@media (max-width: 576px) {
  .m-2col-contents__right-flow-item-child {
    padding: 16px;
  }
}

.m-2col-contents__right-flow-item-child p {
  line-height: 2;
}

.m-2col-contents__right-flow-event {
  margin-top: 40px;
  border-top: 1px solid #CECECE;
  padding-top: 40px;
}

.m-2col-contents__right-flow-event h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 24px;
  color: #275A5B;
}
@media (max-width: 576px) {
  .m-2col-contents__right-flow-event h3 {
    font-size: 18px;
  }
}

.m-2col-contents__right-flow-event ul {
  padding: 32px 0;
}

.m-2col-contents__right-flow-event p {
  color: #275A5B;
}
@media (max-width: 576px) {
  .m-2col-contents__right-flow-event p {
    font-size: 15px;
  }
}

.m-2col-contents__right-flow-event ul li {
  line-height: 2;
  color: #275A5B;
}
@media (max-width: 576px) {
  .m-2col-contents__right-flow-event ul li {
    font-size: 15px;
  }
}

.m-2col-contents__right-table .mynabi-link {
  max-width: 353px;
  margin: 0 auto;
  margin-top: 40px;
}

/*--------------------------------------------------
accordion_section
--------------------------------------------------*/
.accordion {
  padding-top: 80px;
}
@media (max-width: 576px) {
  .accordion {
    padding-top: 40px;
  }
}

.accordion__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}

.accordion__q {
  display: flex;
  border-radius: 8px;
  background: #FAFAFA;
  padding: 30px;
  padding-right: 72px;
  cursor: pointer;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  z-index: 1;
  align-items: baseline;
  border: 1px solid #E0E0E0;
  color: #275A5B;
}
@media (max-width: 576px) {
  .accordion__q {
    font-size: 16px;
    padding: 20px 3em 20px 1em;
  }
}

.accordion__q::before {
  content: "Q";
  display: inline-block;
  font-size: 28px;
  font-family: "Poppins", "serif";
  margin-right: 10px;
  margin-right: 30px;
  color: #00A0A5;
}

.accordion__q::after {
  content: "";
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  background: url("../img/common/plus-icon.png") center/cover;
}

@media screen and (max-width: 768px) {
  .accordion__q::after {
    width: 20px;
    height: 20px;
    right: 0.5em;
  }
}
.accordion__q.is_active::after {
  content: "";
  background: url("../img/common/minus-icon.png") center/contain;
}

.accordion__a {
  box-sizing: border-box;
  height: 0;
  overflow: hidden;
  line-height: 1.9;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: none;
}

.accordion__a-inner-list::before {
  content: "A";
  display: block;
  font-family: "Poppins", "serif";
  color: #00A0A5;
  margin-right: 10px;
  font-size: 28px;
  margin-right: 44px;
}

.accordion__a-inner-list {
  display: flex;
  align-items: baseline;
  line-height: 2;
  padding: 30px;
  padding-right: 72px;
}
@media (max-width: 576px) {
  .accordion__a-inner-list {
    font-size: 14px;
    padding-right: 15px;
  }
}

.accordion__a-inner-list a {
  color: #00A0A5;
  text-decoration: underline;
}

.accordion__q.is_active + .accordion__a {
  opacity: 1;
  visibility: visible;
  height: auto;
  transition: height 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
}

.accordion__a {
  font-size: 16px;
  color: #275A5B;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .accordion__a {
    font-size: 14px;
  }
}
.works-style__list {
  gap: 40px 30px;
}

.works-style__list-contents {
  padding-top: 180px;
  padding-bottom: 160px;
}
@media (max-width: 576px) {
  .works-style__list-contents {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.works-style__list-item {
  background: #fff;
  padding: 50px 40px 58px 40px;
  border-radius: 30px;
}
@media (max-width: 1080px) {
  .works-style__list-item {
    padding: 30px;
  }
}

.works-style__list-img {
  display: flex;
  align-items: end;
  width: 90%;
  max-width: 180px;
  min-height: 140px;
  margin: 0 auto;
}

.works-style__list-text {
  margin-top: 34px;
}

.works-style__list-title {
  color: #275A5B;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
@media (max-width: 1080px) {
  .works-style__list-title {
    font-size: 18px;
  }
}

.works-style__list-title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #00A0A5;
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(-25%);
}

.works-style__list-text-body {
  line-height: 2;
  margin-top: 24px;
  color: #275A5B;
}

.welfare__top-contents {
  background: #fff;
  border-radius: 50px;
  margin-top: 140px;
  padding-top: 150px;
}
@media (max-width: 576px) {
  .welfare__top-contents {
    margin-top: 100px;
    padding-top: 100px;
    border-radius: 20px;
  }
}

.welfare__top-contents-body {
  margin-top: 50px;
}

.welfare__top-contents-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  color: #275A5B;
}
@media (max-width: 576px) {
  .welfare__top-contents-title {
    font-size: 24px;
  }
}

.welfare__top-contents-title::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: #00A0A5;
  border-radius: 50%;
  transform: translateY(3px);
}

.welfare__top-contents-text {
  margin-top: 38px;
  line-height: 2;
  color: #275A5B;
}

.welfare__top-contents-body-img {
  margin-top: 60px;
}

.welfare__top-contents-body-title {
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #00A0A5;
}
@media (max-width: 576px) {
  .welfare__top-contents-body-title {
    font-size: 20px;
  }
}

.welfare__top-contents-body-title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 32px;
  background: #00A0A5;
}

.welfare__top-contents-body-title span {
  font-size: 14px;
  color: #275A5B;
}

.welfare__top-contents-list {
  margin-top: 100px;
  text-align: center;
}
@media (max-width: 768px) {
  .welfare__top-contents-list {
    gap: 20px;
  }
}

.welfare__top-contents-item {
  background: #F4F8FA;
  border-radius: 0 0 20px 20px;
}

.welfare__top-contents-item-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 282px;
}

.welfare__top-contents-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #00A0A5;
  padding: 20px;
  border-radius: 20px 20px 0 0;
}

.welfare__top-contents-head-img {
  max-width: 135px;
  position: absolute;
  height: auto;
  top: 0;
  left: 40px;
  transform: translateY(-50%);
}
@media (max-width: 1080px) {
  .welfare__top-contents-head-img {
    max-width: 110px;
    left: 30px;
    transform: translateY(-35%);
  }
}
@media (max-width: 768px) {
  .welfare__top-contents-head-img {
    max-width: 100px;
    left: 20px;
    transform: translateY(-30%);
  }
}

.welfare__top-contents-head-img img {
  object-fit: contain;
}

.welfare__top-contents-item-title {
  color: #fff;
  font-size: 20px;
  text-align: left;
  width: 50%;
  margin: 0 0 0 auto;
  font-weight: 500;
}
@media (max-width: 1080px) {
  .welfare__top-contents-item-title {
    font-size: 17px;
    width: 55%;
  }
}
@media (max-width: 576px) {
  .welfare__top-contents-item-title {
    font-size: 16px;
    width: 60%;
  }
}

.welfare__top-contents-item-text-title {
  color: #275A5B;
}

.welfare__top-contents-item-text-point {
  font-size: 43px;
  color: #00A0A5;
  font-family: "Poppins", "serif";
}
@media (max-width: 576px) {
  .welfare__top-contents-item-text-point {
    font-size: 32px;
  }
}

.welfare__top-contents-item-text-point span {
  font-size: 16px;
  color: #275A5B;
  font-family: "Noto Sans JP", "serif";
}

.plus-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 24px;
}

.welfare-plan {
  padding-top: 34px;
  padding-bottom: 120px;
}

.welfare-plan__head {
  display: flex;
  background-color: #00a0a5;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  border-radius: 10px 10px 0 0;
}
@media (max-width: 576px) {
  .welfare-plan__head {
    font-size: 16px;
  }
}

.welfare-plan__head-title {
  padding: 20px 10px;
  text-align: center;
}
.welfare-plan__head-title:first-child {
  width: 35%;
}
.welfare-plan__head-title:last-child {
  width: 65%;
}
@media (max-width: 576px) {
  .welfare-plan__head-title:last-child {
    width: 100%;
  }
}

.welfare-plan__list {
  margin: 0;
}

.welfare-plan__item {
  display: flex;
  border-top: 1px solid #E0E0E0;
  color: #275A5B;
}
.welfare-plan__item dt {
  width: 35%;
  padding: 30px;
  background: #F4F8FA;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.welfare-plan__item dd {
  width: 65%;
  padding: 30px;
  margin: 0;
  line-height: 2;
}
.welfare-plan__item dd ul {
  list-style: none;
  padding-left: 0;
}
.welfare-plan__item dd ul li {
  position: relative;
  padding-left: 1.2em;
}
.welfare-plan__item dd ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.welfare-plan__item dd ul li + li {
  margin-top: 1em;
}
@media (max-width: 576px) {
  .welfare-plan__item {
    flex-direction: column;
  }
  .welfare-plan__item dt,
  .welfare-plan__item dd {
    width: 100%;
    padding: 20px;
  }
  .welfare-plan__item dt {
    border-right: none;
    border-bottom: 1px solid #E0E0E0;
    font-size: 16px;
  }
  .welfare-plan__item dd {
    font-size: 15px;
  }
}

.welfare-plan__item--radius dt {
  border-radius: 0 0 0px 10px;
}
@media (max-width: 576px) {
  .welfare-plan__item--radius dt {
    border-radius: 0;
  }
}

.welfare__main-contents {
  padding-top: 160px;
  padding-bottom: 160px;
}
@media (max-width: 576px) {
  .welfare__main-contents {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 576px) {
  .welfare__main-contents .container-lg {
    padding: 0 10px;
  }
}

.welfare__main-contents-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.welfare__main-contents-item {
  width: 20%;
  border-radius: 20px;
  padding: 30px;
}
@media (max-width: 768px) {
  .welfare__main-contents-item {
    width: 33.3333333333%;
  }
}
@media (max-width: 576px) {
  .welfare__main-contents-item {
    width: 50%;
  }
}

.welfare__main-contents-item-img {
  height: 100px;
  width: auto;
}

.welfare__main-contents-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.welfare__main-contents-item-text {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

.welfare__main-contents-item-text span {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../img/common/arrow-btm.png") center center/contain no-repeat;
}

.welfare__main-contents-item-title {
  text-align: center;
  color: #275A5B;
  font-weight: bold;
}

.welfare__main-contents-body {
  background: #fff;
  border-radius: 40px;
  padding: 60px 0 0px 0;
  margin-top: 80px;
  scroll-margin-top: 100px;
}
@media (max-width: 576px) {
  .welfare__main-contents-body {
    border-radius: 20px;
    padding: 40px 0 60px 0;
  }
}

.welfare__main-contents-body-title {
  font-size: 32px;
  margin-bottom: 35px;
  color: #275A5B;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 576px) {
  .welfare__main-contents-body-title {
    font-size: 28px;
    gap: 0;
  }
}

.welfare__main-contents-body-title::before {
  content: "";
  display: block;
  height: 1px;
  width: 70px;
  background: #275A5B;
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 1080px) {
  .welfare__main-contents-body-title::before {
    width: 26px;
  }
}

.welfare__main-contents-body-head {
  width: 90%;
  max-width: 1000px;
  margin-bottom: 44px;
  grid-template-columns: 1fr 0.5fr;
  gap: 10px;
}
@media (max-width: 576px) {
  .welfare__main-contents-body-head {
    width: 100%;
    gap: 0;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .welfare__main-contents-body-head-left {
    order: 2;
    margin-bottom: 20px;
  }
}

.welfare__main-contents-body-head-left p {
  line-height: 2;
}
@media (max-width: 576px) {
  .welfare__main-contents-body-head-left p {
    font-size: 14px;
  }
}

.welfare__main-contents-body-head-left-text {
  margin-left: 70px;
}
@media (max-width: 1080px) {
  .welfare__main-contents-body-head-left-text {
    padding: 0 20px;
    margin-left: 0;
  }
}

.welfare__main-contents-body-head-right {
  width: 50%;
  max-width: 280px;
  min-width: 120px;
  margin: 0 0 0 auto;
}
@media (max-width: 576px) {
  .welfare__main-contents-body-head-right {
    order: 2;
    margin: 0 auto;
  }
}

.welfare__main-contents-body-head-right img {
  object-fit: contain;
}

.welfare__main-contents-body-head-right--center {
  transform: translateY(50%);
}
@media (max-width: 768px) {
  .welfare__main-contents-body-head-right--center {
    transform: translateY(0);
  }
}

.welfare__main-contents-body-list {
  gap: 0;
}

.welfare__main-contents-body-item {
  padding: 35px;
  padding-top: 0;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .welfare__main-contents-body-item {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .welfare__main-contents-body-item {
    margin-bottom: 0;
    padding: 40px 0;
  }
}

@media (max-width: 576px) {
  .welfare__main-contents-body-item p {
    font-size: 14px;
  }
}

.welfare__main-contents-body-item-sm {
  font-size: 13px;
}

.welfare__main-contents-body-item-link {
  display: inline-block;
  color: #00A0A5;
  text-decoration: underline;
  font-weight: 500;
  font-size: 14px;
  margin-top: 20px;
}

.welfare__main-contents-body-head-left-btn {
  padding-bottom: 80px;
}
@media (max-width: 576px) {
  .welfare__main-contents-body-head-left-btn {
    padding-bottom: 0px;
  }
}

.welfare__main-contents-body-head-left-btn a {
  margin-top: 72px;
  display: block;
  border-radius: 56px;
  border: 1px solid #707070;
  font-weight: bold;
  font-size: 18px;
  width: fit-content;
  padding: 40px 90px;
}
@media (max-width: 576px) {
  .welfare__main-contents-body-head-left-btn a {
    font-size: 14px;
    padding: 20px;
    font-size: 16px;
    margin: 0 auto;
    margin-top: 40px;
  }
}
@media (max-width: 420px) {
  .welfare__main-contents-body-head-left-btn a {
    font-size: 13px;
    padding: 16px;
  }
}

.welfare__main-contents-body-item h4 {
  color: #275A5B;
  font-size: 20px;
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: bold;
}
@media (max-width: 576px) {
  .welfare__main-contents-body-item h4 {
    font-size: 16px;
  }
}
.welfare__main-contents-body-item p {
  line-height: 2;
}
.welfare__main-contents-body-item:nth-child(1), .welfare__main-contents-body-item:nth-child(2), .welfare__main-contents-body-item:nth-child(4), .welfare__main-contents-body-item:nth-child(5), .welfare__main-contents-body-item:nth-child(7), .welfare__main-contents-body-item:nth-child(8), .welfare__main-contents-body-item:nth-child(10) {
  border-right: 1px solid #E0E0E0;
}
@media (max-width: 576px) {
  .welfare__main-contents-body-item:nth-child(1), .welfare__main-contents-body-item:nth-child(2), .welfare__main-contents-body-item:nth-child(4), .welfare__main-contents-body-item:nth-child(5), .welfare__main-contents-body-item:nth-child(7), .welfare__main-contents-body-item:nth-child(8), .welfare__main-contents-body-item:nth-child(10) {
    border-right: none;
  }
}
@media (max-width: 768px) {
  .welfare__main-contents-body-item:nth-child(1), .welfare__main-contents-body-item:nth-child(2), .welfare__main-contents-body-item:nth-child(4), .welfare__main-contents-body-item:nth-child(5), .welfare__main-contents-body-item:nth-child(7), .welfare__main-contents-body-item:nth-child(8), .welfare__main-contents-body-item:nth-child(10) {
    border-right: none;
  }
}
.welfare__main-contents-body-item:nth-child(1), .welfare__main-contents-body-item:nth-child(4), .welfare__main-contents-body-item:nth-child(7), .welfare__main-contents-body-item:nth-child(10), .welfare__main-contents-body-item:nth-child(13) {
  padding-left: 0;
}
@media (max-width: 768px) {
  .welfare__main-contents-body-item:nth-child(odd) {
    padding-left: 0px;
    border-right: 1px solid #E0E0E0;
  }
}
@media (max-width: 576px) {
  .welfare__main-contents-body-item:nth-child(odd) {
    border-right: none;
  }
}
@media (max-width: 768px) {
  .welfare__main-contents-body-item:nth-child(even) {
    padding-left: 35px;
  }
}
@media (max-width: 576px) {
  .welfare__main-contents-body-item:nth-child(even) {
    border-right: none;
    padding-left: 0;
  }
}
@media (max-width: 576px) {
  .welfare__main-contents-body-item {
    border-bottom: 1px solid #E0E0E0;
  }
}

.welfare__main-contents-body-item h4::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #00A0A5;
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(-25%);
  display: inline-block;
}

.kurumin {
  margin-top: 140px;
}
@media (max-width: 576px) {
  .kurumin {
    margin-top: 100px;
  }
}

.kurumin__inner {
  display: flex;
  align-items: center;
  gap: 50px;
  background: #fff;
  border-radius: 40px;
  padding: 40px 80px;
}
@media (max-width: 1080px) {
  .kurumin__inner {
    padding: 30px 50px;
  }
}
@media (max-width: 576px) {
  .kurumin__inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
  }
}

.kurumin__img {
  max-width: 140px;
}
@media (max-width: 576px) {
  .kurumin__img {
    max-width: 100px;
  }
}

.kurumin__contents {
  color: #275A5B;
}

.kurumin__title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 25px;
}
@media (max-width: 1080px) {
  .kurumin__title {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .kurumin__title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

.kurumin__text {
  line-height: 2;
}

.childcare-support__top-contents {
  margin-top: 130px;
  padding-bottom: 164px;
}
@media (max-width: 576px) {
  .childcare-support__top-contents {
    margin-top: 100px;
    padding-bottom: 100px;
  }
}

.childcare-support__title {
  font-size: 32px;
  font-weight: bold;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 52px;
  color: #275A5B;
}
@media (max-width: 576px) {
  .childcare-support__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.childcare-support__title::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background: #00A0A5;
  border-radius: 50%;
  transform: translateY(-25%);
}

.childcare-support__contents:not(:first-of-type) {
  margin-top: 100px;
}

.childcare-support__contents h3 {
  background: #00A0A5;
  border-radius: 8px;
  color: #fff;
  font-size: 24px;
  padding: 10px 20px;
  font-weight: 500;
}

.childcare-support__list {
  gap: 30px 40px;
  margin-top: 30px;
}

.childcare-support__list li {
  border-radius: 30px;
  background: #fff;
  padding: 50px 40px;
}
@media (max-width: 768px) {
  .childcare-support__list li {
    padding: 30px;
    border-radius: 20px;
  }
}

.childcare-support__list h4 {
  font-size: 20px;
  color: #275A5B;
  margin-bottom: 24px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
@media (max-width: 768px) {
  .childcare-support__list h4 {
    font-size: 18px;
  }
}

.childcare-support__list h4::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #00A0A5;
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(-25%);
}

.childcare-support__list p {
  line-height: 2;
  color: #275A5B;
}
@media (max-width: 576px) {
  .childcare-support__list p {
    font-size: 15px;
  }
}

.childcare-support__list-text-sm {
  margin-top: 30px;
  font-size: 13px;
  color: #275A5B;
}

.childcare-support__voice {
  background: #fff;
  border-radius: 40px 40px 0 0;
  padding: 140px 0;
}
@media (max-width: 576px) {
  .childcare-support__voice {
    border-radius: 20px 20px 0 0;
    padding: 100px 0;
  }
}

.childcare-support__voice-head {
  margin-top: 40px;
  grid-template-columns: 1fr 0.6fr;
}
@media (max-width: 1080px) {
  .childcare-support__voice-head {
    grid-template-columns: 1fr 0.8fr;
  }
}
@media (max-width: 768px) {
  .childcare-support__voice-head {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.childcare-support__voice-head-left h3 {
  font-size: 28px;
  font-weight: bold;
  color: #275A5B;
}
@media (max-width: 1080px) {
  .childcare-support__voice-head-left h3 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .childcare-support__voice-head-left h3 {
    font-size: 20px;
  }
}
.childcare-support__voice-head-left .childcare-support__voice-head-name {
  font-size: 20px;
  font-weight: bold;
  margin-top: 26px;
  color: #275A5B;
}
.childcare-support__voice-head-left .childcare-support__voice-head-name span {
  font-size: 14px;
  font-weight: 400;
  margin-left: 8px;
}
.childcare-support__voice-head-left .childcare-support__voice-head-position {
  font-size: 14px;
  color: #275A5B;
  margin-top: 24px;
  line-height: 1.75;
}

.childcare-support__voice-head-right {
  max-width: 400px;
  margin: 0 0 0 auto;
}
@media (max-width: 576px) {
  .childcare-support__voice-head-right {
    max-width: 100%;
    margin: 0;
  }
}

.childcare-support__voice-head-right-content {
  border: 1px solid #12A1EB;
  border-radius: 8px;
  box-sizing: border-box;
}
.childcare-support__voice-head-right-content h4 {
  background: #12A1EB;
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px 6px 0 0;
  box-sizing: border-box;
}
.childcare-support__voice-head-right-content ul {
  padding: 20px 30px;
}
.childcare-support__voice-head-right-content li {
  color: #12A1EB;
  line-height: 1.75;
}
@media (max-width: 576px) {
  .childcare-support__voice-head-right-content li {
    font-size: 14px;
  }
}

.childcare-support__voice-text {
  margin-top: 60px;
  line-height: 2;
  color: #275A5B;
}
@media (max-width: 576px) {
  .childcare-support__voice-text {
    font-size: 15px;
  }
}

.childcare-support__voice-other {
  margin-top: 72px;
}

.childcare-support__voice-other-contents-list {
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .childcare-support__voice-other-contents-list {
    grid-template-columns: 1fr;
  }
}

.childcare-support__voice-other-head {
  font-size: 20px;
  font-weight: bold;
  color: #275A5B;
  display: flex;
  align-items: center;
  gap: 20px;
}

.childcare-support__voice-other-head h5 {
  flex-shrink: 0;
}

.childcare-support__voice-other span {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #E0E0E0;
}

.childcare-support__voice-other-contents li {
  background: #ECF3F7;
  border-radius: 8px;
  padding: 30px;
  line-height: 2;
  font-size: 15px;
}

.childcare-support__voice-other-contents-inner-name {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 0 auto;
  margin-top: 28px;
  color: #275A5B;
  font-weight: 500;
}

.childcare-support__voice-other-contents-inner p {
  color: #275A5B;
  font-size: 15px;
}
@media (max-width: 576px) {
  .childcare-support__voice-other-contents-inner p {
    font-size: 14px;
  }
}

.childcare-support__voice-other-contents-inner-name-img {
  width: 52px;
  height: 52px;
}

.childcare-support__voice-other-contents-inner-name-img img {
  border-radius: 50%;
}

.childcare-support__voice-content:nth-of-type(2) {
  margin-top: 160px;
}

.u-fwb {
  font-weight: bold;
}

.company-data {
  padding-top: 180px;
}
@media (max-width: 1080px) {
  .company-data {
    padding-top: 100px;
  }
}
@media (max-width: 576px) {
  .company-data {
    padding-top: 80px;
  }
}

.company-data__container {
  width: 90%;
  margin: 0 0 0 auto;
  margin-bottom: 160px;
  padding: 0 40px;
}
@media (max-width: 1080px) {
  .company-data__container {
    width: 100%;
    padding: 0 4%;
    margin-bottom: 100px;
  }
}
@media (max-width: 576px) {
  .company-data__container {
    padding: 0 7%;
  }
}

.company-data__contents-inner {
  width: 100%;
  position: relative;
}

.company-data__inner {
  display: flex;
  gap: 60px;
}

@media screen and (max-width: 1200px) {
  .company-data__inner {
    flex-direction: column;
    gap: 30px;
  }
}
.company-data__contents-item-text--pd40 {
  padding: 0 40px;
}
@media (max-width: 576px) {
  .company-data__contents-item-text--pd40 {
    padding: 0 16px;
  }
}

.company-data__contents-item-text--pl32 {
  padding-left: 32px;
}

@media (max-width: 1500px) {
  .company-data__contents-item-text--pl40 {
    padding-left: 0px;
  }
}
.company-data__number-90px {
  font-size: 90px;
  font-family: "Poppins", "serif";
  color: #FC8871;
  padding-right: 10px;
  line-height: 1;
}
@media (max-width: 1080px) {
  .company-data__number-90px {
    font-size: 64px;
  }
}
@media (max-width: 576px) {
  .company-data__number-90px {
    font-size: 50px;
  }
}

.company-data__text-13px {
  font-size: 13px;
  color: #6F6F6F;
  line-height: 1.75;
}
@media (max-width: 576px) {
  .company-data__text-13px {
    font-size: 10px;
  }
}

.company-data__text-22px {
  font-size: 22px;
  color: #6F6F6F;
}
@media (max-width: 576px) {
  .company-data__text-22px {
    font-size: 16px;
  }
}

.company-data__text-25px {
  font-size: 25px;
  color: #6F6F6F;
}
@media (max-width: 576px) {
  .company-data__text-25px {
    font-size: 15px;
  }
}

.company-data__text-28px {
  font-size: 28px;
  color: #6F6F6F;
}
@media (max-width: 576px) {
  .company-data__text-28px {
    font-size: 17px;
  }
}

.company-data__text-30px {
  font-size: 30px;
  color: #6F6F6F;
}
@media (max-width: 1080px) {
  .company-data__text-30px {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .company-data__text-30px {
    font-size: 12px;
  }
}

.company-data__text-40px {
  font-size: 40px;
  color: #6F6F6F;
}
@media (max-width: 1080px) {
  .company-data__text-40px {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .company-data__text-40px {
    font-size: 16px;
  }
}

.company-data__text-66px {
  font-size: 66px;
  color: #6F6F6F;
}
@media (max-width: 1080px) {
  .company-data__text-66px {
    font-size: 40px;
  }
}

.company-data__number-58px {
  font-size: 58px;
  color: #FC8871;
  font-family: "Poppins", "serif";
}
@media (max-width: 1080px) {
  .company-data__number-58px {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .company-data__number-58px {
    font-size: 24px;
  }
}

.company-data__number-58px--black {
  color: #6F6F6F;
}

.company-data__number-72px {
  font-size: 72px;
  color: #FC8871;
  font-family: "Poppins", "serif";
}
@media (max-width: 576px) {
  .company-data__number-72px {
    font-size: 20px;
  }
}

.company-data__number-100px {
  font-size: 100px;
  font-family: "Poppins", "serif";
  color: #FC8871;
  padding-right: 10px;
  line-height: 1;
}
@media (max-width: 1080px) {
  .company-data__number-100px {
    font-size: 70px;
  }
}
@media (max-width: 576px) {
  .company-data__number-100px {
    font-size: 80px;
  }
}

.company-data__number-120px {
  font-size: 120px;
  font-family: "Poppins", "serif";
  color: #FC8871;
  padding-right: 10px;
  line-height: 1;
}
@media (max-width: 1080px) {
  .company-data__number-120px {
    font-size: 100px;
  }
}
@media (max-width: 576px) {
  .company-data__number-120px {
    font-size: 60px;
  }
}

.company-data__number-125px {
  font-size: 125px;
  font-family: "Poppins", "serif";
  color: #FC8871;
  padding-right: 10px;
  line-height: 1;
}
@media (max-width: 1080px) {
  .company-data__number-125px {
    font-size: 90px;
  }
}
@media (max-width: 576px) {
  .company-data__number-125px {
    font-size: 80px;
  }
}

.company-data__number-150px {
  font-size: 150px;
  font-family: "Poppins", "serif";
  color: #FC8871;
  padding-right: 10px;
  line-height: 1;
}
@media (max-width: 1080px) {
  .company-data__number-150px {
    font-size: 90px;
  }
}
@media (max-width: 576px) {
  .company-data__number-150px {
    font-size: 80px;
  }
}

.company-data__contents-item-number--mt35 {
  margin-top: 35px;
  line-height: 1.75;
}

.company-data__border {
  width: 80%;
  margin: 0 auto;
  height: 1px;
  background: #E0E0E0;
}

.company-data__contents {
  position: relative;
}

.company-data__plus-icon {
  width: 56px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.company-data__contents-item-number-container {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 10px;
}

.company-data__contents-item-text--mt32 {
  margin-top: 32px;
  padding: 0 16px;
  color: #333;
}
@media (max-width: 576px) {
  .company-data__contents-item-text--mt32 {
    padding: 0 26px;
  }
}

.company-data__contents-year {
  font-size: 13px;
  color: #6F6F6F;
  margin-top: 20px;
  line-height: 2;
}

.company-data__head {
  font-size: 88px;
  writing-mode: sideways-rl;
  font-family: "Poppins", "serif";
  color: #00A0A5;
  font-weight: 300;
  flex-shrink: 0;
}

@media screen and (max-width: 1200px) {
  .company-data__head {
    writing-mode: initial;
    font-size: 48px;
  }
}
.company-data__contents-item-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.company-data__contents-container {
  gap: 10px;
  width: 100%;
  margin-bottom: 10px;
}

.company-data__contents-container--01 {
  grid-template-columns: 1fr 1.5fr;
}
@media (max-width: 576px) {
  .company-data__contents-container--01 {
    grid-template-columns: 1fr;
  }
}

.company-data__contents-container--02 {
  grid-template-columns: 1.5fr 1fr;
}
@media (max-width: 576px) {
  .company-data__contents-container--02 {
    grid-template-columns: 1fr;
  }
}

.company-data__contents {
  background: #fff;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.company-data__contents-item-text-container {
  text-align: center;
}

.company-data__contents-item {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 10px;
  padding: 40px 20px;
  text-align: center;
}
@media (max-width: 576px) {
  .company-data__contents-item {
    padding: 35px 26px;
  }
}

.company-data__contents-item-head {
  font-size: 26px;
  color: #333;
  line-height: 1.75;
}
@media (max-width: 1080px) {
  .company-data__contents-item-head {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .company-data__contents-item-head {
    font-size: 18px;
  }
}

.company-data__contents-item-img {
  width: 40%;
}

.company-data__contents-people-img {
  width: 60%;
  margin-top: 60px;
}
@media (max-width: 576px) {
  .company-data__contents-people-img {
    margin-top: 30px;
    width: 80%;
  }
}

.company-data__contents-job-img {
  margin-top: 60px;
  width: 60%;
}
@media (max-width: 576px) {
  .company-data__contents-job-img {
    width: 100%;
  }
}

.company-data__contents-old-img {
  margin-top: 60px;
  width: 50%;
}
@media (max-width: 576px) {
  .company-data__contents-old-img {
    width: 83%;
  }
}

.company-data__contents-item-list {
  gap: 0px;
  width: 100%;
}

.company-data__contents-item-list li {
  text-align: center;
  padding: 35px;
}
@media (max-width: 576px) {
  .company-data__contents-item-list li {
    padding: 30px 10px;
  }
}

.company-data__contents-item-list--border {
  border-right: 1px solid #E0E0E0;
}
@media (max-width: 576px) {
  .company-data__contents-item-list--border {
    border-right: none;
    border-bottom: 1px solid #E0E0E0;
  }
}

.company-data__contents-item-list li h4 {
  font-size: 18px;
  background: #EFEFEF;
  border-radius: 4px;
  color: #6F6F6F;
  padding: 8px 16px;
  line-height: 1;
  margin-bottom: 28px;
  line-height: 1.5;
}

.company-data__contents-item-list--02 li {
  padding: 20px;
}

.company-data__contents-item-list-item {
  margin: 30px 0;
}

.company-data__contents-item-list-item h4 {
  font-size: 16px;
  background: #EFEFEF;
  border-radius: 4px;
  color: #6F6F6F;
  padding: 8px 16px;
  line-height: 1;
  margin-bottom: 28px;
}

.company-data__certified-list {
  width: 100%;
  color: #6F6F6F;
}

.company-data__certified-list li {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
  line-height: 1;
  padding: 15px 0;
  justify-content: space-between;
}
@media (max-width: 1080px) {
  .company-data__certified-list li {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
  }
}

.company-data__certified-list li:not(:last-child) {
  border-bottom: 1px solid #E0E0E0;
}

.company-data__certified-list h4 {
  background-color: #EFEFEF;
  font-size: 18px;
  width: 180px;
  padding: 8px;
  border-radius: 4px;
  margin-right: 25px;
  transform: translateY(-10px);
}
@media (max-width: 576px) {
  .company-data__certified-list h4 {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
}

@media (max-width: 420px) {
  .company-data__recruit-table--wrap {
    padding: 35px 10px;
  }
}

.company-data__recruit-table {
  width: 100%;
  border-collapse: separate;
  /* ← 必須 */
  border-spacing: 12px 16px;
  /* 横gap, 縦gap */
  text-align: center;
  table-layout: fixed;
}

.company-data__recruit-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin: 40px auto;
  table-layout: fixed;
  /* ← 各セルのwidthを効かせるために追加 */
}

.company-data__recruit-table th,
.company-data__recruit-table td {
  width: 25%;
  /* 4列を均等に分ける */
}

.company-data__recruit-table thead tr:first-child th {
  padding-bottom: 16px;
}

.company-data__recruit-table tr + tr + tr {
  border-top: 1px solid #eee;
}

.company-data__recruit-list-label {
  padding: 0 4px;
  color: #6F6F6F;
}

.company-data__recruit-list-label:not(:first-child) span {
  display: flex;
  width: 100%;
  max-width: 168px;
  justify-content: center;
  font-size: 18px;
  text-align: center;
  padding: 12px 8px;
  background: #EFEFEF;
  font-weight: 400;
  border-radius: 4px;
  margin: 0 auto;
}
@media (max-width: 1080px) {
  .company-data__recruit-list-label:not(:first-child) span {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .company-data__recruit-list-label:not(:first-child) span {
    font-size: 12px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.company-data__recruit-list-year {
  font-weight: 500;
  padding: 16px 8px;
  white-space: nowrap;
  font-size: 30px;
  color: #6F6F6F;
  vertical-align: middle;
}
@media (max-width: 1080px) {
  .company-data__recruit-list-year {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .company-data__recruit-list-year {
    font-size: 12px;
  }
}

.company-data__recruit-list-num,
.company-data__recruit-list-leave,
.company-data__recruit-list-rate {
  padding: 16px 8px;
}
@media (max-width: 576px) {
  .company-data__recruit-list-num,
  .company-data__recruit-list-leave,
  .company-data__recruit-list-rate {
    padding: 10px 2px;
  }
}

.company-data__number-58px {
  display: inline-block;
  margin-right: 4px;
}

.company-data__text-30px {
  display: inline-block;
}

.company-data__text-38px {
  font-size: 38px;
  color: #6F6F6F;
  font-weight: 500;
}
@media (max-width: 576px) {
  .company-data__text-38px {
    font-size: 23px;
  }
}

.company-data__text-18px {
  font-size: 18px;
  color: #6F6F6F;
  font-weight: 500;
}
@media (max-width: 576px) {
  .company-data__text-18px {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .company-data__number-80px--sp {
    font-size: 80px;
  }
  .company-data__number-90px--sp {
    font-size: 90px;
  }
  .company-data__contents-item-list--sp {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .company-data__contents-item-list--sp li {
    padding: 0;
  }
  .company-data__contents-item-list--sp li h4 {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    font-size: 14px;
  }
}
.top-message__inner {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .top-message__inner {
    flex-direction: column;
  }
}

.top-message__img {
  width: 45%;
  flex-shrink: 0;
  transform: translateY(10%);
}
@media (max-width: 576px) {
  .top-message__img {
    width: 100%;
    transform: translateY(0);
    margin-bottom: 20px;
  }
}

.top-message__img img {
  width: 100%;
  height: auto;
}

.m-page-head__title-wrap {
  width: 100%;
}

.top-message__first-inner {
  border-radius: 40px;
  background: #fff;
  padding: 120px 10%;
}
@media (max-width: 576px) {
  .top-message__first-inner {
    padding: 80px 8%;
    margin-top: 64px;
    border-radius: 20px;
  }
}

.top-message__first-title {
  font-size: 32px;
  color: #275A5B;
  font-weight: 500;
}
@media (max-width: 576px) {
  .top-message__first-title {
    font-size: 20px;
  }
}

.top-message__first-head {
  margin-top: 72px;
  font-size: 24px;
  color: #275A5B;
}
@media (max-width: 576px) {
  .top-message__first-head {
    margin-top: 40px;
    font-size: 18px;
  }
}

.top-message__first-text {
  margin-top: 44px;
  font-size: 17px;
  color: #275A5B;
  line-height: 2;
}
@media (max-width: 576px) {
  .top-message__first-text {
    margin-top: 32px;
    font-size: 14px;
  }
}

.top-message__first-name {
  text-align: end;
  color: #275A5B;
  font-size: 14px;
  font-weight: 500;
  margin-top: 52px;
}
@media (max-width: 576px) {
  .top-message__first-name {
    margin-top: 32px;
    font-size: 12px;
  }
}

.top-message__first-name span {
  font-size: 20px;
  margin-left: 12px;
}
@media (max-width: 576px) {
  .top-message__first-name span {
    font-size: 16px;
  }
}

.top-message__second {
  padding-top: 140px;
  padding-bottom: 140px;
}
@media (max-width: 576px) {
  .top-message__second {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.top-message__second-label {
  width: fit-content;
  margin: 0 auto;
  padding: 1em 2em;
  border: 1px solid #275A5B;
  border-radius: 28px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .top-message__second-label {
    font-size: 13px;
  }
}

.top-message__second-title {
  width: 75%;
  margin: 0 auto;
  margin-top: 52px;
}
@media (max-width: 576px) {
  .top-message__second-title {
    width: 70%;
    margin-top: 32px;
  }
}

.top-message-second-sub-title {
  width: 33%;
  margin: 0 auto;
  margin-top: 52px;
}
@media (max-width: 576px) {
  .top-message-second-sub-title {
    width: 80%;
    margin-top: 32px;
  }
}

.top-message__second-text {
  margin-top: 45px;
  text-align: center;
  color: #275A5B;
  line-height: 2;
}
@media (max-width: 576px) {
  .top-message__second-text {
    margin-top: 32px;
    font-size: 14px;
  }
}

.top-message__second-text a {
  color: #00A0A5;
  text-decoration: underline;
}

.top-message__second-content {
  padding: 120px 8%;
  background: #fff;
  border-radius: 40px;
  margin-top: 80px;
}
@media (max-width: 576px) {
  .top-message__second-content {
    padding: 40px 20px;
    margin-top: 40px;
    border-radius: 20px;
  }
}

.top-message__second-list-item {
  gap: 60px;
  margin-bottom: 95px;
  align-items: center;
  grid-template-columns: 1fr 0.9fr;
}
@media (max-width: 768px) {
  .top-message__second-list-item {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .top-message__second-list-item {
    gap: 30px;
  }
}

.top-message__second-list-item:last-child {
  margin-bottom: 0;
}

.top-message__second-list-title {
  font-size: 24px;
  color: #275A5B;
  font-weight: bold;
}
@media (max-width: 576px) {
  .top-message__second-list-title {
    font-size: 20px;
  }
}

.top-message__second-list-text {
  font-size: 16px;
  color: #275A5B;
  line-height: 2;
  margin-top: 44px;
}
@media (max-width: 576px) {
  .top-message__second-list-text {
    font-size: 14px;
    margin-top: 32px;
  }
}

.top-message__second-list-text-accent {
  font-weight: bold;
}

@media (max-width: 576px) {
  .top-message__second-list-img {
    grid-row: 1;
  }
}

.top-message__second-list-img--reverse {
  grid-row: 1;
}

.diagram {
  padding-top: 160px;
  color: #275A5B;
}
@media (max-width: 576px) {
  .diagram {
    padding-top: 80px;
  }
}

.diagram__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 20px;
}
@media (max-width: 576px) {
  .diagram__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.diagram__content {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 10px 20px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 16px 16px;
}
@media (max-width: 576px) {
  .diagram__content {
    font-size: 14px;
    padding: 10px 10px;
    height: 50px;
  }
}

.diagram__content--partner {
  border-radius: 16px;
}

.diagram__content-img {
  margin-top: 40px;
}

.diagram__head {
  font-size: 32px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 40px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .diagram__head {
    font-size: 20px;
  }
}

.diagram__head::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: #00A0A5;
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(calc(-50% + 2px));
}
@media (max-width: 576px) {
  .diagram__head::before {
    width: 10px;
    height: 10px;
  }
}

.diagram__head-desc {
  margin-top: 40px;
  line-height: 2;
  margin-bottom: 70px;
}
@media (max-width: 576px) {
  .diagram__head-desc {
    font-size: 15px;
    margin-bottom: 40px;
  }
}

.diagram__content-list {
  margin-top: 90px;
  gap: 46px;
}
@media (max-width: 576px) {
  .diagram__content-list {
    margin-top: 60px;
    gap: 30px;
  }
}

.diagram__content-list-title {
  background: #40CCBC;
  width: fit-content;
  padding: 18px;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .diagram__content-list-title {
    font-size: 14px;
    padding: 10px 16px;
    margin-bottom: 10px;
  }
}

.diagram__content-list-text {
  line-height: 2;
}
@media (max-width: 576px) {
  .diagram__content-list-text {
    font-size: 14px;
  }
}

.diagram-contents {
  border-radius: 50px 50px 0 0;
  background: #fff;
  padding: 150px 0;
  margin-top: 140px;
}
@media (max-width: 576px) {
  .diagram-contents {
    margin-top: 100px;
    padding: 100px 0;
    border-radius: 30px 30px 0 0;
  }
}

.diagram-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 0;
  border-bottom: 1px solid #E0E0E0;
}
@media (max-width: 576px) {
  .diagram-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0;
  }
}

.diagram-contents .diagram-content:last-child {
  border-bottom: none;
}

@media (max-width: 576px) {
  .diagram-content__right {
    order: -1;
  }
}

.diagram-content__title {
  font-size: 28px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .diagram-content__title {
    font-size: 20px;
  }
}

.diagram-content__text {
  margin-top: 35px;
  line-height: 2;
}
@media (max-width: 576px) {
  .diagram-content__text {
    font-size: 14px;
    margin-top: 20px;
  }
}

.diagram-content__link {
  width: fit-content;
  margin-top: 38px;
  display: flex;
  line-height: 1;
  align-items: center;
  gap: 10px;
  background: #00A0A5;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  padding: 18px 24px;
  border-radius: 28px;
}

.dialog-contents {
  padding-top: 160px;
}
@media (max-width: 576px) {
  .dialog-contents {
    padding-top: 100px;
  }
}

.dialog-contents__inner {
  background: #fff;
  border-radius: 60px;
  padding: 70px 30px;
  margin-bottom: 160px;
  padding-bottom: 140px;
}
@media (max-width: 576px) {
  .dialog-contents__inner {
    margin-bottom: 100px;
    padding-bottom: 100px;
    padding: 70px 22px;
    border-radius: 30px;
  }
}

.dialog-contents__title {
  margin-bottom: 100px;
  font-family: "Poppins", "serif";
  padding: 10px 28px;
  color: #999999;
  background: #F4F4F4;
  width: fit-content;
  border-radius: 60px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .dialog-contents__title {
    margin-bottom: 40px;
  }
}

.dialog-contents__item {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 65px;
}
@media (max-width: 576px) {
  .dialog-contents__item {
    gap: 10px;
  }
}

.dialog-contents__item--second {
  margin-top: 10px;
}

.dialog-contents__item-text {
  padding: 30px;
  line-height: 2;
}
@media (max-width: 576px) {
  .dialog-contents__item-text {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .dialog-contents__item-text p {
    font-size: 13px;
  }
}

.dialog-contents__item-text--green {
  background: #00A0A5;
  color: #fff;
  border-radius: 0 30px 30px 30px;
}
@media (max-width: 576px) {
  .dialog-contents__item-text--green {
    border-radius: 0 15px 15px 15px;
  }
}

.dialog-contents__item-text--gray {
  background: #F5F8F8;
  color: #275A5B;
  border-radius: 30px 0px 30px 30px;
}
@media (max-width: 576px) {
  .dialog-contents__item-text--gray {
    border-radius: 15px 0px 15px 15px;
  }
}

.dialog-contents__item-img {
  width: 80px;
  position: absolute;
}
@media (max-width: 1080px) {
  .dialog-contents__item-img {
    position: relative;
    flex-shrink: 0;
    width: 60px;
  }
}

.dialog-contents__item-img--01 {
  top: 0;
  left: -30px;
  transform: translate(-100%, -50%);
}
@media (max-width: 1080px) {
  .dialog-contents__item-img--01 {
    transform: none;
    left: 0;
  }
}

.dialog-contents__item-img--02 {
  top: 0;
  right: -30px;
  transform: translate(100%, -50%);
}
@media (max-width: 1080px) {
  .dialog-contents__item-img--02 {
    transform: none;
    right: 0;
  }
}

.dialog-contents__note {
  max-width: 700px;
  margin: 0 auto;
  margin-top: 14px;
  font-size: 13px;
  color: #275A5B;
  text-align: right;
}

.dialog-contents__more-btn {
  max-width: 700px;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 20px;
}

.dialog-contents__more-btn a {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  border: 1px solid #00A0A5;
  width: fit-content;
  padding: 10px 24px;
  color: #00A0A5;
  font-weight: 500;
  margin: 0 0 0 auto;
  gap: 10px;
}

.dialog-contents__more-btn a::after {
  content: "";
  display: block;
  width: 7px;
  height: 10px;
  transform: translateY(1px);
  background: url(../img/common/arrow-right03.png) no-repeat center center/contain;
}

@media (max-width: 1080px) {
  .work-intro-body .m-page-head {
    padding-top: 72px;
  }
}

.work-intro-container {
  width: 95%;
  margin: 0 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 1200px) {
  .work-intro-container {
    flex-direction: column;
  }
}

.m-page-head__inner--work {
  width: 50%;
}
@media (max-width: 1200px) {
  .m-page-head__inner--work {
    width: 100%;
  }
}

.work-intro-img {
  width: 50%;
  transform: translateY(50px);
}
@media (max-width: 1200px) {
  .work-intro-img {
    width: 100%;
    margin-bottom: 44px;
    transform: none;
  }
}

.work-intro-img img {
  object-fit: contain;
}

@media (max-width: 1200px) {
  .work-intro__content {
    flex-direction: column;
  }
}

.work-intro__contents-container {
  width: 80%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .work-intro__contents-container {
    width: 100%;
  }
}

.work-intro__data {
  margin-top: 140px;
  color: #275A5B;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .work-intro__data {
    margin-top: 30px;
    margin-bottom: 0;
  }
}

.work-intro__data-item-name {
  font-size: 40px;
  font-family: "Poppins", "serif";
  font-weight: bold;
}

.work-intro__data-item-text {
  line-height: 2;
}

@media (max-width: 576px) {
  .work-intro-container .m-page-head__breadcrumb {
    margin-right: 20px;
  }
}

.work-intro__content--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 1200px) {
  .work-intro__content--reverse {
    flex-direction: column;
  }
}

.work-intro__content-img {
  width: 50%;
  flex-shrink: 0;
  max-width: 800px;
}
@media (max-width: 1200px) {
  .work-intro__content-img {
    width: 70%;
    margin: 0 auto;
  }
}

.work-intro__content-img--left {
  width: 45vw;
  margin-left: calc(50% - 50vw);
}

.work-intro__content-img--right {
  width: 45vw;
  margin-right: calc(50% - 50vw);
}

.work-intro__content-img img {
  object-fit: contain;
}

.work-intro__content-text-container {
  width: 100%;
}

.work-intro__contents {
  background: #fff;
  padding-top: 230px;
  padding-bottom: 140px;
  border-radius: 40px 40px 0 0;
}
@media (max-width: 576px) {
  .work-intro__contents {
    margin-top: 60px;
    padding-top: 80px;
  }
}

.work-intro__contents .work-intro__content:not(:first-child) {
  margin-top: 100px;
}

.work-intro__content-text-container .work-intro__content-text:not(:first-child) {
  margin-top: 70px;
}

.work-intro__content-text-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.work-intro__content-text-title-q {
  color: #FA752E;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .work-intro__content-text-title-q {
    font-size: 13px;
  }
}

.work-intro__content-head {
  font-size: 24px;
  color: #275A5B;
  font-weight: 500;
}
@media (max-width: 576px) {
  .work-intro__content-head {
    font-size: 20px;
  }
}

.work-intro__content-text-text {
  margin-top: 40px;
  line-height: 2;
  color: #275A5B;
}
@media (max-width: 576px) {
  .work-intro__content-text-text {
    font-size: 14px;
  }
}

.work-intro__accent-img {
  margin-top: 120px;
}
@media (max-width: 576px) {
  .work-intro__accent-img {
    margin-top: 60px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.work-intro__schedule {
  margin-top: 120px;
}

.work-intro__schedule-head-title {
  background: #FA752E;
  width: 80%;
  max-width: 412px;
  padding: 10px 20px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-family: "Poppins", "serif";
  font-weight: bold;
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 576px) {
  .work-intro__schedule-head-title {
    font-size: 14px;
  }
}

.schedule-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFF5F0;
  padding: 90px 70px;
  border-radius: 20px;
  position: relative;
}
@media (max-width: 576px) {
  .schedule-container {
    padding: 40px 10px;
  }
}

.schedule-item {
  display: flex;
  align-items: baseline;
  margin-bottom: 30px;
  position: relative;
}

.schedule-item.close-next {
  margin-bottom: 15px;
}

.schedule-item.group-gap {
  margin-bottom: 45px;
}

.schedule-item:last-child {
  margin-bottom: 0;
}

.time {
  font-size: 20px;
  color: #ff6b35;
  width: 80px;
  flex-shrink: 0;
  text-align: right;
  margin-right: 20px;
  font-family: "Poppins", "serif";
}

.timeline {
  position: relative;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #ff6b35;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}

.activity {
  flex: 1;
  font-size: 15px;
  color: #666666;
  line-height: 1.4;
}

.activity-main {
  margin-bottom: 8px;
}

.activity-sub {
  font-size: 15px;
  color: #666;
  margin-top: 8px;
}

.activity-sub-center {
  transform: translateY(100%);
}
@media (max-width: 576px) {
  .activity-sub-center {
    transform: translateY(50%);
  }
}

.connecting-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: #ff6b35;
  z-index: 1;
}

.work-intro__schedule-note {
  text-align: center;
  color: #275A5B;
  margin-top: 40px;
}
@media (max-width: 576px) {
  .work-intro__schedule-note {
    font-size: 13px;
    text-align: left;
  }
}

.m-page-sub-head--work {
  padding-top: 80px;
}

.close-talk-contents {
  padding-bottom: 140px;
}
@media (max-width: 576px) {
  .close-talk-contents {
    padding-bottom: 60px;
  }
}

.cross-talk-content {
  margin-top: 98px;
}

@media (max-width: 576px) {
  .cross-talk-content__thumb {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    aspect-ratio: 1/0.7;
  }
}

.cross-talk__member-inner {
  border-radius: 20px;
  background-color: #fff;
  padding: 50px;
  transform: translateY(-50px);
}

.cross-talk__member-inner h3 {
  text-align: center;
  font-size: 24px;
  color: #FA752E;
  margin-bottom: 30px;
  font-family: "Poppins", "serif";
}

.cross-talk__member-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 576px) {
  .cross-talk__member-list {
    grid-template-columns: 1fr;
  }
}

.cross-talk__member-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 576px) {
  .cross-talk__member-item {
    justify-content: center;
  }
}

.cross-talk__member-item {
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .cross-talk__member-item {
    flex-direction: row;
  }
}

.cross-talk__member-item-data {
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 576px) {
  .cross-talk__member-item-data {
    text-align: left;
  }
}

.cross-talk__member-item-name {
  font-size: 28px;
  font-weight: 500;
  font-family: "Poppins", "serif";
}
@media (max-width: 576px) {
  .cross-talk__member-item-name {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .cross-talk__member-item-text {
    font-size: 12px;
  }
}

.cross-talk__member-item-img {
  width: 132px;
  height: auto;
}
@media (max-width: 576px) {
  .cross-talk__member-item-img {
    width: 70px;
  }
}

.cross-talk__main-content-inner {
  padding: 0;
}

.cross-talk__main-content-num {
  font-size: 60px;
  font-family: "Poppins", "serif";
  font-weight: 500;
  color: #FA752E;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 576px) {
  .cross-talk__main-content-num {
    font-size: 40px;
  }
}

.cross-talk__main-content-head {
  font-size: 28px;
  text-align: center;
  font-weight: 500;
  color: #FA752E;
}
@media (max-width: 576px) {
  .cross-talk__main-content-head {
    font-size: 20px;
  }
}

.cross-talk__box {
  margin-top: 50px;
}

.cross-talk__box-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.cross-talk__box-item-icon {
  width: fit-content;
  flex-shrink: 0;
  margin-right: 40px;
}
@media (max-width: 576px) {
  .cross-talk__box-item-icon {
    margin-right: 10px;
  }
}

.cross-talk__box-item-icon-img {
  width: 80px;
  height: 80px;
}
@media (max-width: 576px) {
  .cross-talk__box-item-icon-img {
    width: 50px;
    height: 50px;
  }
}

.cross-talk__box-item-icon-img img {
  object-fit: contain;
}

.cross-talk__box-item-icon-name {
  text-align: center;
  margin: 0 auto;
  font-family: "Poppins", "serif";
}

.cross-talk__box-item-text {
  width: 100%;
  background: #fff;
  padding: 30px;
  border-radius: 0 20px 20px 20px;
  line-height: 2;
}
@media (max-width: 576px) {
  .cross-talk__box-item-text {
    font-size: 14px;
    padding: 20px;
  }
}

.cross-talk__box-btm-img {
  margin-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 576px) {
  .cross-talk__box-btm-img {
    margin-top: 60px;
  }
}

.cross-talk__note {
  text-align: center;
}

.m-2col-contents__right-head-container--career {
  border-bottom: none;
}

.m-2col-contents__right-head-container--career span {
  font-size: 12px;
  color: #275A5B;
}

.nurturing-img {
  width: 60%;
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 128px;
}
@media (max-width: 576px) {
  .nurturing-img {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 80px;
  }
}

.nurturing-contents__head {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  padding: 20px;
  border-radius: 8px;
}
@media (max-width: 576px) {
  .nurturing-contents__head {
    font-size: 18px;
    padding: 10px;
  }
}

.nurturing-table {
  display: flex;
  padding: 45px 20px;
  border-bottom: 1px solid #E0E0E0;
}
@media (max-width: 576px) {
  .nurturing-table {
    flex-direction: column;
    padding: 35px 20px;
  }
}

.nurturing-table:nth-child(odd) {
  background-color: #FAFAFA;
}

.nurturing-table--white {
  background-color: #fff !important;
}

.nurturing-table h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #FC8871;
  width: 30%;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .nurturing-table h3 {
    width: 100%;
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.nurturing-table li {
  display: flex;
  margin-bottom: 15px;
  line-height: 2;
  font-size: 16px;
  font-weight: 400;
  color: #275A5B;
}

.nurturing-table-title {
  min-width: 4em;
  margin-right: 30px;
  flex-shrink: 0;
  font-weight: 500;
}
@media (max-width: 576px) {
  .nurturing-table-title {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .nurturing-table-text {
    font-size: 14px;
  }
}

.nurturing-contents--second {
  margin-top: 120px;
}
@media (max-width: 576px) {
  .nurturing-contents--second {
    margin-top: 80px;
  }
}

.nurturing-contents--second h3 {
  color: #1FB2CC;
}

.nurturing-contents--third {
  margin-top: 120px;
}
@media (max-width: 576px) {
  .nurturing-contents--third {
    margin-top: 80px;
  }
}

.nurturing-contents--third h3 {
  color: #94AD80;
}

.nurturing-contents__body-title {
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #00A0A5;
  font-weight: 500;
}
@media (max-width: 576px) {
  .nurturing-contents__body-title {
    font-size: 18px;
  }
}

.nurturing-contents__body-title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 32px;
  background: #00A0A5;
}

.nurturing-contents__body-text {
  margin-bottom: 38px;
  line-height: 2;
}
@media (max-width: 576px) {
  .nurturing-contents__body-text {
    font-size: 14px;
  }
}

.nurturing-contents__body-title {
  margin-top: 40px;
  margin-bottom: 20px;
}

.nurturing-contents--mt-120 {
  margin-top: 120px;
}
@media (max-width: 576px) {
  .nurturing-contents--mt-120 {
    margin-top: 80px;
  }
}

.nurturing-contents--mt-120 .nurturing-table {
  padding-bottom: 60px;
}

.m-2col-contents__right-head-container--career-text {
  display: inline-block;
  margin-top: 30px;
}

.nurturing-contents__body-list-container {
  background: #F4F4F4;
  padding: 20px;
  border-radius: 8px;
  margin-top: 10px;
}

.nurturing-contents__body-list-container p {
  font-size: 16px;
  font-weight: 500;
  color: #275A5B;
  margin-bottom: 24px;
}

.nurturing-contents__body-list-container li {
  line-height: 2;
}

.nurturing-table--border-none {
  border-bottom: none;
}

.recruit-message {
  margin-top: 150px;
  color: #275A5B;
  padding-bottom: 120px;
}
@media (max-width: 576px) {
  .recruit-message {
    margin-top: 80px;
    padding-bottom: 80px;
  }
}

.recruit-message__inner {
  background: #fff;
  padding: 100px 8%;
  border-radius: 40px;
}
@media (max-width: 576px) {
  .recruit-message__inner {
    padding: 40px 20px;
    border-radius: 20px;
  }
}

.recruit-message__head {
  margin-top: 110px;
  text-align: center;
}
@media (max-width: 576px) {
  .recruit-message__head {
    margin-top: 60px;
  }
}

.recruit-message__head-text {
  font-size: 36px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .recruit-message__head-text {
    font-size: 20px;
  }
}

.recruit-message__head-title {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .recruit-message__head-title {
    font-size: 16px;
  }
}

.recruit-message__text-wrap {
  margin-top: 64px;
}

.recruit-message__text {
  line-height: 2;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .recruit-message__text {
    font-size: 14px;
  }
}

.multi-carrier {
  margin-top: 150px;
  color: #275A5B;
}
@media (max-width: 576px) {
  .multi-carrier {
    margin-top: 80px;
  }
}

.multi-carrier__inner {
  background: #fff;
  padding: 100px 8%;
  border-radius: 40px;
}
@media (max-width: 576px) {
  .multi-carrier__inner {
    padding: 40px 20px;
    border-radius: 20px;
  }
}

.multi-carrier__title {
  font-size: 32px;
  font-weight: 500;
  color: #275A5B;
  margin-bottom: 65px;
}
@media (max-width: 576px) {
  .multi-carrier__title {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

.multi-carrier__title::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background: #00A0A5;
  border-radius: 50%;
  transform: translateY(-25%);
}
@media (max-width: 576px) {
  .multi-carrier__title::before {
    width: 10px;
    height: 10px;
    transform: translateY(-20%);
  }
}

.multi-carrier__list-item-title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 35px;
}
@media (max-width: 576px) {
  .multi-carrier__list-item-title {
    font-size: 18px;
    margin-top: 20px;
  }
}

.multi-carrier__list-item-title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #00A0A5;
  border-radius: 50%;
  transform: translateY(-25%);
}

.multi-carrier__list-item-text {
  margin-top: 24px;
  line-height: 2;
}
@media (max-width: 576px) {
  .multi-carrier__list-item-text {
    font-size: 14px;
  }
}

.multi-carrier__list-item-point {
  margin-top: 40px;
}

.multi-carrier__list-item-point-head {
  font-weight: 500;
}

.multi-carrier__list-item-point-item {
  margin-top: 13px;
  background: #F8F8F8;
  padding: 20px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 2;
}

.multi-carrier-contents {
  padding-top: 100px;
  color: #275A5B;
}
@media (max-width: 576px) {
  .multi-carrier-contents {
    padding-top: 60px;
  }
}

.multi-carrier-contents:not(:last-child) {
  padding-bottom: 0;
}

.multi-carrier-contents__head {
  text-align: center;
}

.multi-carrier-contents__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.multi-carrier-contents__title-ja {
  font-size: 20px;
  font-weight: 500;
}

.multi-carrier-contents__title-en {
  font-size: clamp(54px, 6.3vw, 89px);
  font-weight: 300;
  font-family: "Poppins", "serif";
}

.multi-carrier-contents__text {
  margin-top: 35px;
}

.multi-carrier-contents__img {
  max-width: 300px;
  margin: 0 auto;
  margin-top: 43px;
  margin-bottom: 70px;
}
@media (max-width: 1080px) {
  .multi-carrier-contents__img {
    max-width: 240px;
  }
}
@media (max-width: 576px) {
  .multi-carrier-contents__img {
    max-width: 160px;
  }
}

.multi-carrier-contents__img--02 {
  max-width: 200px;
}
@media (max-width: 1080px) {
  .multi-carrier-contents__img--02 {
    max-width: 180px;
  }
}
@media (max-width: 576px) {
  .multi-carrier-contents__img--02 {
    max-width: 120px;
  }
}

.multi-carrier-contents__body {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  background: #fff;
  padding: 80px;
  border-radius: 40px;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .multi-carrier-contents__body {
    padding: 60px 20px;
    border-radius: 20px;
  }
}

.multi-carrier-contents__body:last-child {
  margin-bottom: 120px;
}

.multi-carrier-contents__body-head {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #B1B1B1;
  margin-bottom: 60px;
}
@media (max-width: 576px) {
  .multi-carrier-contents__body-head {
    margin-bottom: 40px;
    padding-bottom: 8px;
  }
}

.multi-carrier-contents__body-num {
  flex-shrink: 0;
  font-size: clamp(30px, 8.3vw, 120px);
  font-weight: 200;
  font-family: "Poppins", "serif";
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #B1B1B1;
  padding-right: 0.5em;
  margin-right: 0.5em;
}

.multi-carrier-contents__body-num::before {
  content: "CASE";
  display: inline-block;
  writing-mode: sideways-rl;
  font-size: clamp(10px, 1.9vw, 30px);
  font-weight: 400;
}

.multi-carrier-contents__body-title {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .multi-carrier-contents__body-title {
    font-size: 18px;
  }
}

.compare-careers {
  margin-top: 150px;
  color: #275A5B;
  padding-bottom: 120px;
}
@media (max-width: 576px) {
  .compare-careers {
    margin-top: 80px;
    padding-bottom: 80px;
  }
}

.compare-careers__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.compare-careers__img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 50px;
}

.compare-careers__body {
  background: #fff;
  padding: 80px;
  border-radius: 40px;
}
@media (max-width: 576px) {
  .compare-careers__body {
    padding: 60px 8px;
    border-radius: 20px;
  }
}

.compare-careers__body-head {
  text-align: center;
  line-height: 1.75;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 84px;
}
@media (max-width: 576px) {
  .compare-careers__body-head {
    font-size: 16px;
    text-align: left;
    margin-bottom: 40px;
    padding: 0 10px;
    line-height: 2;
  }
}

.compare-careers__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 20px 0px;
}
@media (max-width: 576px) {
  .compare-careers__table {
    border-spacing: 8px 0px;
  }
}

.compare-careers__table th,
.compare-careers__table td {
  padding: 30px 10px;
  vertical-align: middle;
}

.compare-careers__table th {
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
}

.compare-careers__year {
  border-radius: 20px;
  font-size: 24px;
  line-height: 1;
}
@media (max-width: 576px) {
  .compare-careers__year {
    font-size: 16px;
  }
}

.compare-careers__year span {
  font-size: 64px;
  font-family: "Poppins", "serif";
  font-weight: 500;
}
@media (max-width: 576px) {
  .compare-careers__year span {
    font-size: 36px;
  }
}

.compare-careers__year--01 {
  background-color: #FDF771;
}

.compare-careers__year--02 {
  background-color: #7DEDB3;
}

.compare-careers__question {
  font-family: "Poppins", "serif";
  border-radius: 20px 20px 0 0;
  background-color: #DBEDE5;
  border-bottom: 1px solid #fff;
  width: 25%;
  font-weight: 500 !important;
}

.compare-careers__table td p {
  margin: 0 0 8px 0;
}

.compare-careers__table-body td:nth-child(odd) {
  border-bottom: 1px dashed #B1B1B1;
}
@media (max-width: 576px) {
  .compare-careers__table-body td:nth-child(odd) {
    font-size: 13px;
  }
}

.compare-careers__table-body td:nth-child(even) {
  background-color: #DBEDE5;
  border-bottom: 1px solid #fff;
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
}
@media (max-width: 576px) {
  .compare-careers__table-body td:nth-child(even) {
    font-size: 14px;
  }
}

.last-question {
  border-radius: 0 0 20px 20px;
}

.compare-careers__table-body .m-font-en {
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 576px) {
  .compare-careers__table-body .m-font-en {
    font-size: 18px;
  }
}

.compare-careers__body-note {
  text-align: center;
  margin-top: 70px;
}
@media (max-width: 576px) {
  .compare-careers__body-note {
    font-size: 14px;
    margin-top: 40px;
    text-align: left;
  }
}

.project-story {
  padding-bottom: 180px;
}
@media (max-width: 768px) {
  .project-story {
    padding-bottom: 100px;
  }
}

.project-story__inner {
  display: flex;
}
@media (max-width: 768px) {
  .project-story__inner {
    flex-direction: column-reverse;
  }
}

.project-story__inner-left {
  padding-top: 180px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .project-story__inner-left {
    padding-top: 0;
    padding: 0 20px;
    width: 100%;
  }
}

.project-story__title {
  display: flex;
  flex-direction: column;
  color: #275A5B;
}

.project-story__title-ja {
  font-size: 14px;
}

.project-story__title-en {
  font-size: 52px;
  font-family: "Poppins", "serif";
  line-height: 1.25;
  font-weight: 300;
}
@media (max-width: 768px) {
  .project-story__title-en {
    font-size: 32px;
  }
}

.project-story__head {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .project-story__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
  }
}

.project-story__inner-right {
  width: 64vw;
  margin: 0 0 0 auto;
  height: 100vh;
}
@media (max-width: 768px) {
  .project-story__inner-right {
    width: 100%;
    height: 50vh;
  }
}

.project-story__num {
  font-size: 7.5vw;
  font-family: "Poppins", "serif";
  font-weight: 300;
  color: #275A5B;
}
@media (max-width: 768px) {
  .project-story__num {
    font-size: 12vw;
  }
}

.project-story__inner-left h1 {
  font-size: 32px;
  color: #275A5B;
  font-weight: 500;
  margin-top: 59px;
}
@media (max-width: 768px) {
  .project-story__inner-left h1 {
    font-size: 24px;
    margin-top: 20px;
  }
}

.project-story__inner-left .m-page-head__breadcrumb {
  border-bottom: none;
}

.project-story-content {
  margin-top: 142px;
}
@media (max-width: 768px) {
  .project-story-content {
    margin-top: 60px;
  }
}

.project-story-content__head h2 {
  font-size: 24px;
  color: #275A5B;
  font-weight: 500;
  line-height: 1;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 24px;
}
@media (max-width: 768px) {
  .project-story-content__head h2 {
    font-size: 18px;
    padding-bottom: 16px;
    line-height: 1.25;
  }
}

.project-story-content__data {
  display: flex;
  width: fit-content;
  flex-wrap: wrap;
  gap: 24px 0;
  margin-top: 24px;
  color: #666666;
}
@media (max-width: 768px) {
  .project-story-content__data {
    flex-direction: column;
  }
}

.project-story-content__data-item {
  display: flex;
  width: 50%;
}
@media (max-width: 768px) {
  .project-story-content__data-item {
    width: 100%;
  }
}

.project-story-content__data-item span {
  width: 6em;
  flex-shrink: 0;
}

.project-story-content__gallery {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .project-story-content__gallery {
    margin-top: 60px;
    gap: 13px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.project-story-content__gallery-item img {
  aspect-ratio: 1/0.6;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coming-soon {
  margin-top: 82px;
  text-align: center;
  color: #275A5B;
  line-height: 2;
}

@media (max-width: 768px) {
  .coming-soon__inner p {
    font-size: 14px;
  }
}

.coming-soon__text {
  font-size: 36px;
  font-family: "Poppins", "serif";
  font-weight: 300;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .coming-soon__text {
    font-size: 24px;
    margin-top: 16px;
  }
}

/* インタビューリストのスタイル */
.interview-contents {
  padding: 140px 0;
}
@media (max-width: 768px) {
  .interview-contents {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .interview-list {
    gap: 40px;
  }
}

.interview-list__item {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.interview-list__item-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #f0f0f0;
}

.interview-list__item-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.interview-list__item-text {
  font-family: "Poppins", "serif";
}

.interview-list__item-text p {
  font-size: 32px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .interview-list__item-text p {
    font-size: 22px;
  }
}

/* YouTubeポップアップのスタイル */
.youtube-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.youtube-popup.active {
  display: flex;
}

.youtube-popup__content {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: visible;
}

.youtube-popup__close {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border: 2px solid #333;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
  transition: all 0.3s ease;
  z-index: 10001;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.youtube-popup__close::before, .youtube-popup__close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #333;
  top: 50%;
  left: 50%;
  transition: background 0.3s ease;
}
.youtube-popup__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.youtube-popup__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.youtube-popup__close:hover {
  background: #f0f0f0;
  border-color: #000;
  transform: translateX(-50%) scale(1.1);
}
.youtube-popup__close:hover::before, .youtube-popup__close:hover::after {
  background: #000;
}

.youtube-popup__close:active {
  transform: translateX(-50%) scale(0.95);
}

.youtube-popup__iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

/* 転勤体験記 */
.experience-contents__container {
  max-width: 1200px;
  margin: 0 auto;
}

.experience-contents__container-sm {
  max-width: 1000px;
  margin: 0 auto;
}

.experience-contents__thumb-container {
  position: relative;
}

.experience-contents__thumb-text {
  color: #fff;
  position: absolute;
  bottom: 58px;
  left: 60px;
}
@media (max-width: 768px) {
  .experience-contents__thumb-text {
    bottom: 32px;
    left: 32px;
  }
}

.experience-contents__thumb-text .label {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .experience-contents__thumb-text .label {
    font-size: 18px;
  }
}

.experience-contents__thumb-text .name {
  font-size: 59px;
  font-weight: bold;
  font-family: "Poppins", "serif";
}
@media (max-width: 768px) {
  .experience-contents__thumb-text .name {
    font-size: 36px;
  }
}

.experience-contents__thumb-text .job {
  font-size: 16px;
}
@media (max-width: 768px) {
  .experience-contents__thumb-text .job {
    font-size: 14px;
  }
}

.experience-contents {
  padding: 140px 0;
}
@media (max-width: 768px) {
  .experience-contents {
    padding: 60px 0;
  }
}

.experience-contents__thumb {
  margin-top: 88px;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .experience-contents__thumb {
    margin-top: 60px;
  }
}
@media (max-width: 576px) {
  .experience-contents__thumb {
    aspect-ratio: 1/0.7;
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .experience-contents__thumb img {
    object-fit: cover;
  }
}

.experience-contents__box__inner {
  border-radius: 40px;
  background: #fff;
  padding: 0 8%;
}
@media (max-width: 576px) {
  .experience-contents__box__inner {
    padding: 0 20px;
    border-radius: 20px;
  }
}

.experience-contents__box-item {
  padding: 80px 0;
  border-bottom: 1px solid #E0E0E0;
}
@media (max-width: 576px) {
  .experience-contents__box-item {
    padding: 40px 0;
  }
}

.experience-contents__box__inner .experience-contents__box-item:last-child {
  border-bottom: none;
}

.experience-contents__box-head-q,
.experience-contents__box-head-a {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .experience-contents__box-head-q,
  .experience-contents__box-head-a {
    font-size: 18px;
  }
}

.experience-contents__box-head-a {
  color: #A358A7;
  margin-top: 15px;
}

.experience-contents__box-text {
  line-height: 2;
  margin-top: 38px;
}
@media (max-width: 576px) {
  .experience-contents__box-text {
    font-size: 14px;
  }
}

.experience-contents__img {
  margin: 80px 0;
}
@media (max-width: 576px) {
  .experience-contents__img {
    margin: 40px 0;
    aspect-ratio: 1/0.6;
  }
}

.experience-contents__note {
  margin-top: 40px;
  font-size: 14px;
  color: #666;
  text-align: center;
}

/* 先輩アンケート集計 */
.questionnaire {
  padding: 140px 0;
}
@media (max-width: 768px) {
  .questionnaire {
    padding: 60px 0;
  }
}

/* 1カラムレイアウト */
.questionnaire__container--1col {
  display: none;
}
@media (max-width: 768px) {
  .questionnaire__container--1col {
    display: block;
  }
}

/* 2カラムレイアウト */
.questionnaire__container--2col {
  display: block;
}
@media (max-width: 768px) {
  .questionnaire__container--2col {
    display: none;
  }
}

.questionnaire__container--2col .questionnaire__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  grid-auto-rows: auto;
  align-items: start;
  margin-bottom: 40px;
}

.questionnaire__contents-left {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  grid-auto-rows: auto;
  align-items: start;
  margin-bottom: 40px;
}

.questionnaire__contents-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  grid-auto-rows: auto;
  align-items: start;
  margin-top: 120px;
}

.questionnaire__contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  grid-auto-rows: auto;
  align-items: start;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .questionnaire__contents {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.questionnaire__content {
  border-radius: 16px;
  background: #fff;
  padding: 40px 30px;
  align-self: start;
}
@media (max-width: 768px) {
  .questionnaire__content {
    padding: 30px 15px;
  }
}

.questionnaire__content-img {
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .questionnaire__content-img {
    width: 70%;
  }
}

.questionnaire__content-img--5 {
  width: 90%;
}

.questionnaire__content-img--11 {
  width: 85%;
  margin-top: 40px;
}

.questionnaire__content-img--11 img {
  object-fit: contain;
}

.questionnaire__content-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .questionnaire__content-head {
    flex-direction: column;
    align-items: start;
  }
}

.questionnaire__content-head-num {
  font-size: 80px;
  color: #A358A7;
  line-height: 1;
  font-family: "Poppins", "serif";
}
@media (max-width: 768px) {
  .questionnaire__content-head-num {
    font-size: 54px;
  }
}

.questionnaire__content-head-text {
  font-size: 28px;
  font-weight: 500;
  color: #A358A7;
}
@media (max-width: 768px) {
  .questionnaire__content-head-text {
    font-size: 22px;
  }
}

.questionnaire__content-ranking {
  display: flex;
  flex-direction: column;
}

.questionnaire__content-list-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .questionnaire__content-list-container {
    gap: 0;
    margin-top: 30px;
  }
}

.questionnaire__content-list {
  margin-top: 45px;
}
@media (max-width: 768px) {
  .questionnaire__content-list {
    margin-top: 0px;
    font-size: 14px;
  }
}

.questionnaire__content-list-item {
  margin-top: 12px;
}

.questionnaire__content-list-dots {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  line-height: 1;
}

.questionnaire__content-note {
  text-align: end;
  font-size: 14px;
  margin-top: 40px;
}

.questionnaire__content-ranking {
  margin-top: 40px;
  color: #275A5B;
}

.questionnaire__content-ranking-icon {
  width: 72px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .questionnaire__content-ranking-icon {
    width: 50px;
  }
}

.questionnaire__content-ranking .questionnaire__content-ranking-item:nth-child(1) .questionnaire__content-ranking-icon {
  width: 72px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .questionnaire__content-ranking .questionnaire__content-ranking-item:nth-child(1) .questionnaire__content-ranking-icon {
    width: 50px;
  }
}

.questionnaire__content-ranking .questionnaire__content-ranking-item:nth-child(2) .questionnaire__content-ranking-icon img,
.questionnaire__content-ranking .questionnaire__content-ranking-item:nth-child(3) .questionnaire__content-ranking-icon img {
  display: block;
  width: 44px;
  margin: 0 auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .questionnaire__content-ranking .questionnaire__content-ranking-item:nth-child(2) .questionnaire__content-ranking-icon img,
  .questionnaire__content-ranking .questionnaire__content-ranking-item:nth-child(3) .questionnaire__content-ranking-icon img {
    width: 34px;
  }
}

.questionnaire__content-ranking-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.questionnaire__content-ranking-item--flex-start {
  align-items: flex-start;
}

.questionnaire__content-ranking-1 {
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .questionnaire__content-ranking-1 {
    font-size: 16px;
  }
}

.questionnaire__content-ranking-1 span {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(transparent 60%, #FDF771 60%, #FDF771 85%, transparent 85%);
  padding: 0 4px;
}
@media (max-width: 768px) {
  .questionnaire__content-ranking-1 span {
    font-size: 18px;
  }
}

.questionnaire__content-ranking-2,
.questionnaire__content-ranking-3 {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .questionnaire__content-ranking-2,
  .questionnaire__content-ranking-3 {
    font-size: 14px;
  }
}

.questionnaire__content-ranking-2 span,
.questionnaire__content-ranking-3 span {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .questionnaire__content-ranking-2 span,
  .questionnaire__content-ranking-3 span {
    font-size: 16px;
  }
}

.questionnaire__content-ranking-item ul {
  margin-top: 10px;
}

.questionnaire__content-ranking-item ul li {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .questionnaire__content-ranking-item ul li {
    font-size: 12px;
  }
}

.questionnaire-post__inner {
  background: #fff;
  padding: 140px 0;
  border-radius: 50px 50px 0 0;
  color: #275A5B;
}
@media (max-width: 768px) {
  .questionnaire-post__inner {
    padding: 60px 0;
    border-radius: 30px 20px 0 0;
  }
}

.questionnaire-post__head {
  font-size: 32px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .questionnaire-post__head {
    font-size: 22px;
  }
}

.questionnaire-post__head::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: #00A0A5;
  border-radius: 50%;
  flex-shrink: 0;
}

.questionnaire-post__head-desc {
  margin-top: 40px;
}

.questionnaire-post__content {
  border-top: 1px dashed #275A5B;
  padding-top: 40px;
  margin-top: 120px;
  position: relative;
}

.questionnaire-post__content-year {
  font-size: 20px;
  font-weight: 700;
  background-color: #275A5B;
  color: #fff;
  padding: 10px 20px;
  border-radius: 28px;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.questionnaire-post__content-list {
  gap: 40px 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  align-items: start;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .questionnaire-post__content-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}/*# sourceMappingURL=main.css.map */