@charset "UTF-8";

:root {
  --big_width: 1200px;
  --medium_width: 1050px;
  --min_width: 900px;
  --english-font: 'Cormorant Garamond', serif;
  --mincho-font: 'Zen Old Mincho', serif;
  --common-font: 'Noto Sans JP', sans-serif;
  --recruit_color: #E10112;
  --main_green_color: #387942;
  --header_height: 8rem;
}



html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  letter-spacing: 1px;
  line-height: 1.5;
  font-family: var(--common-font);
  font-size: 300;
  /* 100,300,500,700 */
  color: #333;
}

body:before {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  display: block;
  content: "";
  background-color: #fff;
  transition: all cubic-bezier(0.3, 1, 0.1, 1) 1s;
  z-index: 10000;
}

body.is-loaded:before {
  width: 0;
}

.font_pack {
  /* 文字詰めしたいやつに適用して。ページタイトルとかにやってもいいかも */
  font-feature-settings: "palt";
}

.center_big_item {
  max-width: var(--big_width);
  width: 85%;
  margin: 0 auto;
}

.center_mid_item {
  max-width: var(--medium_width);
  width: 95%;
  margin: 0 auto;
}

.center_min_item {
  width: 95%;
  margin: 0 auto;
  max-width: var(--min_width);
}

section {
  margin: 20rem 0;
}

.from_tb,
.from--tb {
  display: none;
}

.from_sp,
.from--sp {
  display: none;
}

.indention p+p {
  margin-top: 1.5em;
}

.indention span {
  display: inline-block;
}

/*===============header===============*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
  background-color: #fff;
  font-size: clamp(0rem, 1.25vw, 1.4rem);
}

.home header,
.recruit header {
  border-bottom: 0px solid #EDEDED;
  background-color: transparent;
  transition: .4s ease;
}

.home header.is_scrolled,
.recruit header.is_scrolled {
  background-color: #fff;
}

header:hover {
  background-color: #fff;
}

.wrap_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header_height);
  width: 97.5%;
  margin: 0 auto;
}

.header_logo {
  width: 15%;
  max-width: 27rem;
}

.header_logo a {
  display: flex;
  transition: .2s;
  width: 100%;
}

.header_logo a:hover {
  opacity: 0.5;
}

.header_logo a picture {
  width: 100%;
}

.header_logo a img {
  width: 100%;
}

.header_nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2em;
}

.gnav {
  height: 100%;
  display: flex;
  align-items: center;
}

.gnav_menu {
  display: flex;
  height: 100%;
}


.menu_item {
  display: flex;
}

.header_nav_current .main_menu_item::after {
  transform: scale(1, 1);
}

.mega_menu_item {
  position: relative;
}

.mega_menu_item .main_menu_item {
  display: flex;
  align-items: center;
}

.sub_menu_btn_pc {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
}

.main_menu_item {
  padding: 0.5em 1em;
  transition: .2s;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.main_menu_item:hover {
  color: var(--main_green_color);
}

.main_menu_item::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: var(--main_green_color);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s ease;
}

.main_menu_item:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.main_menu_item_en {
  display: none;
}

.sub_menu_list_wrap {
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  position: absolute;
  top: var(--header_height);
  left: 50%;
  transform: translateX(-50%);
  transition: .2s;
  width: 90%;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 7px 22px rgb(0 0 0 / 11%);
}

.menu_item:hover .sub_menu_list_wrap {
  opacity: 1;
  visibility: visible;
}

.sub_menu_list_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 3em 2em 4em;
  max-width: 140rem;
  width: 90%;
  margin: 0 auto;
}

.sub_menu_list {
  flex-basis: 75%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1em;
}

.sub_menu_list li {
  flex-basis: 47.5%;
  display: flex;
  align-items: center;
}

.sub_menu_item {
  width: 100%;
  position: relative;
  padding: 1em;
  transition: .2s;
}

.sub_menu_item:hover,
.current_menu_item_all:hover {
  background-color: #EFEFEF;
}

.sub_menu_item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 1.25em;
  height: 1.25em;
  background-image: url(../img/common/header_sub_menu_arrow_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.sub_menu_item::before {
  content: '';
  position: absolute;
  bottom: -0.5em;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e3e3e3;
}

.menu_item+.menu_item {
  margin-left: 1em;
}

.sub_menu_list_tmb {
  flex-basis: 22%;
}

.current_menu_item_all {
  width: 100%;
  border-top: 1px solid #e3e3e3;
  display: flex;
  justify-content: center;
  padding: 1.5em 0;
  transition: .2s;
}

.sub_menu_list_tmb img {
  width: 100%;
}

.header_sp_nav {
  display: none;
}

.nav_contact_wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1em;
}

.nav_contact_wrapper a {
  display: flex;
  align-items: center;
  transition: .2s;
}

.nav_contact_wrapper a:hover {
  opacity: 0.75;
}

.nav_contact_access {
  width: 2.5em;
  height: 2.5em;
  background-image: url(../img/common/header_access_icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--main_green_color);
  background-size: 1.25em;
  border-radius: 50%;
}

.nav_contact {
  padding: 0.5em 1em;
  border-radius: 5rem;
  color: #fff;
  column-gap: 5px;
  background-color: var(--main_green_color);
}

.nav_contact_icon {
  height: 1.25em;
}

.gnav_other_menu {
  display: none;
}

/*===============/header===============*/
/*===============main===============*/

main {
  margin-top: var(--header_height);
}

.home main,
.recruit main,
.interview main {
  margin-top: 0;
}

/*=====common=====*/

.page_header.fv_big_header {
  margin-top: 0;
  margin-bottom: var(--header_height);
  height: calc(100vh - var(--header_height));
  display: flex;
  flex-direction: column;
}

.page_header.fv_normal_header {
  display: flex;
  flex-direction: column;
}

.page_header.fv_big_header+section {
  margin-top: var(--header_height);
}

.page_header.fv_big_header .page_header_img {
  width: 100%;
  height: 80%;
}

.page_header.fv_normal_header .page_header_img {
  width: 100%;
  margin-bottom: 2em;
}

.page_header.fv_big_header .page_header_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page_header.fv_normal_header .page_header_img img {
  width: 100%;
}

.page_header.fv_big_header .page_header_text {
  height: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  justify-content: center;
  text-align: center;
  font-size: clamp(2rem, 3vw, 3.6rem);
}

.page_header.fv_normal_header .page_header_text {
  justify-content: center;
  text-align: center;
  font-size: clamp(2rem, 3vw, 3.6rem);
  margin-bottom: 1em;
}

.page_header_content_title {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.75;
}

.page_header_content_text {
  font-size: 1.4rem;
}

.page_header_content_text p+p {
  margin-top: 1.5em;
}

.section_header {
  text-align: center;
  color: #ed1c24;
  border-bottom: 2px solid #ed1c24;
  font-size: clamp(2rem, 2vw, 2.4rem);
  padding-bottom: 0.5em;
  margin-bottom: 1.5em;
}

/*=====/common=====*/

.scroll_target {
  position: relative;
  z-index: 2;
}

.scroll_target::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1, 1);
  transition: all 0.8s cubic-bezier(.02, .99, .75, .99);
  transform-origin: right top;
}

.scroll_target.right::before {
  transform-origin: left top;
}

.scroll_target.show::before {
  transform-origin: right top;
  transform: scale(0, 1);
}

.scroll_target.right.show::before {
  transform-origin: left top;
  transform: scale(0, 1);
}


/*=====top=====*/

.section_top_fv {
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  height: calc(var(--vh) * 100);
  display: flex;
  flex-direction: column;
}

.top_slider_wrap {
  height: calc(var(--vh) * 100);
}

.top_slider_list {
  height: 100%;
}

.top_slider_list .swiper-wrapper .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.top_slider_item_text {
  color: #fff;
  position: absolute;
  left: 1em;
  bottom: 1em;
}

.top_slider_item_text h2 {
  font-weight: 400;
  font-size: 0.8em;
}

.top_slider_list .swiper-wrapper .swiper-slide.swiper-slide-active img,
.top_slider_list .swiper-wrapper .swiper-slide.swiper-slide-duplicate-active img,
.top_slider_list .swiper-wrapper .swiper-slide.swiper-slide-prev img {
  animation: top_slider_zoom 8s 0s forwards linear;
}

