@charset "utf-8";

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

:root {
  --main_blue: #387FD0;
  --main_blue_rgb: 56, 127, 208;
  --main_blue_dark: #1D47B4;
  --sub_green: #27AD9D;
  --sub_green_dark: #00968C;
  --sub_red: #ee6060;

  --dark_gray: #555555;
  --medium_gray: #888888;
  --light_gray: #bbbbbb;

  --bg_gray: #F4F4F4;
  --bg_blue: #B1DBEF;
  --bg_green: #BCDDD9;
  --bg_green_pale: #d8ebe9;

  --white: #ffffff;
  --black: #333333;
}

img {
  width: 100%;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  background-color: var(--bg_gray);
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}


/*--------------------------------------------------
ヘッダー
--------------------------------------------------*/
header {
  width: 100%;
  position: relative;
}

/* ヘッダーロゴ */
.header_logo {
  position: fixed;
  top: 10px;
  left: 50px;
  z-index: 999;
}

.header_logo img {
  height: 70px;
  -webkit-filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.8));
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.8));
}


/* グローバルナビ */
.gnavi {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 888;
  display: flex;
  justify-content: flex-end;
  gap: 50px;
}

.gnavi ul {
  height: 100%;
  display: flex;
  gap: 30px;
  align-items: center;
}

.gnavi ul li a {
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  position: relative;
  transition: all 0.3s;
}

.gnavi ul li a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0%;
  background-color: var(--main_blue);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 1.1em);
  transition: 0.3s;
}

.gnavi ul li a:hover::after {
  width: calc(100% + 6px);
}

.gnavi .current::after {
  width: calc(100% + 6px) !important;
}

.gnavi_btn_wrapper {
  display: flex;
  gap: 2px;
}

.gnavi_btn {
  display: block;
  width: 80px;
  height: 80px;
}

.gnavi_btn_contact {
  background-color: var(--main_blue);
}

.gnavi_btn_recruit {
  background-color: var(--sub_green);
}


/* メインビジュアル */
.mv_img_wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}

.mv_img_wrapper .top_movie_pc {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv_img_wrapper .top_image_sp {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}


.mv_img_wrapper::before,
.mv_img_wrapper::after {
  content: '';
  width: 120%;
  height: 200px;
  background-color: var(--bg_gray);
  position: absolute;
}

.mv_img_wrapper::before {
  right: 50%;
  bottom: 0px;
  transform-origin: right top;
  transform: translateY(100%) rotate(10deg);
}

.mv_img_wrapper::after {
  left: 50%;
  bottom: 0px;
  transform-origin: left top;
  transform: translateY(100%) rotate(-10deg);
}

/* 固定ページバージョンのスタイル */
.mv_img_wrapper_sub {
  height: 320px;
}

.mv_img_wrapper_sub::before {
  transform: translateY(100%) rotate(7deg);
}

.mv_img_wrapper_sub::after {
  transform: translateY(100%) rotate(-7deg);
}

/* リクルートページバージョンのスタイル */
.mv_img_wrapper_recruit::before,
.mv_img_wrapper_recruit::after {
  background-color: var(--sub_green);
}

.mv_title {
  position: absolute;
  width: 60%;
  bottom: 22%;
  left: 0;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, .5));
}

.mv_recruit_title {
  position: absolute;
  width: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* スクロールアイコン */
.scroll_icon {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
}

.scroll_icon_txt {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 0.5em;
  color: var(--bg_gray);
}

.scroll_icon_bar {
  content: '';
  display: block;
  width: 2px;
  height: 60px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.scroll_icon_bar::after {
  content: '';
  display: block;
  width: 100%;
  background-color: var(--bg_gray);
  position: absolute;
  bottom: 0;
  animation: scroll_icon_bar_move 2s ease-in-out infinite;
}

@keyframes scroll_icon_bar_move {
  0% {
    opacity: 0;
    height: 100%;
  }

  25% {
    opacity: 1;
    height: 100%;
  }

  100% {
    height: 10%;
    opacity: 0;
  }
}


/*--------------------------------------------------
ハンバーガーメニュー
--------------------------------------------------*/

.gnavi_sp {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 888;
  gap: 3px;
}

.gnavi_sp_phone {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #27AD9D;
}


/* ハンバーガーメニューボタン */
#h_menu_btn {
  width: 60px;
  height: 60px;
  background: var(--main_blue);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  z-index: 999;
}

@media(hover:hover) {
  #h_menu_btn:hover {
    background: var(--sub_green);
  }
}

#h_menu_btn div {
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: var(--white);
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

#h_menu_btn span {
  display: block;
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: var(--white);
  left: 55%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

#h_menu_btn span:nth-of-type(1) {
  top: 33%;
}

#h_menu_btn span:nth-of-type(2) {
  top: 67%;
}

/* ハンバーガーメニューボタン（展開時） */
#h_menu_btn.active div {
  opacity: 0;
}

#h_menu_btn.active span:nth-of-type(1) {
  width: 60%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

#h_menu_btn.active span:nth-of-type(2) {
  width: 60%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

#h_menu {
  position: fixed;
  z-index: 888;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(00, 00, 00, 0.8);
  transition: all .5s;
}

.h_menu_scroll {
  z-index: 888;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#h_menu ul {
  padding: 100px 20px 0;
  text-align: right;
  color: var(--white);
}

#h_menu ul li {
  margin-bottom: 0.75em;
}

#h_menu ul li a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
}

#h_menu ul li a:hover {
  opacity: 0.7;
}

#h_menu ul li.recruit a {
  display: inline-block;
  background-color: var(--sub_green);
  padding: 0.75em 1em;
  margin-top: 20px;
}


/*--------------------------------------------------
index共通
--------------------------------------------------*/
.content_wrapper {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 30px 30px 120px;
  position: relative;
  z-index: 20;
}

/* セクションタイトル（h2） */
.section_title {
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--dark_gray);
  margin-bottom: 0.75em;
}

#recruit .section_title {
  color: #fff;
}

#topics .section_title {
  text-align: center;
}

.section_title_blue {
  color: var(--main_blue);
}

.section_title_green {
  color: var(--sub_green);
}

.section_title_jpn {
  display: block;
  font-size: 0.25em;
  font-weight: 600;
}

.section_title img {
  font-size: 1em;
  width: auto;
  height: 1em;
  margin-left: 0.25em;
  position: relative;
  top: 0.15em;
}

/* セクションタイトル（h3） */
.section_title_h3 {
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--main_blue);
}

