*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root{
  --f-ja: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  --f-en: "Archivo Black", sans-serif;
  --c-main: #E5001B;
  --c-sub: #0071BD;
}

html{
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body{
  color: #393939;
  font-size: 18px;
}

table{
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

ul,
ol{
  list-style: none;
}

li{
  list-style-type: none;
  position: relative;
}

p{
  line-height: 1.667em;
}

a{
  color: #393939;
  display: inline-block;
  position: relative;
  text-decoration: none;
  transition: 0.2s;
}

img{
  display: block;
  height: auto;
  max-width: 100%;
  transition: 0.4s;
}
img.center{
  margin-left: auto;
  margin-right: auto;
}

input[type="button"],
input[type="submit"]{
  cursor: pointer;
}

button,
input,
textarea{
  font-family: var(--f-ja);
  transition: 0.3s;
}

::before,
::after{
  background-repeat: no-repeat;
  transition: 0.2s;
}

.c-main{
  color: #E5001B;
}
.c-sub{
  color: #0071BD;
}

.en{
  font-family: var(--f-en);
  line-height: 1em;
}

.center{
  text-align: center;
}

.right{
  text-align: right;
}

.bold{
  font-weight: bold;
}

.sp{
  display: none;
}

.mb-10{ margin-bottom: 10px; }
.mb-20{ margin-bottom: 20px; }
.mb-30{ margin-bottom: 30px; }
.mb-40{ margin-bottom: 4rem; }
.mb-50{ margin-bottom: 5rem; }
.mb-60{ margin-bottom: 6rem; }
.mb-70{ margin-bottom: 7rem; }
.mb-80{ margin-bottom: 8rem; }
.mb-90{ margin-bottom: 9rem; }
.mb-100{ margin-bottom: 10rem; }


.flex_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex_box.center{
  justify-content: center;
}

.flex_box.reverse{
  flex-flow:row-reverse;
}

.inner_1820,
.inner_1700,
.inner,
.inner_1050,
.inner_830{
  margin-left: auto;
  margin-right: auto;
  max-width: 1240px;
  width: calc(100% - 30px);
}

.inner_1820{
  max-width: 1820px;
  width: calc(100% - 100px);
}
.inner_1700{
  max-width: 1700px;
  width: calc(100% - 100px);
}
.inner_1050{
  max-width: 1050px;
}
.inner_830{
  max-width: 830px;
}

.column_02 .item{
  width: 48%;
}

.column_02 .item.link_btn{
  margin-top: 0;
  margin-bottom: 10px;
}

.column_02 .item.link_btn a{
  max-width: 100%;
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s, transform .8s;
}
/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .2s;
}

.js-fadeUp.second.is-inview{
  transition-delay: .5s;
}
.js-fadeUp.third.is-inview{
  transition-delay: .8s;
}

/*-- ↓ under1024 ↓ ------------------------------*/
@media screen and (max-width:1024px){
  .inner_1820,
  .inner_1700{
    width: calc(100% - 30px);
  }
}

/*-- ↓ under767 ↓ ------------------------------*/
@media screen and (max-width:767px){
  html{
    font-size: 50%;
    scroll-padding-top: 80px;
  }
  body{
    font-size: 16px;
  }
  .sp{
    display: block;
  }
  .pc{
    display: none !important;
  }
  
  .flex_box.reverse{
    flex-flow:wrap;
  }
  
  .column_02 .item{
    width: 100%;
  }
}


/*---------------------------
ボタン
----------------------------*/
.link_btn{
  margin-top: 4.5rem;
}

.link_btn a{
  background-color: var(--c-main);
  border: 1px solid var(--c-main);
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 700;
  max-width: 400px;
  overflow: hidden;
  padding: 3rem 5rem;
  padding-right: 6.5rem;
  text-align: left;
  width: 100%;
}

.link_btn a::before{
  background-color: #fff;
  content: '';
  display: block;
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transition: transform 0.6s ease;
  transform-origin: right;
}
.link_btn a:hover::before{
  transform: scaleX(1);
  transform-origin: left;
}

.link_btn a::after{
  background-image: url("../img/common/icon_arrow-white.svg");
  background-size: contain;
  content: "";
  height: 17px;
  position: absolute;
  top: 51%;
  right: 35px;
  transform: translateY(-50%);
  width: 22px;
  z-index: 2;
}
.link_btn a:hover::after{
  background-image: url("../img/common/icon_arrow-red.svg");
}

.link_btn a span{
  color: #fff;
  position: relative;
  z-index: 2;
}
.link_btn a:hover span{
  color: var(--c-main);
}

/*青背景*/
.link_btn.blue a{
  background-color: var(--c-sub);
  border-color: var(--c-sub);
}

.link_btn.blue a:hover span{
  color: var(--c-sub);
}

.link_btn.blue a:hover::after{
  background-image: url("../img/common/icon_arrow-blue.svg");
}


/*白背景×赤文字*/
.link_btn.white_red a{
  background-color: #fff;
  border-color: #fff;
}

.link_btn.white_red a::before{
  background-color: var(--c-main);
}

.link_btn.white_red a::after{
  background-image: url("../img/common/icon_arrow-red.svg");
}
.link_btn.white_red a:hover::after{
  background-image: url("../img/common/icon_arrow-white.svg");
}

.link_btn.white_red a span{
  color: var(--c-main);
}
.link_btn.white_red a:hover span{
  color: #fff;
}


/*白背景×青文字*/
.link_btn.white_blue a{
  background-color: #fff;
  border-color: #fff;
}

.link_btn.white_blue a::before{
  background-color: var(--c-sub);
}

.link_btn.white_blue a::after{
  background-image: url("../img/common/icon_arrow-blue.svg");
}
.link_btn.white_blue a:hover::after{
  background-image: url("../img/common/icon_arrow-white.svg");
}

.link_btn.white_blue a span{
  color: var(--c-sub);
}
.link_btn.white_blue a:hover span{
  color: #fff;
}


/*=================================

ヘッダー

==================================*/
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}

