@charset "UTF-8";
:root {
  --headerHeight: 120px;
  --paddingSection: 120px;
}
@media screen and (max-width: 959px) {
  :root {
    --headerHeight: 80px;
    --paddingSection: 80px;
  }
}

/*========== 子ページ ==========*/
@media screen and (max-width: 959px) {
  .child_body > *:first-of-type.padding_section:first-of-type {
    padding-top: calc(var(--paddingSection) / 2);
  }
}
/*==========
子ページ共通
==========*/
#header {
  background-color: #fff;
}

#mv {
  margin-bottom: 80px;
  height: calc(284px + var(--headerHeight));
  position: relative;
  z-index: 1;
}
#mv .flex {
  padding-top: var(--headerHeight);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
#mv .text_area {
  margin-top: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
#mv .text_area .en {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif, Arial;
}
#mv .text_area .ja {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
#mv .text_area .title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif, Arial;
  margin-bottom: 1em;
}
#mv .deco {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
}
#mv .deco::before, #mv .deco::after {
  content: "";
  width: 100vw;
  height: calc(100% - var(--headerHeight) + 40px);
  position: absolute;
  -webkit-transform: skew(-17.5deg);
          transform: skew(-17.5deg);
  -webkit-transition: left 2s ease-in-out, right 2s ease-in-out;
  transition: left 2s ease-in-out, right 2s ease-in-out;
}
#mv .deco::before {
  top: var(--headerHeight);
  background-color: #f0f0f0;
  left: -150vw;
  z-index: -1;
}
#mv .deco::after {
  top: calc(var(--headerHeight) + 40px);
  background-color: #01804f;
  right: -150vw;
  z-index: -2;
}
@media screen and (max-width: 959px) {
  #mv {
    margin-bottom: 24px;
    height: calc(160px + var(--headerHeight));
  }
  #mv .text_area .en {
    font-size: 2rem;
  }
  #mv .text_area .ja {
    font-size: 1.25rem;
  }
  #mv .text_area .title {
    font-size: 1.75rem;
  }
  #mv .deco::before, #mv .deco::after {
    height: calc(100% - var(--headerHeight) + 24px);
  }
  #mv .deco::after {
    top: calc(var(--headerHeight) + 24px);
  }
}
#mv.with_img {
  margin-top: var(--headerHeight);
  margin-bottom: 104px;
  height: 400px;
}
#mv.with_img .bg {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
#mv.with_img .bg::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
#mv.with_img .text_area {
  color: #fff;
}
#mv.with_img .deco::before {
  top: calc(var(--headerHeight) + 64px);
}
#mv.with_img .deco::after {
  top: calc(var(--headerHeight) + 24px);
}
@media screen and (max-width: 959px) {
  #mv.with_img {
    margin-bottom: 40px;
    height: calc(240px + var(--headerHeight));
  }
  #mv.with_img .deco::before {
    top: calc(var(--headerHeight) + 12px);
  }
  #mv.with_img .deco::after {
    top: calc(var(--headerHeight) + 0px);
  }
}
#mv.trigger .deco::before {
  left: -20vw;
}
#mv.trigger .deco::after {
  right: -75vw;
}

.child_body {
  min-height: 80vh;
}

.intro_text {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif, Arial;
}
@media screen and (max-width: 959px) {
  .intro_text {
    font-size: 1.125rem;
    padding-bottom: calc(var(--paddingSection) / 2);
  }
}