/* セクション本文 */
.section_body {
  font-size: 1.125rem;
  line-height: 2;
  text-align: justify;
  color: #333;
}

/* moreボタン */
.more_btn_wrapper {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.more_btn {
  width: 280px;
  height: 50px;
  font-size: 1.125rem;
  color: var(--dark_gray);
  text-align: center;
  text-decoration: none;
  background-color: var(--bg_blue);
  border: 1px solid var(--bg_blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s;
}

.more_btn img {
  font-size: 1em;
  margin-left: 0.5em;
  width: 1.5em;
  height: 1.5em;
}

.more_btn:hover {
  background-color: #fff;
}


/*--------------------------------------------------
TOPICS
--------------------------------------------------*/
section#topics {
  position: relative;
  padding-top: 50px;
  padding-bottom: 100px;
  z-index: 0;
}

section#topics::before {
  content: '';
  width: 800px;
  height: 1000px;
  top: 80px;
  right: 0;
  background: url(../img/hexagon_blue.svg) no-repeat left / 1000px;
  position: absolute;
  z-index: -20;
}

.topics_cont {
  position: relative;
  text-align: center;
  margin: -30px 0 35px;
  padding-top: 70px;
  padding-bottom: 30px;
}

.topics_cont::after {
  content: '';
  display: block;
  width: 95%;
  max-width: 900px;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg_blue);
  z-index: -10;
}

.topics_cont_ul {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.topics_cont_li a {
  display: block;
  width: 240px;
  aspect-ratio: 240 / 280;
  background-color: #e4e7ed;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: #333;
  text-align: left;
  padding: 0 8% 8%;
  transition: all 0.3s;
}

.topics_cont_img {
  width: 100%;
  aspect-ratio: 200 / 160;
  margin-bottom: 6px;
  overflow: hidden;
}

.topics_cont_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.topics_cont_li a:hover {
  background-color: #eee;
  background-color: #f5f6fb;

}

.topics_cont_li a:hover .topics_cont_img img {
  transform: scale(120%);
}

.topics_cont_date_wrapper {
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.875em;
}

.topics_cont_date {
  font-size: 1em;
  margin-right: 1em;
}

.topics_cont_cat {
  font-size: 1em;
}

.topics_cont_cat ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 0.75em;
}

.topics_cont_title {
  font-size: 0.875rem;
}

.topics_btn_wrapper {
  width: 95%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3%;
}

.topics_btn {
  display: block;
  width: 100%;
  max-width: 300px;
  height: 50px;
  border: 1px solid var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s;
}

.topics_btn:hover {
  background-color: #fff;
}

.topics_btn img {
  height: 30px;
}


/*--------------------------------------------------
ABOUT
--------------------------------------------------*/
.about_flex_wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about_left {
  flex: 0 1 571px;
}

.about_right {
  flex: 0 1 549px;
}

.about_right img {
  width: 100%;
  height: auto;
}



/*--------------------------------------------------
BUSINESS
--------------------------------------------------*/
section#business {
  position: relative;
  z-index: 10;
}

section#business::before {
  content: '';
  width: 800px;
  height: 1000px;
  top: 20px;
  left: 0;
  background: url(../img/hexagon_blue.svg) no-repeat right / 1000px;
  position: absolute;
  z-index: -20;
}

section#business::after {
  content: '';
  width: 603px;
  height: 581px;
  top: -50px;
  left: 520px;
  background: url(../img/hexagon_white_1.svg) no-repeat right / 100%;
  position: absolute;
  z-index: -20;
}

.business_cont_title {
  font-size: 1.25rem;
  padding: 0.5em 1em;
  text-align: right;
  background-color: rgba(var(--main_blue_rgb), 0.85);
  color: var(--white);
  width: 350px;
  max-width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(50%);
}

.business_cont_title img {
  font-size: 1em;
  width: 1.6em;
  height: 1.6em;
  margin-left: 0.5em;
}

.business_cont1 {
  display: flex;
  gap: 5%;
  margin-bottom: 120px;
}

.business_cont1 a {
  display: block;
  width: 100%;
  height: 380px;
  position: relative;
  transition: all 0.3s;
}

.business_cont1 a:hover {
  opacity: 0.7;
}

.business_cont1 a>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business_cont2 {
  margin-bottom: 120px;
}

.business_cont2 a {
  display: block;
  position: relative;
  transition: all 0.3s;
}

.business_cont2 a:hover {
  opacity: 0.7;
}

.business_cont2_img {
  display: flex;
  width: 100%;
  height: auto;
}

.business_cont2_img div {
  width: calc(100% / 3);
}

.business_cont2_img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}


/*--------------------------------------------------
RECRUIT 上部fix画像
--------------------------------------------------*/
.recruit_fix_img {
  width: 100%;
  height: 500px;
  background: url(../img/top_fix_01.jpg) fixed center / cover;
  position: relative;
  overflow: hidden;
}

.recruit_fix_txt {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  position: absolute;
  right: 3%;
  bottom: 15%;
  z-index: 100;
}

.recruit_fix_img .frame_top {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
}

.recruit_fix_img .frame_bottom {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 0;
}

.recruit_fix_img .frame_top::before,
.recruit_fix_img .frame_top::after,
.recruit_fix_img .frame_bottom::before,
.recruit_fix_img .frame_bottom::after {
  content: '';
  width: 120%;
  height: 200px;
  position: absolute;
}

.recruit_fix_img .frame_top::before,
.recruit_fix_img .frame_top::after {
  background-color: var(--bg_gray);
}

.recruit_fix_img .frame_bottom::before,
.recruit_fix_img .frame_bottom::after {
  background-color: var(--bg_green);
}

.recruit_fix_img .frame_top::before {
  right: 50%;
  top: 0px;
  transform-origin: right bottom;
  transform: translateY(-100%) rotate(-7deg);
}

.recruit_fix_img .frame_top::after {
  left: 50%;
  top: 0px;
  transform-origin: left bottom;
  transform: translateY(-100%) rotate(7deg);
}

.recruit_fix_img .frame_bottom::before {
  right: 50%;
  bottom: 0px;
  transform-origin: right top;
  transform: translateY(100%) rotate(7deg);
}

.recruit_fix_img .frame_bottom::after {
  left: 50%;
  bottom: 0px;
  transform-origin: left top;
  transform: translateY(100%) rotate(-7deg);
}


/*--------------------------------------------------
RECRUIT
--------------------------------------------------*/
section#recruit {
  background-color: var(--bg_green);
  position: relative;
  z-index: 10;
}

