@charset "UTF-8";
/* **************************************************************************** */
/* 共通
/* **************************************************************************** */
@media (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

.pc_only {
  display: none;
}
@media (min-width: 768px) {
  .pc_only {
    display: block;
  }
}

.section_header {
  position: relative;
  padding: 0 5vw;
  text-align: left;
  max-width: calc(1040px + 10vw);
  margin-inline: auto;
}
.section_header:before {
  content: "";
  position: absolute;
  top: 15px;
  left: -5vw;
  width: 30vw;
  height: 5vw;
  background-color: #ED5151;
  z-index: -1;
}
@media (min-width: 768px) {
  .section_header:before {
    top: 30px;
    width: calc(130px + 5vw);
    height: 34px;
  }
}
@media (min-width: 1280px) {
  .section_header {
    padding: 0;
    max-width: 1040px;
  }
  .section_header:before {
    left: calc((100vw - 1040px) / 2 * -1);
    width: calc((100vw - 1040px) / 2 + 80px);
  }
}
@media (min-width: 1440px) {
  .section_header {
    margin-top: 100px;
  }
  .section_header:before {
    left: calc((100vw - 1040px) / 2 * -1);
    height: 34px;
  }
}

.section_title_jp {
  display: block;
  margin-top: 15px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .section_title_jp {
    margin-top: 20px;
  }
}
@media (min-width: 1440px) {
  .section_title_jp {
    font-size: 18px;
    margin-top: 30px;
  }
}

/* **************************************************************************** */
/* HEADER
/* **************************************************************************** */
.hiroshima_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding: 0 50px 0 10px;
}
@media (min-width: 736px) {
  .hiroshima_header {
    height: 60px;
  }
}
@media (min-width: 1024px) {
  .hiroshima_header {
    height: 76px;
    padding: 0 64px 0 20px;
  }
}
@media (min-width: 1440px) {
  .hiroshima_header {
    padding: 0 64px 0 90px;
  }
}
.hiroshima_header #branding .site-title {
  margin: 0;
  padding: 0;
  line-height: 1;
  width: 180px;
}
@media (min-width: 736px) {
  .hiroshima_header #branding .site-title {
    width: 260px;
  }
}
@media (min-width: 1280px) {
  .hiroshima_header #branding .site-title {
    width: 300px;
  }
}
.hiroshima_header #hiroshima_nav nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hiroshima_header .text_nav {
  display: none;
}
@media (min-width: 1024px) {
  .hiroshima_header .text_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    padding-right: 20px;
  }
  .hiroshima_header .text_nav a:hover {
    color: #ED5151;
  }
}
@media (min-width: 1280px) {
  .hiroshima_header .text_nav {
    gap: 40px;
    font-size: 14px;
    padding-right: 40px;
  }
}
.hiroshima_header .button_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hiroshima_header .recruit_btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #6BF759;
  color: #333232;
  width: 16vw;
  max-width: 168px;
  height: 48px;
}
.hiroshima_header .recruit_btn img {
  height: 1.8666666667vw;
}
@media (min-width: 736px) {
  .hiroshima_header .recruit_btn a {
    height: 60px;
  }
}
@media (min-width: 1024px) {
  .hiroshima_header .recruit_btn a {
    position: relative;
    height: 76px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .hiroshima_header .recruit_btn a:after {
    position: absolute;
    top: 50%;
    right: 10px;
    content: "";
    margin: -4px 0 0;
    width: 7px;
    height: 7px;
    border: solid #333232;
    border-width: 1px 1px 0 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .hiroshima_header .recruit_btn a:hover {
    background-color: #19E800;
  }
  .hiroshima_header .recruit_btn a:hover:after {
    right: 5px;
  }
}
.hiroshima_header .company_btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #FA7402;
  color: #333232;
  width: 16vw;
  max-width: 168px;
  height: 48px;
}
.hiroshima_header .company_btn img {
  height: 1.8666666667vw;
}
@media (min-width: 736px) {
  .hiroshima_header .company_btn a {
    height: 60px;
  }
}
@media (min-width: 1024px) {
  .hiroshima_header .company_btn a {
    position: relative;
    height: 76px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .hiroshima_header .company_btn a:after {
    position: absolute;
    top: 50%;
    right: 10px;
    content: "";
    margin: -4px 0 0;
    width: 7px;
    height: 7px;
    border: solid #333232;
    border-width: 1px 1px 0 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .hiroshima_header .company_btn a:hover {
    background-color: #FF9D00;
  }
  .hiroshima_header .company_btn a:hover:after {
    right: 5px;
  }
}

/* **************************************************************************** */
/* FV
/* **************************************************************************** */
.fv_sp {
  position: relative;
  padding-top: 48px;
}
@media (min-width: 736px) {
  .fv_sp {
    padding-top: 60px;
  }
}
@media (min-width: 768px) {
  .fv_sp {
    display: none;
  }
}

.fv_pc {
  position: relative;
  padding-top: 60px;
}
@media (max-width: 767px) {
  .fv_pc {
    display: none;
  }
}
@media (min-width: 1024px) {
  .fv_pc {
    padding-top: 76px;
  }
}
@media (min-width: 1440px) {
  .fv_pc {
    height: calc(100vh - 83px);
    overflow: hidden;
  }
}

.fv_img_area img {
  width: 100%;
}
@media (min-width: 1440px) {
  .fv_img_area {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .fv_img_area img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    display: block;
  }
}

.fv_text_area {
  padding: 60px 30px;
  background-color: #333232;
}
@media (min-width: 768px) {
  .fv_text_area {
    position: absolute;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 62.5vw;
    height: 44.4444444444vw;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    padding: 20px;
    background-color: rgba(50, 50, 50, 0.7);
    text-align: left;
  }
}
@media (min-width: 1440px) {
  .fv_text_area {
    width: 900px;
    height: 640px;
  }
}

.fv_text {
  color: #fff;
  font-size: clamp(16px, 4.27vw, 22px);
  font-weight: 500;
  line-height: 1.8;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .fv_text {
    font-size: 15px;
  }
}
@media (min-width: 1024px) {
  .fv_text {
    font-size: clamp(18px, 1.8vw, 22px);
  }
}

@media (min-width: 768px) {
  .fv_title {
    width: 39.0625vw;
    text-align: left;
    margin-top: 10px;
  }
}
@media (min-width: 1024px) {
  .fv_title {
    width: 43.9453125vw;
  }
}
@media (min-width: 1440px) {
  .fv_title {
    width: 700px;
    margin-top: 50px;
  }
}

.fv_decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #ED5151;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 29.8666666667vw;
  height: 18.1333333333vw;
}
@media (min-width: 768px) {
  .fv_decoration {
    width: 155px;
    height: 94px;
  }
}

.fv_btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #C90000;
  z-index: 100;
}

.fv_btn_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 16px;
  width: 100%;
  height: 100%;
  text-align: center;
  border: 2px solid #C90000;
}
.fv_btn_link svg {
  width: 80px;
}
@media (min-width: 1024px) {
  .fv_btn_link {
    padding: 30px;
  }
  .fv_btn_link svg {
    width: 110px;
  }
}
.fv_btn_link:hover {
  background-color: #fff;
}
.fv_btn_link:hover svg path {
  fill: #C90000;
}
.fv_btn_link:hover .fv_btn_text {
  color: #C90000;
}