.layout_01 {
  margin-bottom: var(--paddingSection);
  counter-reset: number;
}
.layout_01 > * {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.layout_01 > *:not(:last-of-type) {
  margin-bottom: var(--paddingSection);
}
.layout_01 > * > * {
  width: 50%;
}
.layout_01 > *:nth-last-of-type(odd) .text_area {
  padding-right: 12.5%;
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
      -ms-flex-order: 0;
          order: 0;
}
.layout_01 > *:nth-last-of-type(odd) .text_area::after {
  right: 65%;
}
.layout_01 > *:nth-last-of-type(odd) .img_area {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
.layout_01 > *:nth-last-of-type(even) .text_area {
  padding-left: 12.5%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
.layout_01 > *:nth-last-of-type(even) .text_area::after {
  left: 65%;
}
.layout_01 > *:nth-last-of-type(even) .img_area {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
      -ms-flex-order: 0;
          order: 0;
}
.layout_01.rev > *:nth-last-of-type(even) .text_area {
  padding-left: 0;
  padding-right: 12.5%;
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
      -ms-flex-order: 0;
          order: 0;
}
.layout_01.rev > *:nth-last-of-type(even) .text_area::after {
  right: 65%;
  left: auto;
}
.layout_01.rev > *:nth-last-of-type(even) .img_area {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
.layout_01.rev > *:nth-last-of-type(odd) .text_area {
  padding-right: 0;
  padding-left: 12.5%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
.layout_01.rev > *:nth-last-of-type(odd) .text_area::after {
  left: 65%;
  right: auto;
}
.layout_01.rev > *:nth-last-of-type(odd) .img_area {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
      -ms-flex-order: 0;
          order: 0;
}
.layout_01 .title_area {
  min-height: 88px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.layout_01 .title_area::before {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  font-size: 5.5rem;
  font-weight: 500;
  line-height: 1;
  color: #f0f0f0;
  display: block;
  text-align: right;
  position: absolute;
  right: 0;
  top: -0.125em;
  z-index: -1;
}
.layout_01 .title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif, Arial;
  line-height: 1.5;
}
.layout_01 .text_area {
  padding-bottom: 2em;
  line-height: 2;
  position: relative;
}
.layout_01 .text_area::after {
  content: "";
  width: 100vw;
  height: 220px;
  background-color: #f0f0f0;
  position: absolute;
  -webkit-transform: skew(-17.5deg);
          transform: skew(-17.5deg);
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 959px) {
  .layout_01 > *:not(:last-of-type) {
    margin-bottom: calc(var(--paddingSection) / 2);
  }
  .layout_01 > * > * {
    width: 100%;
  }
  .layout_01 > *:nth-last-of-type(odd) .text_area, .layout_01 > *:nth-last-of-type(even) .text_area {
    padding-right: 0;
    padding-left: 0;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .layout_01 > *:nth-last-of-type(odd) .text_area::after, .layout_01 > *:nth-last-of-type(even) .text_area::after {
    bottom: -80px;
    right: 25%;
    left: auto;
  }
  .layout_01 > *:nth-last-of-type(odd) .img_area, .layout_01 > *:nth-last-of-type(even) .img_area {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .layout_01.rev > *:nth-last-of-type(odd) .text_area, .layout_01.rev > *:nth-last-of-type(even) .text_area {
    padding-right: 0;
    padding-left: 0;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .layout_01.rev > *:nth-last-of-type(odd) .text_area::after, .layout_01.rev > *:nth-last-of-type(even) .text_area::after {
    bottom: -80px;
    right: 25%;
    left: auto;
  }
  .layout_01.rev > *:nth-last-of-type(odd) .img_area, .layout_01.rev > *:nth-last-of-type(even) .img_area {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .layout_01 .title_area {
    min-height: 56px;
    margin-bottom: 16px;
  }
  .layout_01 .title_area::before {
    font-size: 4rem;
  }
  .layout_01 .title {
    font-size: 1.25rem;
  }
}

/*==========
メッセージ
==========*/
#message_president {
  background: center/cover url("../img/child/message/message_president_bg.png") no-repeat #19678d;
  color: #fff;
}
#message_president .title_area {
  margin-bottom: 2em;
  display: inline-block;
  position: relative;
}
#message_president .title_area .title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-family: "Noto Sans JP", sans-serif, Arial;
}
#message_president .title_area .deco {
  position: absolute;
  top: 50%;
  left: -5%;
  -webkit-transform: translate(-100%, -30%);
          transform: translate(-100%, -30%);
}
#message_president .title_area::after {
  content: "";
  width: 100vw;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: -1em;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
}
#message_president .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 24px 0;
}
#message_president .flex > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#message_president .text_area .text {
  line-height: 2;
}
#message_president .signature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 2em;
  font-size: 0.9375rem;
}
#message_president .signature .name {
  font-size: 1.6em;
  margin-left: 1em;
}
@media screen and (max-width: 959px) {
  #message_president .title_area {
    padding-left: 40px;
  }
  #message_president .title_area .title {
    font-size: 1.5rem;
  }
  #message_president .title_area .deco {
    width: 32px;
    top: 0;
    left: 10%;
    -webkit-transform: translate(-100%, -25%);
            transform: translate(-100%, -25%);
  }
  #message_president .title_area::after {
    left: auto;
    right: -1em;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  #message_president .flex > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}

/*==========
大同分析リサーチの仕事
==========*/
#business_intro {
  position: relative;
}
#business_intro::after {
  content: "";
  background-color: #01804f;
  width: 100vw;
  height: 280px;
  position: absolute;
  left: 0;
  bottom: calc(var(--paddingSection) + 80px);
  z-index: -1;
}
#business_intro .title {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif, Arial;
  font-weight: 700;
  letter-spacing: 0.1em;
}
#business_intro .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 24px 40px;
}
#business_intro .flex > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#business_intro .text_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
#business_intro .img_area {
  margin-bottom: 120px;
}
#business_intro .img_area img {
  margin-left: auto;
}
#business_intro .foot_img {
  margin-top: auto;
}
@media screen and (max-width: 959px) {
  #business_intro .title {
    font-size: 1.125rem;
  }
  #business_intro .flex > * {
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  #business_intro .img_area {
    margin-bottom: 0;
  }
}

