@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;
}

.full_visual_header {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .full_visual_header {
    background: url(/company/recruitment/assets/img/office_index-assets/visual-sp.jpg) center center/cover no-repeat;
    min-height: 300px;
  }
  .full_visual_header::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    z-index: 1;
    background: rgba(0, 0, 0, 0.25);
  }
}

.normal_lead {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  max-width: 670px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .normal_lead {
    padding: 50px 5% 20px;
  }
}
.normal_lead .txt {
  width: 67%;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .normal_lead .txt {
    width: 70%;
    padding-top: 0;
  }
}
.normal_lead .txt p {
  font-size: 3.2rem;
  line-height: 1.5;
  margin-bottom: 25px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .normal_lead .txt p {
    font-size: clamp(1.6rem, 5vw, 1.8rem);
    text-align: center;
  }
}
.normal_lead .txt p b {
  border-bottom: 6px solid #FDE236;
}
.normal_lead .txt .note {
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .normal_lead .txt .note {
    font-size: 1.2rem;
  }
}
.normal_lead .map {
  width: 33%;
  max-width: 242px;
}
@media only screen and (max-width: 768px) {
  .normal_lead .map {
    flex: 1;
    width: 30%;
    margin-bottom: 20px;
  }
  .normal_lead .map img {
    margin: auto;
  }
}

.office_index {
  margin: auto;
  padding: 5vw;
  max-width: 1200px;
}
.office_index .of_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .office_index .of_flex {
    display: block;
  }
}
.office_index .of_flex .box {
  position: relative;
  width: 48%;
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  .office_index .of_flex .box {
    width: 100%;
    margin: 0 0 3rem 0;
  }
}
.office_index .of_flex .box.wide {
  width: 100%;
}
.office_index .of_flex .box a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 300;
}
.office_index .of_flex .box .image {
  margin: 0 0 1rem 0;
  position: relative;
}
.office_index .of_flex .box:hover .txt p {
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .office_index .of_flex .box.nodata {
    display: none;
  }
}
.office_index .of_flex .box .txt {
  position: absolute;
  inset: auto auto 20px 20px;
  font-weight: 500;
}
.office_index .of_flex .box .txt p {
  position: relative;
  padding: 0 3rem 0 0;
  display: inline-block;
  color: #fff;
}
.office_index .of_flex .box .txt p:after {
  position: absolute;
  font-family: "Flaticon";
  top: 50%;
  right: 0rem;
  width: 18px;
  height: 18px;
  line-height: 1;
  content: "\f101";
  font-size: 14px;
  font-size: 1.4rem;
  z-index: 999;
  color: #ffffff;
  line-height: 18px;
  text-align: center;
  transition: all 0.3s ease;
  transform: translateY(-50%);
  display: block;
}

.shinhonsya {
  border: 1px solid #ccc;
  padding: 5rem;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 10rem auto;
}
@media only screen and (max-width: 768px) {
  .shinhonsya {
    width: 90%;
    margin: 0 auto 5rem auto;
    display: block;
    padding: 5vw;
  }
}
.shinhonsya .image {
  position: relative;
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .shinhonsya .image {
    width: 100%;
    margin: 0 0 1rem 0;
  }
}
.shinhonsya .image .images {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.shinhonsya .image a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 300;
}
.shinhonsya .image .note {
  text-align: center;
  font-size: 1.4rem;
}
.shinhonsya .image .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 5rem;
  color: #fff;
  z-index: 5;
  opacity: 1;
  line-height: 1.4;
  transition: all 0.3s ease;
  color: #fee200;
}
.shinhonsya .image .icon p {
  font-size: 1.4rem;
  text-align: center;
}
.shinhonsya .image:hover .icon {
  opacity: 1;
  color: #fee200;
  transform: translateX(-50%) translateY(-50%) scale(1.2);
}
.shinhonsya .txt {
  flex: 1;
  padding: 0 0 0 5rem;
}
@media only screen and (max-width: 768px) {
  .shinhonsya .txt {
    padding: 0;
    text-align: center;
  }
}
.shinhonsya .txt p.jp {
  font-size: bold;
  font-size: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .shinhonsya .txt p.jp {
    font-size: 2rem;
  }
}
.shinhonsya .txt p.en {
  margin: 0 0 2rem 0;
}