#recruit .frame_top::before {
  content: '';
  width: 620px;
  height: 560px;
  top: -150px;
  left: 80px;
  background: url(../img/hexagon_green_1.svg) no-repeat right / 100%;
  position: absolute;
  z-index: -20;
}

#recruit .frame_top::after {
  content: '';
  width: 400px;
  height: 380px;
  top: -180px;
  right: -0;
  background: url(../img/hexagon_white_2.svg) no-repeat right / 100%;
  position: absolute;
  z-index: -20;
}

.recruit_flex_wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

.recruit_left {
  flex: 0 1 570px;
}

.recruit_right {
  flex: 0 1 550px;
}

.recruit_right img {
  width: 100%;
  aspect-ratio: 450 / 340;
  object-fit: cover;
}

#recruit .frame_bottom {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  overflow: hidden;
}

#recruit .frame_bottom::before,
#recruit .frame_bottom::after {
  content: '';
  width: 120%;
  height: 200px;
  position: absolute;
}

#recruit .frame_bottom::before,
#recruit .frame_bottom::after {
  background-color: var(--bg_gray);
}

#recruit .frame_bottom::before {
  right: 50%;
  bottom: 0px;
  transform-origin: right top;
  transform: translateY(100%) rotate(7deg);
}

#recruit .frame_bottom::after {
  left: 50%;
  bottom: 0px;
  transform-origin: left top;
  transform: translateY(100%) rotate(-7deg);
}

.recruit_message .section_title_h3 {
  text-align: center;
  color: #fff;
}

.massage_cont {
  margin-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.massage_cont ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.massage_cont ul li {
  display: flex;
  width: 340px;
}

.massage_cont ul li a {
  display: block;
  width: 100%;
  background-color: #fff;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: #333;
  text-align: left;
  padding: 0 35px 30px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.massage_cont_img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  margin-bottom: 20px;
  overflow: hidden;
}

.massage_cont_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.massage_cont ul li a:hover {
  background-color: #e6edec;
}

.massage_cont ul li a:hover .massage_cont_img img {
  transform: scale(110%);
}

.massage_cont_name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--sub_green);
  margin-bottom: 0.75em;
}

.massage_cont_name span {
  font-size: 0.875em;
  padding-left: 0.125em;
}

.massage_cont_name span::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 1em;
  background-color: var(--sub_green);
  position: relative;
  top: 0.1em;
  margin: 0 0.5em;
}

.massage_cont_body {
  font-size: 0.9375rem;
  margin-bottom: 1.5em;
  flex-grow: 1;
}

.massage_cont_more {
  font-size: 0.875rem;
  text-align: center;
  position: relative;
  z-index: 0;
}

.massage_cont_more img {
  display: inline-block;
  font-size: 0.875rem;
  width: 1.5em;
  margin-left: 0.5em;
}

.massage_cont_more::before {
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background: url(../img/titile_parts_green.svg) no-repeat center/ 100%;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -3;
}

.massage_cont::before {
  content: '';
  width: 300px;
  height: 290px;
  bottom: -40px;
  right: 0;
  background: url(../img/hexagon_white_3.svg) no-repeat right / 100%;
  position: absolute;
  z-index: -5;
}

.massage_cont::after {
  content: '';
  display: block;
  width: 95%;
  max-width: 800px;
  height: 70%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--sub_green);
  z-index: -10;
}

.recruit_message .more_btn {
  font-size: 1.25rem;
  color: #fff;
  background-color: var(--sub_green);
  border: none;
}

.recruit_message .more_btn:hover {
  background-color: #fff3;
}


/*--------------------------------------------------
フッター
--------------------------------------------------*/
footer .content_wrapper {
  padding-top: 70px;
  padding-bottom: 0;
}

.contact_title_wrapper_1st {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 80px;
  border-top: 1px solid var(--main_blue);
  border-bottom: 1px solid var(--main_blue);
  padding: 50px 0;
}

.contact_title_wrapper_2nd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.contact_copy {
  font-size: 1rem;
}

.contact_btn {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--main_blue);
  text-decoration: none;
  transition: all 0.3s;
}

.contact_btn span {
  display: flex;
  align-items: center;
}

.contact_btn img {
  font-size: 1em;
  margin-left: 0.75em;
  width: 1.75em;
  height: 1.75em;
}

.contact_btn:hover {
  opacity: 0.7;
}

/* マップ */
footer .map_flex_wrapper {
  display: flex;
  gap: 5%;
  margin-bottom: 100px;
}

footer .map_wrapper {
  width: 100%;
}

footer .map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 60%;
  margin-bottom: 15px;
}

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

footer .map_wrapper p {
  font-size: 0.875rem;
  margin-bottom: 0.5em;
}

footer .company_img {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  margin: 0 auto 60px;
}

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


footer .company_info {
  text-align: center;
  margin-bottom: 30px;
}

footer .company_info_logo {
  width: 100%;
  max-width: 360px;
  margin-bottom: 30px;
}

footer .company_info p {
  font-size: 1rem;
  margin-bottom: 0.5em;
}

.footer_bottom {
  width: 100%;
  background-color: var(--main_blue_dark);
  padding: 15px;
}

/* リクルートページ用のカラー設定 */
.page-recruit .footer_bottom,
.post-type-archive-requirements .footer_bottom,
.single-requirements .footer_bottom {
  background-color: var(--sub_green_dark);
}

.footer_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

.footer_nav ul {
  display: flex;
  gap: 20px;
}

.footer_nav ul li a {
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
}

.footer_nav_btn {
  display: flex;
  gap: 10px;
}

.footer_nav_btn a {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  width: 11em;
  background-color: white;
  text-decoration: none;
  text-align: center;
  line-height: 2;
  border: 1px solid #fff;
  transition: all 0.3s;
}

.footer_nav_btn a.blue {
  color: var(--main_blue_dark);
}

.footer_nav_btn a.blue:hover {
  color: #fff;
  background-color: var(--main_blue_dark);
}

.footer_nav_btn a.green {
  color: var(--sub_green_dark);
}

.footer_nav_btn a.green:hover {
  color: #fff;
  background-color: var(--sub_green_dark);
}

.copyright {
  font-size: 0.8rem;
  color: #fff;
  text-align: center;
}


/*--------------------------------------------------
Go Top ボタン
--------------------------------------------------*/
#go_top {
  visibility: hidden;
  width: 50px;
  height: 50px;
  background-color: var(--main_blue);
  border: 1px solid #fff;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 777;
  opacity: 0;
  transition: all ease .3s;
}

#go_top span {
  display: block;
  width: 50%;
  height: 50%;
  border-top: 3px solid var(--white);
  border-left: 3px solid var(--white);
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%) rotate(45deg);
}