#business_system .bg {
  background-color: #f0f0f0;
}
#business_system .tile_area {
  background-color: #fff;
  padding: 0.5em 1em;
  text-align: center;
}
#business_system .tile_area .title {
  font-size: 1.25rem;
  font-weight: 700;
}
#business_system .tile_area .text {
  text-align: center;
}
@media screen and (max-width: 959px) {
  #business_system .tile_area .title {
    font-size: 0.875rem;
  }
  #business_system .tile_area .text {
    font-size: 0.75rem;
  }
}

.list_business_menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px 24px;
}
.list_business_menu > * {
  width: calc((100% - 48px) / 3);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.list_business_menu .text_area {
  margin-top: 40px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.list_business_menu .title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.75em;
}
.list_business_menu .text {
  margin-bottom: 1.5em;
}
.list_business_menu .btn_01 {
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
}
.list_business_menu .img_area img {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 959px) {
  .list_business_menu {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .list_business_menu > * {
    width: 100%;
    max-width: 320px;
  }
  .list_business_menu .text_area {
    margin-top: 0.5em;
  }
  .list_business_menu .title {
    font-size: 1.125rem;
    margin-bottom: 0.5em;
  }
  .list_business_menu .text {
    margin-bottom: 1em;
  }
}

/*==========
大同分析リサーチの仕事 子ページ
==========*/
#business_child_intro .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px 64px;
}
#business_child_intro .text_area {
  width: 44%;
}
#business_child_intro .title {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif, Arial;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 1em;
}
#business_child_intro .text {
  line-height: 2.5;
}
#business_child_intro .img_area {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: calc(50% - 50vw);
  max-height: 480px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
#business_child_intro .img_area img {
  width: 100%;
}
@media screen and (max-width: 959px) {
  #business_child_intro .text_area {
    width: 100%;
  }
  #business_child_intro .title {
    font-size: 1.5rem;
  }
  #business_child_intro .text {
    line-height: 2;
  }
  #business_child_intro .img_area {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}

#business_child_flow {
  background: #f0f0f0;
}

.list_business_child_reason > * {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px 80px;
  padding: 40px 0;
  border-bottom: 1px solid #c8c8c8;
}
.list_business_child_reason > *:first-of-type {
  border-top: 1px solid #c8c8c8;
}
.list_business_child_reason .text_area {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.list_business_child_reason .title_sub {
  font-family: "Noto Sans JP", sans-serif, Arial;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.list_business_child_reason .title {
  font-family: "Noto Sans JP", sans-serif, Arial;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}
.list_business_child_reason .text {
  line-height: 2;
}
@media screen and (max-width: 959px) {
  .list_business_child_reason .text_area {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}

.future_area .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.future_area .flex > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 50vw;
  height: 28.57142vw;
  max-height: 480px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  padding: 80px;
}
.future_area .inner_area {
  position: relative;
  width: 75%;
}
.future_area .head_area {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: calc(50% - 50vw);
  color: #fff;
  position: relative;
  z-index: 1;
}
.future_area .head_area::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #397e53;
  opacity: 0.8;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.future_area .head_area .deco {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
}
.future_area .head_area .title {
  font-size: clamp(1.5rem, 2.8571428vw, 3em);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif, Arial;
  margin-bottom: 0.5em;
}
.future_area .head_area .text {
  font-size: clamp(1rem, 1.71428571vw, 2em);
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif, Arial;
}
.future_area .body_area {
  font-size: clamp(0.875rem, 1.14285714vw, 1.5rem);
  margin-right: calc(50% - 50vw);
  background-color: #19678d;
}
.future_area .body_area .text {
  line-height: 2;
}
@media screen and (max-width: 959px) {
  .future_area .flex > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    width: 100vw;
    height: auto;
    padding: 40px 24px;
  }
  .future_area .inner_area {
    width: 100%;
    max-width: 480px;
  }
  .future_area .head_area {
    margin-right: calc(50% - 50vw);
    padding-left: 40px;
  }
  .future_area .head_area .deco {
    -webkit-transform: translate(calc(-100% + 40px), -50%);
            transform: translate(calc(-100% + 40px), -50%);
  }
  .future_area .head_area .deco img {
    width: 50%;
  }
  .future_area .body_area {
    margin-left: calc(50% - 50vw);
  }
}

/*==========
DBRな人たち
==========*/
#interview_contents .box:not(:last-of-type) {
  margin-bottom: 80px;
}
@media screen and (max-width: 959px) {
  #interview_contents .box:not(:last-of-type) {
    margin-bottom: 40px;
  }
}