.office_intro {
  background: #FEE200;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .office_intro {
    padding: 3rem 0;
  }
}
.office_intro .title {
  text-align: center;
  margin: 0 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  .office_intro .title {
    margin: 0 0 3rem 0;
  }
}
.office_intro .title h1 {
  font-size: 3.6rem;
  margin: 0 0 2rem 0;
}
@media only screen and (max-width: 768px) {
  .office_intro .title h1 {
    font-size: 2.4rem;
    margin: 0 0 1rem 0;
  }
}
.office_intro .title .copy {
  font-size: 2.4rem;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .office_intro .title .copy {
    font-size: 1.6rem;
    padding: 0 8vw;
  }
}
.office_intro .intro_box {
  background: #ffffff;
  border-radius: 15px;
  width: 900px;
  margin: auto;
  padding: 5rem;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .office_intro .intro_box {
    padding: 3rem;
    display: block;
    width: 90%;
    margin: auto;
    min-width: 0;
  }
}
.office_intro .intro_box .prof {
  width: 240px;
}
@media only screen and (max-width: 768px) {
  .office_intro .intro_box .prof {
    width: 180px;
    margin: 0 auto 3rem auto;
  }
}
.office_intro .intro_box .prof .konna {
  margin: 0 0 1rem 0;
}
.office_intro .intro_box .prof .proimage {
  padding: 0 3rem;
}
.office_intro .intro_box .prof .name {
  font-weight: 500;
  margin: 0 0 1rem 0;
  text-align: center;
}
.office_intro .intro_box .prof .proftxt {
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: center;
}
.office_intro .intro_box .lead {
  flex: 1;
  padding: 0 0 0 5rem;
}
@media only screen and (max-width: 768px) {
  .office_intro .intro_box .lead {
    padding: 0;
    margin: 0 0 5rem 0;
  }
}
.office_intro .intro_box #map {
  width: 400px;
  padding: 0 0 0 5rem;
}
@media only screen and (max-width: 768px) {
  .office_intro .intro_box #map {
    width: 100%;
    padding: 0;
    height: 240px !important;
  }
  .office_intro .intro_box #map iframe {
    height: 240px !important;
  }
}

#gallery {
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  #gallery {
    padding: 5rem 8vw;
  }
}
#gallery .title {
  text-align: center;
  margin: 0 0 5rem 0;
}
#gallery .title p.enb {
  font-size: 3rem;
}
@media only screen and (max-width: 768px) {
  #gallery .title p.enb {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  #gallery .title {
    margin: 0 0 2rem 0;
  }
}

.gallery_flex {
  display: flex;
  justify-content: space-between;
  padding: 0 8vw;
  margin: auto;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .gallery_flex {
    display: block;
    padding: 0;
  }
}
.gallery_flex .box {
  width: 30%;
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  .gallery_flex .box {
    width: 100%;
    margin: 0 0 3rem 0;
  }
}
.gallery_flex .box .image {
  margin: 0 0 1rem 0;
}
.gallery_flex .box .txt p {
  position: relative;
  display: flex;
}
.gallery_flex .box .txt p::before {
  content: "▲";
  display: block;
  width: 2em;
}

.last_comment {
  background: #ccc;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .last_comment {
    padding: 8vw;
  }
}
.last_comment .last_box {
  background: #FEE200;
  padding: 5rem;
  width: 1000px;
  margin: auto;
  display: flex;
  border-radius: 15px;
}
@media only screen and (max-width: 768px) {
  .last_comment .last_box {
    width: 100%;
    padding: 3rem;
    display: block;
  }
}
.last_comment .last_box .prof {
  width: 200px;
}
@media only screen and (max-width: 768px) {
  .last_comment .last_box .prof {
    width: 150px;
    margin: 0 auto 3rem auto;
  }
}
.last_comment .last_box .prof .konna {
  margin: 0 0 1rem 0;
}
.last_comment .last_box .prof .proimage {
  padding: 0 3rem;
}
.last_comment .last_box .txt {
  flex: 1;
  padding: 0 0 0 5rem;
}
@media only screen and (max-width: 768px) {
  .last_comment .last_box .txt {
    padding: 0;
  }
}