.fv_btn_text {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .fv_btn_text {
    font-size: 18px;
  }
}

/* **************************************************************************** */
/* INTRO
/* **************************************************************************** */
#intro {
  position: relative;
}
#intro .section_inner {
  padding: 50px 40px;
}

.intro_decoration_left {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ED5151;
  clip-path: polygon(100% 0, 0 0, 0 100%);
  width: 29.8666666667vw;
  height: 18.1333333333vw;
}
@media (min-width: 768px) {
  .intro_decoration_left {
    width: 155px;
    height: 94px;
  }
}

.intro_decoration_right {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #333232;
  clip-path: polygon(100% 100%, 100% 0, 0 0);
  width: 29.8666666667vw;
  height: 18.1333333333vw;
}
@media (min-width: 768px) {
  .intro_decoration_right {
    width: 155px;
    height: 94px;
  }
}

.intro_title {
  width: 50px;
  margin-inline: auto;
  line-height: 1;
}

.intro_title_bar {
  display: block;
  background-color: #333232;
  width: 32px;
  height: 1px;
  margin-top: 18px;
  margin-inline: auto;
}

.intro_text {
  margin-top: 20px;
  font-size: clamp(18px, 4.8vw, 26px);
  line-height: 1.4;
}
.intro_text .highlight {
  background-color: #ED5151;
  color: #fff;
  padding: 8px;
  line-height: 2.4;
}