.list_interview {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 24px;
}
.list_interview > * {
  border: 1px solid #c7c7c7;
  width: calc((100% - 24px) / 2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.list_interview .img_area {
  width: 50%;
  max-width: 232px;
}
.list_interview .text_area {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 24px 1em;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.list_interview .btn_area {
  margin-top: auto;
}
.list_interview .btn_01 {
  margin: 0 auto;
  max-width: 160px;
  min-width: unset;
  width: 100%;
  padding-right: 2.5em;
}
.list_interview .catch {
  font-weight: 700;
  margin-bottom: 1.5em;
}
.list_interview .post {
  font-size: 0.875rem;
  margin-bottom: 0.5em;
}
.list_interview .name {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 959px) {
  .list_interview {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
  .list_interview > * {
    max-width: 320px;
    width: 100%;
    border: none;
  }
  .list_interview .img_area {
    width: 100%;
    max-width: 184px;
    margin-left: auto;
    margin-right: auto;
  }
  .list_interview .text_area {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    width: 100%;
    padding: 0;
    margin-top: 1em;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .list_interview .btn_area {
    width: 100%;
  }
  .list_interview .btn_01 {
    margin: 1em auto;
  }
  .list_interview .catch {
    width: 100%;
    margin-bottom: 1em;
  }
  .list_interview .post {
    margin-bottom: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .list_interview .name {
    margin-bottom: 0;
    margin-left: auto;
  }
}

#interview_child #mv {
  margin-bottom: 0;
}
#interview_child #mv .bg {
  background-position: center top;
}
#interview_child #mv .bg::after {
  display: none;
}
#interview_child #mv .en {
  font-size: 2rem;
  letter-spacing: 0.05em;
}
#interview_child #mv .ja {
  font-family: "Noto Sans JP", sans-serif, Arial;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 1em;
}
#interview_child #mv .text_area {
  margin-bottom: 0;
  padding: 40px 0px;
  z-index: 1;
}
#interview_child #mv .text_area::after {
  content: "";
  background-color: #01804f;
  width: 100vw;
  height: 100%;
  position: absolute;
  right: -80px;
  bottom: 0;
  z-index: -1;
  -webkit-transform: skew(-17.5deg);
          transform: skew(-17.5deg);
}
@media screen and (max-width: 959px) {
  #interview_child #mv {
    height: calc(320px + var(--headerHeight));
  }
  #interview_child #mv .en {
    font-size: 1.5rem;
  }
  #interview_child #mv .text_area {
    padding: 24px 0px;
  }
  #interview_child #mv .text_area::after {
    right: -56px;
  }
}