.office_navi {
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .office_navi {
    padding: 3rem 0;
  }
}
.office_navi .title {
  margin: 0 0 10rem 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .office_navi .title {
    margin: 0 0 3rem 0;
  }
}
.office_navi .title p.jp {
  font-size: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .office_navi .title p.jp {
    font-size: 1.6rem;
  }
}
.office_navi .links {
  max-width: 1000px;
  margin: auto;
  padding: 0 3%;
}
@media only screen and (max-width: 768px) {
  .office_navi .links {
    width: 100%;
    padding: 0 5vw;
  }
}
.office_navi .links ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.office_navi .links ul li {
  width: 30%;
  margin: 0 0 1rem 0;
}
@media only screen and (max-width: 768px) {
  .office_navi .links ul li {
    width: 48%;
  }
}
.office_navi .links ul li a {
  display: block;
  position: relative;
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 768px) {
  .office_navi .links ul li a {
    font-size: 1.4rem;
  }
}
.office_navi .links ul li a:after {
  position: absolute;
  font-family: "Flaticon";
  top: 50%;
  right: 0rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  line-height: 1;
  content: "\f101";
  font-size: 14px;
  font-size: 1.4rem;
  z-index: 999;
  color: #ffffff;
  background: #000;
  line-height: 18px;
  text-align: center;
  transition: all 0.3s ease;
  transform: translateY(-50%);
  display: block;
}
.office_navi .links ul li a:hover {
  border-bottom: 1px solid #000;
}
.office_navi .links ul li a:hover:after {
  background: #FEE200;
  color: #000;
}

.chuidetail {
  width: 1000px;
  margin: 3rem auto 0 auto;
  text-align: right;
  font-size: 1.2rem;
  position: relative;
  z-index: 333;
  display: block !important;
}
@media only screen and (max-width: 768px) {
  .chuidetail {
    width: 100%;
  }
}