#go_top.visible {
  visibility: visible;
  opacity: 0.8;
}

/* リクルートページ用のカラー設定 */
.page-recruit #go_top,
.post-type-archive-requirements #go_top,
.single-requirements #go_top {
  background-color: var(--sub_green);
}



/*--------------------------------------------------
固定ページ
--------------------------------------------------*/

.subpage_content_inner {
  background: #fff;
  padding: 10% 15%;
}

.subpage h2 {
  font-size: 2.5em;
  color: var(--main_blue);
  text-align: center;
  margin-bottom: 1em;
}

.subpage h2::before {
  content: '';
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 auto 5px;
  background: url(../img/titile_parts_blue.svg) no-repeat center/ 100%;
}

.subpage h3 {
  font-size: 1.5rem;
  color: var(--main_blue);
  margin: 0 0 1.5em;
  padding-left: 1.6em;
  position: relative;
}

.subpage h3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  background: url(../img/titile_parts_blue.svg) no-repeat center/ 100%;
}

.subpage h4 {
  font-size: 1.25em;
  color: var(--main_blue);
  border-bottom: 1px solid var(--main_blue);
  padding-bottom: 0.25em;
  margin-bottom: 1em;
}

.adout_cont_box {
  background-color: #fffe;
  padding: 60px;
  position: relative;
}

.subpage_title {
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-size: 4em;
  line-height: 1;
  color: var(--white);
  text-shadow: #0005 1px 1px 5px;
  letter-spacing: 0.05em;
  text-align: center;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.subpage_title span.blue {
  color: var(--main_blue);
}

.subpage_title span.green {
  color: var(--sub_green);
}

.subpage_title span.jpn {
  display: block;
  font-size: 0.3em;
  font-weight: 500;
  margin-top: 1em;
}


/* 私たちについて ご挨拶 */
.about_aisatu_title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--main_blue);
  text-align: center;
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--main_blue);
  margin-bottom: 2.5em;
}

.about_aisatu_title span {
  display: inline-block;
}

.about_aisatu_signature {
  text-align: right;
  margin-bottom: 2em;
}

.about_aisatu_signature span {
  display: inline-block;
}

.about_aisatu_flex {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about_aisatu_img {
  flex: 0 1 312px;
}

.about_aisatu_img img {
  object-fit: cover;
  aspect-ratio: 1/1;
}

.about_aisatu_text {
  flex: 0 2 628px;
  text-align: justify;
}

.about_aisatu_text p {
  font-size: 1rem;
  line-height: 1.75;
}


/* 私たちについて 会社概要 */
.about_gaiyou_flex {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about_gaiyou>div.about_gaiyou_flex {
  margin-bottom: 50px;
}

.about_gaiyou>div.about_gaiyou_flex:last-child {
  margin-bottom: 80px;
}

.about_gaiyou_flex_left {
  flex: 0 1 42%;
}

.about_gaiyou_flex_left img {
  aspect-ratio: 3/2;
  object-fit: cover;
}

.about_gaiyou_flex_right {
  flex: 0 1 58%;
}

.about_gaiyou ul span {
  color: var(--main_blue);
}

.about_gaiyou_sdgs {
  width: 100%;
  height: auto;
  padding: 30px;
  background-color: #B1DBEF55;
  display: flex;
  gap: 80px;
  align-items: center;
  margin-bottom: 50px;
}

.about_gaiyou_sdgs_logo {
  flex: 1 1 45%;
}

.about_gaiyou_sdgs_body {
  flex: 1 1 55%;
  font-size: 1rem;
}

.about_gaiyou_sdgs_text {
  margin-bottom: 1em;
  line-height: 1.75;
}

.about_gaiyou_sdgs_link {
  font-size: 0.875em;
}

.about_gaiyou_sdgs_link a {
  margin-left: 1em;
  color: var(--main_blue_dark);
}

.about_gaiyou_sdgs_link a:hover {
  opacity: 0.7;
}


/* 私たちについて 営業拠点 */
.about_kyoten>div:not(:last-child) {
  margin-bottom: 50px;
}

.about_kyoten img {
  margin-bottom: 20px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.about_kyoten_flex {
  display: flex;
  column-gap: 40px;
}

.about_kyoten_flex div:first-child {
  flex: 0 1 30%;
}

.about_kyoten_flex div:last-child {
  flex: 0 1 70%;
  aspect-ratio: 4/3;
}

.about_kyoten iframe {
  width: 100%;
  height: 100%;
}


/* 私たちについて 企業情報 */
#about_jyouhou {
  padding-bottom: 35vw;
  background-color: var(--bg_blue);
  background-image: url(../img/about_gaikan_esasi_grade.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left bottom;
}

.adout_jyouhou_item {
  margin-bottom: 80px;
}

/* 私たちについて 企業情報 沿革テーブル */
figure.about_enkaku table.has-fixed-layout {
  width: 100%;
  table-layout: auto;
}

figure.about_enkaku table.has-fixed-layout td {
  font-weight: 400;
  padding: 1em;
  border: none;
}

figure.about_enkaku table.has-fixed-layout tr>td:first-child {
  white-space: nowrap;
}

figure.about_enkaku table.has-fixed-layout tr:not(:last-child) {
  border-bottom: 1px dotted var(--dark_gray);
}

figure.about_enkaku table.has-fixed-layout td:not(:last-child) {
  border-right: 1px dotted var(--dark_gray);
}


/* 私たちについて リスト */
#about_annai ul,
#about_jyouhou ul {
  font-size: 1rem;
  margin-bottom: 2em
}

#about_annai ul li,
#about_jyouhou ul li {
  padding: 0 0 0.5em 1.2em;
  margin-bottom: 1em;
  border-bottom: 1px dotted var(--dark_gray);
  position: relative;
}

#about_annai ul li::before,
#about_jyouhou ul li::before {
  content: '';
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  vertical-align: -3%;
  background-color: var(--main_blue);
  position: absolute;
  top: 0.4em;
  left: 0;
}

#about_jyouhou ul li>span:not([class]) {
  display: inline-block;
  width: 320px;
  max-width: 100%;
}

/* 私たちについて リスト（2段組用追加スタイル） */
.about_jyouhou_ul_flex {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2em;
}

.about_jyouhou_ul_flex li {
  width: calc(50% - 1em);
}


/* 私たちについて 企業情報 下部イメージ画像 */
.about_jyouhou_img {
  width: 830px;
  max-width: 100%;
  height: auto;
  margin-top: 100px;
  margin-left: auto;
  margin-right: calc(50% - 50vw);
}