@keyframes top_slider_zoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.top_intro_section {
  margin-top: 0;
  margin-bottom: 12rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top_intro_img {
  flex-basis: 22.5%;
}

.top_intro_img img {
  width: 100%;
}

.top_intro_content {
  flex-basis: 55%;
}

.top_intro_content_title {
  text-align: center;
  font-size: clamp(2.4rem, 2.5vw, 5rem);
  font-family: var(--mincho-font);
}

.top_intro_content_title p {
  display: inline-block;
}

.top_intro_content_description {
  max-width: 90rem;
  width: 90%;
  margin: 0 auto;
  margin-top: 2em;
}

.top_about_slider_list>.swiper-wrapper {
  transition-timing-function: linear !important;
}

.top_about_section {
  position: relative;
  margin-top: 12rem;
  padding-bottom: 45rem;
}

.top_about_slide_wrap {
  position: relative;
}

.top_about_slide_wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 80%;
  height: calc(100% + 15em);
  background-color: #EFF0F2;
}

.top_about_slider_list .swiper-wrapper {
  gap: 2%;
}

.top_about_slider_list .swiper-slide {
  width: auto;
}

.top_about_description_text p {
  display: inline-block;
}

.top_about_content {
  background-color: #fff;
  width: 48.5%;
  padding: 5em 5em 0 5em;
  z-index: 2;
  position: absolute;
  top: 40%;
  right: 2.5%;
}

.section_title_wrap {
  margin-bottom: 3em;
}

.target {
  z-index: 2;
}

.target.right {
  opacity: 0;
  transform: translateX(10%);
}

.target.right.show {
  animation: slide_fade_in_right 0.5s 0s ease-in-out forwards;
}


@keyframes slide_fade_in_right {
  0% {
    opacity: 0;
    transform: translateX(10%);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

.target.left {
  opacity: 0;
  transform: translateX(-10%);
}

.target.left.show {
  animation: slide_fade_in_left 0.5s 0s ease-in-out forwards;
}

@keyframes slide_fade_in_left {
  0% {
    opacity: 0;
    transform: translateX(-10%);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

.target.bottom {
  opacity: 0;
  transform: translateY(20%);
}

.target.bottom.show {
  animation: slide_fade_in_bottom 0.5s 0s ease-in-out forwards;
}

@keyframes slide_fade_in_bottom {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}


.section_title {
  font-family: var(--english-font);
  font-size: 5.8rem;
  line-height: 1;
  position: relative;
}

.left_line_deco_title::after {
  content: '';
  font-size: initial;
  position: absolute;
  top: 50%;
  left: -7.5em;
  width: 5em;
  height: 1px;
  background-color: #333;
}

.section_sub_title {
  font-size: 1.3rem;
  color: var(--main_green_color);
}

.description_text {
  font-size: 1.4rem;
  line-height: 2;
}

.to_page_btn {
  display: inline-flex;
  align-items: center;
  column-gap: 1em;
  margin-top: 3em;
  background-color: var(--main_green_color);
  color: #fff;
  font-size: 1.3rem;
  padding: 1em 3em;
  position: relative;
  transition: .2s;
  font-weight: 300;
}

.to_page_btn:hover {
  background-color: var(--recruit_color);
}

.to_page_btn::after {
  content: '';
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background-image: url(../img/common/to_page_btn.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.center_title {
  text-align: center;
}

.top_works_list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.top_works_item {
  position: relative;
  flex-basis: calc(100% / 3);
  flex-grow: 1;
}

.top_works_item:nth-child(1),
.top_works_item:nth-child(2) {
  flex-basis: 50%;
}

.top_works_item_img {
  width: 100%;
}

.top_works_item_title_wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 65%);
  width: 100%;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5em 0;
  transition: .2s;
}

.top_works_item_title_wrap::after {
  content: '';
  width: 0.25em;
  height: 0.25em;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(45deg);
  transition: .2s;
  flex-shrink: 0;
}

.top_works_item:hover .top_works_item_title_wrap {
  height: 100%;
}

.top_works_item:hover .top_works_item_title_wrap::after {
  opacity: 0;
}

.top_works_item_title {
  font-family: var(--mincho-font);
  font-size: clamp(2rem, 2vw, 4rem);
}

.top_works_item_sub_title {
  font-family: var(--english-font);
  font-size: 1.2em;
}


.top_recruit_section {
  display: flex;
  justify-content: space-between;
  gap: 5em;
  position: relative;
}

.top_recruit_section::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 65%;
  bottom: 0;
  left: 0;
  background-color: #EFEFEF;
  z-index: -1;
}

.top_recruit_section_title::after {
  content: '';
  font-size: initial;
  position: absolute;
  right: calc(100% + 5em);
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: #333;
}

.top_recruit_catch {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  font-size: 13vw;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  font-family: var(--english-font);
}

.top_recruit_content {
  flex-basis: 45%;
  padding: 15rem 0 20rem 12.5%;
}

.top_recruit_img {
  width: 47%;
  max-width: 800px;
  height: 100%;
  object-fit: cover;
}

.top_recruit_img img {
  width: 100%;
}

.top_recruit_description_title {
  font-size: 1.5em;
  margin-bottom: 1.5em;
}

.top_recruit_description_text p {
  display: inline-block;
}

.top_news_header_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 3em;
}

.top_news_header_wrap .section_title_wrap {
  margin: 0 auto;
}

.top_news_header_btn {
  position: absolute;
  right: 0;
  font-size: 1.4rem;
  gap: 0.5em;
  display: flex;
  align-items: center;
  transition: .2s;
}

.top_news_header_btn:hover {
  color: var(--main_green_color);
}

.top_news_header_btn::after {
  content: '';
  display: inline-block;
  width: 0.35em;
  height: 0.35em;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
}

.top_news_list {
  display: flex;
  justify-content: space-between;
  /* justify-content: space-evenly; */
}

.top_news_item {
  flex-basis: 27.5%;
  display: flex;
  font-size: 1.4rem;
  position: relative;
}

/* .top_news_list::after {
  content: '';
  width: 27.5%;
} */

.top_news_item+.top_news_item::before {
  content: '';
  position: absolute;
  /* left: -8.75%; */
  left: -16%;
  height: 100%;
  width: 1px;
  background-color: #333;
}

.top_news_item a {
  width: 100%;
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  transition: .2s;
}

.top_news_item a:hover {
  color: var(--main_green_color);
}

.news_item_time {
  color: var(--main_green_color);
}

.top_wnav_section {
  width: 100%;
  height: 50rem;
  position: relative;
  margin-bottom: 0;
}

.top_wnav_movie {
  height: 100%;
  width: 100%;
  position: relative;
}

.top_wnav_movie::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--main_green_color);
  mix-blend-mode: multiply;
}

.top_wnav_movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_wnav_content {
  width: 90%;
  position: absolute;
  bottom: -3em;
  left: 50%;
  transform: translate(-50%, -0%);
  z-index: 1;
  display: flex;
  justify-content: center;
  column-gap: 5rem;
  height: 40rem;
}

.top_wnav_content_item {
  flex-basis: 45%;
  max-width: 70rem;
  height: 100%;
  position: relative;
  overflow-y: hidden;
}

.top_wnav_content_item .top_wnav_content_item_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_wnav_content_item:hover .top_wnav_content_item_detail {
  top: 0;
}

.top_wnav_content_item_detail {
  position: absolute;
  top: 60%;
  width: 100%;
  height: 100%;
  transition: .2s;
}

.top_wnav_content_item_detail .section_title_wrap {
  background-color: rgba(255, 255, 255, 65%);
  height: 10em;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1em;
  transform: .2s;
}

.top_wnav_content_item:hover .top_wnav_content_item_detail .section_title_wrap {
  height: calc(100% - 19rem);
}

.top_wnav_content_item_nav {
  height: 190px;
  background-color: #efefef;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
}

.wnav_nav_item {
  flex-basis: 50%;
  padding: 0 2em;
  height: 6rem;
  display: flex;
  align-items: center;
  transition: .2s;
}

.wnav_nav_item:hover {
  background-color: #e3e3e3;
}

.wnav_nav_item_normal::after {
  content: '';
  width: 0.35em;
  height: 0.35em;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  margin-left: auto;
}

.h_70 {
  height: 7rem;
  flex-basis: 100%;
  border-bottom: 1px solid #e3e3e3;
  justify-content: center;
}

.h_70::after {
  content: '';
  position: absolute;
  right: 1.5em;
  width: 1.2em;
  height: 1.2em;
  background-image: url(../img/common/arrow_icon_green.svg);
}


.h_95 {
  height: 9.5rem;
  flex-basis: 100%;
  justify-content: center;
  gap: 1em;
}

.top_wnav_tell_btn {
  display: flex;
  flex-direction: column;
  position: relative;
}

.top_wnav_tell_img {
  height: 1.5em;
}

.top_wnav_tell_img_note {
  font-size: 1rem;
  position: absolute;
  bottom: 1em;
}