/* 本社
---------------------- */
#headquarters {
  overflow: visible;
}
#headquarters .office_visual {
  position: relative;
}
@media only screen and (max-width: 768px) {
  #headquarters .office_visual::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
  }
}
#headquarters .office_visual .image {
  position: relative;
  aspect-ratio: 28/11;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #headquarters .office_visual .image {
    aspect-ratio: 49/30;
  }
}
#headquarters .office_visual .image video {
  position: absolute;
  aspect-ratio: 16/9;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  #headquarters .office_visual .image video {
    width: auto;
    height: 100%;
  }
}
#headquarters .office_visual .title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  z-index: 1;
}
#headquarters .office_visual .title h1 {
  font-size: 4rem;
}
@media only screen and (max-width: 768px) {
  #headquarters .office_visual .title h1 {
    font-size: 2.4rem;
  }
}
#headquarters .inner {
  margin: auto;
  padding: 5%;
  max-width: calc(1350px + 10%);
}
@media only screen and (max-width: 768px) {
  #headquarters .inner {
    padding: 5% 0;
  }
}
#headquarters .office_intro {
  padding: 2vw 5vw;
  margin-bottom: 30px;
  background: none;
}
@media only screen and (max-width: 768px) {
  #headquarters .office_intro {
    margin-bottom: 20px;
    padding: 5%;
  }
}
#headquarters .office_intro .lead {
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  #headquarters .office_intro .lead {
    font-size: 1.6rem;
  }
}
#headquarters .office_intro .lead b {
  font-size: 1.8rem;
  font-weight: 500;
}
#headquarters .office_intro .note {
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  #headquarters .office_intro .note {
    font-size: 1.2rem;
  }
}
#headquarters #pagenav {
  display: flex;
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #headquarters #pagenav {
    /*
    position: sticky;
    top: 72px;
    z-index: 10;
    */
  }
}
#headquarters #pagenav li {
  position: relative;
  width: 50%;
  height: 110px;
}
@media only screen and (max-width: 768px) {
  #headquarters #pagenav li {
    height: auto;
    background-color: #fff;
    border: 1px solid #FDE236;
  }
}
#headquarters #pagenav li::before, #headquarters #pagenav li::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  clip-path: polygon(8% 0%, 90% 2%, 100% 30%, 90% 90%, 50% 90%, 50% 100%, 47% 90%, 5% 90%, 0% 50%);
}
@media only screen and (max-width: 768px) {
  #headquarters #pagenav li::before, #headquarters #pagenav li::after {
    content: none;
  }
}
#headquarters #pagenav li::after {
  background-color: #FDE236;
  z-index: 1;
}
#headquarters #pagenav li::before {
  z-index: 2;
  background-color: #fff;
  transform: scale(0.99, 0.97);
}
@media only screen and (max-width: 768px) {
  #headquarters #pagenav li.active {
    background-color: #FDE236;
  }
}
#headquarters #pagenav li.active::before {
  background-color: #FDE236;
}
#headquarters #pagenav li a {
  position: relative;
  display: block;
  height: 100%;
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  #headquarters #pagenav li a {
    justify-content: flex-start;
  }
}
#headquarters #pagenav li a .num {
  position: absolute;
  left: 6%;
  top: 14%;
  transform: rotate(-20deg);
  font-size: 1.1rem;
  border-bottom: 2px solid #000;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  #headquarters #pagenav li a .num {
    position: static;
    transform: none;
    text-align: center;
  }
}
#headquarters #pagenav li a .num span {
  font-size: 2.2rem;
}
@media only screen and (max-width: 768px) {
  #headquarters #pagenav li a .num span {
    font-size: 1.1rem;
  }
}
#headquarters #pagenav li a .sub {
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  #headquarters #pagenav li a .sub {
    font-size: min(3vw, 1.2rem);
  }
}
#headquarters #pagenav li a .main {
  font-size: clamp(2rem, 2vw, 3rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4%;
}
@media only screen and (max-width: 768px) {
  #headquarters #pagenav li a .main {
    font-size: min(4vw, 1.4rem);
    margin-bottom: 5px;
  }
}
#headquarters #pagenav li a .sub2 {
  position: absolute;
  bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #headquarters #pagenav li a .sub2 {
    position: static;
    font-size: min(2.5vw, 1.1rem);
  }
}
#headquarters .part-block {
  position: relative;
  margin-top: -100px;
  display: none;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block {
    margin-top: 0;
  }
}
#headquarters .part-block.active {
  display: block;
}
#headquarters .part-block#part1 .part-layout {
  background-color: #FAFAFA;
  display: flex;
  padding-top: 150px;
  gap: 3%;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part1 .part-layout {
    display: block;
    padding-top: 90px;
  }
}
#headquarters .part-block#part1 #side {
  width: 20%;
  height: 100%;
  position: sticky;
  top: 150px;
  left: 0;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part1 #side {
    display: none;
  }
}
#headquarters .part-block#part1 #side a {
  position: relative;
  left: -15px;
  max-width: 277px;
}
#headquarters .part-block#part1 .part-main {
  width: 77%;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part1 .part-main {
    width: 100%;
    padding: 0 0;
  }
}
#headquarters .part-block#part1 .part-main .floor {
  padding-right: 10%;
  max-width: calc(924px + 10%);
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part1 .part-main .floor {
    padding-right: 0;
    margin-bottom: 30px;
  }
}
#headquarters .part-block#part1 .part-main .floor h2 {
  font-size: 2.8rem;
  border-bottom: 1px solid #000;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part1 .part-main .floor h2 {
    padding: 0 5%;
  }
}
#headquarters .part-block#part1 .part-main .floor .main-image {
  position: relative;
}
#headquarters .part-block#part1 .part-main .floor .main-image .swiper-slide {
  position: relative;
}
#headquarters .part-block#part1 .part-main .floor .main-image .swiper-slide::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part1 .part-main .floor .main-image .swiper-slide::after {
    content: none;
  }
}
#headquarters .part-block#part1 .part-main .floor .main-image .swiper-slide .txt {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-size: 1.5rem;
  bottom: 5%;
  left: 5%;
  width: 90%;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part1 .part-main .floor .main-image .swiper-slide .txt {
    position: static;
    background-color: #000;
    padding: 15px;
    width: 100%;
  }
}
#headquarters .part-block#part1 .part-main .floor .main-image .swiper-slide .txt h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part1 .part-main .floor .main-image .swiper-slide .txt h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
  }
}
#headquarters .part-block#part1 .part-main .floor .main-image .swiper-slide .txt p {
  font-size: 1.3rem;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part1 .part-main .floor .main-image .swiper-slide .txt p {
    font-size: 1.1rem;
    line-height: 1.3;
  }
}
#headquarters .part-block#part1 .part-main .floor .thumbs {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part1 .part-main .floor .thumbs {
    margin: 20px 0;
  }
}
#headquarters .part-block#part1 .part-main .floor .thumbs .thumb {
  position: relative;
  width: 162px;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part1 .part-main .floor .thumbs .thumb {
    width: 100px;
  }
}
#headquarters .part-block#part1 .part-main .floor .thumbs .thumb::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
#headquarters .part-block#part1 .part-main .floor .thumbs .thumb.swiper-slide-thumb-active {
  outline: 2px solid #FDE236;
  outline-offset: -2px;
}
#headquarters .part-block#part1 .part-main .floor .thumbs .thumb.swiper-slide-thumb-active::before {
  background: rgba(0, 0, 0, 0);
}
#headquarters .part-block#part1 .part-main .floor .thumbs .swiper-button-prev, #headquarters .part-block#part1 .part-main .floor .thumbs .swiper-button-next {
  background-color: #000;
  height: 28px;
  top: 50px;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part1 .part-main .floor .thumbs .swiper-button-prev, #headquarters .part-block#part1 .part-main .floor .thumbs .swiper-button-next {
    top: 75%;
    height: 20px;
    width: 20px;
  }
}
#headquarters .part-block#part1 .part-main .floor .thumbs .swiper-button-prev {
  left: 0;
}
#headquarters .part-block#part1 .part-main .floor .thumbs .swiper-button-next {
  right: 0;
}
#headquarters .part-block#part1 .part-main .floor .thumbs .swiper-button-prev::after, #headquarters .part-block#part1 .part-main .floor .thumbs .swiper-button-next::after {
  font-size: 14px;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part1 .part-main .floor .thumbs .swiper-button-prev::after, #headquarters .part-block#part1 .part-main .floor .thumbs .swiper-button-next::after {
    font-size: 11px;
  }
}
#headquarters .part-block#part1 .part-main .floor .scrollbar {
  width: 30%;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part1 .part-main .floor .scrollbar {
    width: 50%;
    margin-right: 5%;
  }
}
#headquarters .part-block#part1 .part-main .floor .scrollbar .bar {
  position: relative;
  display: block;
  height: 1px;
  width: 100%;
  background-color: #CDCDCD;
}
#headquarters .part-block#part1 .part-main .floor .scrollbar .bar span {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  background-color: #FDE236;
  width: 50%;
  height: 1px;
}
#headquarters .part-block#part1 .part-main .floor .scrollbar p {
  text-align: right;
  font-size: 1.3rem;
}
#headquarters .part-block#part2 {
  background-color: #FAFAFA;
}
#headquarters .part-block#part2 .day-block {
  position: relative;
  padding: 150px 8vw 0;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part2 .day-block {
    padding: 110px 5vw 0;
  }
}
#headquarters .part-block#part2 .day-block h2 {
  font-size: 3.2rem;
  font-weight: 500;
  border-bottom: 1px solid #CDCDCD;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part2 .day-block h2 {
    font-size: 2rem;
  }
}
#headquarters .part-block#part2 .day-block h2 span {
  display: block;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part2 .day-block h2 span {
    font-size: 1.4rem;
  }
}
#headquarters .part-block#part2 .day-block .illust {
  position: absolute;
  width: 210px;
  right: 13vw;
  top: 117px;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part2 .day-block .illust {
    width: 80px;
    right: 5vw;
    top: 110px;
  }
}
#headquarters .part-block#part2 .day-block .time-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 0;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part2 .day-block .time-layout {
    display: block;
    padding: 30px 0;
  }
}
#headquarters .part-block#part2 .day-block .time-layout .box {
  width: 46%;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part2 .day-block .time-layout .box {
    width: 100%;
  }
}
#headquarters .part-block#part2 .day-block .time-layout .box:nth-child(2n) {
  transform: translateY(50px);
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part2 .day-block .time-layout .box:nth-child(2n) {
    transform: none;
  }
}
#headquarters .part-block#part2 .day-block .time-layout .box h3 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part2 .day-block .time-layout .box h3 {
    font-size: 1.6rem;
  }
}
#headquarters .part-block#part2 .day-block .time-layout .box h3 .time {
  font-size: 3.2rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block#part2 .day-block .time-layout .box h3 .time {
    font-size: 3rem;
  }
}
#headquarters .part-block#part2 .day-block .time-layout .box figure {
  position: relative;
  margin-bottom: 1rem;
}
#headquarters .part-block#part2 .day-block .time-layout .box figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background-color: #FDE236;
  line-height: 1.2;
  padding: 10px 20px;
  font-weight: 500;
}
#headquarters .part-block#part2 .day-block .time-layout .box p {
  font-size: 1.4rem;
}
#headquarters .part-block#part2 #day2 {
  background-color: #F6F5F0;
}
#headquarters .part-block .sidetext {
  position: absolute;
  right: 35px;
  top: 200px;
}
@media only screen and (max-width: 768px) {
  #headquarters .part-block .sidetext {
    display: none;
  }
}