/* 私たちについてfix画像 */
.about_fix_img {
  width: 100%;
  height: 400px;
  background: url(../img/about_fix_J0V0795.jpg) fixed center / cover;
  position: relative;
  overflow: hidden;
}

.about_fix_img .frame_top {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
}

.about_fix_img .frame_bottom {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 0;
}

.about_fix_img .frame_top::before,
.about_fix_img .frame_top::after,
.about_fix_img .frame_bottom::before,
.about_fix_img .frame_bottom::after {
  content: '';
  width: 120%;
  height: 200px;
  position: absolute;
}

.about_fix_img .frame_top::before,
.about_fix_img .frame_top::after {
  background-color: var(--bg_gray);
}

.about_fix_img .frame_bottom::before,
.about_fix_img .frame_bottom::after {
  background-color: var(--bg_blue);
}

.about_fix_img .frame_top::before {
  right: 50%;
  top: 0px;
  transform-origin: right bottom;
  transform: translateY(-100%) rotate(-7deg);
}

.about_fix_img .frame_top::after {
  left: 50%;
  top: 0px;
  transform-origin: left bottom;
  transform: translateY(-100%) rotate(7deg);
}

.about_fix_img .frame_bottom::before {
  right: 50%;
  bottom: 0px;
  transform-origin: right top;
  transform: translateY(100%) rotate(7deg);
}

.about_fix_img .frame_bottom::after {
  left: 50%;
  bottom: 0px;
  transform-origin: left top;
  transform: translateY(100%) rotate(-7deg);
}


/* 事業内容 お困りではありませんか */
.business_problems_cont {
  background-color: #fffe;
  padding: 80px 100px;
}

.business_problems_1st {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
  align-items: center;
}

.business_problems_youtube {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16 / 9;
}

.business_problems_youtube iframe {
  width: 100%;
  height: 100%;
}

.business_problems_youtube img {
  border: 1px solid var(--medium_gray);
  display: none;
}

.business_problems_text {
  width: 100%;
}

.business_problems_body {
  margin-top: 1.5em;
}

.business_problems_body p {
  margin-bottom: 0.5em;
}

.business_problems_body p span {
  background-color: #ffff8e;
}

.business_problems_2nd {
  margin-bottom: 60px;
}

.resolutionflow_sp {
  display: none;
}

.business_problems_3nd {
  display: flex;
  gap: 60px;
}

.business_problems_contact {
  flex: 0 1 50%;
  border: 1px solid var(--main_blue);
  padding: 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.business_problems_contact h4 {
  font-size: 1.25em;
  font-weight: 400;
  margin-bottom: 1em;
}

.business_problems_contact_tel {
  width: 100%;
  max-width: 400px;
  margin-bottom: 1em;
}

.business_problems_contact_text {
  font-size: 1.125em;
}

.business_problems_contact_btn {
  font-size: 2rem;
  font-weight: 600;
  color: var(--main_blue);
  text-decoration: none;
  transition: all 0.3s;
}

.business_problems_contact_btn span {
  display: flex;
  align-items: center;
}

.business_problems_contact_btn img {
  font-size: 1em;
  margin-left: 0.75em;
  width: 1.75em;
  height: 1.75em;
}

.business_problems_contact_btn:hover {
  opacity: 0.7;
}

.business_problems_3rd {
  width: 100%;
}


/* 事業内容 製品紹介 */
#product {
  margin-bottom: 120px;
}

#product ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

#product ul li {
  width: 277.5px;
  height: auto;
  background-color: var(--white);
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

#product ul li img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.business_product_text {
  font-size: 1rem;
  padding: 1em;
}

.business_product_text>div {
  font-size: 1.125em;
  padding-bottom: 0.5em;
  margin-bottom: 0.75em;
  border-bottom: 1px solid var(--main_blue);
}

.business_product_text>p {
  font-size: 0.875em;
  line-height: 1.75;
  text-align: justify;
}


/* 事業内容 建機整備 */
#maintenance {
  margin-bottom: 120px;
}

.maintenance_text {
  width: 100%;
  max-width: 700px;
  margin-bottom: 50px;
}

.maintenance_text p {
  line-height: 1.75;
  text-align: justify;
}

.maintenance_images {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
}

.maintenance_images img,
.maintenance_images video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maintenance_images :nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.maintenance_images :nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.maintenance_images :nth-child(3) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.maintenance_images :nth-child(4) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.maintenance_images :nth-child(5) {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}


/* 事業内容 金具再生 */
#reproduction {
  margin-bottom: 40px;
}

.reproduction_text {
  width: 100%;
  max-width: 700px;
  margin-bottom: 50px;
  line-height: 1.75;
  text-align: justify;
}

.reproduction_text p {
  line-height: 1.75;
  text-align: justify;
}

.reproduction_images {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
}

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

.reproduction_images :nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.reproduction_images :nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}





/* 事業内容 主要設備一覧 */
#setubi {
  background-color: var(--bg_blue);
}

.setubi_cont {
  background-color: var(--white);
  padding: 60px;
}

.setubi_list {
  margin-bottom: 50px;
}

.setubi_list li {
  width: calc(50% - 1em);
}

.setubi_list ul {
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 2em;
}

.setubi_list ul:not(:last-child) {
  margin-bottom: 2em;
}

.setubi_list ul li {
  padding: 0 0 0.5em 1.2em;
  margin-bottom: 1em;
  border-bottom: 1px dotted var(--dark_gray);
  position: relative;
}

.setubi_list ul li::before {
  content: '';
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  vertical-align: -3%;
  background-color: var(--main_blue);
  position: absolute;
  top: 0.4em;
  left: 0;
}

.setubi_list ul li>span {
  display: inline-block;
  width: 350px;
  max-width: 100%;
}

.setubi_list ul li>span.tokusyu_setubi::before {
  display: inline-block;
  content: '特殊設備';
  font-size: 0.75em;
  font-weight: 400;
  color: var(--white);
  background-color: var(--sub_red);
  padding: 0.15em 0.4em;
  vertical-align: 7%;
  margin-right: 0.5em;
  border-radius: 0.2em;
}