.top_wnav_mail_icon {
  height: 2rem;
}

.h_95.to_contact_page {
  border-top: 1px solid #e3e3e3;
}

.h_95.to_contact_page::after {
  content: '';
  position: absolute;
  right: 1.5em;
  width: 1.2em;
  height: 1.2em;
  background-image: url(../img/common/arrow_icon_green.svg);
}

/*=====/top=====*/
/*=====strength=====*/

.page_header_section {
  margin: 10rem 0;
}

.page_header_section+.min_m_section {
  margin-top: 10rem;
}

.page_header_title_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--main_green_color);
  position: relative;
  padding-bottom: 5em;
  background-color: #fff;
}

.page_header_title {
  font-size: 3.4rem;
}

.page_header_sub_title {
  font-size: 1.2rem;
  z-index: 3;
}

.page_header_title_big {
  font-family: var(--english-font);
  font-size: 20rem;
  color: #ededed;
  line-height: 1;
  position: absolute;
  bottom: -4rem;
  z-index: 1;
  mix-blend-mode: luminosity;
}

.page_header_img_wrap {
  height: 25rem;
}

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


.strength_list_catch {
  font-size: 3.6rem;
  font-family: var(--mincho-font);
  text-align: center;
}

.strength_list_item {
  margin-top: 10em;
  display: flex;
  justify-content: space-between;
  padding-bottom: 10em;
  position: relative;
}

.strength_list_item::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 85%;
  height: 70%;
  background-color: #eeeeee;
}

.strength_list_item:nth-of-type(even)::after {
  left: 0;
}

.strength_list_item_big_text {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  font-size: 12vw;
  font-family: var(--english-font);
  color: #fff;
}

.strength_list_item:nth-of-type(even) .strength_list_item_big_text {
  left: 0;
}

.strength_list_item .strength_list_item_img {
  width: 47.5%;
  max-height: 90rem;
  height: auto;
  object-fit: cover;
}

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

.strength_list_item_content {
  flex-basis: 45%;
  padding: 10% 12.5% 0 0;
  display: flex;
  flex-direction: column;
  gap: 3em;
}

.strength_list_item:nth-of-type(even) .strength_list_item_content {
  padding: 10% 0 0 12.5%;
}

.strength_list_item_title {
  font-size: 3rem;
  position: relative;
}

.strength_list_item_title::before {
  content: '';
  position: absolute;
  width: 30%;
  height: 1px;
  background-color: #333;
  top: 50%;
  right: 109%;
  z-index: 3;
}

.strength_list_item_sub_title {
  font-size: 1.2rem;
  color: var(--main_green_color);
}

.strength_list_item_ctach {
  font-size: 1.25em;
}

.under_deco_line {
  position: relative;
  z-index: 1;
}

.under_deco_line::after {
  content: '';
  position: absolute;
  top: calc(100% + 2em);
  z-index: 1;
  height: 5em;
  width: 1px;
  background-color: #333;
}

.under_deco_line+* {
  margin-top: 4.5em;
}

.strength_flow_content {
  background-color: #eeeeee;
  padding: 5em 0;
}

.strength_flow_intro {
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
  margin: 4em 0 8rem;
}

.strength_flow_list {
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.strength_flow_list::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 7.75em;
  background-color: #c7c7c7;
  width: 1px;
  height: 90%;
}

.strength_flow_item {
  display: flex;
  align-items: center;
  gap: 3em;
  background-color: #fff;
  padding: 2em 5em;
}

.strength_flow_item+.strength_flow_item {
  margin-top: 3.5em;
}

.strength_flow_item_order {
  background-color: #fff;
  border: 2px solid #C7C7C7;
  border-radius: 50%;
  padding: 1.25em;
  width: 5.5em;
  height: 5.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.strength_flow_item_order img {
  width: 100%;
  height: 100%;
}

.strength_flow_item_content_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}

.strength_flow_item_content {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.strength_flow_item_content_title {
  font-size: 2.0rem;
  color: #519D47;
}

.strength_flow_item_content_text {
  line-height: 2;
}

.strength_flow_item .to_page_btn {
  margin-top: 0;
  flex-shrink: 0;
}

/*=====/strength=====*/
/*=====company=====*/

.page_2_column_content_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5em;
  margin-bottom: 20rem;
}

.page_aside_nav {
  position: sticky;
  top: calc(var(--header_height) + 3em);
  padding-top: 2em;
  border-top: 1px solid #333;
  color: var(--main_green_color);
  flex-basis: 22.5%;
  flex-shrink: 0;
  white-space: nowrap;
}

.page_aside_nav_list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.page_aside_nav_list li a.current_area.active,
.page_aside_nav_list li a.works_cate.active {
  opacity: 1;
}

.page_aside_nav_list li a.current_area,
.page_aside_nav_list li a.works_cate {
  opacity: 0.5;
  transition: .2s;
}

.page_aside_nav_list li a:hover {
  opacity: 1;
}

.main_column_wrap {
  margin: 0;
  width: 100%;
  flex-basis: 100%;
}

.company_item {
  padding-top: calc(var(--header_height) + 3em);
  margin-bottom: 3.25em;
  display: flex;
  flex-direction: column;
  gap: 4em;
}

.company_item:nth-child(1) {
  margin-top: calc((var(--header_height) + 6em) * -1);
  padding-top: calc(var(--header_height) + 6em);
}

.company_item_title {
  font-size: 5rem;
  font-family: var(--english-font);
  line-height: 1.2;
}

.company_item_sub_title {
  font-size: 1.3rem;
  color: var(--main_green_color);
}

.company_item_header_img img {
  width: 100%;
}

.company_item_content_catch {
  font-size: 1.375em;
  margin-bottom: 2.25em;
}

.company_item_message {
  display: flex;
  flex-direction: column;
  /* gap: 3em; */
}

.company_item_message_name {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1em;
  font-weight: 300;
}

.company_item_message_name span {
  display: block;
  font-size: 1.6rem;
  font-weight: initial;
}

.company_table {
  width: 100%;
}

.company_table tr {
  display: flex;
  gap: 5rem;
}

.company_table tr td {
  padding: 2em 0 2em 2em;
  border-bottom: 1px solid #333;
}

.company_table tr td:nth-child(1) {
  flex-basis: 25%;
  flex-shrink: 0;
}

.company_table tr td:nth-child(2) {
  border-color: var(--main_green_color);
  flex-basis: 100%;
}

.table_note_text {
  font-size: 1rem;
}

.company_access_main_office {
  margin-bottom: 6.25em;
}

.company_access_main_office_img img {
  width: 100%;
}

.company_access_main_office_map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 42.5%;
}

.company_access_main_office_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.to_gmap_btn_wrap {
  display: flex;
  font-size: 1.4rem;
  margin: 1em 0;
}

.to_gmap_btn {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 0.5em;
  transition: .2s;
}

.to_gmap_btn:hover {
  color: var(--main_green_color);
}

.to_gmap_btn::after {
  content: '';
  display: inline-block;
  width: 2em;
  height: 1em;
  background-image: url(../img/company/to_gmap_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  transition: .2s;
}

.to_gmap_btn:hover::after {
  transform: translateX(0.5em);
}

.company_access_office_title {
  font-size: 1.25em;
}

.company_access_office_img {
  margin: 2em 0;
}

.company_access_office_img img {
  width: 100%;
}

.company_access_sub_office_list {
  display: flex;
  justify-content: space-between;
  gap: 3em;
}

.company_access_sub_office_item {
  flex-basis: 100%;
}

.table_flex_item {
  display: flex;
  justify-content: space-between;
  max-width: 20em;
  gap: 1em;
  flex-wrap: wrap;
}

.company_philosophy_catch {
  font-size: 2.5em;
  font-family: var(--mincho-font);
  margin-bottom: 1em;
}

#management_policy {
  position: relative;
}

#management_policy::after {
  content: '';
  width: 100%;
  height: 65%;
  background-color: #e3e3e3;
  position: absolute;
  left: 15%;
  bottom: -5%;
  z-index: -1;
}

.company_management_policy_list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.company_management_policy_item {
  display: flex;
  align-items: center;
  gap: 1.5em;
}