header .header_inner{
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

header .logo{
  background-color: #fff;
  border-bottom-right-radius: 10px;
  line-height: normal;
  position: relative;
}

header .logo a{
  padding: 3rem;
  padding-left: clamp(3rem,2.6vw,5rem);
  padding-right: clamp(15px,1.56vw,30px)
}

header .header_menu{
  display: flex;
  margin-top: clamp(20px,2.6vw,5rem);
  margin-right: clamp(15px,5.21vw,10rem);
}

header .header_menu > ul{
  background-color: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 3px 0 rgba(0,0,0,0.23);
  display: flex;
  min-height: 70px;
  padding: 0 20px;
  position: relative;
}

header .header_menu > ul > li{
  align-content: center;
  margin: 0 clamp(7.5px,1.13vw,18px);
}

header .header_menu > ul > li > a,
header .header_menu > ul > li > span{
  cursor: pointer;
  font-size: clamp(15px,0.94vw,18px);
  font-weight: 600;
}

header .header_menu > ul > li:hover > a,
header .header_menu > ul > li:hover > span{
  color: var(--c-sub);
}


header ul.level_02{
  display: none;
  padding-top: 15px;
  position: absolute;
  top: calc(100%);
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
  width: 200px;
}
header ul.level_02::before{
  border: 15px solid transparent;
  border-bottom: 15px solid #fff;
  content: "";
  margin-top: -15px;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
}

header ul.level_02 li{
  background-color: #fff;
  padding-left: 10px;
  padding-right: 10px;
}
header ul.level_02 li:first-child{
  border-radius: 10px 10px 0 0;
  padding-top: 10px;
}
header ul.level_02 li:last-child{
  border-radius: 0 0 10px 10px;
  box-shadow: 0 2px 3px 0 rgba(0,0,0,0.23);
  padding-bottom: 10px;
}

header ul.level_02 li a{
  border-bottom: 1px dashed #ccc;
  display: block;
  font-size: 14px;
  font-weight: 500;
  padding: 5px;
  width: 100%;
}

header ul.level_02 li a:hover{
  color: var(--c-sub);
}

header ul.level_02 li:last-child a{
  border-bottom: none;
}

header .header_menu > ul > li:hover ul.level_02{
  display: block;
}


header .header_menu a.entry{
  align-content: center;
  background-color: var(--c-main);
  border: 2px solid var(--c-main);
  border-radius: 999px;
  box-shadow: 0 2px 3px 0 rgba(0,0,0,0.23);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-left: 20px;
  text-align: center;
  width: clamp(100px,8.85vw,170px);
}
header .header_menu a.entry:hover{
  background-color: #fff;
  color: var(--c-main);
  font-size: clamp(16px,1.04vw,20px);
}

.hamburger_menu{
  display: none;
}

/*-- ↓ under1400 ↓ ------------------------------*/
@media screen and (max-width:1400px){
  header{
    position: absolute;
  }
  
  header .header_menu a.entry{
    display: none;
  }
  
  .hamburger_menu{
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 3px 0 rgba(0,0,0,0.23);
    cursor: pointer;
    display: block;
    height: 70px;
    position: fixed;
    top: 40px;
    right: 40px;
    width: 70px;
    z-index: 100;
  }
  
  .hamburger_menu::after{
    color: var(--c-sub);
    content: "MENU";
    font-size: 15px;
    font-weight: 900;
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  
  .hamburger_menu span{
    background-color: var(--c-sub);
    border-radius: 4px;
    display: block;
    height: 4px;
    position: absolute;
    left: 15px;
	transition: 0.3s;
    width: 40px;
  }
  
  .hamburger_menu span:nth-child(1){
    top: 12px;
  }
  .hamburger_menu span:nth-child(2){
    top: 22px;
  }
  .hamburger_menu span:nth-child(3){
    top: 32px;
  }
  
  .hamburger_menu.active::after{
    content: "CLOSE"
  }
  .hamburger_menu.active span:nth-child(1){
    top: 22px;
    transform: rotate(45deg)
  }
  .hamburger_menu.active span:nth-child(2){
    opacity: 0;
  }
  .hamburger_menu.active span:nth-child(3){
    top: 22px;
    transform: rotate(-45deg)
  }
  
  
  
  header .header_menu > ul{
    background-color: var(--c-sub);
    border-radius: 0;
    display: block;
    height: 100vh;
    opacity: 0;
    overflow: auto;
    padding-top: 30px;
    padding-bottom: 50px;
    position: fixed;
    pointer-events: none;
    top: 0;
    left: 0;
    transition: 0.3s;
    width: 100%;
    z-index: 90;
  }
  
  header .header_menu > ul.active{
    opacity: 1;
    pointer-events: all;
  }
  
  header .header_menu > ul > li{
    background-image : linear-gradient(to right, #fff 3px, transparent 3px);
    background-repeat: repeat-x;
    background-position: left bottom;
    background-size: 6px 1px;
    margin-left: 0;
    margin-right: 0;
  }
  
  header .header_menu > ul > li.level_01{
    margin-top: 15px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  
  header .header_menu > ul > li > span,
  header .header_menu > ul > li:not(.entry) > a{
    color: #fff;
    display: block;
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 15px;
    width: 100%;
  }
  
  header .header_menu > ul > li:hover > span{
    color: #fff;
  }
  
  header .header_menu > ul > li > span{
    padding-bottom: 0;
  }
  
  
  header .header_menu > ul > li > a::before{
	border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    content: '';
    height: 8px;
    position: absolute;
    top: 8px;
	right: 15px;
    transform: rotate(45deg);
	width: 8px;
  }
  
  
  header .header_menu ul.level_02{
    background-color: transparent;
    border-radius: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    position: static;
	text-align: left;
    transform: none;
    width: 95%;
  }
  
  header .header_menu ul.level_02::before{
    display: none;
  }
  
  header ul.level_02 li:last-child{
    box-shadow: none;
  }
  
  header .header_menu ul.level_02 li{
    background-color: transparent;
  }
  
  header .header_menu ul.level_02 li a{
    border-bottom: none;
    color: #fff;
    display: inline-block;
    padding-left: 20px;
    width: auto;
  }
  
  header .header_menu ul.level_02 li a::before{
    background-color: #fff;
    content: "";
    height: 1px;
    position: absolute;
    top: 16px;
    left: 0;
    width: 10px;
  }
  
  header .header_menu > ul > li.entry{
    background-image: none;
    display: block;
  }
  header .header_menu > ul > li.entry a{
    background-color: var(--c-main);
    border-radius: 999px;
    color: #fff;
    display: block;
    font-family: var(--f-en);
    font-size: 20px;
    margin-top: 20px;
    padding: 15px;
    text-align: center;
    width: 100%;
  }
  header .header_menu > ul > li.entry a::before{
    display: none;
  }
  
}


/*-- ↓ under767 ↓ ------------------------------*/
@media screen and (max-width:767px){
  header .logo{
    width: 65%;
  }
  header .logo a{
    padding-left: 15px;
  }
  
  .hamburger_menu{
    border-radius: 0 0 0 10px;
    top: 0;
    right: 0;
  }
}


/*=================================

フッター

==================================*/
.f_entry-box{
  background-color: var(--c-main);
  border-radius: 10px;
  margin-top: 10rem;
  margin-bottom: 10rem;
  padding-top: 5rem;
  padding-bottom: 8rem;
}

.f_entry-box .head{
  color: #fff;
  font-weight: 700;
  margin-bottom: 6.6rem;
}
.f_entry-box .head span{
  display: block;
  font-size: 6.4rem;
}

.f_entry-box .corner_03 .text{
  background-color: var(--c-main);
  font-size: clamp(18px,1.25vw,2.4rem);
  font-weight: 700;
  padding-top: clamp(10px,1.35vw,2.6rem);
  padding-left:clamp(15px,1.35vw,2.5rem);
  padding-bottom: clamp(10px,1.35vw,2.6rem);
  width: 67%;
}

.f_entry-box .corner_03 .text::before{
  height: 14px;
  width: 18px;
}

.f_entry-box .corner_03::after{
  left: 67%;
}

.f_entry-box .corner_03::after,
.f_entry-box .corner_03 .text::after{
  background-image: url("../img/common/img_corner-red.svg");
}



footer #company_info{
  width: 40%;
}

footer #company_info a.entry{
  background-color: var(--c-main);
  border-radius: 999px;
  color: #fff;
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  max-width: 450px;
  padding: 2rem;
  text-align: center;
  width: 100%;
}
footer #company_info a.entry:hover{
  opacity: 0.5;
}

footer #company_info ul{
  display: flex;
  flex-wrap: wrap;
}

footer #company_info ul li{
  margin-right: 3rem;
  padding-left: 15px;
}
footer #company_info ul li::before{
  border-top: solid 2px var(--c-sub);
  border-right: solid 2px var(--c-sub);
  content: '';
  height: 5px;
  position: absolute;
  top: 11px;
  left: 0;
  transform: rotate(45deg);
  width: 5px;
}

footer #company_info ul li a{
  font-size: 16px;
  font-weight: 600;
}
footer #company_info ul li a:hover{
  color: var(--c-sub);
  text-decoration: underline;
}

footer #company_info .bold{
  font-size: 2.5rem;
}

footer #company_info .copy_right{
  color: #9C9C9C;
  margin-top: 3rem;
}

footer nav{
  display: flex;
  justify-content: space-between;
  width: 55%;
}

footer nav .block{
  width: 48%;
}

footer nav .block .menu{
  margin-bottom: 6rem;
  position: relative;
}
footer nav .block .menu::before{
  background-color: #C9C9C9;
  content: "";
  height: 2px;
  position: absolute;
  top: 17px;
  width: 100%;
}

footer nav .block .menu .head{
  background-color: #fff;
  color: #989898;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  padding-right: 17px;
  position: relative;
  z-index: 1;
}

footer nav .block .menu .head span{
  color: var(--c-sub);
  display: block;
  font-size: 3.2rem;
}

footer nav .block .menu ul{
  margin-left: auto;
  margin-right: 0;
  width: 50%;
}

footer nav .block .menu ul li{
  margin-bottom: 10px;
  padding-left: 15px;
}

footer nav .block .menu ul li::before{
  border-top: solid 2px var(--c-sub);
  border-right: solid 2px var(--c-sub);
  content: '';
  height: 5px;
  position: absolute;
  top: 11px;
  left: 0;
  transform: rotate(45deg);
  width: 5px;
}

footer nav .block .menu ul li a{
  font-weight: 500;
}
footer nav .block .menu ul li a:hover{
  color: var(--c-sub);
  text-decoration: underline;
}

/*-- ↓ under1024 ↓ ------------------------------*/
@media screen and (max-width:1024px){
  footer nav .block .menu ul{
    margin-top: 15px;
    width: 100%;
  }
}

/*-- ↓ under767 ↓ ------------------------------*/
@media screen and (max-width:767px){
  footer #company_info,
  footer nav,
  footer nav .block{
    width: 100%;
  }
  
  footer nav{
    flex-wrap: wrap;
  }
  
  footer #company_info{
    order: 1;
  }
}

/*=================================

メインビジュアル

==================================*/

#mainvisual{
  background: linear-gradient(180deg,#fff 0%, #fff 50%, #0071BD 50%);
  height: clamp(550px,56.25vw,1080px);
  padding: 30px clamp(15px,2.6vw,50px);
  position: relative;
}

#mainvisual .img_box{
  height: 100%;
}