.setubi_pickup_items {
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.setubi_pickup_item {
  width: calc((100% - 26px) / 2);
  background-color: #B1DBEF55;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}

.setubi_pickup_item .text {
  margin-bottom: 1.5em;
}

.setubi_pickup_item .text h5 {
  font-size: 1.125em;
  font-weight: 500;
  color: var(--main_blue);
  border-bottom: 1px solid var(--main_blue);
  padding-bottom: 0.5em;
  margin-bottom: 0.75em;
}

.setubi_pickup_item .text h5 span {
  display: inline-block;
  font-size: 0.75em;
  font-weight: 400;
  color: var(--white);
  background-color: var(--sub_red);
  padding: 0.15em 0.4em;
  vertical-align: 7%;
  margin-right: 0.5em;
  border-radius: 0.2em;
}

.setubi_pickup_item .image {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.setubi_pickup_item .image div:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.setubi_pickup_item .image div:nth-child(2) {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.setubi_pickup_item .image div:nth-child(3) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

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


/* 事業内容 fix画像 */
.business_fix_img {
  width: 100%;
  height: 400px;
  background: url(../img/business_fix.jpg) fixed center / cover;
  position: relative;
  overflow: hidden;
}

.business_fix_img .frame_top {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
}

.business_fix_img .frame_bottom {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 0;
}

.business_fix_img .frame_top::before,
.business_fix_img .frame_top::after,
.business_fix_img .frame_bottom::before,
.business_fix_img .frame_bottom::after {
  content: '';
  width: 120%;
  height: 200px;
  position: absolute;
}

.business_fix_img .frame_top::before,
.business_fix_img .frame_top::after {
  background-color: var(--bg_gray);
}

.business_fix_img .frame_bottom::before,
.business_fix_img .frame_bottom::after {
  background-color: var(--bg_blue);
}

.business_fix_img .frame_top::before {
  right: 50%;
  top: 0px;
  transform-origin: right bottom;
  transform: translateY(-100%) rotate(-7deg);
}

.business_fix_img .frame_top::after {
  left: 50%;
  top: 0px;
  transform-origin: left bottom;
  transform: translateY(-100%) rotate(7deg);
}

.business_fix_img .frame_bottom::before {
  right: 50%;
  bottom: 0px;
  transform-origin: right top;
  transform: translateY(100%) rotate(7deg);
}

.business_fix_img .frame_bottom::after {
  left: 50%;
  bottom: 0px;
  transform-origin: left top;
  transform: translateY(100%) rotate(-7deg);
}



/*--------------------------------------------------
トピックス 一覧
--------------------------------------------------*/

.topics_archive {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.topics_archive_li {
  padding: 40px 0;
  border-bottom: 1px solid #999;
}

.topics_archive_li a {
  display: flex;
  gap: 50px;
  color: var(--black);
  text-decoration: none;
  transition: all .3s;
}

.topics_archive_li a:hover {
  opacity: 0.7;
}

.topics_archive_li a:hover .topics_archive_img img {
  transform: scale(120%);
}

.topics_archive_date_wapper {
  display: flex;
  font-size: 0.875rem;
  color: #555;
  gap: 1em;
  margin-bottom: 1em;
}

.topics_archive_cat ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 0.75em;
}

.topics_archive_title {
  font-size: 1.75rem;
  color: var(--black);
  font-weight: 600;
}

.topics_archive_img {
  flex: 1 1 250px;
  height: auto;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.topics_archive_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}

.topics_archive_text {
  flex: 1 1 700px;
}

.topics_pagination {
  font-size: 1.125rem;
  text-align: center;
  margin-top: 80px;
  line-height: 50px;
}

.topics_pagination .page-numbers {
  display: inline-block;
  min-width: 50px;
  color: var(--black);
  text-decoration: none;
}

.topics_pagination .page-numbers.current {
  color: var(--white);
  background-color: #555;
}

.topics_pagination a {
  transition: all 0.3s;
}

.topics_pagination a:hover {
  opacity: 0.3;
}



/*--------------------------------------------------
トピックス 詳細
--------------------------------------------------*/

.topics_single {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.topics_single a {
  color: var(--main_blue);
  transition: all .3s;
}

.topics_single a:hover {
  opacity: 0.7;
}

.topics_single_img {
  width: 100%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 3 / 2;
  margin: 0 auto 60px;
}

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

.topics_single_title {
  font-size: 1.75rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 3rem;
}

.topics_single_date_wapper {
  display: flex;
  font-size: 1rem;
  color: #555;
  gap: 1em;
  margin-bottom: 1em;
}

.topics_single_cat ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 0.75em;
}

.topics_single p {
  line-height: 1.75;
  margin-bottom: 0.5em;
}

.topics_single_btn {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}


/*--------------------------------------------------
リクルートページ
--------------------------------------------------*/

.recruit_page h2 {
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-size: 5rem;
  color: var(--sub_green);
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 0.75em;
}

.recruit_page h2 span {
  display: block;
  font-size: 0.25em;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0;
  font-feature-settings: "palt";
}

.recruit_page h2.white {
  color: var(--white);
}

.recruit_page h2.white span {
  color: var(--white);
}


/* リクルート　職種紹介 */
#recruit_position {
  background-color: var(--sub_green);
}

.recruit_position_copy {
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--white);
  text-align: center;
  margin-bottom: 3em;
}

.recruit_position_copy span {
  padding: 0.25em;
  display: inline-block;
  background: linear-gradient(transparent 0%, transparent 60%, #fff3 60%, #fff3 100%);
}

.recruit_position_cont {
  display: flex;
  gap: 80px;
}

.recruit_position_item h3 {
  font-size: 2em;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25em;
}

.recruit_position_item h3 span {
  display: inline-block;
  font-family: futura-pt, sans-serif;
  font-size: 1.25em;
  vertical-align: -3%;
  margin-right: 0.25em;
}

/* リクルート 数字で見る北興商事 */
#recruit_numbers {
  background: url(../img/recruit_fix.jpg) fixed center / cover;
  background-color: rgba(#fff, 0.7);
  background-blend-mode: overlay;
  position: relative;
  overflow: hidden;
}

.recruit_numbers_list {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.recruit_numbers_list li {
  width: calc((100% - 60px) / 2);
  height: 100%;
}

#recruit_numbers .frame_top {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
}

#recruit_numbers .frame_bottom {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 0;
}

#recruit_numbers .frame_top::before,
#recruit_numbers .frame_top::after,
#recruit_numbers .frame_bottom::before,
#recruit_numbers .frame_bottom::after {
  content: '';
  width: 120%;
  height: 200px;
  position: absolute;
}

#recruit_numbers .frame_top::before,
#recruit_numbers .frame_top::after {
  background-color: var(--sub_green);
}

#recruit_numbers .frame_bottom::before,
#recruit_numbers .frame_bottom::after {
  background-color: var(--bg_green);
}