.company_management_policy_item_number {
  font-family: var(--english-font);
  font-size: 1.5em;
  margin-bottom: 0.5rem;
  position: relative;
  border-radius: 50%;
  border: 0.5px solid #333;
  width: 2em;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.company_history_list {
  display: flex;
  flex-direction: column;
  padding-left: 13vw;
  position: relative;
  font-size: 1.4rem;
  margin-top: 4em;
}

.company_history_item {
  display: flex;
  align-items: flex-start;
  padding: 3vw 0;
  gap: 3em;
  border-bottom: 0.3px solid #333;
  border-left: 0.4px solid var(--main_green_color);
  position: relative;
}

.company_history_item_big_year {
  width: 2.615em;
  position: absolute;
  top: 0.2em;
  right: 100%;
  font-size: clamp(0rem, 5vw, 10rem);
  font-family: var(--english-font);
  color: #efefef;
  line-height: 1;
}

.company_history_item_year {
  color: var(--main_green_color);
  padding-left: 2em;
  position: relative;
  display: flex;
  align-items: center;
}

.company_history_item_year::before {
  content: '';
  position: absolute;
  left: -0.25em;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: var(--main_green_color);
}

.company_history_item_text p+p {
  margin-top: 2em;
}

.company_management_policy_item_text {
  font-size: 1em;
  font-family: var(--mincho-font);
}

.company_sdgs_img {
  max-width: 70rem;
  margin: 6.25em auto 0;
  display: grid;
  flex-direction: column;
  gap: 3.125em;
}

.company_sdgs_img img {
  display: block;
  width: 100%;
}

/*=====/company=====*/
/*=====news=====*/

.news_list_wrap {
  font-size: 1.4rem;
}

.news_list_item a {
  display: flex;
  align-items: center;
  column-gap: 5em;
  padding: 2em;
  border-bottom: 1px solid #e3e3e3;
  transition: .2s;
}

.news_list_item a:hover {
  color: var(--main_green_color);
}

.news_list_item a::after {
  content: '';
  width: 0.375em;
  height: 0.375em;
  border-top: 1px solid var(--main_green_color);
  border-right: 1px solid var(--main_green_color);
  transform: rotate(45deg);
  margin-left: auto;
}

.news_list_item a h2 {
  font-weight: normal;
}

/*=====/news=====*/
/*=====news_single=====*/

.news_single_header {
  display: flex;
  flex-direction: column;
}

.news_single_title {
  font-size: 1.375em;
  padding: 1.13635em 0;
}

.post_single_content {
  padding: 3.25em 0;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}

.post_single_content a {
  color: #0000ee;
  text-decoration: underline;
}

.post_single_content a:hover {
  opacity: 0.5;
}

.post_single_content p+p {
  margin-top: 1em;
}

.post_single_nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  margin-top: 1em;
}

.post_single_nav a {
  transition: .2s;
}

.post_single_nav a:hover {
  color: var(--main_green_color);
}

/*=====/news_single=====*/
/*=====works=====*/

.works_list_section {
  flex-basis: 100%;
  margin: 0;
}

.works_list_header {
  margin-bottom: 3.125em;
}

.works_list_header_title {
  font-size: 2em;
}

.works_list_header_sub_title {
  font-size: 1.2rem;
  color: var(--main_green_color);
}

.works_list_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 3.125em;
}

.works_list_item {
  flex-basis: calc((100% - 3.125em) / 2);
  font-size: 1.4rem;
  transition: .2s;
}

.works_list_item:hover {
  opacity: 0.5;
}

.works_list_item_img {
  margin-bottom: 1.5625em;
}

.works_list_item_img img {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.works_list_item_cate_list {
  font-size: 1rem;
  color: var(--main_green_color);
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.works_list_item_cate_list_item {
  border: 1px solid var(--main_green_color);
  padding: 0.25em 1em;
}

.works_list_item_title {
  font-size: 1.5em;
  margin: 0.715em 0;
}

.works_list_item_detail_table {
  width: 100%;
  font-weight: 300;
}

.works_list_item_detail_table tr {
  display: flex;
  border-bottom: 1px solid #e3e3e3;
  padding: 0.25em 0;
}

.works_list_item_detail_table tr td:nth-child(1) {
  width: 6em;
}

/*=====/works=====*/
/*=====works_single=====*/

.works_single_header {
  display: flex;
  flex-direction: column;
}

.works_single_header_detail {
  font-size: 1.4rem;
  display: flex;
  gap: 2em;
}

.works_single_title {
  font-size: 1.375em;
  padding: 1.13635em 0;
}

.works_item_slider img {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.works_item_table {
  width: 100%;
  max-width: 50%;
  margin: 3.25em 0 1em auto;
}

.works_item_table tr {
  display: flex;
  border-bottom: 1px solid #e3e3e3;
  padding: 0.25em 0;
}

.works_item_table tr td:nth-child(1) {
  width: 6em;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 99) !important;
}

.swiper-pagination-bullet-active {
  background: #ffffff !important;
}

/*=====/works_single=====*/
/*=====recruit=====*/

.recruit_fv_section,
.interview_fv_section {
  margin-top: 0;
  width: 100%;
  height: calc(var(--vh) * 100);
  position: relative;
}

.recruit_fv_img,
.interview_fv_img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.recruit_fv_img img,
.interview_fv_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.0);
}

.is-loaded .recruit_fv_img img,
.is-loaded .interview_fv_img img {
  transform: scale(1.1);
  transition: transform ease 15s 0s;
}

.recruit_fv_catch {
  position: absolute;
  bottom: 5%;
  left: 5%;
  display: flex;
  flex-direction: column;
  gap: 3em;
}

.recruit_fv_catch_text {
  font-family: var(--mincho-font);
  font-style: italic;
  font-size: clamp(0rem, 5vw, 10rem);
  color: #fff;
  line-height: 1.25;
}

.recruit_fv_catch_title img {
  width: clamp(0rem, 25vw, 50rem);
}


.fv_scroll_text {
  white-space: nowrap;
  display: block;
  overflow: hidden;
  width: 0%;
  opacity: 0.6;
  transform: translateX(-4rem);
}

.fv_scroll_text.active {
  animation: slide_text 1s 1s ease-in-out forwards;
}

.recruit_fv_catch_text .fv_scroll_text:nth-child(2).active {
  animation-delay: 1.6s;
}

.recruit_fv_catch_title.fv_scroll_text {
  animation-delay: 2.2s;
}

@keyframes slide_text {
  0% {
    width: 0%;
    opacity: 0.6;
    transform: translateX(-4rem);
  }

  100% {
    width: 100%;
    opacity: 1;
    transform: translateX(0);
  }
}

#recruit_message {
  padding-top: var(--header_height);
  margin-top: calc(var(--header_height) * -1);
}

#recruit_work {
  padding-top: var(--header_height);
}


.recruit_flex_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.recruit_flex_item+.recruit_flex_item {
  margin-top: 15em;
}

.recruit_flex_item::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: -10%;
  width: 80%;
  height: 70%;
  background-color: #FBE4E4;
}

.recruit_flex_item:nth-of-type(even)::after {
  right: 0;
}

.recruit_flex_item_content {
  flex-basis: 45.5%;
  padding: 0 0 0 10%;
  display: flex;
  flex-direction: column;
  gap: 3em;
}

.recruit_flex_item:nth-of-type(even) .recruit_flex_item_content {
  padding: 0 10% 0 0;
}

.recruit_flex_item_title {
  height: 2em;
  position: relative;
}

.recruit_flex_item_title::before {
  content: '';
  position: absolute;
  width: 22.3215%;
  height: 1px;
  background-color: var(--recruit_color);
  top: 50%;
  right: 109%;
  z-index: 3;
}

.recruit_flex_item_title.two_line {
  height: 5em;
}

.recruit_appeal_content_detail {
  display: flex;
  flex-direction: column;
  gap: 3em;
}

.recruit_appeal_content_catch {
  font-size: 1.25em;
}

.recruit_to_page_btn .to_page_btn {
  background-color: var(--recruit_color);
  margin-top: 0;
}

.recruit_to_page_btn .to_page_btn:hover,
.interview_content_btn .to_page_btn:hover {
  opacity: 0.6;
}

.recruit_flex_item_title img {
  height: 100%;
}

.recruit_flex_item_sub_title {
  font-size: 1.2rem;
  margin-top: 1em;
}

.recruit_flex_item_img {
  width: 47.5%;
  max-height: 90rem;
  height: 33vw;
  object-fit: cover;
}

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