#office .office_visual_center {
  position: relative;
}
#office .office_visual_center .image {
  position: relative;
  aspect-ratio: 28/11;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #office .office_visual_center .image {
    aspect-ratio: none;
    min-height: 300px;
  }
}
#office .office_visual_center .image video {
  position: absolute;
  aspect-ratio: 16/9;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  #office .office_visual_center .image video {
    width: auto;
    height: 100%;
  }
}
#office .office_visual_center .title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  z-index: 1;
}
#office .office_visual_center .title h1 {
  font-size: 4rem;
}
@media only screen and (max-width: 768px) {
  #office .office_visual_center .title h1 {
    font-size: 2rem;
  }
}
#office .content_block.inner {
  margin: auto;
  padding: 5%;
  max-width: calc(1300px + 10%);
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner {
    padding: 0 0 5% 0;
  }
}
#office .content_block.inner .location {
  padding: 8% 8%;
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .location {
    margin-bottom: 110px;
    padding-bottom: 0;
  }
}
#office .content_block.inner .location .txt {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .location .txt {
    width: 100%;
  }
}
#office .content_block.inner .location .txt h2 {
  font-size: clamp(2.2rem, 2.2vw, 2.8rem);
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .location .txt h2 {
    font-size: 2rem;
  }
}
#office .content_block.inner .location .txt p {
  font-size: 1.7rem;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .location .txt p {
    font-size: 1.6rem;
  }
}
#office .content_block.inner .location.kumagaya {
  background: #F6F5F0 url(/company/recruitment/assets/img/office/kumagaya-assets/map.png) no-repeat center right 5%/auto 100%;
}
@media (max-width: 960px) {
  #office .content_block.inner .location.kumagaya {
    background-size: 50% auto;
  }
  #office .content_block.inner .location.kumagaya .txt {
    width: 75%;
  }
  #office .content_block.inner .location.kumagaya .txt p {
    width: 75%;
  }
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .location.kumagaya {
    background: #F6F5F0;
  }
  #office .content_block.inner .location.kumagaya .txt {
    width: 100%;
  }
  #office .content_block.inner .location.kumagaya .txt p {
    width: 100%;
  }
  #office .content_block.inner .location.kumagaya .image {
    max-width: 400px;
    margin: auto;
  }
}
#office .content_block.inner .location.mito {
  background: #F6F5F0 url(/company/recruitment/assets/img/office/mito-assets/map.png) no-repeat center right 5%/auto 100%;
}
@media (max-width: 960px) {
  #office .content_block.inner .location.mito {
    background-size: 50% auto;
  }
  #office .content_block.inner .location.mito .txt {
    width: 75%;
  }
  #office .content_block.inner .location.mito .txt p {
    width: 75%;
  }
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .location.mito {
    background: #F6F5F0;
  }
  #office .content_block.inner .location.mito .txt {
    width: 100%;
  }
  #office .content_block.inner .location.mito .txt p {
    width: 100%;
  }
  #office .content_block.inner .location.mito .image {
    max-width: 400px;
    margin: auto;
  }
}
#office .content_block.inner .voice {
  margin-bottom: 100px;
  background-color: #F5F5F5;
  padding: 0 8% 8%;
}
#office .content_block.inner .voice .baloon {
  margin-bottom: 30px;
}
#office .content_block.inner .voice .layout {
  display: flex;
  gap: 5%;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .voice .layout {
    display: block;
  }
}
#office .content_block.inner .voice .layout .box {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .voice .layout .box {
    width: 100%;
    margin-bottom: 20px;
  }
}
#office .content_block.inner .voice .layout .box .box-head {
  display: flex;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .voice .layout .box .box-head {
    margin-bottom: 20px;
    align-items: center;
  }
}
#office .content_block.inner .voice .layout .box .box-head .image {
  width: 26%;
  max-width: 140px;
}
#office .content_block.inner .voice .layout .box .box-head .prof {
  flex: 1;
  padding-left: 20px;
}
#office .content_block.inner .voice .layout .box .box-head .prof .name {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
}
#office .content_block.inner .voice .layout .box .box-head .prof p {
  font-size: 1.5rem;
}
#office .content_block.inner .commute {
  background-color: #F6F5F0;
  padding: 7% 5% 5%;
}
#office .content_block.inner .commute .commute-in {
  padding: 0 5% 5%;
  background-color: #fff;
}
#office .content_block.inner .commute .commute-in h3 {
  position: relative;
  background-color: #3E3E3E;
  line-height: 1;
  padding: 8px 10px 10px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 30px;
}
#office .content_block.inner .commute .commute-in h3 span {
  position: absolute;
  right: 15px;
  font-size: 1.4rem;
  line-height: 1.8rem;
}
#office .content_block.inner .commute .commute-in .layout {
  display: flex;
  gap: 5%;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .commute .commute-in .layout {
    display: block;
  }
}
#office .content_block.inner .commute .commute-in .layout.center {
  align-items: center;
}
#office .content_block.inner .commute .commute-in .layout.center .box {
  padding: 0 0;
}
#office .content_block.inner .commute .commute-in .layout.center p {
  margin-bottom: 20px;
}
#office .content_block.inner .commute .commute-in .layout .box {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .commute .commute-in .layout .box {
    width: 100%;
    margin-bottom: 20px;
  }
}
#office .content_block.inner .commute .commute-in .layout .box p {
  text-align: center;
  font-size: 1.3rem;
}
#office .content_block.inner .commute .commute-in .layout .box p b {
  background-color: #FFF8CC;
}
#office .content_block.inner .commute .commute-in .layout .box1 .image {
  padding-top: 10%;
  margin-bottom: 5%;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .commute .commute-in .layout .box1 .image {
    padding-top: 5%;
  }
}
#office .content_block.inner .commute .commute-in .layout .box3 {
  padding-top: 0;
}
#office .content_block.inner .commute .commute-in .layout .box4 {
  margin-top: 50px;
}
#office .content_block.inner h2.ubar {
  position: relative;
  text-align: center;
  font-size: 4rem;
  font-weight: 500;
  padding-bottom: 20px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner h2.ubar {
    font-size: 2.4rem;
  }
}
#office .content_block.inner h2.ubar::after {
  content: "";
  display: block;
  position: absolute;
  width: 85px;
  height: 3px;
  background-color: #FFDC00;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#office .content_block.inner .baloon {
  margin-bottom: 30px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .baloon {
    margin-bottom: 5vw;
  }
}
#office .content_block.inner .baloon span {
  position: relative;
  display: inline-block;
  background-color: #FDE236;
  padding: 10px 25px;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: 500;
  text-align: center;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .baloon span {
    font-size: 1.8rem;
    padding: 10px;
  }
}
#office .content_block.inner .baloon span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 17px;
  height: 17px;
  background-color: #FDE236;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  transform: translateX(-50%);
}
#office .content_block.inner .gallery {
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .gallery {
    padding: 50px 0;
  }
}
#office .content_block.inner .gallery .layout {
  display: flex;
  flex-wrap: wrap;
}
#office .content_block.inner .gallery .layout .box {
  width: 33.33%;
  padding: 0 8px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .gallery .layout .box {
    width: 100%;
  }
}
#office .content_block.inner .gallery .layout .box .image {
  margin: 10px;
}
#office .content_block.inner .gallery .layout .box p {
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .gallery .layout .box p {
    font-size: 1.3rem;
  }
}
#office .content_block.inner .about {
  background-color: #F6F5F0;
  padding: 7% 5% 5%;
}
#office .content_block.inner .about h2 {
  margin-bottom: 100px;
}
#office .content_block.inner .about .about-in {
  background-color: #fff;
  padding: 0 10% 5%;
}
#office .content_block.inner .about .about-in h3 {
  margin-bottom: 0;
}
#office .content_block.inner .about .about-in .layout {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .about .about-in .layout {
    display: block;
  }
}
#office .content_block.inner .about .about-in .layout .txt {
  width: 50%;
  max-width: 440px;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .about .about-in .layout .txt {
    width: 100%;
    max-width: none;
  }
}
#office .content_block.inner .about .about-in .layout .txt ul {
  padding-left: 38px;
}
#office .content_block.inner .about .about-in .layout .txt ul li {
  position: relative;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