#recruit_numbers .frame_top::before {
  right: 50%;
  top: 0px;
  transform-origin: right bottom;
  transform: translateY(-100%) rotate(-7deg);
}

#recruit_numbers .frame_top::after {
  left: 50%;
  top: 0px;
  transform-origin: left bottom;
  transform: translateY(-100%) rotate(7deg);
}

#recruit_numbers .frame_bottom::before {
  right: 50%;
  bottom: 0px;
  transform-origin: right top;
  transform: translateY(100%) rotate(7deg);
}

#recruit_numbers .frame_bottom::after {
  left: 50%;
  bottom: 0px;
  transform-origin: left top;
  transform: translateY(100%) rotate(-7deg);
}


/* リクルート　インタビュー */
#recruit_interview {
  background-color: var(--bg_green);
}

.interview_cont article {
  width: 100%;
  font-size: 1rem;
  padding-bottom: 60px;
}

.interview_cont article:not(:last-child) {
  border-bottom: 2px solid #fff9;
  margin-bottom: 60px;
}

.recruit_interview_info {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 3em;
}


.recruit_interview_photo {
  flex: 0 1 500px;
  display: flex;
  justify-content: center;
}

.recruit_interview_photo_inner {
  width: 100%;
  max-width: 400px;
  height: 400px;
  text-align: left;
}

.recruit_interview_photo img {
  width: 90%;
  box-shadow: 40px 40px var(--sub_green);
}

/* ここから インタビュー記事偶数目のみスタイル変更 */
.recruit_interview_even .recruit_interview_info {
  flex-direction: row-reverse;
}

.recruit_interview_even .recruit_interview_photo img {
  box-shadow: -40px 40px var(--sub_green);
}

.recruit_interview_even .recruit_interview_photo_inner {
  text-align: right;
}

/* ここまで インタビュー記事偶数目のみスタイル変更 */

.recruit_interview_title {
  display: flex;
  flex: 0 1 550px;
  flex-direction: column;
  font-size: 1rem;
  gap: 2.5em;
}

.recruit_interview_title h4 {
  font-size: 2em;
  font-weight: 300;
}

.recruit_interview_name {
  font-size: 2.5em;
  font-weight: 500;
  color: var(--sub_green);
  padding: 0 0.2em;
  background: linear-gradient(transparent 0%, transparent 70%, #fffa 70%, #fffa 100%);
  align-self: start;
}

.recruit_interview_name span.honorific {
  font-size: 0.75em;
  margin-left: 0.25em;
}

.recruit_interview_name span.eng {
  font-size: 0.625em;
  font-weight: 400;
  color: #555;
  margin-left: 1em;
}

.recruit_interview_department {
  font-size: 2em;
  font-weight: 500;
  margin-left: -0.5em;
}

.recruit_interview_department span {
  color: #555;
}

.recruit_interview_qualification {
  font-size: 1.125em;
}

.recruit_interview_qualification h5 {
  font-weight: 300;
  color: var(--white);
  background-color: var(--sub_green_dark);
  padding: 0.5em 1em 0.5em;
  border-radius: 6px 6px 0 0;
}

.recruit_interview_qualification ul {
  background-color: #fffa;
  padding: 0.5em 1em;
  border-radius: 0 0 6px 6px;
}

.recruit_interview_qualification span {
  font-size: 0.8em;
}

.recruit_interview {
  display: flex;
  gap: 80px;
  background-color: #fffa;
  padding: 30px;
  border-radius: 6px;
}

.recruit_interview_body {
  flex: 0 1 560px;
}

.recruit_interview_body h4 {
  font-size: 1.5em;
  font-weight: 500;
  color: var(--sub_green);
  margin-bottom: 0.5em;
}

.recruit_interview_body h5 {
  font-size: 1em;
  line-height: 1.7;
  font-weight: 400;
  color: var(--sub_green_dark);
  margin-bottom: 0.5em;
}

.recruit_interview_body p {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 1em;
  text-align: justify;
}


/* リクルート　資格取得 */
#recruit_career {
  background-color: var(--white);
}

.recruit_career_cont {
  display: flex;
  gap: 80px;
  align-items: center;
}

.recruit_career_cont_left {
  width: 50%;
}

.recruit_career_cont_left h3 {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--sub_green);
  margin-bottom: 1em;
}

.recruit_career_cont_left p {
  font-size: 1.125rem;
  line-height: 1.75;
}

.recruit_career_cont_left p:not(:last-child) {
  margin-bottom: 1em;
}

.recruit_career_cont_right {
  width: 50%;
}

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


/* リクルート　代表からのことば */
#recruit_message {
  background-color: var(--white);
}

.recruit_message_cont {
  display: flex;
  gap: 80px;
}

.recruit_message_cont_left {
  width: 40%;
  position: relative;
}

.recruit_message_photo {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 1 / 1;
}

.recruit_message_photo img {
  width: 80%;
  box-shadow: 80px 80px #C2EDE8;
}

.recruit_message_cont_right {
  width: 60%;
}

.recruit_message_cont_right h3 {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--sub_green);
  margin-bottom: 1em;
}

.recruit_message_cont_right p {
  font-size: 1.125rem;
  margin-bottom: 1em;
  line-height: 1.75;
}

.recruit_message_cont_right div {
  font-size: 1.5em;
  text-align: right;
  line-height: 1.75;
  margin-top: 1.5em;
}


/* リクルート　採用情報 */
#recruit_join {
  background-color: var(--bg_gray);
}

.recruit_join_btn_wrapper {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.recruit_join_btn {
  width: 360px;
  height: 70px;
  font-size: 1.5rem;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  background-color: var(--sub_green_dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s;
}

.recruit_join_btn img {
  font-size: 1em;
  margin-left: 0.5em;
  width: 1.5em;
  height: 1.5em;
}

.recruit_join_btn:hover {
  opacity: 0.7;
}


/* リクルート　コンタクト */
#recruit_contact {
  background-color: var(--bg_gray);
}

.recruit_contact_cont {
  display: flex;
  gap: 60px;
}

.recruit_contact_box {
  flex: 0 1 50%;
  border: 1px solid var(--sub_green);
  padding: 60px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.recruit_contact_cont h4 {
  font-size: 1.25em;
  font-weight: 400;
  margin-bottom: 1em;
}

.recruit_contact_tel {
  width: 100%;
  max-width: 400px;
  margin-bottom: 1em;
}

.recruit_contact_text {
  font-size: 1.125em;
}

.recruit_contact_btn {
  font-size: 2rem;
  font-weight: 600;
  color: var(--sub_green);
  text-decoration: none;
  transition: all 0.3s;
}

.recruit_contact_btn span {
  display: flex;
  align-items: center;
}

.recruit_contact_btn img {
  font-size: 1em;
  margin-left: 0.75em;
  width: 1.75em;
  height: 1.75em;
}

.recruit_contact_btn:hover {
  opacity: 0.7;
}



/*--------------------------------------------------
募集要項 一覧
--------------------------------------------------*/

.requirements_title {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  color: var(--sub_green);
  margin: 1em 0 1.5em;
}

.requ_list li {
  font-size: 1rem;
  background-color: var(--bg_green_pale);
  padding: 50px;
  margin-bottom: 60px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.3) 3px 3px 6px;
}

.requ_list_body {
  display: flex;
  gap: 10%;
  margin-bottom: 50px;
}

.requ_list_body_left {
  flex: 0 1 400px;
}

.requ_list_img {
  aspect-ratio: 3 / 2;
}

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

.requ_list_body_right {
  flex: 0 1 650px;
}

.requ_list_body_right h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #555;
  border-bottom: 1px solid var(--sub_green);
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}