.recruit_interview_section {
  width: 100%;
  display: flex;
  background-image: url(../img/recruit/recruit_interview_img@1.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.recruit_interview_content {
  flex-basis: 50%;
  padding: 10vw 0;
  background-color: rgba(0, 0, 0, 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.recruit_interview_content_inner {
  display: flex;
  flex-direction: column;
  gap: 3em;
}

.recruit_interview_name {
  margin-top: 1em;
  font-size: 0.7em;
  display: flex;
  align-items: center;
  font-weight: normal;
}

.recruit_interview_name::before {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 1px;
  margin-right: 0.25em;
  background-color: #fff;
}

.recruit_interview_btn {
  display: flex;
  gap: 2em;
}

.recruit_interview_btn .to_page_btn {
  background-color: #fff;
  color: var(--recruit_color);
  margin-top: 0;
  border: 1px solid var(--recruit_color);
}

.recruit_interview_btn .to_page_btn:hover {
  opacity: 0.5;
}

.recruit_interview_btn .to_page_btn::after {
  background-image: url(../img/common/to_page_btn_red.svg);
}

.recruit_requirements_title_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75em;
}

.recruit_requirements_title img {
  height: 3em;
}

.recruit_requirements_sub_title {
  font-size: 1.4rem;
}

.recruit_requirements_list {
  margin-top: 6.25em;
  display: flex;
}

.recruit_requirements_item {
  flex-basis: calc(100% / 3);
  position: relative;
}

.recruit_requirements_item_img {
  filter: grayscale(1);
  transition: .2s;
  overflow: hidden;
}

.recruit_requirements_item:hover .recruit_requirements_item_img {
  filter: grayscale(0);
}

.recruit_requirements_item_img img {
  overflow: hidden;
  width: 100%;
  transition: .2s;
}

.recruit_requirements_item:hover .recruit_requirements_item_img img {
  transform: scale(1.075);
}

.recruit_requirements_item_content {
  position: absolute;
  bottom: 2em;
  right: 2em;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75em;
}

.recruit_requirements_item_title img {
  height: 2.25em;
}

.recruit_requirements_item_sub_title {
  font-size: 0.875em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.recruit_requirements_item_sub_title::after {
  content: '';
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background-image: url(../img/common/to_page_btn.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.recruit_contact_list {
  display: flex;
  justify-content: space-between;
  margin-top: 6.25em;
  gap: 3.125em;
}

.recruit_contact_item {
  flex-basis: 50%;
  display: flex;
  justify-content: center;
  border: 1px solid var(--recruit_color);
  padding: 3em 0;
  transition: .2s;
}

.recruit_contact_item:hover {
  background-color: #FBE4E4;
}

.recruit_contact_item_content {
  display: flex;
  align-items: center;
  position: relative;
  gap: 1em;
}

.recruit_contact_item_content::after {
  content: '';
  width: 1.25em;
  height: 1.25em;
  background-image: url(../img/common/to_page_btn_red.svg);
  position: absolute;
  left: calc(100% + 3em);
}

.recruit_contact_item_mail_icon {
  height: 1em;
}

.recruit_contact_item_tell_note {
  position: absolute;
  top: calc(100% + 0.75em);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75em;
  white-space: nowrap;
}

.recruit_contact_item_tell_number {
  height: 1.75em;
}

/*=====/recruit=====*/

/*=====interview=====*/

.interview_fv_content_wrap {
  position: absolute;
  left: 12.5%;
  top: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.interview_fv_title img {
  height: 2.5vw;
}

.interview_fv_title {
  margin-top: 1em;
  font-size: 0.75em;
}

.interview_fv_catch_text {
  font-size: 1.5vw;
  line-height: 2;
}

.interview_fv_catch_name {
  margin-top: 1.5em;
  font-size: 0.6em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.interview_fv_catch_name::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1px;
  background-color: #fff;
}

.interview_content_btn {
  display: flex;
  justify-content: center;
  gap: 2em;
}

.interview_content_btn .to_page_btn {
  background-color: #fff;
  color: var(--recruit_color);
  margin-top: 0;
  border: 1px solid var(--recruit_color);
}

.interview_content_btn .to_page_btn::after {
  background-image: url(../img/common/to_page_btn_red.svg);
  transform: rotate(90deg);
}

.interview_slide_wrap {
  margin-top: 13.75em;
}



.interview_day_schedule_content_intro {
  text-align: center;
  margin: 6.25em 0;
  line-height: 2;
}

.interview_schedule_table {
  max-width: 50rem;
  width: 95%;
  margin: 0 auto;
  color: var(--recruit_color);
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5em;
}

.interview_schedule_table_item {
  display: flex;
  align-items: center;
  gap: 1em;
  position: relative;
}

.interview_schedule_table_item:not(:last-child)::after {
  content: '';
  font-size: 1.4rem;
  width: 2px;
  height: 0em;
  position: absolute;
  top: 100%;
  left: 5rem;
  transform-origin: left top;
  transform: translateX(-50%);
  background-color: var(--recruit_color);
  transition: .2s;
}

.interview_schedule_table.show .interview_schedule_table_item:not(:last-child)::after {
  height: 2.5em;
}

.interview_schedule_table.show .interview_schedule_table_item:nth-child(1)::after {
  transition-delay: 1.0s;
}

.interview_schedule_table.show .interview_schedule_table_item:nth-child(2)::after {
  transition-delay: 1.3s;
}

.interview_schedule_table.show .interview_schedule_table_item:nth-child(3)::after {
  transition-delay: 1.6s;
}

.interview_schedule_table.show .interview_schedule_table_item:nth-child(4)::after {
  transition-delay: 1.9s;
}

.interview_schedule_table.show .interview_schedule_table_item:nth-child(5)::after {
  transition-delay: 2.2s;
}

.interview_schedule_table.show .interview_schedule_table_item:nth-child(6)::after {
  transition-delay: 2.5s;
}

.interview_schedule_table.show .interview_schedule_table_item:nth-child(7)::after {
  transition-delay: 2.8s;
}

.interview_schedule_table.show .interview_schedule_table_item:nth-child(8)::after {
  transition-delay: 3.1s;
}

.interview_schedule_table_item_time {
  width: 10rem;
}

.interview_schedule_table_item_deco {
  flex-basis: calc((100% - 10rem) / 2);
  display: flex;
  align-items: center;
}

.interview_schedule_table_item_deco::before {
  display: inline-block;
  content: '';
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--recruit_color);
}

.interview_schedule_table_item_deco::after {
  display: inline-block;
  content: '';
  width: 100%;
  height: 1px;
  background-color: var(--recruit_color);
}

.interview_schedule_table_item_text {
  flex-basis: calc((100% - 10rem) / 2);
}

.recruit_color {
  color: var(--recruit_color);
}

#section_interview {
  padding-top: var(--header_height);
  margin-top: calc(20rem - var(--header_height));
  margin-bottom: 0;
}

#daily_schedule {
  padding-top: var(--header_height);
  padding-bottom: var(--header_height);
  margin-top: 0;
  background-color: #EEEEEE;
}

/*=====/interview=====*/
/*=====guideline=====*/


.page_guideline .page_aside_nav {
  color: var(--recruit_color);
}

.page_guideline .page_header_title_wrap {
  color: var(--recruit_color);
}

.guideline_item_wrap {
  display: flex;
  flex-direction: column;
  gap: 3.125em;
}

.guideline_item_title {
  font-size: 1.25em;
  color: #fff;
  background-color: var(--recruit_color);
  padding: 0.5em 0em 0.5em 1em;
}

#partner .guideline_item_title {
  background-color: var(--main_green_color);
}

.guideline_item_summary {
  display: flex;
  align-items: center;
  gap: 1em;
}

.guideline_new {
  font-size: 0.8rem;
  color: var(--recruit_color);
  border: 1px solid var(--recruit_color);
  padding: 0em 2em;
}

.guideline_summery_title {
  font-size: 1.25em;
}

.guideline_item_table {
  width: 100%;
  font-size: 1.4rem;
}

.guideline_item_table tr {
  display: flex;
  border-bottom: 1px solid #e3e3e3;
  padding: 0.675em 0;
}

.guideline_item_table tr td:nth-child(1) {
  min-width: 9em;
}

.guideline_item_wrap .recruit_to_page_btn {
  display: flex;
  justify-content: center;
}

#partner .guideline_item_wrap .recruit_to_page_btn .to_page_btn {
  background-color: var(--main_green_color);
}

.guideline_item_catch {
  font-size: 1.075em;
  font-weight: bold;
}

.guideline_tell_btn {
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: center;
  margin-top: 11.25em;
  border: 1px solid var(--recruit_color);
  padding: 3em 1em;
  transition: .2s;
}

.guideline_tell_btn:hover {
  background-color: #FBE4E4;
}

.guideline_tell_title {
  font-size: 1.25em;
}

.guideline_tell_img {
  width: 50%;
}

.guideline_tell_time {
  font-size: 0.75em;
}

/*=====/guideline=====*/
/*=====contact=====*/

.contact_tell_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  padding: 3em 1em;
  border: 1px solid #e3e3e3;
  transition: .2s;
}

.contact_tell_btn:hover {
  border: 1px solid var(--main_green_color);
}

.contact_tell_btn_title {
  font-size: 1.25em;
}

.contact_tell_btn_number {
  width: clamp(0rem, 80%, 35rem);
}

.contact_tell_btn_time {
  font-size: 0.8em;
}

.contact_form_wrap {
  margin-top: 6.25em;
}

.contact_form_title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-bottom: 3.125em;
}