#mainvisual .img_box img{
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

#mainvisual .text_box{
  color: var(--c-sub);
  font-size: clamp(16px,1.67vw,3.2rem);
  font-weight: 700;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  left: 50%;
  bottom: 45px;
  transform: translateX(-50%);
  z-index: 2;
}

#mainvisual .text_box .catch{
	font-size: clamp(25px,4.33vw,6.5rem);
	font-weight: 900;
	line-height: 1.4em;
}

#mainvisual .text_box .catch span{
	margin-bottom: 20px;
}

#mainvisual .text_box span{
	background-color: #fff;
	border-radius: 10px;
	display: inline-block;
	margin-bottom: 10px;
	padding: 0 5px;
}

/*-- ↓ under767 ↓ ------------------------------*/
@media screen and (max-width:767px){
	#mainvisual .text_box{
		bottom: 40px;
	}
	
	#mainvisual .text_box p:not(.catch){
		background-color: rgba(255, 255, 255, 0.85);
		border-radius: 5px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	
	#mainvisual .text_box p:not(.catch) span{
		background-color: transparent;
		margin-bottom: 0;
	}
	
	#mainvisual .text_box .catch span{
		border-radius: 5px;
		margin-bottom: 5px;
	}
}

/*=================================

トップページ（front-page）

==================================*/
#front-page h2.head{
  font-size: clamp(20px,2.08vw,4rem);
  font-weight: 800;
  position: relative;
}

#front-page h2.head .en{
  display: inline-block;
  font-size: clamp(40px,8.33vw,16rem);
  margin-right: 3.6rem;
}


.corner_01,
.corner_03{
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.corner_01{
  margin-bottom: 20px;
  width: 48.5%;
}

.corner_01::before{
  background: linear-gradient(180deg,rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.36) 77%, rgba(0, 0, 0, 0.5) 100%);
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.corner_01:hover > img{
  filter: blur(5px);
}

.corner_01 .text{
  color: #fff;
  font-size: clamp(18px,1.25vw,2.4rem);
  font-weight: 800;
  padding: 3rem;
  padding-left: clamp(15px,3.56vw,7rem);
  padding-right: 9rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.corner_01 .text span{
  align-content: center;
  background-color: var(--c-sub);
  border-top-left-radius: 10px;
  content: "";
  height: 84px;
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: center;
  width: 84px;
  z-index: 3;
}

.corner_01 .text span::before,
.corner_01 .text span::after{
  background-image: url("../img/common/img_corner-blue.svg");
  content: "";
  height: 10px;
  transform: scale(-1,1);
  position: absolute;
  width: 10px;
}
.corner_01 .text span::before{
  bottom: 100%;
  right: 0;
}
.corner_01 .text span::after{
  bottom: 0;
  right: 100%;
}

.corner_01 .text span img{
  margin: auto auto;
  position: relative;
  top: 2px;
  right: -10px;
}

.corner_01 .text .en{
  font-size: clamp(30px,3.33vw,6.4rem);
}


.corner_03{
  margin-bottom: 30px;
  width: 48%;
}

.corner_03::after,
.corner_03 .text::after{
  background-image: url("../img/common/img_corner-blue.svg");
  content: "";
  height: 10px;
  position: absolute;
  width: 10px;
}

.corner_03::after{
  bottom: 0;
  left: 65%;
}

.corner_03 .text{
  background-color: var(--c-sub);
  border-top-right-radius: 10px;
  color: #fff;
  font-weight: 500;
  padding: 14px;
  padding-right: 45px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 65%;
}

.corner_03 .text::before{
  background-image: url("../img/common/icon_arrow-white.svg");
  background-size: contain;
  content: "";
  height: 17px;
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 22px;
}

.corner_03:hover .text::before{
  right: 17px;
}

.corner_03 .text::after{
  bottom: 100%;
  left: 0;
}

.corner_03:hover img{
  transform: scale(1.15);
}


/*-- ↓ under1024 ↓ ------------------------------*/
@media screen and (max-width:1024px){  
  .corner_01 .text span{
    height: 65px;
    width: 65px;
  }
  
  .corner_01 .text span img{
    right: -8px;
  }
  
  .corner_03::after{
    left: 85%;
  }
  
  .corner_03 .text{
    width: 85%;
  }
  
}

/*-- ↓ under767 ↓ ------------------------------*/
@media screen and (max-width:767px){
  #front-page h2.head .en{
    display: block;
    margin-right: 0;
  }
  
  .corner_01,
  .corner_03{
    width: 100%;
  }
}


/*---------------------------
「働く」って、一体どんなことなんだろう。
----------------------------*/
#front-page #top_intro{
  background-color:  var(--c-sub);
  color: #fff;
  padding-top: clamp(5rem,5.21vw,10rem);
  padding-bottom: 10rem;
}

#front-page #top_intro .left_box,
#front-page #top_intro .center_box,
#front-page #top_intro .right_box{
  position: relative;
}

#front-page #top_intro .left_box{ 
  width: 40%;
}
#front-page #top_intro .center_box{
  width: 29%;
}
#front-page #top_intro .right_box{
  width: 24%;
}


#front-page #top_intro .left_box .img_box,
#front-page #top_intro .right_box .img_box{
  position: absolute;
}

#front-page #top_intro .left_box .img_box:nth-child(1){
  top: 0;
  right: 0;
  width: 86.98%;
}
#front-page #top_intro .left_box .img_box:nth-child(2){
  top: 54%;
  left: 0;
  width: 59.51%;
}
#front-page #top_intro .left_box .img_box:nth-child(3){
  top: 62%;
  right: 0;
  width: 30%;
}

#front-page #top_intro .center_box .img_box{
  position: relative;
  left: -4rem;
}

#front-page #top_intro .right_box .img_box:nth-child(1){
  top: 0;
  right: 0;
  width: 100%;
}
#front-page #top_intro .right_box .img_box:nth-child(2){
  top: 41%;
  right: 5.4rem;
  width: 63.48%;
}
#front-page #top_intro .right_box .img_box:nth-child(3){
  top: 68%;
  left: 0;
  width: 65.87%;
}

#front-page #top_intro .center_box h2{
  font-size: clamp(25px,3.91vw,4rem);
  margin-bottom: 25px;
}

#front-page #top_intro .center_box p{
  font-weight: 700;
  margin-bottom: 20px;
}


/*-- ↓ under1024 ↓ ------------------------------*/
@media screen and (max-width:1024px){
  #front-page #top_intro .left_box{
    margin-bottom: 50px;
    width: 50%;
  }
  #front-page #top_intro .center_box{
    margin-bottom: 30px;
	order: 3;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    z-index: 2;
  }
  #front-page #top_intro .right_box{
    margin-top: 15px;
    margin-bottom: 50px;
    width: 50%;
  }
  
  #front-page #top_intro .left_box .img_box, #front-page #top_intro .right_box .img_box{
    position: static;
  }
  
  #front-page #top_intro .left_box .img_box:nth-child(1){
    width: 90.98%;
  }
  
  #front-page #top_intro .left_box .img_box:nth-child(2){
    position: relative;
    top: 2%;
    width: 100%;
  }
  
  #front-page #top_intro .left_box .img_box:nth-child(3){
    position: absolute;
    top: 65%;
    right: -25%;
    width: 40%;
  }
  
  
  #front-page #top_intro .right_box .img_box:nth-child(2){
    margin-left: auto;
    margin-right: 0;
    position: relative;
    top: -9%;
    right: 0;
  }
  
  #front-page #top_intro .right_box .img_box:nth-child(2) img{
    margin-left: auto;
    margin-right: 0;
  }
  
  #front-page #top_intro .center_box .img_box,
  #front-page #top_intro .right_box .img_box:nth-child(3){
    display: none;
  }
}


/*---------------------------
仕事を知る
----------------------------*/
#front-page #top_job{
  padding-bottom: 13rem;
}

#front-page #top_job h2{
  color: var(--c-main);
  top: -5rem;
}

#front-page #top_job .catch{
  color: var(--c-main);
  font-size: clamp(35px,5vw,9.6rem);
  font-weight: 900;
  line-height: 1.2em;
  margin-bottom: clamp(5rem,11.72vw,12rem);
  width: 50%;
}

#front-page #top_job p.text{
  font-size: 16px;
  font-weight: 500;
  max-width: 690px;
  width: 50%;
}

#front-page #top_job .flow_box{
  margin-top: 6rem;
  margin-bottom: 6rem;
  padding-top: 7.29%;
  padding-bottom: 6.77%;
  position: relative;
  width: 100%;
}

#front-page #top_job .flow_box .bg{
  width: 100%;
}

#front-page #top_job .flow_box .img{
  position: absolute;
}

#front-page #top_job .flow_box .img.item_01{
  top: 28%;
  left: -2%;
  width: 15.82%;
}