.list_interview_contents > *:not(:last-of-type) {
  margin-bottom: 80px;
}
.list_interview_contents > *:nth-of-type(odd) .img_area {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
      -ms-flex-order: 0;
          order: 0;
}
.list_interview_contents > *:nth-of-type(odd) .title_area {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  margin-left: -5%;
  text-align: left;
  padding-left: 8%;
}
.list_interview_contents > *:nth-of-type(odd) .title_area::before {
  left: 0;
}
.list_interview_contents > *:nth-of-type(odd) .title_area::after {
  right: 0;
}
.list_interview_contents > *:nth-of-type(even) .img_area {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
.list_interview_contents > *:nth-of-type(even) .title_area {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
      -ms-flex-order: 0;
          order: 0;
  margin-right: -5%;
  text-align: right;
  padding-right: 7%;
}
.list_interview_contents > *:nth-of-type(even) .title_area::before {
  right: 0;
}
.list_interview_contents > *:nth-of-type(even) .title_area::after {
  left: 0;
}
.list_interview_contents .head_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 64px;
}
.list_interview_contents .img_area {
  width: 66.667%;
}
.list_interview_contents .title_area {
  padding-bottom: 0.75em;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: auto;
  margin-bottom: 7%;
  z-index: 1;
  position: relative;
}
.list_interview_contents .title_area::before, .list_interview_contents .title_area::after {
  content: "";
  height: 3px;
  position: absolute;
  bottom: 0;
}
.list_interview_contents .title_area::before {
  background-color: #b4b4b4;
  width: 100%;
}
.list_interview_contents .title_area::after {
  background-color: #01804f;
  width: 25%;
}
.list_interview_contents .title {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif, Arial;
  font-weight: 700;
}
.list_interview_contents .title_sub {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1em;
}
.list_interview_contents .text + .text {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .list_interview_contents > *:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .list_interview_contents > *:nth-of-type(odd) .img_area, .list_interview_contents > *:nth-of-type(even) .img_area {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .list_interview_contents > *:nth-of-type(odd) .title_area, .list_interview_contents > *:nth-of-type(even) .title_area {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin-left: 0%;
    margin-right: 0;
    text-align: left;
    padding-left: 0%;
    padding-right: 0;
  }
  .list_interview_contents > *:nth-of-type(odd) .title_area::before, .list_interview_contents > *:nth-of-type(even) .title_area::before {
    left: 0;
    right: auto;
  }
  .list_interview_contents > *:nth-of-type(odd) .title_area::after, .list_interview_contents > *:nth-of-type(even) .title_area::after {
    right: 0;
    left: auto;
  }
  .list_interview_contents .head_area {
    margin-bottom: 0;
  }
  .list_interview_contents .img_area {
    width: 100%;
  }
  .list_interview_contents .img_area img {
    margin-left: auto;
    margin-right: auto;
  }
  .list_interview_contents .title_area {
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    padding-bottom: 0.5em;
    margin-top: 1em;
    margin-bottom: 24px;
  }
  .list_interview_contents .title {
    font-size: 1.25rem;
  }
}

/*==========
採用情報
==========*/
#recruit_contents .box:not(:last-of-type) {
  margin-bottom: 120px;
}
@media screen and (max-width: 959px) {
  #recruit_contents .box:not(:last-of-type) {
    margin-bottom: 40px;
  }
}

/*==========
福利厚生
==========*/
.list_welfare {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px;
}
.list_welfare > * {
  width: calc((100% - 40px) / 2);
  border: 1px solid #c7c7c7;
  padding: 24px 32px;
  min-height: 255px;
}
.list_welfare .title_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1em;
}
.list_welfare .title {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Noto Sans JP", sans-serif, Arial;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #01804f;
  margin-left: 0.5em;
  line-height: 1.25;
}
.list_welfare .title.small {
  font-size: 1.5rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
.list_welfare .text {
  font-size: 0.875rem;
  line-height: 1.75;
}
.list_welfare .text + .text {
  margin-top: 1.75em;
}
.list_welfare .icon {
  width: 32px;
}
.list_welfare .icon img {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 959px) {
  .list_welfare {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
  }
  .list_welfare > * {
    width: 100%;
    max-width: 320px;
    min-height: auto;
    padding: 24px;
  }
  .list_welfare .title {
    font-size: 1.25rem;
  }
  .list_welfare .title.small {
    font-size: 1.25rem;
  }
  .list_welfare .text + .text {
    margin-top: 1.5em;
  }
  .list_welfare .icon {
    width: 1.25em;
    margin-bottom: 0.25em;
  }
}

/*==========
アクセス
==========*/
.list_access > *:not(:last-of-type) {
  margin-bottom: 64px;
}
.list_access .map_area {
  position: relative;
  width: 100%;
  padding-top: 50%;
}
.list_access .map_area iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.list_access .head_area .title {
  font-family: "Noto Sans JP", sans-serif, Arial;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1em;
}
.list_access .head_area .type {
  font-family: "Noto Sans JP", sans-serif, Arial;
  font-weight: 700;
  margin-top: 0.5em;
}
.list_access .head_area .text {
  line-height: 2;
  margin-top: 0.5em;
}
.list_access .body_area {
  margin-top: 32px;
  border-top: 1px solid #c7c7c7;
  padding-top: 40px;
}
.list_access .body_area .title {
  font-weight: 700;
  margin-bottom: 0.5em;
}
.list_access .body_area .train,
.list_access .body_area .car {
  position: relative;
  padding-left: 3em;
}
.list_access .body_area .train::after,
.list_access .body_area .car::after {
  content: "";
  width: 1.75em;
  height: 1.75em;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.list_access .body_area .train::after {
  background-image: url("../img/common/icon_train.svg");
}
.list_access .body_area .car::after {
  background-image: url("../img/common/icon_car.svg");
}
.list_access .body_area .text {
  line-height: 2;
}
.list_access .body_area .text + .title {
  margin-top: 1.5em;
}
.list_access .body_area .text + .text {
  margin-top: 1em;
}
@media screen and (max-width: 959px) {
  .list_access > *:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .list_access .head_area .title {
    font-size: 1.125rem;
  }
  .list_access .body_area {
    margin-top: 24px;
    padding-top: 24px;
  }
}