.contact_form_title span {
  font-size: 1.25em;
}

.contact_form_title_icon {
  height: 1em;
}

.green_text {
  color: var(--main_green_color);
}

.contact_form_disc_text {
  margin-bottom: 3.125em;
}

.contact_form_disc_text p {
  line-height: 2;
  font-size: 1.4rem;
}

.contact_form_table {
  width: 100%;
}

.contact_form_table tr {
  display: flex;
  justify-content: space-between;
  column-gap: 1em;
}

.contact_form_table tr+tr {
  margin-top: 1.875em;
}

.contact_form_table tr td:nth-child(1) {
  flex-basis: 30%;
  padding: 0.5em;
}

.contact_form_table tr td:nth-child(2) {
  flex-basis: 70%;
  flex-shrink: 0;
}

.contact_form_table input,
.contact_form_table textarea {
  background-color: #fff;
  border: 1px solid #e3e3e3;
  padding: 0.5em;
  width: 100%;
}

.mwform-tel-field input[type="text"],
.mwform-zip-field input[type="text"],
.mwform-checkbox-field label input[type="checkbox"] {
  display: inline-block;
  width: auto;
}

.contact_form_table input::placeholder,
.contact_form_table textarea::placeholder {
  font-size: 0.8em;
  opacity: 0.25;
}

.mwform-checkbox-field+.mwform-checkbox-field {
  margin-top: 0.5em;
}

.mwform-checkbox-field label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5em;
}

.contact_btn {
  margin-top: 3em;
  font-size: 1.4rem;
  display: flex;
  justify-content: flex-end;
}

.contact_btn_inner {
  position: relative;
}