#front-page #top_job .flow_box .img.item_02{
  top: 10%;
  left: 19%;
  width: 10.18%;
}
#front-page #top_job .flow_box .img.item_03{
  top: 29%;
  left: 32%;
  width: 16.06%;
}
#front-page #top_job .flow_box .img.item_04{
  top: 11%;
  left: 50%;
  width: 11.06%;
}
#front-page #top_job .flow_box .img.item_05{
  top: 58%;
  left: 64%;
  width: 10.35%;
}
#front-page #top_job .flow_box .img.item_06{
  top: 0%;
  left: 70%;
  width: 13.71%;
}
#front-page #top_job .flow_box .img.item_07{
  top: 13%;
  right: 0;
  width: 19.65%;
}

#front-page #top_job .flow_box .brush_g{
  top: 62%;
  left: 18%;
  width: 14.24%;
}

#front-page #top_job .flow_box .brush_blu{
  top: 15%;
  left: 61.5%;
  width: 8.85%;
}

#front-page #top_job .flow_box .brush_bla{
  top: 68%;
  left: 75%;
  width: 9.11%;
}

#front-page #top_job .flow_box .brush_w{
  top: 8%;
  left: 87%;
  width: 7.5%;
}

#front-page #top_job .flow_box .brush_ca{
  top: -4%;
  left: 2%;
  width: 13.54%;
}

#front-page #top_job .flow_box .brush_to{
  top: 90%;
  left: 0;
  width: 9%;
}

#front-page #top_job .flow_box .brush_long{
  transform: rotate(-30deg);
  top: 11%;
  left: 47%;
  width: 7.5%;
}


#front-page #top_job h3{
  color: var(--c-main);
  font-size: clamp(22px,3.91vw,4rem);
  font-weight: 800;
  margin-bottom: 30px;
  width: 100%;
}

#front-page #top_job .flex_box.inner .text_box{
  width: 65%;
}

#front-page #top_job .link_btn{
  margin-top: 0;
  text-align: right;
  width: 34%;
}

/*-- ↓ under767 ↓ ------------------------------*/
@media screen and (max-width: 767px){
  #front-page #top_job .flex_box.inner .text_box,
  #front-page #top_job .catch,
  #front-page #top_job p.text{
    width: 100%;
  }
  
  #front-page #top_job .link_btn{
    margin-top: 30px;
    width: 100%;
  }
}

/*---------------------------
インタビュー
----------------------------*/
#front-page #top_interview{
  background-color: var(--c-sub);
  border-radius: 10px;
  padding-top: 7rem;
  padding-bottom: 10rem;
}

#front-page #top_interview h2{
  color: #fff;
  margin-bottom: 7rem;
}

#front-page #top_interview .profile{
  font-size: clamp(14px,1.56vw,16px);
}

#front-page #top_interview .profile span{
  font-size: 125%;
}

#front-page #top_interview .department,
#front-page #top_interview .team{
  font-size: clamp(16px,1.25vw,2.4rem);
  font-weight: 800;
}

#front-page #top_interview .department span{
	background-color: #fff;
    color: var(--c-sub);
    display: inline-block;
    font-size: clamp(13px, 1.46vw, 15px);
    font-weight: 500;
    line-height: 1.5em;
    margin-left: 10px;
    padding: 0 10px;
    vertical-align: middle;
}

#front-page #top_interview .corner_03 .text::before{
	top: 30px;
}

/*-- ↓ under767 ↓ ------------------------------*/
@media screen and (max-width: 767px){
	#front-page #top_interview .corner_03{
		min-height: 275px;
	}
	
	#front-page #top_interview .corner_03 img{
		height: 100%;
		object-fit: cover;
		width: 100%;
	}
	
	#front-page #top_interview .corner_03 .text{
		background-color: rgb(0 113 189 / 80%);
		width: 95%;
	}
}

/*---------------------------
募集要項
----------------------------*/
#front-page #top_recruit{
  padding-top: 7rem;
}

#front-page #top_recruit .sp{
  display: none;
}

#front-page #top_recruit h2{
  color: var(--c-main);
  bottom: -6rem;
  z-index: 2;
}

#front-page #top_recruit .bg_box{
  position: relative;
  height: 710px;
}

#front-page #top_recruit .bg_box img{
  height: 100%;
  object-fit: cover;
}

#front-page #top_recruit .red_back{
  background-color: var(--c-main);
  border-radius: 10px;
  color: #fff;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  top: -6rem;
}

#front-page #top_recruit .red_back .top h3{
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 5rem;
  width: 40%;
}
#front-page #top_recruit .red_back .top h3 span{
  font-size: 6.4rem;
  display: block;
}

#front-page #top_recruit .red_back .top .catch{
  font-size: clamp(25px,3.91vw,4rem);
  font-weight: 800;
  line-height: 1.4em;
  margin-bottom: 5rem;
  width: 59%;
}

#front-page #top_recruit .red_back .middle{
  margin-top: 5rem;
  margin-bottom: 30px;
}

#front-page #top_recruit .red_back .middle p{
  width: 60%;
}

#front-page #top_recruit .red_back .middle .link_btn{
  text-align: right;
  width: 39%;
}

#front-page #top_recruit .red_back .bottom .link_btn{
  width: 48%;
}

#front-page #top_recruit .red_back .bottom .link_btn a{
  border-color: #fff;
  border-width: 2px;
  max-width: 100%;
}

/*-- ↓ under1024 ↓ ------------------------------*/
@media screen and (max-width: 1024px){
  #front-page #top_recruit .bg_box{
    height: clamp(200px,36.98vw,710px);
  }
  
  #front-page #top_recruit .red_back .top h3,
  #front-page #top_recruit .red_back .top .catch,
  #front-page #top_recruit .red_back .middle p,
  #front-page #top_recruit .red_back .middle .link_btn{
    width: 100%;
  }
  
  #front-page #top_recruit .red_back .middle .link_btn{
    text-align: left;
  }
}

/*-- ↓ under767 ↓ ------------------------------*/
@media screen and (max-width: 767px){
  #front-page #top_recruit .red_back .bottom .link_btn{
    width: 100%;
  }
  
  #front-page #top_recruit .sp{
    display: flex;
  }
  #front-page #top_recruit .sp img{
    margin-bottom: 15px;
    width: 50%;
  }
}

/*---------------------------
働き方について
----------------------------*/
#front-page #top_working{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

#front-page #top_working h2{
  color: var(--c-sub);
  margin-bottom: 8rem;
}

#front-page #top_working .corner_01 span{
  background-color: #fff;
}
#front-page #top_working .corner_01 span::before,
#front-page #top_working .corner_01 span::after{
  background-image: url("../img/common/img_corner-white.svg");
}


/*=================================

下層ページ

==================================*/
#sub_mv{
  height: 600px;
  padding: 30px clamp(15px,2.6vw,50px);
  position: relative;
}

#sub_mv .img_box{
  height: 100%;
  position: relative;
}

#sub_mv .img_box::before{
  background-color: rgba(0,0,0,0.16);
  border-radius: 10px;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

#sub_mv .img_box img{
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

#sub_mv .text_box{
  color: #fff;
  padding-left: 25px;
  padding-right: 25px;
  position: absolute;
  bottom: 11rem;
  left: 50%;
  transform: translateX(-50%);
}

#sub_mv .text_box .english{
  font-size: clamp(40px,9.38vw,9.6rem);
  font-weight: 900;
  line-height: 1em;
  word-break: break-all;
}

#sub_mv .text_box .japanese{
  font-size: 2.4rem;
  font-weight: 800;
  margin-top: 3rem;
}

#sub_mv.interview{
	height: 910px;
}

#sub_mv.interview .text_box .english{
	font-size: 2.4rem;
	font-weight: 800;
}

#sub_mv.interview .text_box .japanese{
	margin-top: 12px;
}

#sub_mv.interview .text_box .japanese span{
	background-color: #fff;
	border-radius: 10px;
	color: var(--c-sub);
	display: inline-block;
	font-size: clamp(22px,3.91vw,4rem);
	font-weight: 800;
	margin-bottom: 12px;
	padding: 6px 16px;
}

#sub_mv.interview .text_box p.name{
	font-size: 18px;
	font-weight: 500;
}

#sub_mv.interview .text_box p.name span{
	font-size: 2.4rem;
	font-weight: 600;
}

#sub_mv.interview.message .img_box img{
	object-position: 20%;
}


#sub_mv.interview .profile_box{
	background-color: var(--c-sub);
	border-radius: 10px;
	color: #fff;
	font-weight: 500;
	max-width: 635px;
	padding: clamp(15px,2.93vw,3rem) clamp(15px,2.14vw,6.5rem);
	position: absolute;
	right: 0;
	width: 100%;
}