/* **************************************************************************** */
/* IN NUMBERS
/* **************************************************************************** */
#numbers .section_title {
  line-height: 1;
}
#numbers .section_title img {
  width: 65.0666666667vw;
  max-width: 488px;
}

.numbers_contents {
  margin-top: 80px;
  padding-top: 80px;
  padding-bottom: 100px;
  background-image: url(../img/hiroshima/numbers_bg_sp.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .numbers_contents {
    background-image: url(../img/hiroshima/numbers_bg_pc.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media (min-width: 1440px) {
  .numbers_contents {
    margin-top: 120px;
    padding-top: 120px;
  }
}

.numbers_contents_inner {
  padding-inline: 5vw;
  max-width: calc(1040px + 10vw);
  margin-inline: auto;
}

.numbers_card_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  max-width: 400px;
  margin-inline: auto;
  margin-top: -130px;
}
@media (min-width: 768px) {
  .numbers_card_wrapper {
    max-width: 1040px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .numbers_card_wrapper {
    margin-top: -180px;
  }
}

@media (min-width: 768px) {
  .numbers_card {
    width: calc((100% - 40px) / 3);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.numbers_date {
  color: #fff;
  font-size: 14px;
  text-align: right;
  margin-top: 20px;
}

/* **************************************************************************** */
/* JOBS
/* **************************************************************************** */
#jobs {
  padding-top: 60px;
}
#jobs .section_title {
  line-height: 1;
}
#jobs .section_title img {
  width: 26.6666666667vw;
  max-width: 200px;
}

.jobs_contents {
  margin-top: 30px;
  padding: 0 5vw;
}
@media (min-width: 1440px) {
  .jobs_contents {
    margin-top: 60px;
    padding: 0;
  }
}

.jobs_contents_inner {
  max-width: 1040px;
  margin-inline: auto;
}

.jobs_block {
  margin-top: 30px;
}
@media (min-width: 1440px) {
  .jobs_block {
    margin-top: 100px;
  }
}
@media (min-width: 1024px) {
  .jobs_block:nth-child(even) .jobs_block_flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .jobs_block:nth-child(even) .jobs_block_flex .jobs_image {
    margin-right: 0;
    margin-left: -5vw;
  }
}
@media (min-width: 1024px) and (min-width: 1150px) {
  .jobs_block:nth-child(even) .jobs_block_flex {
    margin-left: calc((100vw - 1040px) / 2 * -1);
  }
}

.jobs_title_en {
  text-align: left;
}

.jobs_block_flex {
  margin-top: -2px;
}
@media (min-width: 1024px) {
  .jobs_block_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 1024px) {
  .jobs_block_content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 520px;
  }
}

.jobs_title_jp {
  padding: 20px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  color: #fff;
  background-color: #ED5151;
}
@media (min-width: 1440px) {
  .jobs_title_jp {
    padding: 30px;
    font-size: 3rem;
  }
}

.jobs_text_area {
  padding: 20px;
  background-color: #f2f2f2;
  border-left: 2px solid #ED5151;
  text-align: left;
}
@media (min-width: 1440px) {
  .jobs_text_area {
    padding: 50px;
  }
}

.jobs_heading {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
}
@media (min-width: 1440px) {
  .jobs_heading {
    font-size: 2.8rem;
  }
}

.jobs_text {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 15px;
}

@media (min-width: 1024px) {
  .jobs_image {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: -5vw;
  }
}
@media (min-width: 1150px) {
  .jobs_image {
    margin-right: calc((100vw - 1040px) / 2 * -1);
  }
}

/* **************************************************************************** */
/* EMPLOYEE BENEFITS
/* **************************************************************************** */
#employee_benefits {
  padding-top: 60px;
}
#employee_benefits .section_title img {
  width: 53.3333333333vw;
}
@media (min-width: 768px) {
  #employee_benefits .section_title img {
    width: 780px;
  }
}