#office .content_block.inner .about .about-in .layout .txt ul li b {
  background-color: #FFF8CC;
  font-weight: 500;
}
#office .content_block.inner .about .about-in .layout .txt ul li::before {
  content: "";
  display: block;
  position: absolute;
  width: 21px;
  height: 21px;
  background: url(/company/recruitment/assets/img/office/mark.svg) no-repeat center/contain;
  left: -38px;
  top: 4px;
}
#office .content_block.inner .about .about-in .layout .image {
  width: 50%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .about .about-in .layout .image {
    width: 100%;
  }
}
#office .content_block.inner .about .about-in .layout .image img {
  max-width: 360px;
  display: inline-block;
}
#office .content_block.inner .charm {
  position: relative;
  background: #FAFAFA;
  padding: 7% 5% 5%;
}
#office .content_block.inner .charm h2 {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .charm h2 {
    font-size: 2.4rem;
  }
}
#office .content_block.inner .charm .image {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .charm .image {
    margin-bottom: 15px;
  }
}
#office .content_block.inner .charm::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(rgba(253, 226, 54, 0.25) 0%, rgba(253, 226, 54, 0) 70%);
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .charm::before {
    display: none;
  }
}
#office .content_block.inner .charm h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
#office .content_block.inner .charm h3 span {
  display: inline-block;
  margin-left: 5px;
  background-color: #FFDC00;
  font-weight: 500;
  padding: 4px 10px;
  line-height: 1;
  font-size: 1.6rem;
}
#office .content_block.inner .life {
  background-color: #F6F5F0;
  padding: 5%;
}
#office .content_block.inner .life .life-in {
  position: relative;
  background-color: #fff;
  padding: 80px 0 5% 0;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .life .life-in {
    padding-top: 80px;
  }
}
#office .content_block.inner .life .life-in h3 {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  background-color: #FFDC00;
  font-size: 2rem;
  font-weight: 500;
  padding: 20px 40px;
  line-height: 1;
}
#office .content_block.inner .life .life-in .layout {
  display: flex;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .life .life-in .layout {
    display: block;
  }
}
#office .content_block.inner .life .life-in .layout .box {
  width: 50%;
  padding: 0 8%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .life .life-in .layout .box {
    width: 100%;
    margin-bottom: 20px;
  }
}
#office .content_block.inner .life .life-in .layout .box h4 {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .life .life-in .layout .box h4 {
    margin-bottom: 10px;
  }
}
#office .content_block.inner .life .life-in .layout .box p {
  flex-grow: 1;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