#sub_mv.interview .profile_box .name{
	display: inline-block;
	font-size: 18px;
}

#sub_mv.interview .profile_box .name small{
	margin-left: 5px;
	margin-right: 5px;
}

#sub_mv.interview .profile_box .year{
	display: inline-block;
	font-size: clamp(14px,1.56vw,16px);
	font-weight: 600;
}

#sub_mv.interview .profile_box .department span{
	background-color: #fff;
	color: var(--c-sub);
	display: inline-block;
	font-size: clamp(13px,1.46vw,15px);
	font-weight: 500;
	line-height: 1.5em;
	margin-left: 10px;
	padding: 0 10px;
	vertical-align: middle;
}

#sub_mv.interview .profile_box .department,
#sub_mv.interview .profile_box .team{
	font-size: clamp(18px,2.34vw,2.4rem);
	font-weight: 800;
}


.page .block{
  margin-top: 8rem;
}

.page h2{
  font-size: clamp(22px,3.52vw,3.6rem);
  font-weight: 800;
  line-height: 1.2em;
  margin-bottom: 30px;
}

.page h3{
  font-size: clamp(20px,3.52vw,3.6rem);
  font-weight: 800;
}

.page h3.under{
  border-bottom: 2px solid #D9D9D9;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 30px;
  padding-bottom: 2.5rem;
  position: relative;
  text-align: center;
}

.page h3.under::before{
  background-color: var(--c-main);
  content: "";
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
}

.page h3.under.blue::before{
  background-color: var(--c-sub);
}

.page h4{
  border-left: 5px solid var(--c-main);
  font-size: clamp(18px,1.95vw,20px);
  font-weight: 600;
  padding-left: 20px;
  margin-bottom: 10px;
}

ul.simple li{
  margin-bottom: 10px;
  padding-left: 1em;
}

ul.simple li:last-child{
  margin-bottom: 0;
}

ul.simple li::before{
  background-color: #393939;
  border-radius: 999px;
  content: "";
  height: 5px;
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 5px;
}

.page a.under{
  text-decoration: underline;
}

.page a.under:hover{
  color: var(--c-main);
}

.page .intro_box{
  margin-top: 10rem;
  margin-bottom: 7rem;
}

.page .intro_box h2{
  width: 43%;
}

.page .intro_box p{
  width: 55%;
}

.page .side_parts{
  align-items: center;
  margin-bottom: 7rem;
  max-width: 1580px;
  width: 90%;
}

.page .side_parts.side_left{
  margin-left: 0;
  margin-right: auto;
}
.page .side_parts.side_right{
  margin-left: auto;
  margin-right: 0;
}

.page .side_parts .img_box{
  width: 56.5%;
}

.page .side_parts .text_box{
  width: 39%;
}

.page .side_parts .text_box h3{
  font-size: clamp(22px, 3.13vw, 3.2rem);
  margin-bottom: 18px;
}


/*-- ↓ under767 ↓ ------------------------------*/
@media screen and (max-width: 767px){
	#sub_mv{
		height: 300px;
	}

	#sub_mv .text_box{
		bottom: 45px;
	}

	#sub_mv .text_box .japanese,
	.page .side_parts .text_box{
		margin-top: 15px;
	}

	#sub_mv.interview{
		height: 600px;
	}
	
	#sub_mv.interview .text_box{
		padding-left: 15px;
		padding-right: 15px;
	}

	#sub_mv.interview .text_box .japanese span{
		border-radius: 3px;
		margin-bottom: 6px;
		padding: 1px 8px;
	}
	
	#sub_mv.interview .text_box p.name{
		font-size: 16px;
	}
	
	#sub_mv.interview .profile_box_wrap{
		width: 100%;
	}
	
	#sub_mv.interview .profile_box{
		position: static;
	}
	
	#sub_mv.interview .profile_box .team span{
		font-size: 80%;
	}
  
  .page .intro_box{
    margin-top: 5rem;
  }
  
  .page .intro_box h2,
  .page .intro_box p,
  .page .side_parts,
  .page .side_parts .img_box,
  .page .side_parts .text_box{
    width: 100%;
  }
  
  .page .side_parts{
    width: calc(100% - 30px);
  }
  
  .page .side_parts.side_left{
    margin-left: auto;
  }
  .page .side_parts.side_right{
    margin-right: auto;
  }
}

/*=================================

インタビュー

==================================*/
#interview-page{
	margin-top: 15rem;
}

#interview-page section{
	margin-top: 40px;
	margin-left: auto;
	margin-right: auto;
	max-width: 950px;
	padding-bottom: 10px;
	position: relative;
	width: calc(100% - 30px);
}

#interview-page section::before{
	background-color: #A2A2A2;
	content: "";
	height: calc(100% - 5px);
	position: absolute;
	top: 5px;
	left: 7px;
	width: 2px;
}

#interview-page section h2{
	color: #656565;
	font-size: 16px;
	padding-left: 22px;
	position: relative;
}

#interview-page section h2::before{
	background-color: #A2A2A2;
	border-radius: 999px;
	content: "";
	height: 16px;
	position: absolute;
	top: 2px;
	left: 0;
	width: 16px;
}

#interview-page section dl{
	padding-left: 15px;
}

#interview-page section dt{
	color: var(--c-sub);
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 20px;
}

#interview-page section dt::before{
	content: "Q.";
	margin-right: 5px;
}

#interview-page section dd p{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8em;
	margin-left: 30px;
	margin-bottom: 1.8em;
}

#interview-page .photo_box{
	margin-top: 8rem;
}

#interview-page #other_interview{
	margin-top: 7rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 940px;
	width: calc(100% - 30px);
}

#interview-page #other_interview .h2_wrap{
	margin-bottom: 6rem;
}

#interview-page #other_interview .h2_wrap .h2_en{
	font-size: 6.4rem;
}

#interview-page #other_interview .h2_wrap h2{
	font-size: 20px;
	font-weight: 800;
}

#interview-page #other_interview a{
	border-radius: 10px;
	isolation: isolate;
	overflow: hidden;
}

#interview-page #other_interview a::before{
	background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 33%, rgba(0, 0, 0, 0.6) 100%);
	border-radius: 10px;
	content: "";
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 2;
}

#interview-page #other_interview a:hover img{
	transform: scale(1.15);
}

#interview-page #other_interview .item_inner{
	color: #fff;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	height: 100%;
	padding: 5rem clamp(22px,5.26vw,5rem) 30px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
}

#interview-page #other_interview .item_inner .catch span{
	background-color: var(--c-sub);
	border-radius: 10px;
	display: inline-block;
	font-size: 2.4rem;
	font-weight: 800;
	margin-bottom: 5px;
	padding: 3px 10px;
}

#interview-page #other_interview .profile_box{
	margin-left: auto;
	margin-right: 0;
	max-width: 435px;
}

#interview-page #other_interview .profile_box .name{
	display: inline-block;
	font-size: 18px;
}

#interview-page #other_interview .profile_box .name small{
	margin-left: 5px;
	margin-right: 5px;
}

#interview-page #other_interview .profile_box .year{
	display: inline-block;
	font-size: clamp(14px,1.56vw,16px);
	font-weight: 600;
}

#interview-page #other_interview .profile_box .department span{
	background-color: #fff;
	color: #000;
	display: inline-block;
	font-size: clamp(13px,1.46vw,15px);
	font-weight: 500;
	line-height: 1.5em;
	margin-left: 10px;
	padding: 2px 10px;
	vertical-align: middle;
}

#interview-page #other_interview .profile_box .department,
#interview-page #other_interview .profile_box .team{
	font-size: 2.4rem;
	font-weight: 800;
}

/*-- ↓ under767 ↓ ------------------------------*/
@media screen and (max-width: 767px){
	#interview-page{
		margin-top: 80px;
	}
	
	#interview-page section dd p{
		margin-left: 10px;
	}
	
	#interview-page .photo_box .item:not(:last-child){
		margin-bottom: 30px;
	}
	
	#interview-page #other_interview a::before{
		display: none;
	}
	
	#interview-page #other_interview .item_inner{
		background-color: var(--c-sub);
		padding: 20px 15px 40px;
		position: relative;
	}
	
	#interview-page #other_interview .item_inner::before,
	#interview-page #other_interview .item_inner::after{
		background-color: #fff;
		border-radius: 2px;
		content: "";
		height: 2px;
		position: absolute;
	}
	
	#interview-page #other_interview .item_inner::before{
		left: 50%;
		bottom: 15px;
		transform: translateX(-50%);
		width: calc(100% - 30px);
	}
	
	#interview-page #other_interview .item_inner::after{
		transform: rotate(45deg);
		right: 12px;
        bottom: 23px;
        width: 23px;
	}
	
	#interview-page #other_interview .profile_box{
		font-weight: 500;
		margin-top: 10px;
		margin-left: 0;
	}
	
	#interview-page #other_interview .profile_box p{
		line-height: 1.5em;
	}
	
	#interview-page #other_interview .item_inner .catch span{
		background-color: #fff;
        border-radius: 5px;
        color: var(--c-sub);
		font-size: 18px;
        padding: 0 5px;
	}
	
	#interview-page #other_interview .profile_box .department span{
		color: var(--c-sub);
		padding: 0 10px;
	}
	
	#interview-page #other_interview .profile_box .team span{
		display: inline-block;
		font-size: 80%;
	}
}