.requ_list_body_right table {
  font-size: 1rem;
}

.requ_list_body_right table th,
.requ_list_body_right table td {
  padding: 0.75em 0;
}

.requ_list_body_right table th {
  font-weight: 500;
  color: var(--sub_green);
  text-align: left;
  padding-right: 2em;
  white-space: nowrap;
}

.requ_list_btn {
  display: flex;
  gap: 50px;
  justify-content: center;
}

.requ_list_btn a {
  font-size: 1.25em;
  display: block;
  padding: 0.5em;
  background-color: var(--sub_green);
  color: var(--white);
  text-decoration: none;
  width: 10em;
  text-align: center;
  transition: all 0.3s;
}

.requ_list_btn a:hover {
  opacity: 0.7;
}

.requ_list_none {
  width: 100%;
  background-color: #0001;
  padding: 20px;
  text-align: center;
}

.requ_list_none p {
  font-size: 1em;
  margin-bottom: 0.5em;
}



/*--------------------------------------------------
募集要項 詳細
--------------------------------------------------*/

.single-requirements main {
  background-color: var(--bg_green_pale);
}

/* 募集要項 詳細 上段 */
.requirements_intro {
  margin-bottom: 140px;
}

.requirements_intro_flex {
  display: flex;
  gap: 60px;
}

.requirements_intro_left {
  flex: 0 1 40%;
}

.requirements_intro_right {
  flex: 0 1 60%;
}

.requirements_intro_right>div {
  margin-bottom: 3rem;
}

.requirements_intro_right h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--sub_green);
  margin-bottom: 0.5em;
}

.requirements_intro_right p {
  font-size: 1.125rem;
  line-height: 1.75;
}

/* 募集要項 詳細 中段（募集要項詳細） */
.requirements_detail {
  margin-bottom: 140px;
}

.requirements_detail table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 20px;
}

.requirements_detail th,
.requirements_detail td {
  text-align: left;
  font-weight: 400;
  padding: 0.75em 1em;
  vertical-align: middle;
  border: 2px solid var(--medium_gray);
  background-color: var(--white);
}

.requirements_detail th {
  width: 20%;
  color: var(--white);
  background-color: var(--medium_gray);
  white-space: nowrap
}

.requirements_detail td {
  width: 80%;
}


/*--------------------------------------------------
404ページ
--------------------------------------------------*/
.content_wrapper.not_found {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.not_found_title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--main_blue);
  margin-bottom: 1.5em;
}

.not_found_body p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 0.5em;
}


/*--------------------------------------------------
パンくずリスト
--------------------------------------------------*/
.breadcrumbs_wrapper {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 15px 30px;
}

.breadcrumbs {
  font-size: 1rem;
  color: #777;
}

.breadcrumbs a {
  color: #333;
}

.breadcrumbs span {
  white-space: nowrap;
}

.breadcrumbs a:hover {
  opacity: 0.7;
}



/*--------------------------------------------------
フォーム（問い合わせフォーム、求人応募フォーム）
--------------------------------------------------*/
.form_wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 1rem;
}

.contactform_text {
  margin-bottom: 3em;
}

.contactform_text p {
  font-size: 1.5em;
  text-align: center;
  font-weight: 500;
  color: var(--main_blue);
  margin-bottom: 0.25em;
}

.entryform_text {
  margin-bottom: 2em;
}

.entryform_text p {
  font-size: 1.125em;
  margin-bottom: 0.25em;
}

table.CF7_table {
  width: 100%;
  border: 2px solid var(--medium_gray);
}

table.CF7_table tr {
  border-top: 1px solid var(--white);
}

.CF7_table th {
  width: 30%;
  font-weight: 400;
  text-align: left;
  background-color: var(--bg_blue);
  padding: 1em;
  vertical-align: middle
}

#entry_form .CF7_table th {
  background-color: var(--bg_green);
}

.CF7_table td {
  padding: 1em;
}

.CF7_table input[type="text"],
.CF7_table input[type="email"],
.CF7_table textarea {
  font-size: 1em;
  width: 100%;
  border: none;
  padding: 1em;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif !important;
  font-weight: 400;
  color: #333;
}

.CF7_table input[type="radio"] {
  vertical-align: baseline;
}

.CF7_table textarea {
  line-height: 1.5;
  resize: none;
}

.CF7_table .wpcf7-list-item {
  margin: 0 1em 0 0;
}

.CF7_table ::placeholder {
  color: #aaaaaa;
}

/*「必須」文字*/
.CF7_req {
  font-size: 0.875em;
  padding: 0.2em 0.5em 0.3em;
  background: var(--main_blue_dark);
  color: var(--white);
  border-radius: 3px;
  margin-right: 0.5em;
}

#entry_form .CF7_req {
  background: var(--sub_green_dark);
}

/*「任意」文字*/
.CF7_unreq {
  font-size: 0.875em;
  padding: 0.2em 0.5em 0.3em;
  background: #999999;
  color: var(--white);
  border-radius: 3px;
  margin-right: 0.5em;
}

/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
  background-color: var(--main_blue_dark);
  border: none;
  color: var(--white);
  font-size: 1.25em;
  font-weight: 500;
  margin: 0 auto;
  padding: 0.5em 1em;
}

#entry_form .wpcf7 input.wpcf7-submit {
  background-color: var(--sub_green_dark);
}

.CF7_btn {
  text-align: center;
  margin-top: 2em;
}

.wpcf7-spinner {
  width: 0;
  margin: 0;
}
