@charset "UTF-8";
/*default*/
.att {
  padding-left: 1em;
  text-indent: -1em;
}

.att02 {
  padding-left: 1.3em;
  text-indent: -1.3em;
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
:root {
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

.bg_image {
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

*::-ms-backdrop, :root {
  --move-initial: 50vw;
  --move-final: -150vw;
}

.marquee {
  width: 100vw;
  overflow: hidden;
}

.marquee__inner {
  width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: space-between;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 20s linear infinite;
  -webkit-animation: marquee 20s linear infinite;
}
.marquee__inner span {
  display: block;
  width: 100vw;
  margin: 0 3rem;
  flex-shrink: 0;
}
.marquee__inner.life01 span {
  width: 80vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.life01 span {
    width: 100vw;
  }
}
.marquee__inner.life02 span {
  width: 65vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.life02 span {
    width: 100vw;
  }
}
.marquee__inner.rezi04 span {
  width: 50vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.rezi04 span {
    width: 100vw;
  }
}
.marquee__inner.rezi05 span {
  width: 40vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.rezi05 span {
    width: 80vw;
  }
}

*::-ms-backdrop, .marquee__inner {
  width: 800vw;
  margin: 0;
  animation: marquee_ie 20s linear infinite;
  -webkit-animation: marquee_ie 20s linear infinite;
}
*::-ms-backdrop span, .marquee__inner span {
  display: block;
  width: 500px;
  margin: 0;
}

@keyframes marquee_ie {
  0% {
    transform: translate3d(0vw, 0, 0);
  }
  100% {
    transform: translate3d(-150vw, 0, 0);
  }
}
@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loop4 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
div.insefa {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.text {
  margin: 0 1rem;
  animation: flowing 40s linear infinite;
  transform: translateX(0%); /*初期位置*/
}

@keyframes flowing {
  100% {
    transform: translateX(-100%);
  }
}
/*! locomotive-scroll v4.1.1 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction=horizontal] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction=horizontal] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover, .has-scroll-dragging .c-scrollbar, .has-scroll-scrolling .c-scrollbar {
  opacity: 1;
}

[data-scroll-direction=horizontal] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  transform: scaleY(1);
}

[data-scroll-direction=horizontal] .c-scrollbar:hover {
  transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: grabbing;
}

[data-scroll-direction=horizontal] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}

main {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.boxss.wide {
  margin: 0 0 5rem 0;
}

.kinmu_flex {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .kinmu_flex {
    display: block;
  }
}
.kinmu_flex.fw {
  flex-wrap: wrap;
}
.kinmu_flex.fw .box {
  margin: 0 0 5rem 0;
}
.kinmu_flex .box {
  width: 48%;
}
@media only screen and (max-width: 768px) {
  .kinmu_flex .box {
    width: 100%;
  }
}
.kinmu_flex .left {
  width: 46%;
}
@media only screen and (max-width: 768px) {
  .kinmu_flex .left {
    width: 100%;
  }
}
.kinmu_flex .left.wide {
  width: 100%;
}
.kinmu_flex .left .box {
  width: 100%;
  margin: 0 0 3rem 0;
}
.kinmu_flex .right {
  width: 46%;
}
@media only screen and (max-width: 768px) {
  .kinmu_flex .right {
    width: 100%;
  }
}
.kinmu_flex .right .box {
  width: 100%;
}

.kyu_table {
  width: 100%;
}
.kyu_table table {
  width: 100%;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.kyu_table table th,
.kyu_table table td {
  padding: 1.5rem;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  text-align: center;
}
.kyu_table table th.col {
  background: rgb(247, 246, 245);
}

.kaigo_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .kaigo_flex {
    display: block;
  }
}
.kaigo_flex .box {
  width: 33%;
  background: rgb(247, 246, 245);
  margin: 0 0 0.333% 0;
  padding: 2rem;
}
@media only screen and (max-width: 768px) {
  .kaigo_flex .box {
    width: 100%;
    margin: 0 0 2px 0;
  }
}
.kaigo_flex .box h4 {
  font-weight: bold;
}
.lead p {
  margin: 0 0 2rem 0;
}

p.lead {
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  p.lead {
    margin: 0 0 2rem 0;
  }
}

.wlbflex {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .wlbflex {
    display: block;
  }
}
.wlbflex.mb {
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  .wlbflex.mb {
    margin: 0 0 2rem 0;
  }
}
.wlbflex .box {
  width: 30%;
}
@media only screen and (max-width: 768px) {
  .wlbflex .box {
    width: 100%;
    margin: 0 0 3rem 0;
  }
}
.wlbflex .box .image {
  margin: 0 0 5rem 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .wlbflex .box .image {
    margin: 0 0 2rem 0;
  }
}
.wlbflex .box .image.wide {
  text-align: left;
}
.wlbflex .box .image.wide img {
  width: 100%;
}
.wlbflex .box .image img {
  width: 60%;
  margin: 0 auto 1rem auto;
  display: block;
}
.wlbflex .box p.cap {
  font-size: 1.2rem;
}

.kenshu_flex {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .kenshu_flex {
    display: block;
  }
}
.kenshu_flex .box {
  width: 48%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .kenshu_flex .box {
    width: 100%;
  }
}
.kenshu_flex .box h4 {
  background: #000;
  color: #ffffff;
  text-align: center;
  padding: 1rem 0;
  margin: 0 0 1rem 0;
}
.kenshu_flex .box .year {
  font-weight: bold;
  margin: 0 0 1rem 0;
}
@media only screen and (max-width: 768px) {
  .kenshu_flex .box .year {
    text-align: center;
  }
}
.kenshu_flex .box .block {
  background: rgb(247, 246, 245);
  padding: 1rem 2rem;
  font-weight: bold;
  font-size: 1.6rem;
}
.kenshu_flex .box .block.y {
  background: #FEE200;
}
.kenshu_flex .box .two {
  width: 150px;
  height: 150px;
  background: #000;
  color: #ffffff;
  position: absolute;
  bottom: 4rem;
  right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .kenshu_flex .box .two {
    width: 100px;
    height: 120px;
    right: 1rem;
  }
}
.kenshu_flex .box .arrow {
  text-align: center;
}
.kenshu_flex .box .arrow i {
  display: inline-block;
}

.kenshus_flex {
  display: flex;
  justify-content: space-between;
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  .kenshus_flex {
    display: block;
    margin: 0 0 2rem 0;
  }
}
.kenshus_flex.onlytxt .txt {
  width: 48%;
}
@media only screen and (max-width: 768px) {
  .kenshus_flex.onlytxt .txt {
    width: 100%;
  }
}
.kenshus_flex .bg {
  background: rgb(247, 246, 245);
  padding: 2rem;
}
.kenshus_flex .txt {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  .kenshus_flex .txt {
    width: 100%;
    margin: 0 0 2rem 0;
  }
}
.kenshus_flex .image {
  width: 35%;
}
@media only screen and (max-width: 768px) {
  .kenshus_flex .image {
    width: 100%;
  }
}
.kenshus_flex .image p.cap {
  font-size: 1.2rem;
  margin: 1em 0 0 0;
}

@media only screen and (max-width: 768px) {
  .wide_zu {
    width: 100%;
    overflow: scroll;
  }
  .wide_zu img {
    width: 1000px;
  }
}

#worklife-balance .first-lead {
  text-align: center;
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .first-lead {
    padding: 50px 0;
  }
}
#worklife-balance .inner {
  max-width: calc(1200px + 10%);
  padding: 0 5%;
  margin: auto;
}
#worklife-balance #tab {
  display: flex;
  gap: 3%;
  margin-bottom: 60px;
}
#worklife-balance #tab li {
  width: 33.333%;
}
#worklife-balance #tab li a {
  position: relative;
  display: block;
  padding: 20px 0;
  border-top: 1px solid #707070;
  text-align: center;
}
#worklife-balance #tab li a .num {
  font-size: 1.2rem;
  display: block;
}
#worklife-balance #tab li a .title {
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  #worklife-balance #tab li a .title {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
#worklife-balance #tab li a::after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  left: 50%;
  bottom: 0;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
  transform: translateX(-50%) rotate(45deg);
}
#worklife-balance #fixed-tab {
  position: fixed;
  top: 100px;
  left: 50%;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  transform: translateY(-200px) translateX(-50%);
  display: flex;
  gap: 3%;
  transition: transform 0.3s ease;
}
@media only screen and (max-width: 768px) {
  #worklife-balance #fixed-tab {
    display: none;
  }
}
#worklife-balance #fixed-tab.active {
  transform: translateY(0) translateX(-50%);
}
#worklife-balance #fixed-tab li {
  width: 33.333%;
}
#worklife-balance #fixed-tab li .href {
  cursor: pointer;
  position: relative;
  display: block;
  padding: 10px 0;
  border-top: 1px solid #707070;
  text-align: center;
  padding-right: 16px;
}
#worklife-balance #fixed-tab li .href .num {
  font-size: 1rem;
  margin-right: 10px;
}
#worklife-balance #fixed-tab li .href .title {
  font-weight: bold;
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
}
#worklife-balance #fixed-tab li .href::after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  right: 10px;
  top: 50%;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
  transform: translateY(-50%) rotate(45deg);
}
#worklife-balance .theme-block {
  padding: 100px 7vw;
  background-color: #F6F5F0;
  margin-bottom: 150px;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block {
    padding: 30px 5%;
    margin-bottom: 50px;
  }
}
#worklife-balance .theme-block h2 {
  margin-bottom: 70px;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block h2 {
    margin-bottom: 30px;
  }
}
#worklife-balance .theme-block h2 .num {
  font-size: 1.4rem;
}
#worklife-balance .theme-block h2 .title {
  font-size: 4.6rem;
  font-weight: 500;
  display: block;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block h2 .title {
    font-size: 2.2rem;
  }
}
#worklife-balance .theme-block h3 {
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block h3 {
    font-size: 1.6rem;
  }
}
#worklife-balance .theme-block .layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block .layout {
    display: block;
  }
}
#worklife-balance .theme-block .layout .box {
  width: 48%;
  border-top: 1px solid #CDCDCD;
  padding: 35px 0;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block .layout .box {
    position: relative;
    width: 100%;
    display: block;
    padding: 20px 0;
  }
}
#worklife-balance .theme-block .layout .box.moji {
  align-items: flex-start;
}
#worklife-balance .theme-block .layout .box.last {
  border-bottom: 1px solid #CDCDCD;
}
#worklife-balance .theme-block .layout .box .icon {
  width: 90px;
  text-align: center;
  display: flex;
  align-items: center;
}
#worklife-balance .theme-block .layout .box .icon.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block .layout .box .icon {
    display: inline-block;
    width: 60px;
    top: 0;
    left: 0;
  }
  #worklife-balance .theme-block .layout .box .icon.pc {
    display: none;
  }
  #worklife-balance .theme-block .layout .box .icon img {
    width: 60px;
  }
}
#worklife-balance .theme-block .layout .box .icon.tt {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  justify-content: center;
}
#worklife-balance .theme-block .layout .box .icon.tt small {
  font-size: 1.5rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block .layout .box .icon.tt {
    position: static;
    font-size: 3rem;
  }
}
#worklife-balance .theme-block .layout .box .txt {
  flex: 1;
}
#worklife-balance .theme-block .layout .box .txt .title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block .layout .box .txt .title {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
  }
  #worklife-balance .theme-block .layout .box .txt .title .txt {
    flex: 1;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block .layout .box .txt .title .icon {
    display: block;
  }
}
#worklife-balance .theme-block .layout .box .txt p {
  font-size: 1.5rem;
  font-weight: 400;
}
#worklife-balance .theme-block .layout .box .txt .note {
  font-size: 1.1rem;
  margin-top: 1.5rem;
}
#worklife-balance .theme-block .zu {
  position: relative;
  margin: 50px 0;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block .zu {
    margin: 20px 0;
  }
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block .zu.lifeevent img {
    width: 600px;
  }
}
#worklife-balance .theme-block .zu .image {
  padding: 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block .zu .image img {
    width: 600px;
  }
}
#worklife-balance .theme-block .zu p {
  position: absolute;
  width: 70px;
  top: -20px;
  right: -5px;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block .zu p {
    position: static;
    width: 80%;
    margin: auto;
  }
}
#worklife-balance .theme-block#theme2 .layout .box .icon {
  width: 105px;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block#theme2 .layout .box .icon {
    width: 60px;
  }
  #worklife-balance .theme-block#theme2 .layout .box .icon.tt {
    width: 100%;
    text-align: left;
  }
}
#worklife-balance .theme-block#theme2 .mb {
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block#theme2 .mb {
    margin-bottom: 40px;
  }
}
#worklife-balance .theme-block .outside {
  margin-top: 150px;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block .outside {
    margin-top: 50px;
  }
}
#worklife-balance .theme-block .outside .title {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block .outside .title {
    display: block;
  }
}
#worklife-balance .theme-block .outside .title h3 {
  font-size: 4rem;
  font-weight: 500;
  width: 40%;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block .outside .title h3 {
    width: 100%;
    font-size: 2rem;
  }
}
#worklife-balance .theme-block .outside .title p {
  font-size: 1.5rem;
  font-weight: 400;
  width: 60%;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block .outside .title p {
    width: 100%;
  }
}
#worklife-balance .theme-block .outside .block {
  background-color: #fff;
  padding: 30px 80px;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block .outside .block {
    padding: 0 5%;
  }
}
#worklife-balance .theme-block .outside .block .row {
  display: flex;
  padding: 50px 0;
  border-bottom: 1px solid #CDCDCD;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block .outside .block .row {
    display: block;
    padding: 30px 0;
  }
}
#worklife-balance .theme-block .outside .block .row:last-child {
  border-bottom: none;
}
#worklife-balance .theme-block .outside .block .row .txt {
  flex: 1;
}
#worklife-balance .theme-block .outside .block .row .txt h4 {
  font-size: 2rem;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block .outside .block .row .txt h4 {
    font-size: 1.8rem;
  }
}
#worklife-balance .theme-block .outside .block .row .txt p {
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block .outside .block .row .txt p {
    margin-bottom: 20px;
  }
}
#worklife-balance .theme-block .outside .block .row .image {
  width: 235px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block .outside .block .row .image {
    width: 100%;
  }
}
#worklife-balance .theme-block .outside .block .row .image img {
  max-width: 128px;
}
@media only screen and (max-width: 768px) {
  #worklife-balance .theme-block .outside .block .row .image img {
    width: 100px;
  }
}
#worklife-balance .theme-block .outside .block .row .image figcaption {
  font-size: 1.1rem;
  margin-top: 2rem;
}

#hr .visual_header .title {
  padding: 0;
  text-align: center;
}
#hr .content_block {
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  #hr .content_block {
    padding: 40px 0;
  }
}
#hr .content_block .inner {
  position: relative;
  max-width: calc(1200px + 10%);
  padding: 0 5%;
  margin: auto;
}
#hr .content_block h2 {
  position: relative;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 500;
  padding-bottom: 20px;
  margin-bottom: 50px;
}
#hr .content_block h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 85px;
  height: 3px;
  background-color: #FFDC00;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#hr .content_block h2 + p {
  max-width: 920px;
  margin: 0 auto 80px;
}
#hr .content_block .copy, #hr .content_block h3 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  #hr .content_block .copy, #hr .content_block h3 {
    font-size: 1.8rem;
    text-align: left;
  }
}
#hr #sec2 {
  background-color: #FAFAFA;
}
#hr #sec2 dl {
  display: flex;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  #hr #sec2 dl {
    display: block;
  }
}
#hr #sec2 dl dt {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFDC00;
  text-align: center;
  padding: 5%;
  font-size: 2.2rem;
  font-weight: 500;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #hr #sec2 dl dt {
    display: block;
    width: 100%;
    font-size: 1.8rem;
  }
}
#hr #sec2 dl dd {
  background-color: #fff;
  padding: 5%;
  font-size: 1.8rem;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #hr #sec2 dl dd {
    width: 100%;
    font-size: 1.5rem;
  }
}
#hr #sec3 {
  border-bottom: 1px solid #ccc;
}
#hr #sec3 .layout {
  display: flex;
  gap: 5%;
}
@media only screen and (max-width: 768px) {
  #hr #sec3 .layout {
    display: block;
  }
}
#hr #sec3 .layout .image {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #hr #sec3 .layout .image {
    width: 100%;
    margin-bottom: 40px;
  }
}
#hr #sec3 .layout .txt {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #hr #sec3 .layout .txt {
    width: 100%;
  }
}
#hr #sec3 .layout .txt .box1 {
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  padding: 40px 0 0;
  margin-bottom: 40px;
}
#hr #sec3 .layout .txt .box1 h4 {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1;
  padding: 10px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  #hr #sec3 .layout .txt .box1 h4 {
    font-size: 1.6rem;
  }
}
#hr #sec3 .layout .txt .box1 h4.c1 {
  background-color: #FFDC00;
}
#hr #sec3 .layout .txt .box1 h4.c2 {
  background-color: #FFF8CC;
}
#hr #sec3 .layout .txt .box1 h4.c3 {
  background-color: #E1E1E1;
}
#hr #sec3 .layout .txt .box1 p {
  font-size: 1.5rem;
  margin-bottom: 40px;
}
#hr #sec3 .layout .txt .box2 {
  background-color: #FAFAFA;
  padding: 5%;
}
#hr #sec3 .layout .txt .box2 h4 {
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid #CCCCCC;
}
#hr #sec3 .layout .txt .box2 p {
  font-size: 1.5rem;
}
#hr #sec4 h2 {
  background-color: #3E3E3E;
  text-align: center;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 20px;
}
#hr #sec4 h2::after {
  content: none;
}
@media only screen and (max-width: 768px) {
  #hr #sec4 h2 {
    font-size: 2rem;
    margin-bottom: 0;
  }
}
#hr #sec4 .case {
  padding: 60px 0;
}
@media only screen and (max-width: 768px) {
  #hr #sec4 .case {
    padding: 30px 0;
  }
}
#hr #sec4 .case h3 {
  margin-bottom: 30px;
}
#hr #sec4 .case h3 .en {
  margin-right: 25px;
  font-size: 1.8rem;
}
#hr #sec4 .case .message {
  padding: 40px 0;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  #hr #sec4 .case .message {
    font-size: 1.6rem;
    padding: 0;
  }
}
#hr #sec4 .case1 .step {
  max-width: 740px;
  margin: 0 auto 30px;
}
#hr #sec4 .case2 {
  padding-block: 0;
}
#hr #sec4 .case2 .step {
  margin: 0 auto 30px;
}
#hr #sec5 {
  background-color: #FAFAFA;
}
#hr #sec5 .lead {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #hr #sec5 .lead {
    margin-bottom: 20px;
  }
}
#hr #sec5 .layout {
  position: relative;
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  #hr #sec5 .layout {
    display: block;
  }
}
#hr #sec5 .layout .plus {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  #hr #sec5 .layout .plus {
    position: static;
    text-align: center;
    transform: none;
  }
  #hr #sec5 .layout .plus img {
    width: 40px;
  }
}
#hr #sec5 .layout .box {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #hr #sec5 .layout .box {
    width: 100%;
    margin-bottom: 20px;
  }
}
#hr #sec5 .layout .box h3 {
  background-color: #FFDC00;
  font-size: 2rem;
  font-weight: 500;
  padding: 20px;
  margin-bottom: 0;
}
#hr #sec5 .layout .box .txt {
  background-color: #fff;
  padding: 5% 5% 40px;
}
#hr #sec5 .layout .box .txt .info {
  text-align: center;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 16px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  #hr #sec5 .layout .box .txt .info {
    padding: 16px 0;
    text-align: left;
  }
}
#hr #sec5 .layout .box .txt p {
  font-size: 1.5rem;
}
#hr #sec5 .layout .box .txt dl {
  display: flex;
  margin-bottom: 16px;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  #hr #sec5 .layout .box .txt dl {
    display: block;
  }
}
#hr #sec5 .layout .box .txt dl dt {
  width: 20%;
  background-color: #FFDC00;
  padding: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #hr #sec5 .layout .box .txt dl dt {
    width: 100%;
    padding: 5px;
  }
}
#hr #sec5 .layout .box .txt dl dd {
  flex: 1;
  padding: 10px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  #hr #sec5 .layout .box.box2 {
    margin-top: 20px;
  }
  #hr #sec5 .layout .box.box2 .txt {
    padding-bottom: 1px;
  }
}
#hr #sec5 .arrow {
  width: 160px;
  margin: 0 auto 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  #hr #sec5 .arrow {
    transform: translateY(-20%);
  }
}
#hr #sec5 .last {
  background-color: #FFDC00;
  padding: 20px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
#hr #sec5 .last h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0;
}
#hr #sec5 .last h3 sup {
  font-size: 50%;
  vertical-align: super;
}
#hr #sec5 .last p {
  font-size: 1.4rem;
}
#hr #sec6 .layout {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  max-width: 924px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  #hr #sec6 .layout {
    display: block;
  }
}
#hr #sec6 .layout::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #ccc;
  left: 50%;
  top: 0;
}
@media only screen and (max-width: 768px) {
  #hr #sec6 .layout::after {
    content: none;
  }
}
#hr #sec6 .layout .box {
  width: calc(50% - 6px);
}
@media only screen and (max-width: 768px) {
  #hr #sec6 .layout .box {
    width: 100%;
    padding: 5% 0 !important;
  }
}
#hr #sec6 .layout .box h3 {
  font-size: 1.8rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  #hr #sec6 .layout .box h3 {
    margin-bottom: 0;
  }
}
#hr #sec6 .layout .box p {
  font-size: 1.5rem;
}
#hr #sec6 .layout .box1 {
  border-bottom: 1px solid #ccc;
  padding-right: 5%;
  padding-bottom: 5%;
}
#hr #sec6 .layout .box2 {
  border-bottom: 1px solid #ccc;
  padding-left: 5%;
  padding-bottom: 5%;
}
#hr #sec6 .layout .box3 {
  padding-right: 5%;
  padding-top: 5%;
}
@media only screen and (max-width: 768px) {
  #hr #sec6 .layout .box3 {
    border-bottom: 1px solid #ccc;
  }
}
#hr #sec6 .layout .box4 {
  padding-left: 5%;
  padding-top: 5%;
}