/*=================================

代表挨拶

==================================*/
#message-page h2{
	margin-bottom: 4rem;
}

#message-page p{
	font-weight: 500;
}

#message-page .name_box span{
	font-size: 2.4rem;
	font-weight: 600;
}

/*=================================

新卒採用

==================================*/
#new-grads-page table tr,
#enrty-level-page table tr{
  border-bottom: 1px solid #ccc;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

#new-grads-page table tr::before,
#enrty-level-page table tr::before{
  background-color: var(--c-main);
  content: "";
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 200px;
}

#new-grads-page table.blue tr::before,
#enrty-level-page table.blue tr::before{
  background-color: var(--c-sub);
}

#new-grads-page table th,
#new-grads-page table td,
#enrty-level-page table th,
#enrty-level-page table td{
  display: block;
  font-size: 16px;
  line-height: 1.5em;
  padding: 15px;
}

#new-grads-page table th,
#enrty-level-page table th{
  align-content: center;
  text-align: left;
  width: 200px;
}
#new-grads-page table td,
#enrty-level-page table td{
  padding-left: 3rem;
  width: calc(100% - 200px);
}

#enrty-level-page .text_box p:not(:last-child){
  margin-bottom: 20px;
}

#enrty-level-page .border_box{
  border: 1px solid #ccc;
  margin-top: 30px;
  padding: 15px 4rem;
}

/*-- ↓ under767 ↓ ------------------------------*/
@media screen and (max-width: 767px){
  #new-grads-page table tr::before,
  #enrty-level-page table tr::before{
    display: none;
  }
  
  #new-grads-page table th,
  #new-grads-page table td,
  #enrty-level-page table th,
  #enrty-level-page table td{
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  
  #new-grads-page table th,
  #enrty-level-page table th{
    color: var(--c-main);
    padding-bottom: 0;
  }
  
  #new-grads-page table.blue th,
  #enrty-level-page table.blue th{
    color: var(--c-sub);
  }
}


/*=================================

向いてる人

==================================*/
#person-page #intro .sp{
  display: none;
}

#person-page .suitability_box{
  background-color: #F9F5F2;
  margin-bottom: 30px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}


#person-page .suitability_box h3{
  color: var(--c-sub);
  margin-bottom: 5rem;
  text-align: center;
}

#person-page .suitability_box .list{
  align-items: center;
  border-top: 1px solid #A8A8A8;
  display: flex;
  padding-top: 30px;
  padding-bottom: 30px;
}

#person-page .suitability_box .list:last-child{
  padding-bottom: 0;
}

#person-page .suitability_box h4{
  border-left: 0;
  color: var(--c-sub);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 0;
  padding-left: 30px;
  position: relative;
  width: 25%;
}

#person-page .suitability_box h4::before{
  background-size: contain;
  content: "";
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
}

#person-page .suitability_box .icon_01 h4::before{
 background-image: url("../img/person/icon_puzzle.png");
}
#person-page .suitability_box .icon_02 h4::before{
 background-image: url("../img/person/icon_present.png");
}
#person-page .suitability_box .icon_03 h4::before{
 background-image: url("../img/person/icon_attempt.png");
}

#person-page .suitability_box .list p,
#person-page .suitability_box .list ul{
  font-weight: 500;
  width: 75%;
}
#person-page .suitability_box .list ul{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 17px;
}

#person-page .suitability_box .list ul li{
  background-color: #fff;
  border: 1px solid #CACACA;
  border-radius: 999px;
  font-size: 15px;
  padding: 2px 15px;
}

/*-- ↓ under767 ↓ ------------------------------*/
@media screen and (max-width: 767px){
  #person-page #intro .sp{
    background-color: var(--c-sub);
    border-radius: 10px;
    display: flex;
    margin-bottom: 5rem;
    padding: 30px 10px;
  }
  
  #person-page #intro .sp img{
    margin-bottom: 20px;
    width: 50%;
  }
  
  #person-page .suitability_box .list{
    flex-wrap: wrap;
  }
  
  #person-page .suitability_box h4{
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  #person-page .suitability_box h4,
  #person-page .suitability_box .list p,
  #person-page .suitability_box .list ul{
    width: 100%;
  }
}


/*=================================

仕事を知る

==================================*/
#job-page #intro h2{
  font-size: clamp(32px, 6.25vw, 6.4rem);
}

#job-page #intro p{
  font-size: 16px;
}

#job-page #flow{
  border-left: 3px solid var(--c-sub);
  margin-top: 8rem;
  position: relative;
}

#job-page #flow .flow_box,
#job-page #team{
  background-color: #F9F5F2;
  border-radius: 5px;
  margin-bottom: 8rem;
  padding: 8rem 5rem 5rem;
  position: relative;
}

#job-page #flow .flow_box h3{
  background-color: var(--c-sub);
  border-radius: 999px;
  box-shadow: 0px 3px 3px rgba(0,0,0,0.25);
  color: #fff;
  font-size: 2.4rem;
  margin-left: 30px;
  max-width: 290px;
  padding: 12px;
  position: absolute;
  top: -30px;
  left: 0;
  text-align: center;
  width: 100%;
}

#job-page #flow .flow_box .flex_box,
#job-page #team .flex_box{
  align-items: flex-start;
}

#job-page #flow .flow_box h3::before{
  background-color: var(--c-sub);
  border-radius: 999px;
  content: "";
  height: 3.4rem;
  position: absolute;
  top: 1.4rem;
  left: -4.8rem;
  width: 3.4rem;
}

#job-page #flow .flow_box h3::after{
  border: 15px solid transparent;
  border-right: 15px solid var(--c-sub);
  content: "";
  margin-left: -20px;
  position: absolute;
  top: 15px;
  left: 0;
}

#job-page #flow .flow_box .img_box,
#job-page #team .img_box{
  position: relative;
  width: 30%;
}

#job-page #flow .flow_box .img_box > img,
#job-page #team .img_box > img{
  margin-bottom: 35px;
}

#job-page #flow .flow_box .img_box .illust,
#job-page #team .img_box .illust{
  position: absolute;
  bottom: 0;
  right: 5px;
}

#job-page #flow .flow_box .text_box,
#job-page #team .text_box{
  width: 65%;
}

#job-page #flow .flow_box .text_box p,
#job-page #team .text_box p{
  font-size: 16px;
  font-weight: 500;
  padding-top: 2px;
}

#job-page #flow .flow_box .text_box h4,
#job-page #team .text_box h4{
  border-left: none;
  font-size: clamp(20px, 3.52vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 3rem;
  padding-left: 0;
}

#job-page #flow .flow_box .text_box .department{
  display: flex;
  font-size: 15px;
  font-weight: 700;
  margin-top: 20px;
}

#job-page #flow .flow_box .text_box .department p{
	padding-top: 0;
}

#job-page #flow .flow_box .text_box .department ul{
  display: flex;
  flex-wrap: wrap;
  margin-left: 13px;
  gap: 13px;
}

#job-page #flow .flow_box .text_box .department ul li{
  background-color: #fff;
  border-radius: 999px;
  border: 1px solid #CACACA;
  font-weight: 500;
  padding: 2px 15px 0px;
}

#job-page #flow .flow_box.worries .img_box{
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  width: 220px;
}

#job-page #flow .flow_box.worries .img_box img{
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
}

#job-page #flow .flow_box.worries .text_box{
  width: calc(100% - 220px);
}

#job-page #flow .flow_box.worries .text_box h5{
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 1.8rem;
  position: relative;
}

#job-page #flow .flow_box.worries .text_box h5::before{
  background-color: #929292;
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: -1;
}

#job-page #flow .flow_box.worries .text_box h5 span{
  background-color: #F9F5F2;
  padding-right: 15px;
  position: relative;
}

#job-page #flow .flow_box.worries .text_box ol{
  counter-reset: ol_worries;
}

#job-page #flow .flow_box.worries .text_box ol li{
  display: flex;
  font-size: 16px;
  margin-bottom: 22px;
}