.employee_benefits_contents {
  padding-top: 40px;
}

.employee_benefits_contents_inner {
  padding-inline: 5vw;
}

.employee_benefits_block_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1040px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .employee_benefits_block_wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.employee_benefits_block {
  text-align: left;
  max-width: 460px;
}
@media (min-width: 768px) {
  .employee_benefits_block {
    width: calc((100% - 50px) / 2);
  }
}

.employee_benefits_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (min-width: 1440px) {
  .employee_benefits_header {
    gap: 20px;
  }
}

.employee_benefits_icon {
  width: 100px;
}
@media (min-width: 1440px) {
  .employee_benefits_icon {
    width: 140px;
  }
}

.employee_benefits_title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
}

.employee_benefits_body {
  padding-top: 20px;
}

.employee_benefits_text {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.8;
}

/* **************************************************************************** */
/* ABOUT
/* **************************************************************************** */
#about {
  padding-top: 60px;
}
#about .section_title {
  line-height: 1;
}
#about .section_title img {
  width: 37.3333333333vw;
  max-width: 280px;
}

.about_contents {
  background-color: #f2f2f2;
  margin-top: 80px;
  padding-top: 80px;
  margin-bottom: 60px;
  padding-bottom: 60px;
}
@media (min-width: 1024px) {
  .about_contents {
    margin-top: 180px;
    padding-top: 180px;
    margin-bottom: 160px;
    padding-bottom: 160px;
  }
}

.about_contents_inner {
  padding-inline: 5vw;
  margin-top: -120px;
  margin-bottom: -120px;
}
@media (min-width: 1024px) {
  .about_contents_inner {
    margin-top: -280px;
    margin-bottom: -300px;
  }
}

.about_block {
  max-width: 1040px;
  margin-inline: auto;
}
.about_block:nth-child(n+2) {
  margin-top: 70px;
}

@media (min-width: 768px) {
  .about_image {
    width: 60%;
    margin-left: auto;
  }
}

.about_text_area {
  background-color: #fff;
  padding-block: 30px;
  padding-inline: 5vw;
}
@media (min-width: 768px) {
  .about_text_area {
    margin-top: -60px;
  }
}

.about_number {
  height: 80px;
  text-align: left;
}
.about_number img {
  height: 100%;
}

.about_heading {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 20px;
}

.about_text {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.8;
  margin-top: 20px;
  text-align: left;
}

/* **************************************************************************** */
/* OFFICE PROFILE
/* **************************************************************************** */
#office {
  padding-top: 60px;
}
#office .section_title {
  line-height: 1;
}
#office .section_title img {
  width: 84.2666666667vw;
  max-width: 474px;
}

.office_contents {
  padding-top: 30px;
}
@media (min-width: 1440px) {
  .office_contents {
    padding-top: 60px;
  }
}

.office_contents_inner {
  padding-inline: 5vw;
}

.office_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  max-width: 1040px;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .office_block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (min-width: 1440px) {
  .office_image {
    width: 504px;
  }
}

.office_table th {
  background-color: #E6E6E6;
  width: 30%;
  font-size: 1.6rem;
}
.office_table td {
  background-color: #f2f2f2;
  width: 72%;
  padding: 12px;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: left;
}
@media (min-width: 1440px) {
  .office_table {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.office_map {
  margin-top: 20px;
}

/* **************************************************************************** */
/* EXTRANAV
/* **************************************************************************** */
.extranav .btn a:after {
  border-color: #ED5151;
}

/* **************************************************************************** */
/* PAGE TOP
/* **************************************************************************** */
#pagetop.fixed a {
  background-color: rgb(237, 81, 81);
  bottom: 59px;
}
@media (min-width: 1024px) {
  #pagetop.fixed a {
    bottom: 87px;
  }
}
#pagetop.fixed a:hover {
  background-color: rgba(237, 81, 81, 0.7);
}

/* **************************************************************************** */
/* FOOTER
/* **************************************************************************** */
.recruit #footerwrap {
  border-top: 2px solid #ED5151;
}