#office .content_block.inner .life .life-in .layout .box .note {
  font-size: 1.3rem;
  padding: 0;
}
#office .content_block.inner .life .life-in .layout .box1 {
  border-right: 1px solid #CDCDCD;
}
#office .content_block.inner .life .life-in .note {
  padding: 0 8%;
  font-size: 1.2rem;
}
#office .content_block.inner .case {
  padding: 70px 0 0;
  max-width: 1112px;
  margin: auto;
}
#office .content_block.inner .case h2 {
  margin-bottom: 100px;
}
#office .content_block.inner .case .case-row {
  position: relative;
  background-color: #F5F5F5;
  display: flex;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .case .case-row {
    display: block;
  }
}
#office .content_block.inner .case .case-row h3 {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  background-color: #FFDC00;
  font-size: 2.6rem;
  font-weight: 500;
  padding: 10px 40px;
  line-height: 1;
  transform: translateY(-50%);
}
#office .content_block.inner .case .case-row .left {
  width: 30%;
  background-color: #FFF8CC;
  padding: 5% 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .case .case-row .left {
    width: 100%;
    padding-top: 50px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
#office .content_block.inner .case .case-row .left .image {
  max-width: 200px;
  margin: 0 auto 20px;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .case .case-row .left .image {
    max-width: 120px;
    width: 50%;
    margin: 0;
  }
}
#office .content_block.inner .case .case-row .left p {
  font-size: 1.5rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #office .content_block.inner .case .case-row .left p {
    font-size: 1.4rem;
    text-align: left;
    padding-left: 20px;
  }
}
#office .content_block.inner .case .case-row .txt {
  flex: 1;
  padding: 5%;
  line-height: 2;
}
#office .content_block.inner .case .case-row .txt h4 {
  font-weight: 500;
  margin-bottom: 0.5rem;
}
#office .content_block.inner .case .case-row .txt p {
  margin-bottom: 2rem;
}