#job-page #flow .flow_box.worries .text_box ol li::before{
  align-content: center;
  color: var(--c-sub);
  content: counter(ol_worries, decimal-leading-zero);
  counter-increment: ol_worries;
  font-size: 20px;
  font-weight: 700;
  margin-right: 2.4rem;
}

#job-page #flow .flow_box.worries .text_box ol li span{
  align-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  width: 160px;
}

#job-page #team{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-top: 15rem;
}

#job-page #team h3{
  background-color: var(--c-sub);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #fff;
  font-size: 2.4rem;
  max-width: 280px;
  padding: 18px;
  position: absolute;
  left: 0;
  bottom: 100%;
  text-align: center;
  width: 100%;
}

#job-page #team h5{
  color: var(--c-sub);
  font-size: 2.4rem;
  margin-bottom: 12px;
  padding-left: 17px;
  position: relative;
}

#job-page #team h5::before{
  background-color: var(--c-sub);
  border-radius: 3px;
  content: "";
  height: 70%;
  margin-top: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 3px;
}

/*-- ↓ under767 ↓ ------------------------------*/
@media screen and (max-width: 767px){
  #job-page #flow .flow_box .img_box, 
  #job-page #flow .flow_box .text_box,
  #job-page #team .img_box,
  #job-page #team .text_box,
  #job-page #flow .flow_box.worries .img_box,
  #job-page #flow .flow_box.worries .text_box{
    width: 100%;
  }
  
  #job-page #flow .flow_box .text_box,
  #job-page #team .text_box,
  #job-page #flow .flow_box.worries .text_box{
    margin-top: 20px;
  }
  
  #job-page #flow .flow_box, 
  #job-page #team{
    padding-left: 20px;
    padding-right: 15px;
  }
  
  #job-page #flow .flow_box h3{
    margin-left: 20px;
    max-width: 230px;
  }
  
  #job-page #team h3{
    max-width: 230px;
  }
  
  #job-page #flow .flow_box h3::before{
    height: 20px;
    top: 20px;
    left: -31px;
    width: 20px;
  }
  
  #job-page #flow .flow_box.worries .text_box ol li{
    display: block;
  }
  
  #job-page #flow .flow_box.worries .text_box ol li span{
    display: inline-block;
    margin-bottom: 5px;
  }
}


/*=================================

データで見るバーテック

==================================*/
#office-page .tour_box .item,
#data-page .date_box .item{
  background-color: #F9F5F2;
  border-radius: 10px;
  font-weight: 700;
  margin-top: 7.5rem;
  padding: 4rem 3.8rem;
  padding-top: 8rem;
  position: relative;
  width: 32%;
}

#data-page .date_box .item.half,
#office-page .tour_box .item.half{
  width: 48%;
}

#office-page .tour_box .item h2,
#data-page .date_box .item h2{
  background-color: var(--c-sub);
  border-radius: 999px;
  box-shadow: 0 3px 3px rgba(0,0,0,0.25);
  color: #fff;
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 800;
  min-width: 285px;
  padding: 12px 3rem;
  position: absolute;
  top: -3rem;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
  width: 80%;
}

#data-page .date_box .item h2 .small{
  font-size: 1.8rem;
}

#office-page .tour_box .item img,
#data-page .date_box .item img{
  margin-left: auto;
  margin-right: auto;
}

#data-page .date_box .item .data{
  font-size: 2rem;
  margin-top: 3rem;
  line-height: 2em;
  text-align: center;
}

#data-page .date_box .item .data span{
  font-size: 120%;
}

#data-page .date_box .item .data .number{
  font-size: 250%;
  font-weight: 800;
  margin-left: 5px;
  margin-right: 5px;
}

#data-page .date_box .item .flex{
  display: flex;
  justify-content: center;
}

#data-page .date_box .item .flex_item{
  width: 50%;
}

#data-page .date_box .item a{
  color: var(--c-main);
  display: block;
  font-size: 16px;
  margin-top: 3rem;
  text-align: right;
}
#data-page .date_box .item a span{
  text-decoration: underline;
}

#data-page .date_box .item a:hover{
  opacity: 0.5;
}

#data-page .date_box .item a::before{
  border-top: 3px solid var(--c-main);
  border-right: 3px solid var(--c-main);
  content: "";
  display: inline-block;
  height: 8px;
  margin-right: 10px;
  transform: rotate(45deg);
  width: 8px;
}

/*-- ↓ under1024 ↓ ------------------------------*/
@media screen and (max-width: 1024px){
  #data-page .date_box .item{
    width: 48%;
  }
}

/*-- ↓ under767 ↓ ------------------------------*/
@media screen and (max-width: 767px){
  #data-page .date_box .item,
  #data-page .date_box .item.half,
  #office-page .tour_box .item.half{
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }
}

/*=================================

オフィス紹介

==================================*/
#office-page #access{
	font-weight: 400;
	margin-top: 10rem;
	margin-bottom: 10rem;
}

#office-page #access .left_box{
	width: 34%;
}

#office-page #access .right_box{
	font-size: 16px;
	width: 59%;
}

#office-page #access figcaption{
	font-size: 15px;
	margin-top: 12px;
}

#office-page #access .right_box h2{
	font-size: clamp(22px, 3.52vw, 3.2rem);
	line-height: 1.5em;
}

#office-page #access .right_box figure{
	margin-top: 4rem;
	width: 46%;
}


#office-page .tour_box .item,
#office-page .tour_box .item.half .flex_box .flex_item{
	width: 100%;
}

#office-page .tour_box .item h2{
	width: auto;
}

#office-page .tour_box .item .flex_box .flex_item{
	width: 45%;
}

#office-page .tour_box .item p{
	font-size: 16px;
	font-weight: 500;
	margin-top: 3rem;
}

/*-- ↓ under767 ↓ ------------------------------*/
@media screen and (max-width: 767px){
	#office-page #access .left_box,
	#office-page #access .right_box,
	#office-page #access .right_box figure,
	#office-page .tour_box .item .flex_box .flex_item{
		width: 100%;
	}
	
	#office-page #access .right_box,
	#office-page .tour_box .item .flex_box .flex_item:not(:first-of-type){
		margin-top: 30px;
	}
}

/*=================================

バーテックについて

==================================*/
#about-page .about_block{
  background-color: #F9F5F2;
  margin-top: 6rem;
  padding-bottom: 8rem;
  position: relative;
}

#about-page .about_block::before{
  background-color: #BEBEBE;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
}

#about-page .about_block .h2_wrap{
  border-left: 2px solid;
  font-weight: 800;
  margin-bottom: 5rem;
  padding: clamp(30px,4.88vw,5rem) clamp(15px,3.91vw,4rem);
  position: relative;
  z-index: 1;
}

#about-page .about_block .h2_wrap.c-main{
  border-color: var(--c-main);
}
#about-page .about_block .h2_wrap.c-sub{
  border-color: var(--c-sub);
}

#about-page .about_block .h2_wrap h2{
  font-size: 2rem;
  line-height: normal;
  margin-top: 5px;
  margin-bottom: 0;
}

#about-page .about_block .h2_wrap .h2_en{
  font-size: clamp(33px,6.25vw,6.4rem);
  font-weight: 800;
  line-height: 1em;
}

#about-page .about_block .white_box{
  background-color: #fff;
  margin-bottom: 5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  width: calc(100% - 100px);
}
#about-page .about_block .white_box:last-child{
  margin-bottom: 0;
}

#about-page .about_block .white_box .inner_1050,
#about-page .about_block .inner{
  width: calc(100% - 50px);
}

#about-page .about_block h3{
  font-size: clamp(22px,3.13vw,3.2rem);
  margin-bottom: 5rem;
}

#about-page .about_block h4{
  border-left: none;
  font-weight: 800;
  padding-left: 0;
}

#about-page .about_block p{
  font-size: 15px;
  line-height: 2em;
  font-weight: 500;
}

#about-page .about_block .media .img_box{
  width: 39.5%;
}
#about-page .about_block .media .text_box{
  width: 54.5%;
}

#about-page .about_block .media .text_box p{
  font-size: 15px;
}

#about-page .about_block .photo_box .img_box{
  margin-bottom: 30px;
  width: 47%;
}

#about-page .about_block .flex_box.border_box .item{
  border: 1px solid #B7B7B7;
  margin-top: 30px;
  padding: 3rem 3rem;
  width: 31%;
}

#about-page .about_block .flex_box.border_box .item h4,
#about-page .about_block .flex_box.border_box .item h5{
  font-size: clamp(18px, 1.95vw, 20px);
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
}

#about-page .about_block .flex_box.border_box .item p{
  font-size: 15px;
}

/* 現場の困ったを、ブラシで解決する */
#about-page #solution .flex_box{
  align-items: center;
}
#about-page #solution .item{
  width: 29.5%;
}
#about-page #solution .item.text_box{
  width: 32%;
}