.contact_btn_inner::after {
  content: '';
  position: absolute;
  right: 3em;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background-image: url(../img/common/to_page_btn.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.contact_btn input {
  column-gap: 1em;
  background-color: var(--main_green_color);
  padding: 1em 6em 1em 3em;
  color: #fff;
  transition: .2s;
}

.contact_btn input:hover {
  opacity: 0.5;
}

.contact_thanks_content {
  font-size: 1.4rem;
  line-height: 2;
}

.contact_thanks_content p+p {
  margin-top: 1em;
}

.privacypolicy_text {
  border: 1px solid #e3e3e3;
  padding: 0.5em;
  font-size: 0.75em;
  font-weight: 300;
  height: 10em;
  overflow-y: scroll;
}

.privacy_item+.privacy_item {
  margin-top: 1em;
}

.privacy_item_title {
  margin-bottom: 0.25em;
}

.privacy_policy_check_td span label {
  justify-content: flex-end;
}

input:focus,
textarea:focus {
  outline: none;
  border: 1.5px solid var(--main_green_color);
}


/*=====/contact=====*/
/*=====/thanks=====*/
.contact_thanks_text_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
}

.contact_thanks_text_wrap+.contact_thanks_text_wrap {
  margin-top: 0.5em;
}

/*=====/thanks=====*/


/*===============/main===============*/
/*===============footer===============*/

.breadcrumbs_wrap {
  font-size: 1.2rem;
  font-weight: 300;
  position: absolute;
  bottom: 1em;
  right: 1em;
}

footer {
  position: relative;
  font-size: 1.4rem;
}

.top+footer {
  margin-top: 22rem;
}

.footer_inner {
  padding-bottom: 5em;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 3em;
}

.footer_inner::after {
  content: '';
  width: 85%;
  height: 90%;
  background-color: #EFEFEF;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.footer_nav {
  margin-left: auto;
  display: flex;
  gap: 1em;
  margin-right: 5em;
}

.footer_nav_list {
  display: flex;
  flex-direction: column;
  padding: 10em 5em 2em 2em;
  border-left: 1px solid #333;
}

.footer_nav_list>li+li {
  margin-top: 2em;
}

.footer_nav_list li a {
  transition: .2s;
}

.footer_nav_list li a.current_page {
  color: var(--main_green_color);
}

.footer_nav_list li a:hover {
  color: var(--main_green_color);
}

.footer_logo_area {
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: 85%;
  margin: 0 auto;
}

.footer_logo {
  width: clamp(20rem, 17.5%, 30rem);
  transition: .2s;
}

.footer_logo:hover {
  opacity: 0.6;
}

.copyright {
  text-align: right;
  padding: 4em 3% 4em 0;
  font-size: 1rem;
}

.footer_logo_area_detail {
  display: flex;
  flex-direction: column;
  row-gap: 0.25em;
}

/* .footer_logo_area_detail>*:last-child {
  margin-top: 1em;
} */



/*===============/footer===============*/


@media screen and (max-width: 900px) {
  :root {
    --header_height: 5rem;
  }


  .fv {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
  }

  body {
    font-size: 1.4rem;
  }

  section {
    margin: 15rem 0;
  }

  .from_tb,
  .from--tb {
    display: block;
  }

  .none_tb,
  .none--tb {
    display: none;
  }

  /*===============header===============*/
  html.is-fixed,
  html.is-fixed body {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
  }

  header {
    font-size: 1.4rem;
  }

  .wrap_header {
    height: var(--header_height);
    width: 95%;
  }

  .header_logo {
    margin-left: 0;
    position: relative;
    z-index: 999;
  }

  .header_logo {
    width: 18rem;
  }

  .gnav {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0%;
    transition: 0.5s;
    padding: 10rem 5rem;
    opacity: 0;
    visibility: hidden;
    flex-direction: column;
    row-gap: 4em;
    overflow-y: scroll;
    align-items: initial;
  }

  .gnav_menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  .main_menu_item {
    width: 100%;
    padding-left: 0;
    padding-right: 3em;
    column-gap: 0.5em;
    align-items: baseline;
  }

  .mega_menu_item .main_menu_item {
    align-items: baseline;
  }

  .mega_menu_item .main_menu_item::before {
    content: none;
  }

  .main_menu_item_en {
    display: flex;
    font-size: 1rem;
    color: #B0B0B4;
    line-height: 1;
    text-transform: uppercase;
  }

  .mega_menu_item {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
  }

  .menu_item+.menu_item {
    margin-left: 0em;
    margin-top: 1em;
  }

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

  .sub_menu_btn_pc {
    display: none;
  }

  .sub_menu_btn_tb {
    position: absolute;
    right: 0;
    width: 1em;
    height: 1em;
    z-index: 50000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
    cursor: pointer;
  }

  .sub_menu_btn_tb::before,
  .sub_menu_btn_tb::after {
    content: '';
    position: absolute;
    background-color: var(--main_green_color);
    top: auto;
    left: auto;
    transform: translate(0%, 0%);
  }

  .sub_menu_btn_tb::before {
    height: 2px;
    width: 50%;
  }

  .sub_menu_btn_tb::after {
    height: 50%;
    width: 2px;
    transform: rotate(0deg);
    transition: .3s;
  }

  .sub_menu_btn_tb.active::after {
    transform: rotate(270deg);
  }

  .sub_menu_list {
    opacity: 1;
    visibility: visible;
  }

  .menu_item {
    flex-direction: column;
  }

  .sub_menu_list_wrap {
    display: none;
    position: relative;
    width: auto;
    top: auto;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
  }

  .sub_menu_list_inner {
    padding: 1em;
    width: 100%;
  }

  .sub_menu_list_tmb {
    display: none;
  }

  .sub_menu_list {
    flex-basis: 100%;
    gap: 0;
  }

  .sub_menu_list li {
    flex-basis: 100%;
  }

  .sub_menu_item {
    font-size: 0.85em;
  }

  .sub_menu_item::after,
  .sub_menu_item::before {
    content: none;
  }

  .current_menu_item_all {
    display: none;
  }

  .gnav_other_menu {
    display: flex;
    flex-direction: column;
    font-weight: 300;
    font-size: 0.85em;
    row-gap: 0.75em;
  }

  .header_sp_nav {
    display: flex;
    align-items: center;
  }

  .header_nav_btn {
    background-color: var(--main_green_color);
    border-radius: 50%;
    /* height: 3rem; */
    /* width: 3rem; */
    height: calc(var(--header_height) * 0.85);
    width: calc(var(--header_height) * 0.85);
    z-index: 5;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .header_nav_btn span {
    position: absolute;
    background-color: #fff;
    width: 50%;
    height: 2px;
    border-radius: 2px;
    left: 25%;
    top: 50%;
    /* transform: translate(-50%, -50%); */
    transition: 0.2s;
    transition: width .2s .2s ease, top .2s .2s ease, transform .2s ease;
  }

  .header_nav_btn span:nth-child(1) {
    top: 30%;
  }

  .header_nav_btn span:nth-child(2) {
    top: 50%;
  }

  .header_nav_btn span:nth-child(3) {
    top: 70%;
    width: 25%;
    /* transform: translateX(-100%); */
  }

  .header_nav_btn.is-active span {
    width: 50%;
    top: 50%;
    transform: rotate(45deg);
    transition: width .2s ease, top .2s ease, transform .2s .2s ease;
  }

  .header_nav_btn.is-active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transform: rotate(-45deg);
  }

  .header_nav_btn.is-active span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }

  .header_nav_btn.is-active span:nth-child(3) {
    width: 50%;
    top: 50%;
    transform: rotate(45deg);
  }

  .nav_contact_wrapper {
    display: none;
  }

  /*===============/header===============*/
  /*===============main===============*/


  /*=====top=====*/

  .top_slider_item_text {
    bottom: 2.5em;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .top_intro_section {
    margin: 3em 0 15em;
    flex-wrap: wrap;
    gap: 3em;
  }

  .top_intro_content_title {
    font-size: clamp(1.8rem, 4vw, 3rem);
  }

  .top_intro_img {
    flex-basis: 100%;
  }

  .top_intro_content {
    flex-basis: 100%;
  }

  .top_intro_left {
    display: none;
  }

  .section_title {
    font-size: 4rem;
  }

  .top_about_slide_wrap::before {
    width: 100%;
    top: 65%;
    height: calc(100% + 15em);
    background-color: #EFF0F2;
  }

  .top_about_slider_list .swiper-slide img {
    width: 100%;
  }

  .description_text {
    font-size: 1.3rem;
  }

  .top_about_content {
    width: 80%;
    top: 32.5%;
  }

  .to_page_btn {
    font-size: 1.3rem;
  }

  .top_works_item {
    height: 25vh;
  }

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

  .top_works_item:nth-child(5) {
    flex-basis: 100%;
  }

  .top_works_item_title_wrap {
    gap: 0.25em;
    height: 40%;
  }

  .top_works_item_title {
    font-size: 1.8rem;
  }

  .top_works_item_sub_title {
    font-size: 1em;
  }

  .top_recruit_section {
    flex-wrap: wrap;
    gap: 2em;
  }

  .top_recruit_content {
    flex-basis: 100%;
    padding: 5%;
  }

  .top_recruit_section .section_title_wrap {
    margin-left: 3em;
  }

  .top_recruit_section_title::after {
    right: calc(100% + 2em);
  }

  .top_recruit_description_title {
    font-size: 1.25em;
  }

  .top_recruit_img {
    width: 100%;
    max-width: 90rem;
    min-width: 0rem;
  }

  .top_recruit_img img {
    object-fit: cover;
    object-position: 20% 30%;
    width: 100%;
    height: 30vh;
  }

  .top_recruit_catch {
    bottom: -0.15em;
    font-size: 13vw;
    mix-blend-mode: difference;
    display: none;
  }

  .top_recruit_section::after {
    height: 79%;
  }

  .top_news_list {
    flex-direction: column;
  }

  .top_news_item {
    font-size: 1.3rem;
  }

  .top_news_item+.top_news_item::before {
    left: 0;
    height: 1px;
    width: 100%;
    background-color: #e3e3e3;
  }

  .top_wnav_section {
    height: 100%;
    background-color: var(--main_green_color);
  }

  .top_wnav_movie {
    display: none;
  }

  .top_wnav_content {
    position: relative;
    flex-wrap: wrap;
    left: auto;
    bottom: auto;
    transform: none;
    height: auto;
    padding: 5.5% 0;
    gap: 5.5vw;
  }

  .top_wnav_content_item {
    flex-basis: 100%;
  }

  .top_wnav_content_item .top_wnav_content_item_img {
    max-height: 30rem;
    height: 50vw;
  }

  .top_wnav_content_item_detail {
    position: relative;
    top: 0;
  }

  .top_wnav_content_item:hover .top_wnav_content_item_detail {
    top: 0;
  }

  .top_wnav_content_item:hover .top_wnav_content_item_detail .section_title_wrap {
    height: auto;
  }

  .top_wnav_content_item_detail .section_title_wrap {
    background-color: rgba(255, 255, 255, 100%);
    height: auto;
    padding: 1em;
  }

  .top_wnav_content_item_nav {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
  }

  /*=====/top=====*/
  /*=====strength=====*/

  .page_header_title_big {
    font-size: 24vw;
    bottom: -4vw;
  }

  .page_header_title {
    font-size: 2.8rem;
  }

  .page_header_img_wrap {
    height: 25vh;
  }

  .strength_list_catch {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .strength_list_item {
    flex-wrap: wrap;
    padding-bottom: 5em;
  }

  .strength_list_item::after {
    width: 100%;
    height: 37%;
  }

  .strength_list_item .strength_list_item_img {
    width: 100%;
    height: 40vh;
    order: 1;
  }

  .strength_list_item_content {
    flex-basis: 100%;
    padding: 15%;
    display: flex;
    flex-direction: column;
    gap: 2.5em;
    order: 2;
  }

  .strength_list_item:nth-of-type(even) .strength_list_item_content {
    padding: 10%;
  }

  .strength_list_item_title {
    font-size: clamp(2.4rem, 6.5vw, 3rem);
  }

  .strength_list_item_big_text {
    position: absolute;
  }

  .strength_flow_list {
    font-size: 1.3rem;
  }

  .strength_flow_list::after {
    left: 4em;
    height: 90%;
  }

  .strength_flow_item {
    gap: 2em;
    padding: 2em 2em;
  }

  .strength_flow_item_order {
    padding: 0.5em;
    width: 4em;
    height: 4em;
  }

  .strength_flow_item_content_title {
    font-size: 1.6rem;
  }

  .strength_flow_item_content_wrap {
    flex-wrap: wrap;
  }

  /*=====/strength=====*/
  /*=====company=====*/

  .page_2_column_content_wrap {
    flex-wrap: wrap;
    gap: 3em;
    margin-bottom: 0;
  }

  .page_aside_nav {
    flex-basis: 100%;
    position: relative;
    top: auto;
    order: 2;
    display: none;
  }

  .company_item {
    gap: 3em;
  }

  .company_item_title {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .company_item_content_catch {
    margin-bottom: 1.5em;
  }

  .company_item_message {
    gap: 1.5em;
  }

  .company_table tr {
    gap: 2rem;
  }

  .company_table tr td {
    /* padding: 2em 1em; */
    padding: 2em 0;
  }

  .company_table tr td:nth-child(1) {
    min-width: 8em;
  }

  .company_access_main_office {
    margin-bottom: 3em;
  }

  .company_access_sub_office_list {
    flex-wrap: wrap;
    gap: 2em;
    row-gap: 2em;
  }

  .company_access_sub_office_item {
    flex-basis: calc((100% - 2em) / 2);
  }

  .company_access_office_img {
    margin: 1em 0;
  }

  .company_philosophy_catch {
    font-size: 6.5vw;
  }

  #management_policy::after {
    width: 90%;
    height: 65%;
    left: auto;
    right: -5%;
    bottom: -5%;
  }

  .company_history_item {
    flex-direction: column;
    gap: 0.5em;
  }

  .company_history_item_text {
    padding-left: 2em;
  }

  .company_history_item_text p+p {
    margin-top: 0.5em;
  }

  .company_history_list {
    padding-left: 16vw;
    font-size: 1.3rem;
  }

  .company_history_item_big_year {
    width: 16vw;
    margin-right: 1vw;
    font-size: 8vw;
    top: 0;
  }


  /*=====/company=====*/
  /*=====news=====*/
  .news_list_wrap {
    font-size: 1.3rem;
  }

  .news_list_item a {
    gap: 0.5em;
    padding: 2em 1em;
    flex-wrap: wrap;
    position: relative;
  }

  .news_list_item a::after {
    position: absolute;
    right: 1em;
  }

  .news_list_item a h2 {
    flex-basis: 100%;
  }

  /*=====/news=====*/
  /*=====works=====*/
  .works_list_wrap {
    gap: 2em;
  }

  .works_list_item {
    flex-basis: calc((100% - 2em) / 2);
  }

  .works_list_item_title {
    font-size: 3vw;
    margin-bottom: 0.25em;
  }

  .works_list_item_detail_table {
    font-size: 1.3rem;
  }

  /*=====/works=====*/
  /*=====works_single=====*/

  .works_single_header_detail {
    font-size: 1.3rem;
  }

  .works_single_title {
    font-size: 4vw;
  }

  .works_item_table {
    width: auto;
    max-width: auto;
    white-space: nowrap;
  }

  /*=====/works_single=====*/
  /*=====recruit=====*/

  .recruit_fv_img img {
    object-position: 80% 0;
  }

  .recruit_fv_catch {
    gap: 1.5em;
  }

  .recruit_fv_catch_text {
    font-size: 10vw;
  }

  .recruit_fv_catch_title img {
    width: 55vw;
  }

  .recruit_flex_item_title.two_line {
    height: 3.5em;
  }

  .recruit_flex_item_title {
    height: 1.5em;
  }

  .recruit_flex_item {
    flex-wrap: wrap;
  }

  .recruit_flex_item+.recruit_flex_item {
    margin-top: 5em;
  }

  .recruit_flex_item_content {
    flex-basis: 100%;
    padding: 7.5%;
    gap: 2.5em;
  }

  .recruit_flex_item:nth-of-type(even) .recruit_flex_item_content {
    padding: 7.5%;
  }

  .recruit_flex_item_img {
    width: 100%;
    height: 40vh;
    order: 2;
  }

  .recruit_flex_item_img img {
    object-position: top;
  }

  .recruit_flex_item::after {
    bottom: 0%;
    width: 100%;
    height: 75%;
  }

  .recruit_flex_item_title::before {
    content: none;
  }

  .recruit_interview_section {
    background-image: url(../img/recruit/interview_fv_img_tb@1.webp);
    background-position: 50% 10%;
    flex-direction: column;
    padding-top: 40vh;
    margin-bottom: 27.3rem;
  }

  .recruit_interview_content {
    padding: 5vw 0;
    position: relative;
  }

  .recruit_interview_btn {
    position: absolute;
    top: calc(100% + 1em);
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }

  .recruit_appeal_content_catch {
    font-size: 1.2em;
  }

  .recruit_requirements_list {
    margin-top: 6.25em;
    flex-direction: column;
    background-color: #000;
  }

  .recruit_requirements_item_img {
    height: 25vh;
    opacity: 0.7;
    filter: grayscale(1);
  }

  .recruit_requirements_item_img img {
    height: 100%;
    object-fit: cover;
    object-position: 0% 25%;
  }

  .recruit_requirements_item_title img {
    height: 1.75em;
  }


  .recruit_contact_list {
    flex-wrap: wrap;
    margin-top: 4em;
    gap: 2em;
  }

  .recruit_requirements_title img {
    height: 2.5em;
  }

  .recruit_contact_item {
    flex-basis: 100%;
  }

  .recruit_contact_item_content {
    white-space: nowrap;
  }

  .recruit_contact_item_content::after {
    left: calc(100% + 2em);
  }

  /*=====/recruit=====*/
  /*=====interview=====*/

  .interview_fv_content_wrap {
    top: auto;
    bottom: 5%;
    gap: 1em;
  }

  .interview_fv_title img {
    height: 8vw;
  }

  .interview_fv_catch_text {
    font-size: clamp(0px, 5vw, 2.0rem);
  }

  .interview_content_btn {
    gap: 1rem;
  }

  #section_interview {
    margin-top: calc(15rem - var(--header_height));
  }


  .interview_slide_wrap {
    margin-top: 10em;
  }

  /*=====/interview=====*/
  /*=====guideline=====*/

  .guideline_item_table {
    width: 100%;
    font-size: 1.3rem;
  }

  .page_guideline .main_column_wrap {
    width: 100%;
  }

  .guideline_item_table tr {
    flex-wrap: wrap;
    gap: 1em;
  }

  .guideline_item_table tr td:nth-child(1),
  .guideline_item_table tr td:nth-child(2) {
    flex-basis: 100%;
  }

  .guideline_item_catch {
    font-size: 1em;
  }

  /*=====/guideline=====*/



  /*===============/main===============*/
  /*===============footer===============*/

  footer {
    margin-top: 15rem;
    font-size: 1.3rem;
  }

  .footer_nav {
    margin-right: 2em;
  }

  .footer_nav_list {
    padding: 8em 2em 2em 2em;
  }


  /*===============/footer===============*/





}

@media screen and (max-width: 480px) {

  .from_sp,
  .from--sp {
    display: block;
  }

  .none_sp,
  .none--sp {
    display: none;
  }

  .front-page section:nth-child(1) {
    margin-top: var(--header_height);
  }

  /*===============header===============*/

  header {
    font-size: 4vw;
  }

  .gnav {
    padding: 5em 1em 10em;
  }

  .sub_menu_item {
    white-space: nowrap;
  }

  /*===============/header===============*/
  /*===============main===============*/

  /* section {
    margin: 10rem 0;
  } */

  /*=====top=====*/

  .section_title {
    font-size: 3.2rem;
  }

  .section_sub_title {
    font-size: 1rem;
  }

  .top_about_slide_wrap::before {
    top: 50%;
    height: calc(100% + 5em);
  }

  .top_intro_content_title {
    font-size: 5.5vw;
  }

  .top_about_content {
    top: 22.5%;
    width: 90%;
    right: 5%;
    padding: 2em 2em 0 2em;
  }

  .left_line_deco_title::after {
    left: auto;
    right: calc(100% + 1em);
    width: 5em;
  }

  .to_page_btn {
    font-size: 1.2rem;
  }

  .top_recruit_description_title {
    font-size: 1.2em;
  }

  .top_works_item {
    flex-basis: 100%;
    height: 25vh;
  }

  .top_works_item:nth-child(1),
  .top_works_item:nth-child(2) {
    flex-basis: 100%;
  }

  .top_works_item_title {
    font-size: clamp(1em, 5vw, 2em);
  }

  .top_works_item_sub_title {
    font-size: 3vw;
  }

  .top_works_item_title_wrap {
    height: auto;
  }

  .top_works_item_title_wrap::after {
    width: 0.5em;
    height: 0.5em;
  }

  .top_news_header_wrap {
    width: 92.5%;
    margin: 0 auto 3em;
  }

  .top_news_header_wrap .section_title_wrap {
    margin-left: 0%;
  }

  .top_wnav_tell_img {
    height: auto;
    width: 80%;
  }

  .top_wnav_mail_icon {
    height: auto;
    width: 8%;
  }

  /*=====/top=====*/
  /*=====strength=====*/

  .strength_flow_item {
    gap: 2em;
    padding: 1em;
  }

  .strength_list_item_title {
    font-size: 5vw;
  }

  .strength_list_item_ctach {
    font-size: 4vw;
  }

  .strength_flow_content {
    background-color: #fff;
  }

  .strength_flow_list::after {
    left: 3em;
    height: 92%;
  }

  /*=====/strength=====*/
  /*=====company=====*/

  .company_item_content_catch {
    font-size: 1.2em;
  }

  .company_table tr td.table_flex_list {
    flex-basis: 100%;
    padding: 0em 0 2em;
  }

  .table_flex_item {
    max-width: 100%;
    width: 100%;
  }

  .table_note_text {
    margin-top: 1em;
    font-size: 1rem;
  }

  .company_management_policy_list {
    gap: 3em;
  }

  .company_management_policy_item {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5em;
  }

  .company_management_policy_item_text {
    flex-basis: 100%;
    text-align: center;
    font-size: 1.1em;
  }

  .company_item_header_img.ceo {
    height: 35vh;
  }

  .company_item_header_img.ceo img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #management_policy::after {
    content: none;
  }

  /*=====/company=====*/
  /*=====works=====*/
  .works_list_wrap {
    gap: 4em;
  }

  .works_list_item {
    flex-basis: 100%;
    max-width: auto;
  }

  .works_list_item_title {
    font-size: 5vw;
  }

  .works_list_item_detail_table {
    font-size: 1.3rem;
  }

  .contact_form_table tr {
    flex-wrap: wrap;
  }

  .contact_form_table tr td:nth-child(1),
  .contact_form_table tr td:nth-child(2) {
    flex-basis: 100%;
  }

  /*=====/works=====*/

  /*===============/main===============*/
  /*===============footer===============*/
  .footer_nav {
    flex-direction: column;
    gap: 0;
  }

  .footer_inner::after {
    height: 94%;
  }

  .footer_nav_list {
    padding-top: 5em;
  }

  .footer_nav_list:nth-child(2) {
    padding-top: 0;
  }

  .footer_logo {
    width: clamp(20rem, 50%, 25rem);
  }

  /*===============/footer===============*/
}