#about-page #solution .item h3{
  margin-bottom: 15px;
}

/* こんなところにバーテック */
#about-page #use-case h3{
  margin-bottom: 10px;
}

#about-page #use-case .map-container{
	position: relative;
}

#about-page #use-case .base-map{
	margin-top: 6rem;
}

#about-page #use-case .map-container .pin{
	cursor: pointer;
	position: absolute;
	max-width: 42px;
	width: 4%;
}

#about-page #use-case .map-container .pin.pin-1{
	top: 38.5%;
	left: 7.5%;
}
#about-page #use-case .map-container .pin.pin-2{
	top: 56%;
	left: 17.5%;
}
#about-page #use-case .map-container .pin.pin-3{
	top: 35%;
    left: 32.5%;
}
#about-page #use-case .map-container .pin.pin-4{
	top: 23%;
    left: 40%;
}
#about-page #use-case .map-container .pin.pin-5{
	top: 54%;
    left: 39%;
}
#about-page #use-case .map-container .pin.pin-6{
	top: 53%;
    left: 57.5%;
}
#about-page #use-case .map-container .pin.pin-7{
	top: 61%;
    left: 65.5%;
}
#about-page #use-case .map-container .pin.pin-8{
	top: 32%;
    left: 68.5%;
}
#about-page #use-case .map-container .pin.pin-9{
	top: 44.5%;
	left: 81%;
}

/* モーダル全画面設定 */
.modal-overlay {
	align-items: center;
	background: rgba(0,0,0,0.2);
	display: none;
	height: 100vh;
	justify-content: center;
    position: fixed; 
	top: 0;
	left: 0;
	width: 100vw;
    z-index: 10000;
}
.modal-overlay.is-open {
	display: flex;
}

.modal-content{
    background: #fff; 
	max-width: 420px;
	padding: 35px clamp(15px,3.81vw,4rem);
	width: 90%;
}

.modal-content .img-box {
	width: 100%;
}

.modal-content h4{
	border: none;
	color: var(--c-sub);
	font-weight: 700;
	margin: 18px 0;
	padding: 0;
	text-align: center;
}

.modal-content h5{
	font-size: 16px;
	margin-bottom: 5px;
}

.modal-content p{
	font-size: 15px;
}

.modal-navigation{ 
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 20px; 
}
.modal-navigation .nav-item{
	align-items: center;
	border-radius: 999px;
	border: 3px solid #9F9F9F;
	color: #9F9F9F;
	cursor: pointer;
	display: flex; 
	font-size: 20px;
	font-weight: 900;
    height: 32px;
    justify-content: center;
	width: 32px;
}
.modal-navigation .nav-item:hover{
	background-color: #f0f0f0;
}



/* 60年以上の歴史と革新を続ける老舗企業 */
#about-page #burrtec-philosophy ul.simple li{
  font-size: 15px;
  width: 50%;
}

/* 目的意識を高める〜3人の職人の話〜 */
#about-page #craftman p{
  font-size: clamp(15px,1.76vw,18px);
  line-height: normal;
}

#about-page #craftman .media .text_box p,
#about-page #craftman .border_box p{
  font-size: 15px;
  line-height: 2em;
}

#about-page #craftman h4{
  font-size: 2.4rem;
}

/* 働きがいのある会社ランキング 8年連続ベストカンパニー選出 */
#about-page #best-company .media{
  align-items: center;
  margin-bottom: 5rem;
}

#about-page #best-company .media .img_box{
  width: 30%;
}
#about-page #best-company .media .text_box{
  width: 65%;
}

#about-page #best-company .media p{
  font-size:  clamp(15px,1.76vw,18px);
  font-weight: 800;
  line-height: 1.6em;
}

#about-page #best-company #job-satisfaction{
  align-items: flex-end;
  margin-bottom: 5rem;
}

#about-page #best-company #job-satisfaction .text_box{
  width: calc(100% - 320px);
}

#about-page #best-company #job-satisfaction .text_box p{
  font-size:  clamp(15px,1.76vw,18px);
  font-weight: 800;
  line-height: 1.6em;
}

#about-page #best-company #job-satisfaction .link_btn{
  width: 280px;
}

#about-page #best-company #job-satisfaction .link_btn a{
  font-size: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
} 

#about-page .inner.flex_box .item{
  background-color: #fff;
  width: 31%;
}

#about-page .inner.flex_box .item h4{
  padding: 20px 3rem 5px;
  text-align: center;
}

#about-page .inner.flex_box .item p{
  padding: 0 3rem 30px;
}


/*-- ↓ under767 ↓ ------------------------------*/
@media screen and (max-width: 767px){
  #about-page .about_block .white_box .inner_1050,
  #about-page .about_block .inner{
    width: calc(100% - 30px);
  }
  
  #about-page .about_block .media .img_box,
  #about-page #solution .item,
  #about-page #best-company .media .img_box,
  #about-page .inner.flex_box .item{
    margin-bottom: 20px;
    width: 100%;
  }
  
  #about-page #solution .item.text_box,
  #about-page .about_block .media .text_box,
  #about-page .about_block .photo_box .img_box,
  #about-page .about_block .flex_box.border_box .item,
  #about-page #burrtec-philosophy ul.simple li,
  #about-page #best-company .media .text_box,
  #about-page #best-company #job-satisfaction .text_box,
  #about-page #best-company #job-satisfaction .link_btn{
    width: 100%;
  }
  
  #about-page .about_block img{
    margin-left: auto;
    margin-right: auto;
  }
  
  #about-page #craftman p{
    margin-bottom: 20px;
  }
	
	#about-page #use-case .map-container .pin{
		width: 7%;
	}

}


/*=================================

福利厚生・社内制度

==================================*/
#benefits-page .border_box{
  border: 2px solid #D7D7D7;
  border-radius: 10px;
  margin-top: 35px;
  padding-top: 7rem;
  padding-bottom: 6rem;
}

#benefits-page .border_box h2{
  margin-bottom: 45px;
  padding-left: 10px;
  padding-right: 10px;
}

#benefits-page .border_box h3{
  margin-top: 5.5rem;
  padding-left: 10px;
  padding-right: 10px;
}

#benefits-page .border_box h4{
  margin-bottom: 15px;
}

#benefits-page .border_box .link_btn a{
  padding-top: 20px;
  padding-bottom: 20px;
}

#benefits-page .border_box ul.simple{
  margin-top: 30px;
}

#benefits-page .border_box ul.simple li{
  font-size: 16px;
  font-weight: 500;
  width: 48%;
}

#benefits-page .border_box ul.simple li::before{
  background-color: var(--c-sub);
  height: 8px;
  width: 8px;
}

#benefits-page #intro{
  margin-top: 10rem;
  margin-bottom: 10rem;
}

#benefits-page #intro .img_box{
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  width: 50%;
}

#benefits-page #intro .img_box img{
  width: 49%;
}

#benefits-page #intro .img_box img:last-child{
  margin-top: 20%;
}

#benefits-page #intro .text_box{
  margin-top: 5.5rem;
  width: 42.5%;
}

#benefits-page #intro .text_box h2{
  line-height: 1.5em;
}


#benefits-page #growth-support-system table{
  margin-top: 30px;
  margin-bottom: 5rem;
}

#benefits-page #growth-support-system table tr{
  display: flex;
}

#benefits-page #growth-support-system table th,
#benefits-page #growth-support-system table td{
  border: 1px solid #B9B9B9;
  display: block;
  font-weight: 500;
  padding: 15px 3rem;
  text-align: left;
  width: 60%;
}

#benefits-page #growth-support-system table thead th:first-child,
#benefits-page #growth-support-system table tbody th{
  width: 40%;
}

#benefits-page #growth-support-system table thead th{
  background-color: #F4F4F4;
  font-weight: 800;
}

#benefits-page #job-satisfaction .flex_box{
  margin-bottom: 30px;
}

#benefits-page #job-satisfaction .img_box{
  margin-top: 30px;
  width: 46%;
}

#benefits-page #job-satisfaction .text_box{
  margin-top: 30px;
  width: 48%;
}


#benefits-page #communication .item{
  margin-top: 30px;
  width: 30%;
}

#benefits-page #communication .item img{
  margin-bottom: 15px;
}

#benefits-page #communication .item p{
  font-size: 14px;
  margin-bottom: 1em;
}


/*-- ↓ under767 ↓ ------------------------------*/
@media screen and (max-width: 767px){
  #benefits-page #intro .img_box,
  #benefits-page #intro .text_box,
  #benefits-page .border_box ul.simple li,
  #benefits-page #job-satisfaction .img_box,
  #benefits-page #job-satisfaction .text_box,
  #benefits-page #communication .item{
    width: 100%;
  }
}