@charset "UTF-8";
@import url("grid.css");


img {
 max-width: 100%;
 height: auto;
 /*高さ自動*/
}

a {
 display: block;
 color: var(--link-color);
 text-decoration-line: none;
}

a:hover {
 color: var(--linkhover-color);
}

/*ヘッダー
-------------------------------------*/
#header {
 position: fixed;
 /*fixedを設定して固定*/
 /* height: 100px;*/
 /*高さ指定*/
 width: 100%;
 /*横幅指定*/
 z-index: 999;
 /*最前面へ*/
 /* background: var(--white-color); */
 height: 100px;
 top: 0;
}

.header {
 display: flex;
 flex-direction: row;
 padding: 2rem 0 0 0;
}

.header_content {
 margin: 0 auto;
 width: 100%;
 max-width: 1920px;
 position: relative;
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 background: rgba(255, 255, 255, 0.9);
 height: 100%;
}

.header_logo {
 margin-left: 2.8vw;
 /* height: 7vh; */
}

.header_logo img {
 width: 100%;
 max-width: 443px;
 margin: 15px 0 0 0;
}

@media screen and (min-width:768px) and (max-width:1000px) {
 .header_logo {
  margin-left: 20px;
 }

 .header_logo img {
  width: 27vw;
  margin-top: 30px;
 }
}

@media screen and (max-width: 767px) {
 #header {
  height: 70px;
 }
}

@media screen and (min-width:601px) and (max-width:767px) {
 .header_logo {
  height: 50px;
  margin-left: 10px !important;
  margin-right: auto !important;
 }

 .header_logo img {
  height: 50px;
  margin: 8px;
 }
}

@media screen and (max-width: 600px) {
 .header_logo {
  height: 50px;
  max-width: 300px;
  margin-left: 10px !important;
  margin-right: auto !important;
 }

 .header_logo h1 {
  text-align: left;
  margin-bottom: 0;
 }

 .header_logo img {
  height: 40px;
  margin-top: 10px;
 }
}

.header_nav {
 margin-left: auto;
}

.header_entry {
 color: var(--white-color);
 background: var(--base-color);
 display: block;
 width: 15vw;
 vertical-align: middle;
 text-align: center;
 letter-spacing: 0.06em;
 padding: 10px 0;
 margin-left: 2vw;
 margin-right: -0.06em;
 height: 100%;
 font-size: 1.92em;
 font-weight: 700;
}

.header_entry span {
 font-size: 0.5em;
 font-weight: 600;
 margin-right: -0.05em;
 margin-top: -10px;
 display: block;
}

.header_entry span.txt_accent-color {
 font-size: inherit;
 font-weight: inherit;
 margin-right: inherit;
 margin-top: inherit;
 display: inline;
}

.contact-button {
 padding: 1rem;
 border: 2px solid var(--base-color);
}

nav ul {
 display: flex;
 flex-direction: row;
 justify-content: space-around;
 list-style: none;
 margin: 1.2rem 0 0 0;
}

nav li {
 flex: 1 0 auto;
}

nav a {
 padding: 0.5rem 2.8em;
}

@media screen and (min-width: 1001px) and (max-width: 1400px) {
 .header_entry {
  width: 150px;
  font-size: 1.5em;
  margin-left: 3vw;
  padding: 18px 0;
 }

 nav a {
  padding: 0.5rem 2em;
 }
}

@media screen and (max-width: 1000px) {
 .header_entry {
  width: 150px;
  font-size: 1.5em;
  margin-left: 3vw;
  padding: 18px 0;
 }

 nav a {
  padding: 10px;
 }
}

nav li a {
 text-decoration: none;
 text-align: center;
 width: 100%;
}

nav li a:hover {
 opacity: 1;
}


nav li a.button-051 {
 display: flex;
 justify-content: center;
 position: relative;
 /* width: 150px; */
 margin: 0 auto;
 /* padding: .9em 1em; */
 border: none;
 /* border-bottom: 2px solid #e6edf3; */
 background-color: transparent;
 /* color: #333; */
 font-weight: 600;
 font-size: 1em;
}

nav li a.button-051::after {
 position: absolute;
 bottom: -3px;
 left: 0;
 transform: scaleX(0);
 transform-origin: center left;
 width: 100%;
 height: 2px;
 background-color: var(--main-color);
 content: '';
 transition: transform .3s ease;
 opacity: 1;
}

nav li a.button-051:hover::after {
 transform: scaleX(1);
 opacity: 1;
}

@media screen and (max-width: 1200px) {
 nav li a.button-051 {
  font-size: 0.9rem;
 }
}

@media screen and (min-width: 768px) {

 /* PC時はMENUボタンを非表示 */
 #open,
 #close {
  display: none !important;
 }

 #navi {
  display: block !important;
 }
}

@media screen and (max-width: 767px) {
 .header_content {
  display: flex;
  flex-direction: column;
 }

 .header {
  flex-direction: column;
  margin-bottom: 10px;
 }

 .header_nav {
  margin: 20px auto 0;
  background: var(--gradient-color);
  width: 100%;
 }

 nav li a.button-051 {
  font-size: 1.2rem;
  color: var(--base-color);
 }

 .header_entry {
  display: none;
 }

 .header #open,
 #close {
  position: absolute;
  top: 20px;
  right: 12px;
 }

 nav ul {
  flex-direction: column;
  margin-top: 2rem;
 }

 nav ul li {
  margin: 0;
 }

 nav ul li.pc-none a.btn_entry_01,
 nav ul li.pc-none a.btn_entry_02 {
  width: 85%;
  font-size: 1.4rem;
  margin: 2rem auto 0;
 }

 nav ul li.pc-none a.btn_entry_02 {
  margin-bottom: 4rem;
 }

 .header li {
  padding-top: 0;
 }

 /* スマホ時はMENUボタンを表示 */
 #open {
  display: block;
  background: url(../images/button.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  border: none;
  position: absolute;
  top: 8px;
  right: 12px;
 }

 #close {
  display: block;
  background: url(../images/button2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  border: none;
  position: absolute;
  top: 8px;
  right: 12px;
 }

 /* スマホ時はメニューを非表示 */
 #navi {
  display: none;
 }
}

/*メイン画像
-------------------------------------*/
.mainimg img {
 width: 100vw;
 margin-top: 100px;
}

.mainimg {
 margin-top: 0px;
}

@media screen and (max-width: 767px) {
 .mainimg img {
  margin-top: 70px;
 }

 .mainimg {
  margin-top: 32px;
 }
}

/*メインコンテンツ
-------------------------------------*/
/* main {
 margin: 3rem 0 0 0;
}

@media screen and (max-width: 767px) {
main {
 margin: 0;
}
} */

section {
 margin: 5rem 0;
 padding: 5rem 0;
}

main.top {
 margin-top: 0;
}

/*キャッチコピー
-------------------------------------*/
.catch {
 text-align: center;
 width: 100%;
 padding: 4rem 0 1rem;
}

.catch h2 {
 padding-bottom: 0.5rem;
 color: var(--main-color);
}

.catch .ttl {
 display: inline-block;
 line-height: 1.5;
 color: var(--white-color);
 font-weight: 700;
 font-size: 36px;
 letter-spacing: 0.12em;
 margin-bottom: 3.6rem;
 padding-bottom: 20px;
 padding-left: 10px;
 position: relative;
}

.catch .ttl::after {
 position: absolute;
 content: "";
 width: 100%;
 height: 1px;
 background: var(--white-color);
 bottom: 0;
 left: 50%;
 transform: translateX(-50%);
}

.catch .txt {
 line-height: 2;
 color: var(--white-color);
 font-weight: 500;
 font-size: 18px;
 letter-spacing: 0.08em;
}


@media screen and (min-width:768px) and (max-width:1100px) {
 .catch .ttl {
  font-size: clamp(2.2rem, 1.737rem + 0.96vw, 2.4rem);
 }

 .catch .txt {
  font-size: clamp(1.125rem, 0.836rem + 0.6vw, 1.25rem);
 }
}


@media screen and (max-width: 767px) {
 .catch .container {
  padding: 0;
 }

 .catch p {
  font-size: 16px;
 }

 .catch .ttl {
  font-size: 28px;
  padding-bottom: 10px;
  padding-left: 5px;
 }

 .catch .txt {
  font-size: 16px;
  line-height: 2;
 }

}

.center {
 text-align: center;
 margin-bottom: 5rem;
}


/*フッター
-------------------------------------*/
footer {
 /*background-color: var(--back-color); 
    padding-top: 5rem;*/
}

footer .container {
 margin-bottom: 4rem;
}

.footer_logo {
 width: 100%;
 max-width: 410px;
 margin: 4rem auto 3rem;
}

footer h4 {
 border-bottom: 3px solid var(--border-color);
}

@media screen and (max-width: 767px) {
 footer {
  padding-top: 6rem;
 }

 .footer_logo {
  width: 90%;
  margin: 0 auto 2rem;
 }
}

.footer_company_name {
 letter-spacing: 0.1em;
 font-weight: 500;
 margin-bottom: 10px;
}

.footer_company_add {
 letter-spacing: 0.1em;
 font-weight: 500;
}

.footer_company_add a {
 display: inline-block;
 color: var(--base-color);
}

.footer_to_corporate {
 margin: 40px auto 60px;
}

.footer_to_corporate .btn_02_wide {
 background-color: #e0706f;
}

.footer_company_add_branch {
 display: block;
 margin-top: 15px;
}

ul.footer_nav {
 display: flex;
 flex-wrap: nowrap;
 flex-direction: row;
 list-style: none;
 margin: 30px auto;
 justify-content: space-evenly;
 max-width: 900px;
 width: 90%;
 font-weight: 500;
}

ul.footer_nav a {
 color: var(--base-color);
}

.footer_sns {
 width: 50%;
 max-width: 500px;
 margin: 0 auto;
}

@media screen and (max-width: 767px) {
 .footer_to_corporate {
  margin: 40px auto;
 }

 ul.footer_nav {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 50px auto;
 }

 .footer_sns {
  width: 90%;
 }

}

.footer_sns_bnr.flex {
 display: flex;
 max-width: 795px;
 width: 90%;
 margin: 0 auto;
 align-items: center;
 justify-content: space-between;
}

.fa-twitter:before {
 content: '𝕏' !important;
 font-family: unset;
 font-weight: bold;
}

.fa-x-icon:before {
 content: '';
 display: inline-block;
 width: 40px;
 height: 40px;
 background-image: url(../images/logo-x.png) !important;
 background-size: contain;
 vertical-align: middle;
}

footer .insta_link {
 width: 90%;
 max-width: 353px;
 margin: 1rem auto;
 padding: 1rem 2rem;
 background-color: var(--gray-thin-color);
 border-radius: 10px;
}

footer .insta_link a {
 display: flex;
 height: auto;
 align-items: center;
}

footer .insta_link a img {
 width: 40px;
 height: 40px;
}

footer .insta_link a p {
 font-size: 15px;
 margin-left: 1rem;
 width: 200px;
 margin-bottom: 0;
}

footer .insta_link a p span {
 font-size: 12px;
}

@media screen and (max-width: 767px) {
 .footer_sns_bnr.flex {
  flex-direction: column;
 }

 footer .insta_link {
  width: 80%;
  max-width: 400px;
 }
}

/*お問い合わせ
-------------------------------------*/
.contact-box {
 border: 1px solid var(--border-color);
 text-align: center;
 padding: 2rem 0;
}

.table {
 margin: 4rem 0;
}

.table th {
 width: 250px;
}

/*コピーライト
-------------------------------------*/
.copyright {
 text-align: center;
 padding: 1rem;
 background-color: var(--base-color);
 font-size: 12px;
 letter-spacing: 0.06em;
}

.copyright a {
 color: var(--white-color);
 text-decoration: none;
 display: inline;
}

/*ページャー
-------------------------------------*/

.pager_container {
 margin: 10rem auto 5rem;
}

.pager_wrap {
 display: flex;
 justify-content: space-around;
 flex-direction: row;
}

.pager_wrap a {
 width: 45%;
 max-width: 250px;
 /*border: 1px solid var(--sub-color);*/
 color: var(--base-color);
 padding: 10px;
}

/*ページトップへ戻るボタン
-------------------------------------*/
/*#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop a {
    display: block;
    background-color: var(--base-color);
    color: var(--white-color);
    width: 50px;
    padding: 10px 5px;
    text-align: center;
}
#pagetop a:hover {
    background-color: var(--link-color);
}*/

/**/
#pagetop {
 position: fixed;
 bottom: 20px;
 right: 20px;
 text-align: center;
 font-weight: bold;
 z-index: 9999;
}

#pagetop a {
 width: 60px;
 height: 38px;
 background: var(--sub-color);
 border-radius: 70px;
 -moz-border-radius: 70px;
 -webkit-border-radius: 70px;
 color: #FFF;
 padding: 42px 20px 20px;
 display: block;
}

#pagetop a:after {
 font-family: FontAwesome;
 content: "\f077";
 position: absolute;
 bottom: 8px;
 right: 16px;
 font-size: 26px;
 font-weight: bold;
}

#pagetop a:hover {
 text-decoration: none;
 background: var(--main-color);
 color: var(--white-color);
}

@media screen and (max-width: 767px) {
 #pagetop a {
  display: none;
 }
}


/* 幅767px以下の表示
-------------------------------------*/
@media screen and (max-width: 767px) {

 /*ヘッダー
-------------------------------------*/
 .header-box {
  display: none;
 }

 /*お問い合わせ
-------------------------------------*/
 .table th {
  width: 100%;
  display: block;
 }

 .table td {
  display: block;
 }
}


/*------------------------------------
   top
-------------------------------------*/
/*①環境 縦並び*/

.environment .container {
 width: 92%;
 padding: 0;
 margin-bottom: 2rem
}

.environment h2 {
 font-size: 36px;
 letter-spacing: 0.08em;
 margin-bottom: 2.6rem;
 font-weight: 700;
}

.environment_content_area {
 display: flex;
 flex-direction: row;
 /* align-items: center; */
 align-items: stretch;
 width: 100%;
 margin-bottom: 50px;
 justify-content: space-between;
 background: var(--white-color);
}

.environment_content_area:last-child {
 margin-bottom: 0;
}

.environment_content_left {
 width: 45%;
 text-align: left;
}

.environment_content_right {
 width: 50%;
 text-align: left;
 padding-left: 20px;
}

.environment_content_right img,
.environment_content_left img {
 width: 100%;
 height: auto;
 margin: 0 auto;
 aspect-ratio: 4 / 3;
 object-fit: cover;
 object-position: 50% 50%;
}

.environment_txt_area {
 width: 55%;
 padding: 2rem;
 display: flex;
 flex-direction: column;
 justify-content: center;
}

.environment_content_img {
 width: 45%;
 display: flex;
}

.environment_content_img img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
}

.environment p {
 text-align: left;
 letter-spacing: 0.06em;
 line-height: 2;
 font-size: 1rem;
}

.environment_ttl {
 color: var(--sub-color);
 font-size: 2rem;
 font-weight: 700;
 line-height: 1.6 !important;
 margin-bottom: 5rem;
}

.environment h2 span.under {
 font-size: 36px;
 letter-spacing: 0.12em;
 font-weight: 900;
}

.environment_ttl p {
 text-align: center;
 color: var(--base-color);
 font-weight: 500;
 letter-spacing: 0.08em;
}

.environment_content_ttl {
 color: var(--main-color);
 font-weight: 900;
 letter-spacing: 0.06em;
 line-height: 1.25;
}

.environment p.subttl {
 font-weight: 700;
 font-size: 21px;
 letter-spacing: 0.18em;
 margin-bottom: 2rem;
}

@media screen and (min-width:768px) and (max-width:1400px) {
 .environment p.subttl {
  font-size: clamp(1.125rem, 0.821rem + 0.63vw, 1.375rem);
 }

 .environment p {
  font-size: clamp(1rem, 0.781rem + 0.46vw, 1.18rem);
 }
}

@media screen and (max-width: 767px) {
 .environment h2 {
  line-height: 1.4;
  margin-bottom: 1.2rem;
 }

 .environment h2 span.under {
  font-size: 32px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  padding: 0;
 }

 .environment_content_area {
  width: 95%;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 15px -5px var(--back-color);
 }

 .environment_content_area:last-child {
  margin-bottom: 0;
 }

 .sp-column-reverse {
  /* 写真が右のやつ */
  flex-direction: column-reverse;
 }

 .environment_content_left {
  width: 100%;
 }

 .environment_content_right {
  width: 100%;
  padding-left: 0;
 }

 .environment_txt_area {
  padding: 20px;
 }

 .environment p.subttl {
  font-size: 1.2rem;
 }
}

/*②募集職種一覧*/

section.recruit-area {
 padding: 3rem;
 background: var(--sub-color);
}

@media screen and (max-width: 767px) {
 section.recruit-area {
  padding: 4rem 0;
 }
}

.recruit-area h2 {
 line-height: 1.5;
}

.recruit-area h2.center {
 margin-bottom: 4rem;
}

.recruit-area .col.span-3 {
 /**/
 background-color: var(--white-color);
 padding: 10px;
 box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .3);

}

.recruit-area .btn_white {
 margin: 80px auto;
 font-size: 18px;
 letter-spacing: 0.14em;
 font-weight: 700;
}

.job_list_box {
 display: flex;
 flex-direction: row;
 width: 96%;
 margin: 0 auto;
 padding: 0;
 justify-content: space-around;
}

.job_list {
 background-color: var(--white-color);
 padding: 15px;
 /* box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .3); */
 width: 30%;
}

.job_list img {
 width: 100%;
 height: auto;
 margin: 0 auto;
 aspect-ratio: 4 / 2.6;
 object-fit: cover;
 object-position: 50% 50%;
}

.job_list .btn_02 {
 color: var(--white-color);
 background-color: var(--base-color);
 margin: 40px auto 25px;
 font-weight: 700;
}

p.job_type,
p.job_label {
 padding: 0.2rem 3vw;
 margin: 0 0.5rem 1.6rem 0;
 text-align: center;
}

p.job_type {
 font-size: 14px;
 display: inline-block;
 border: 1px solid var(--sub-color);
 width: fit-content;
 color: var(--sub-color);
 font-weight: 400;
}

p.job_label {
 display: inline-block;
 width: fit-content;
 color: var(--white-color);
 font-weight: 400;
}

p.job_label.recruit {
 background-color: #00813a;
 border: 1px solid #00813a;
}

p.job_label.career {
 background-color: #0353a7;
 border: 1px solid #0353a7;
}

h3.job_name {
 font-size: 18px;
 margin-bottom: 2rem;
 letter-spacing: 0.18em;
 font-weight: 600;
}

@media screen and (max-width: 1140px) {
 .job_list_box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
 }

 .job_list {
  width: 45%;
  min-width: 300px;
  margin-bottom: 30px;
 }
}

@media screen and (max-width: 767px) {
 .job_list_box {
  display: flex;
  flex-direction: row;
  padding: 0;
 }

 .job_list {
  width: 90%;
  min-width: 200px;
  margin-bottom: 30px;
  margin-bottom: 20px;
 }

 .recruit-area .btn_white {
  margin: 40px auto;
 }

 .recruit-area .col.span-3 {
  margin-bottom: 20px;
 }

 p.job_type,
 p.job_label {
  padding: 0.2rem 5vw;
 }
}

/*③社員インタビュー*/

.top .top-interview {
 padding: 3rem 0 1rem;
}

.top .top-interview h2 {
 line-height: 1.5;
}

.top .top-interview .container a {
 max-width: 400px;
 margin: 0 auto;
}

@media screen and (max-width: 767px) {
 .top .top-interview .container a {
  margin: 3rem auto 0;
 }
}

.top .interview_area a {
 display: flex;
 flex-direction: row;
 flex-wrap: nowrap;
 /* position: relative; */
 justify-content: center;
 border: 1px solid var(--sub-color);
}

.top .interview_area a .left {
 width: 44%;
 background-color: var(--white-color);
 color: var(--sub-color);
 padding: 45px 0 40px 50px;
 font-weight: 600;
 position: relative;
}

.top .interview_area a .right {
 width: 56%;
}

.top p.interview_ttl_en {
 text-align: left;
 color: var(--sub-color);
 border-bottom: 1px solid var(--sub-color);
 padding-bottom: 10px;
 font-size: 1em;
 margin-bottom: 25px;
}

.top p.interview_ttl_jp {
 font-size: 1.4rem;
 width: 96%;
 max-width: 380px;
}

.top p.interview_jobtype {
 position: absolute;
 /* width: 96%; */
 max-width: 340px;
 font-size: 1.4rem;
 line-height: 1.4;
 bottom: 20%;
}

.top p.interview_name {
 position: absolute;
 /* width: 96%; */
 max-width: 340px;
 bottom: 21%;
 font-size: 1.6rem;
 font-weight: 700;
}

.top p.interview_joindyear {
 position: absolute;
 display: inline-block;
 max-width: 360px;
 bottom: 40px;
 font-size: 0.9rem;
 border: 1px solid var(--sub-color);
 text-align: center;
 padding: 5px 20px;
 margin-bottom: 0;
}

.top .top-interview .btn_02_wide {
 margin: 50px auto;
 font-size: 18px;
 letter-spacing: 0.14em;
 width: 100%;
 max-width: 320px;
}

@media screen and (min-width:768px) and (max-width:1400px) {
 .top p.interview_ttl_en {
  margin-bottom: 15px;
 }

 .top p.interview_ttl_jp {
  font-size: 1.1em;
  width: 90%;
  max-width: 420px;
 }

 .top .interview_area a .left {
  padding: 30px 0 20px 30px;
 }

 .top p.interview_jobtype {
  width: 85%;
  bottom: 24%;
  font-size: 1.2rem;
 }

 .top p.interview_name {
  bottom: 15%;
 }

 .top p.interview_joindyear {
  bottom: 8%;
  padding: 5px 10px;
 }
}

@media screen and (max-width:767px) {
 .top .top-interview h2 span.fz-18 {
  font-size: 1.1rem;
 }

 .top .recruit-area .col.span-3 {
  margin-bottom: 20px;
 }

 .top .interview_area a {
  display: flex;
  flex-direction: column;
 }

 .top .interview_area a .left {
  width: 100%;
  padding: 20px;
 }

 .top .interview_area a .right {
  width: 100%;
 }

 .top p.interview_ttl_en {
  padding-bottom: 0;
  margin-bottom: 10px;
 }

 .top p.interview_ttl_jp {
  font-size: 1.1em;
  width: 100%;
  max-width: none;
  margin-bottom: 2rem;
 }

 .top p.interview_jobtype {
  position: relative;
  width: 90%;
  max-width: none;
  font-size: 1.1em;
  margin-bottom: 10px;
 }

 .top p.interview_name {
  position: relative;
  font-size: 1em;
  width: 90%;
  margin-bottom: 1rem;
 }

 .top p.interview_joindyear {
  position: relative;
  bottom: 5%;
  padding: 3px 15px;
 }

 .top .top-interview .btn_02_wide {
  margin: 60px auto;
 }
}

@media screen and (max-width: 600px) {
 .top .top-interview .btn_02_wide {
  margin: 40px auto;
 }
}

/*----⑤データ---------*/
.sec_data {
 padding-top: 4rem;
 padding-bottom: 11rem;
}

.sec_data h2 {
 line-height: 1.6;
 text-align: center;
}

@media screen and (max-width: 767px) {
 .sec_data {
  margin-bottom: 0;
  padding-bottom: 8rem;
 }

 .sec_data h2 {
  line-height: 1.4;
 }
}

/* アイコン個別サイズ */
.data_icon .holiday {
 height: 70px;
}

.data_icon .years {
 height: 70px;
}

.data_icon .people {
 height: 50px;
}

.data {
 display: flex;
 flex-direction: row;
 flex-wrap: nowrap;
 width: 92%;
 max-width: 1620px;
 justify-content: space-evenly;
 align-items: stretch;
 margin: 0 auto;
}

.data .data_content {
 background-color: var(--white-color);
 border: 1px solid var(--main-color);
 padding: 30px 30px 40px;
 box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .1);
 width: 23%;
 max-width: 350px;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: start;
 height: auto;
 min-height: 300px;
}

@media screen and (max-width: 1220px) {
 .data {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
 }

 .data .data_content {
  width: 45%;
  min-width: 300px;
  margin-bottom: 30px;
 }
}

@media screen and (max-width: 767px) {
 .data {
  display: flex;
  flex-direction: column;
  align-items: center;
 }

 .data .data_content {
  width: 80%;
  min-width: 250px;
  max-width: none;
  margin-bottom: 20px;
  height: auto;
  min-height: 280px;
 }
}

@media screen and (max-width: 600px) {
 .data .data_content {
  width: 90%;
  padding: 20px;
 }
}

.data .data_name {
 background-color: var(--base-color);
 color: var(--white-color);
 font-weight: 600;
 letter-spacing: 0.08em;
 border-radius: 53px;
 padding: 6px;
 width: 95%;
 margin: 0px auto 40px;
 font-size: 21px;
}

.data .data_comment {
 margin-top: -2rem;
 margin-bottom: 0;
 font-size: 20px;
 font-weight: 500;
 letter-spacing: 0.08em;
}

.data .holiday .data_comment {
 font-size: 18px;
 margin-top: -1rem;
}

@media screen and (min-width:1221px) and (max-width:1400px) {
 .data .data_comment {
  font-size: clamp(1.063rem, -0.216rem + 1.68vw, 1.25rem);
 }

 .data .holiday .data_comment {
  font-size: clamp(0.938rem, -0.768rem + 2.23vw, 1.188rem);
 }
}

@media screen and (max-width: 767px) {
 .data .data_name {
  margin: 0px auto 20px;
 }
}

@media screen and (max-width: 600px) {
 .data .data_name {
  font-size: 18px;
 }

 .data .data_comment {
  font-size: 20px;
 }
}

.data_icon {
 width: 100%;
 height: 70px;
 display: flex;
 justify-content: center;
 /* 水平中央 */
 align-items: center;
 /* 垂直中央 */
}

.data_icon span {
 font-size: 5rem;
 color: var(--main-color);
}

.data_value {
 font-size: 85px;
 font-weight: 700;
}

.data_value small {
 font-size: 36px;
 font-weight: 500;
}

@media screen and (min-width:1200px) and (max-width:1400px) {
 .data_value {
  font-size: 3.6rem;
 }
}

.data_bg-icon_wrap {
 position: relative;
 width: 100%;
 height: 100%;
 margin: 0 auto;
}

.data_bg-icon_wrap img {
 max-width: 230px;
}

.data_bg-icon_txt {
 position: absolute;
 width: 100%;
 top: 32%;
 left: 50%;
 transform: translate(-50%, -50%);
 line-height: 1.05;
}

@media screen and (min-width:1200px) and (max-width:1400px) {
 .data_bg-icon_wrap img {
  max-width: 180px;
 }

 .data_bg-icon_txt {
  top: 42%;
 }
}

p.hosoku {
 color: var(--base-color);
 position: absolute;
 left: 50%;
 bottom: -13%;
 transform: translate(-50%, -50%);
 width: 100%;
 font-size: 12px;
}

/* 残業時間 */
/* .data_overtime {
  color: var(--base-color);
  font-size: 80px;
  font-weight: 700;
  width: 100%;
  letter-spacing: -0.04em;
}

.data_overtime_icon {
  width: 100%;
  max-width: 230px;
  height: auto;
  margin: 0 auto 30px;
}

.data_overtime .overtime_small {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .data_overtime_icon {
margin-bottom: 0;
  }
}

@media screen and (max-width: 600px) {
  .data_overtime {
    font-size: 60px;
    font-weight: 700;
    top: 54%;
  }

  .data_overtime .overtime_small {
    font-size: 28px;
    font-weight: 600;
  }
} */


/*SVGのグラフ部分*/
/*参考サイト：https://b-risk.jp/blog/2022/06/infographics/#i-2*/

.box {
 position: relative;
 /* min-width: 200px; */
 /* width: 33.3333333333%; */
 /* height: 300px; */
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 /* background: #fff; */
 /* -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); */
 /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); */
}

@media screen and (max-width: 750px) {
 .box {
  width: 100%;
 }
}

@media screen and (min-width: 751px) {
 .box+.box {
  margin-left: 20px;
 }
}

@media screen and (max-width: 750px) {
 .box+.box {
  margin-top: 20px;
 }
}

.data_danshi_svg .box .percent,
.data_jyoshi_svg .box .percent {
 position: relative;
 width: 130px;
 height: 130px;
}

.data_danshi_svg .percent svg,
.data_jyoshi_svg .percent svg {
 position: relative;
 width: 130px;
 height: 130px;
 -webkit-transform: rotate(-90deg);
 transform: rotate(-90deg);
}

.data_stepup .box .percent {
 position: relative;
 width: 150px;
 height: 150px;
}

.data_stepup .box .percent svg {
 position: relative;
 width: 150px;
 height: 150px;
 -webkit-transform: rotate(-90deg);
 transform: rotate(-90deg);
}

.svg_ttl {
 font-weight: bold;
 line-height: 35px;
}

.box .percent svg circle {
 position: relative;
 fill: none;
 stroke-width: 10;
 stroke: #FFF;
 stroke-dasharray: 440;
 stroke-dashoffset: 0;
 stroke-linecap: round;
}

.box .percent .number {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 color: var(--base-color);
 font-weight: bold;
}

.box .percent .number .title {
 font-size: 50px;
}

.box .percent .number .title span {
 font-size: 22px;
}

.box .text {
 padding: 10px 0 0;
 text-align: center;
 font-weight: bold;
 font-size: 14px;
}

.box .percent .line {
 -webkit-animation: circleAnim 1s forwards;
 animation: circleAnim 1s forwards;
}


@-webkit-keyframes circleAnim {
 0% {
  stroke-dasharray: 0 440;
 }

 99.9%,
 to {
  stroke-dasharray: 440 440;
 }
}

@keyframes circleAnim {
 0% {
  stroke-dasharray: 0 440;
 }

 99.9%,
 to {
  stroke-dasharray: 440 440;
 }
}



/*⑥エントリーエリア*/

.footer_entry {
 background-image: url(../images/bg_footer_entry.jpg);
 background-repeat: no-repeat;
 background-size: cover;
 background-attachment: fixed !important;
 background-color: rgba(56, 126, 0, 0.1);
 background-blend-mode: multiply;
 background-position: center;
 font-weight: 600;
 margin: 0;
 padding: 4rem 0 2.6rem;
}

.footer_entry p {
 font-size: 18px;
 letter-spacing: 0.08em;
 font-weight: 500;
}

.footer_entry h2 span.under {
 font-size: 52px;
 letter-spacing: 0.1em;
 display: inline-block;
 margin-bottom: 0.6rem;
}

@media screen and (max-width: 767px) {
 .footer_entry p {
  font-size: 16px;
 }

 .footer_entry h2 {
  font-size: 2.25rem;
 }
}

@media screen and (max-width: 600px) {
 .footer_entry p {
  font-size: 14px;
 }
}

.entry_btn_area {
 display: flex;
 justify-content: space-evenly;
 flex-direction: row;
 flex-wrap: wrap;
 max-width: 1020px;
 margin: 0 auto;
}

.btn_entry_01,
.btn_entry_02 {
 display: block;
 width: 300px;
 text-align: center;
 color: var(--white-color);
 padding: 30px;
 letter-spacing: 0.3em;
 font-size: 24px;
 font-weight: 900;
}

.btn_entry_white {
 display: block;
 width: 300px;
 text-align: center;
 color: var(--main-color);
 background-color: var(--white-color);
 padding: 20px;
 letter-spacing: 0.5em;
 font-size: 1.2em;
}

.btn_entry_01,
.btn_entry_02,
.btn_entry_white {
 width: 48vw;
 max-width: 420px;
 justify-content: space-between;
}

.btn_entry_01 {
 background-color: var(--sub-color);
}

.btn_entry_02 {
 background-color: var(--base-color);
 color: var(--white-color);
}

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

 .btn_entry_01,
 .btn_entry_02,
 .btn_entry_white {
  margin: 1em auto;
 }
}

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

 nav ul .btn_entry_01,
 nav ul .btn_entry_02,
 nav ul .btn_entry_white {
  margin: 1em auto;
 }

 .btn_entry_01,
 .btn_entry_02,
 .btn_entry_white {
  font-size: 1.2em;
 }
}

@media screen and (max-width: 600px) {
 .entry_btn_area {
  flex-direction: column;
  align-items: center;
 }

 .btn_entry_01,
 .btn_entry_02,
 .btn_entry_white {
  width: 250px;
  text-align: center;
  margin: 1em auto;
  padding: 20px;
 }

 .btn_entry_02 {
  margin-top: 0;
 }
}


/*-------------------------------------

　　　　　下層共通

---------------------------------------*/

/*下層ヘッダー*/
.mainimg_kasou {
 background-color: var(--main-color);
 height: 24vh;
 padding-top: 90px;
 margin-top: 100px;
 position: relative;
 z-index: -2;
}

.mainimg_kasou::before {
 content: "";
 display: block;
 position: absolute;
 background-image: url(../images/bg02_left.png);
 background-repeat: no-repeat;
 background-size: cover;
 background-position: left center;
 width: 24vh;
 height: 24vh;
 top: 0;
 left: 0;
}

.mainimg_kasou::after {
 content: "";
 display: block;
 position: absolute;
 background-image: url(../images/bg02_right.png);
 background-repeat: no-repeat;
 background-size: cover;
 background-position: right bottom;
 width: 24vh;
 height: 24vh;
 bottom: 0;
 right: 0;
}

.mainimg_kasou h2 {
 color: var(--base-color);
 font-size: 36px;
 letter-spacing: 0.04em;
 font-weight: 600;
 text-transform: uppercase;
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
}

/* .mainimg_kasou h2::after {
  position: absolute;
  content: "";
  background-color: var(--main-color);
  width: 70px;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
} */

@media screen and (min-width: 601px) and (max-width: 767px) {
 .mainimg_kasou {
  height: 18vh;
  margin-top: 70px;
  padding-top: 60px;
 }

 .mainimg_kasou::before {
  /* background-position: top left -3vw; */
  width: 18vh;
  height: 18vh;
 }

 .mainimg_kasou::after {
  /* background-position: right -3vw bottom; */
  width: 18vh;
  height: 18vh;
 }
}

@media screen and (max-width: 600px) {
 .mainimg_kasou {
  height: 150px;
  margin-top: 70px;
  padding-top: 0px;
 }

 .mainimg_kasou::before {
  background-position: left -3vw center;
  width: 150px;
  height: 150px;
  z-index: -1;
 }

 .mainimg_kasou::after {
  background-position: right -3vw center;
  width: 150px;
  height: 150px;
  z-index: -1;
 }

 .mainimg_kasou h2 {
  font-size: 2rem;
  width: 100%;
 }
}

.mainimg_kasou p {
 color: var(--main-color);
}

/*パンくず*/
.breadcrumbs {
 display: flex;
}

.pan-kuzu {
 background-color: var(--sub-color);
 color: var(--white-color);
 font-weight: 500;
 height: 30px;
 font-size: 16px;
}

.pan-kuzu a {
 color: var(--white-color);
 margin-right: 1em;
 margin-left: 1em;
 text-decoration: none;
}

.pan-kuzu p {
 display: flex;
}

@media screen and (max-width: 600px) {
 .pan-kuzu {
  font-size: 14px;
 }

 .pan-kuzu a {
  margin-right: 0em;
  margin-left: 0em;
  font-size: 14px;
  letter-spacing: 0;
 }
}

/* table*/
/*ページネーション*/
.pagination {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 0 8px;
 list-style-type: none;
 padding: 0;
}

.pagination a {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 2em;
 height: 2em;
 border-radius: 1px;
 background-color: #f2f2f2;
 color: var(--main-color);
}

.pagination a:not(:hover) {
 text-decoration: none;
}

.pagination .on a {
 background-color: var(--main-color);
 color: #fff;
 pointer-events: none;
}

/* sectionのmargin削除 */
.kasou section {
 margin: 0;
}

@media screen and (max-width: 767px) {
 .kasou section {
  padding-top: 3rem;
 }
}


/*-------------------------------------

　　　　　事業理念　philosophy

---------------------------------------*/
main.philosophy .sec-title {
 font-weight: 700;
 line-height: 1.6;
 letter-spacing: 0.08em;
 margin-bottom: 2rem;
 text-align: center;
}

.service_content_area {
 display: flex;
 flex-direction: row;
 align-items: center;
 width: 100%;
 margin-bottom: 50px;
 justify-content: space-between;
}

.service_content_left {
 width: 45%;
 text-align: left;
 letter-spacing: 0.06em;
}

.service_content_right {
 width: 50%;
 text-align: left;
 padding-left: 20px;
 letter-spacing: 0.06em;
}

.service_content_right img,
.service_content_left img {
 width: 100%;
 height: auto;
 margin: 0 auto;
 aspect-ratio: 4 / 3;
 object-fit: contain;
 object-position: 50% 50%;
}

p.service_content_ttl {
 font-size: 1.4em;
 font-weight: 600;
 letter-spacing: 0.1em;
 color: var(--white-color);
 background-color: var(--sub-color);
 padding: 0.5rem 1rem;
}

ul.service_content_txt {
 list-style-type: square;
 line-height: 1.5em;
}

ul.service_content_txt li {
 margin-left: 1.4em;
 text-indent: -1.4em;
 color: var(--main-color);
}

ul.service_content_txt li span.service_content_txt_detail {
 color: var(--base-color);
}

@media screen and (max-width: 767px) {
 .service_content_area {
  width: 95%;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
 }

 .service_content_area:last-child {
  margin-bottom: 0;
 }

 .sp-column-reverse {
  /*写真が右のやつ*/
  flex-direction: column-reverse;
 }

 .service_content_left {
  width: 100%;
 }

 .service_content_left p {
  /* padding-left: 1em; */
 }

 .service_content_right {
  width: 100%;
  padding-left: 0;
 }

 .service_content_ttl {
  margin-top: 20px;
 }

}

main.philosophy .philo .sub-title {
 text-decoration: underline;
 margin-bottom: 1.5rem;
}

.philo {
 text-align: left;
 width: 100%;
 max-width: 750px;
 margin: 30px auto;
}

.philo p {
 font-weight: 500;
 margin-bottom: 3rem;
}

.philo p.under {
 font-weight: 600;
 margin-bottom: 0;
}

.philo ul {
 list-style-type: disc;
}

.philo h5 {
 color: var(--sub-color);
 margin: 30px auto;
}

.philo p.philo_lead {
 margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
 .philo p.philo_lead {
  text-align: left;
  letter-spacing: 0.04em;
 }
}

/* 写真あり */
/* .message_content_area {
 display: flex;
 flex-direction: row;
 align-items: flex-start;
 width: 100%;
 margin-bottom: 50px;
 justify-content: center;
} */


/* 写真なし */
.message_content_area {
 display: block;
 width: 100%;
 text-align: center;
}

/* 写真なし */
@media screen and (max-width: 767px) {
 .message_content_txt {
  text-align: left;
  font-size: 16px;
 }

}

.message_content_left {
 width: 35%;
 text-align: left;
}

.message_content_left img {
 box-shadow: 20px 20px 0 var(--main-color);
}

.message_content_right {
 /* width: 40%;
 text-align: left;
 padding-left: 50px; */
 width: 100%;
 max-width: 800px;
 margin: 0 auto;
 text-align: center;
}

p.message_content_ttl {
 font-size: 1.4em;
 font-weight: 600;
 color: var(--sub-color);
 border-bottom: 1px solid var(--main-color);
 padding: 0 10px 10px;
}

p.message_position {
 /* text-align: right; */
 text-align: center;
 font-size: 0.8em;
 margin-top: 40px;
}

p.message_name {
 /* text-align: right; */
 text-align: center;
 margin-top: -10px;
}

@media screen and (max-width: 767px) {
 .message_content_area {
  width: 90%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
 }

 .message_content_left {
  width: 100%;
  text-align: center;
 }

 .message_content_left p {
  padding-left: 0;
 }

 .message_content_right {
  width: 100%;
  padding-left: 0;
 }

 .message_content_ttl {
  margin-top: 40px;
 }
}

@media screen and (max-width: 600px) {
 .message_content_left {
  width: 95%;
 }
}


/*-------------------------------------

　　　　　会社概要　Company

---------------------------------------*/

.company table,
.histry table {
 margin: 50px auto;
 width: 90%;
 border-collapse: collapse;
 border-spacing: 0;
}

.company table {
 max-width: 800px;
}

.histry table {
 max-width: 800px;
}

.company table tr,
.histry table tr {
 border-bottom: 1px solid var(--gray-color);
}

.company table tr th,
.company table tr td {
 text-align: left;
 vertical-align: middle;
}

.company table tr th,
.histry table tr th {
 width: 22%;
 font-weight: bold;
 border-bottom: 1px solid var(--main-color);
 padding: 20px;
 color: var(--sub-color);
}

.company table tr td,
.histry table tr td {
 width: 75%;
 padding: 20px 20px;
}


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

 .company table,
 .histry table {
  width: 95%;
 }

 .company table tr th,
 .company table tr td,
 .histry table tr th,
 .histry table tr td {
  display: block;
  width: 100%;
  padding: 0;
  border-bottom: none;
 }

 .company table tr th,
 .histry table tr th {
  border-bottom: 0px solid var(--main-color);
  margin: 20px 0 0;
 }

 .company table tr td,
 .histry table tr td {
  border-bottom: 0px solid var(--main-color);
  margin: 10px 0 20px;
 }
}

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

 .company table,
 .histry table {
  font-size: 0.9em;
  letter-spacing: 0;
  width: 99%;
 }
}

/*-------------------------------------

　　　　　社員インタビュー シングル　Interview

---------------------------------------*/

.interview h2 {
 line-height: 1.2;
}

.interview .interview_area {
 display: flex;
 flex-direction: row;
 flex-wrap: nowrap;
 position: relative;
 justify-content: center;
 text-align: left;
 border: 1px solid var(--sub-color);
}

.interview .interview_area .left {
 width: 40%;
 background-color: var(--white-color);
 color: var(--sub-color);
 padding: 30px 0 30px 30px;
}

.interview .interview_area .right {
 width: 60%;
}

.interview_area img {
 /*width:44vw;*/
 /*スライダー内の画像を60vwにしてレスポンシブ化。左右もう少しみせたいので４４に変更*/
 width: 100%;
 height: 400px;
 margin: 0 auto;
 aspect-ratio: 4 / 3;
 object-fit: cover;
 object-position: 50% 50%;
}

.interview p.interview_ttl_en {
 text-align: left;
 border-bottom: 1px solid var(--sub-color);
 padding-bottom: 10px;
 font-size: 0.8em;
}

.interview p.interview_ttl_jp {
 font-size: 1.4rem;
 width: 96%;
}

.interview p.interview_jobtype {
 position: absolute;
 bottom: 27%;
 font-size: 1.3rem;
}

.interview p.interview_name {
 position: absolute;
 bottom: 16%;
 font-size: 1.6em;
}

.interview p.interview_joindyear {
 position: absolute;
 bottom: 30px;
 font-size: 0.8em;
 border: 1px solid var(--sub-color);
 text-align: center;
 padding: 5px 20px;
 margin-bottom: 0;
}

@media screen and (max-width: 1000px) {
 .interview .interview_area .left {
  width: 55%;
 }

 .interview .interview_area .right {
  width: 45%;
 }

 .interview p.interview_ttl_jp {
  font-size: 1.4rem;
 }

 .interview p.interview_jobtype {
  font-size: 1.2rem;
  bottom: 23%;
 }

 .interview p.interview_name {
  font-size: 1.4rem;
  bottom: 15%;
 }
}

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

 .interview .interview_area {
  display: flex;
  flex-direction: column;
 }

 .interview .interview_area .left {
  width: 100%;
  padding: 20px;
 }

 .interview .interview_area .right {
  width: 100%;

 }

 .interview_area img {
  height: auto;
 }

 .interview p.interview_ttl_en {
  text-align: left;
  border-bottom: 1px solid var(--sub-color);
  padding-bottom: 5px;
 }

 .interview p.interview_ttl_jp {
  font-size: 1.3rem;
  width: 100%;
 }

 .interview p.interview_jobtype {
  position: static;
  margin-bottom: 0;
 }

 .interview p.interview_name {
  position: static;
 }

 .interview p.interview_joindyear {
  position: static;
  width: fit-content;
 }
}

/*content*/
.interview_content_wrap {
 padding-bottom: 100px;
}

.interview .interview_content_area {
 display: flex;
 flex-direction: row;
 align-items: center;
 max-width: 1500px;
 margin: 0 auto 50px;
 justify-content: center;
}

.interview .interview_content_area img {
 border-top-left-radius: 50px;
 border-bottom-right-radius: 50px;
 box-shadow: 20px 20px 0 var(--main-color);
}

.interview .interview_content_left {
 width: 45%;
 text-align: left;
}

.interview .interview_content_right {
 width: 50%;
 text-align: left;
 padding-left: 40px;
}

.interview .interview_content_ttl {
 font-size: 1.4em;
 color: var(--sub-color);
 border-bottom: 1px solid var(--main-color);
 padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
 .interview_content_wrap {
  width: 95%;
  padding-bottom: 0;
 }

 .interview .interview_content_area {
  width: 95%;
  display: flex;
  flex-direction: column;
  padding: 10px 0 0 20px;
 }

 .interview .sp-column-reverse {
  /*写真が右のやつ*/
  flex-direction: column-reverse;
 }

 .interview .interview_content_area img {
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  box-shadow: 10px 10px 0 var(--main-color);
 }

 .interview .interview_content_left {
  width: 100%;
 }

 .interview .interview_content_left p {
  padding-left: 0;
 }

 .interview .interview_content_right {
  width: 100%;
  padding-left: 0;
 }

 .interview .interview_content_ttl {
  margin-top: 20px;
 }

}

/*-------------------------------------

　　　　　社員インタビュー アーカイブ　Interview

---------------------------------------*/
.interview_list {
 margin: 30px auto 80px;
}

.interview_list ul {
 width: 90%;
 display: flex;
 flex-direction: row;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: space-between;
 margin: 0 auto;
}

.interview_list ul li.interview_area {
 width: 30%;
 min-width: 280px;
 list-style-type: none;
 /* box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .3); */
 margin-left: 10px;
 margin-bottom: 30px;
 background-color: var(--main-color);
 border: 1px solid var(--sub-color);
}

.interview_list ul::after {
 content: "";
 display: block;
 width: 30%;
 margin-left: 10px;
}

.interview_list .interview_area a {
 display: flex;
 flex-direction: column;
 flex-wrap: nowrap;
 justify-content: center;
}

.interview_list .interview_area a .interview_list_txt {
 width: 100%;
 background-color: var(--white-color);
 color: var(--sub-color);
 padding: 20px;
 text-align: left;
}

.interview_list .interview_area a .interview_list_img {
 width: 100%;

}

.interview_list .interview_area a .interview_list_img img {
 width: 100%;
 height: auto;
 margin: 0 auto;
 aspect-ratio: 5 / 4;
 object-fit: cover;
 object-position: 50% 50%;
}

.interview_list p.interview_ttl_en {
 text-align: left;
 border-bottom: 1px solid #FFF;
 padding-bottom: 10px;
 font-size: 0.8em;
}

.interview_list p.interview_ttl_jp {
 font-size: 1.4rem;
 text-align: left;
 border-bottom: 1px solid;
 padding-bottom: 5px;
}

.interview_list p.interview_jobtype {
 font-size: 1.3rem;
 margin-bottom: 0.2rem;
}

.interview_list p.interview_name {
 font-size: 1.5em;
}

.interview_list p.interview_joindyear {
 font-size: 0.9rem;
 border: 1px solid var(--sub-color);
 text-align: center;
 display: inline-block;
 padding: 5px 20px;
 margin-bottom: 0;
}

@media screen and (max-width: 1000px) {
 .interview_list ul {
  display: flex;
  justify-content: space-between;
 }

 .interview_list ul li.interview_area {
  width: 45%;
 }

 .interview_list p.interview_ttl_jp {
  font-size: 1.2rem;
 }

 .interview_list p.interview_jobtype {
  font-size: 1.1rem;
 }

 .interview_list p.interview_name {
  font-size: 1.4rem;
 }
}

@media screen and (max-width: 486px) {
 .interview_list {
  margin-bottom: 3rem;
 }

 .interview_list ul li.interview_area {
  width: 90%;
  min-width: 200px;
  margin: 0 auto 30px;
 }
}


/*-------------------------------------

　　募集職種 アーカイブ　Jobs

---------------------------------------*/

.jobs_list_area {
 margin: 50px auto;
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 width: 80%;
 max-width: 1500px;
 justify-content: space-between;
}

.jobs_list_area::after {
 content: "";
 display: block;
 width: 30%;
}

.jobs_system {
 background-color: var(--white-color);
 padding: 30px 20px;
 text-align: left;
 margin-bottom: 30px;
 box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .3);
}

p.jobs_type {
 color: var(--sub-color);
 background-color: var(--white-color);
 padding: 5px 30px;
 width: fit-content;
 border: 1px solid var(--sub-color);
}

h3.jobs_ttl {
 color: var(--sub-color);
 font-size: 1.4rem;
 letter-spacing: 0.05em;
 font-weight: 500;
}

.twobox {
 display: flex;
 flex-direction: row;
 justify-content: space-around;
}

.single .twobox {
 /* シングルページの時は横並びに */
 flex-direction: row;
}

.item {
 width: 45%;
}

.item img {
 width: 100%;
 margin: 0 auto;
 aspect-ratio: 5 / 3;
 object-fit: cover;
 object-position: 50% 50%;
}

.item p {
 margin-left: 10px;
}

.jobs_table {
 margin: 0 auto;
 width: 80%;
}

.jobs_table table {
 width: 100%;
 margin: 20px auto 20px;
}

.jobs_table table th {
 word-break: break-all;
 vertical-align: middle;
 width: 5%;
 color: var(--base-color);
 font-weight: bold;
 padding-left: 1em;
}

.jobs_table table th span {
 color: var(--sub-color);
}

.jobs_table table td {
 word-break: break-all;
}

@media screen and (max-width: 768px) {
 .jobs_list_area {
  flex-direction: row;
  flex-wrap: wrap;
  width: 90%;
 }

 .jobs_system {
  width: 100%;
 }

 .twobox {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
 }

 .single .twobox {
  flex-direction: column;
 }

 .item {
  width: 90%;
  margin: 10px auto;
  text-align: center;
 }

 .item img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  max-width: 400px;
  text-align: center;
 }

 .item p {
  text-align: left;

 }

 .jobs_table {
  margin: 0 auto;
  width: 100%;
 }

 .jobs_table table th {
  width: 10%;
  padding: 10px 5px;
 }
}

@media screen and (max-width: 600px) {
 .jobs_list_area {
  margin-top: 0;
 }

 h3.jobs_ttl {
  font-size: 1.2em;
  letter-spacing: 0.06em;
 }

 .jobs_system {
  padding: 20px 15px;
 }

 .jobs_txt .center {
  margin-bottom: 0;
 }

 .jobs_table table th {
  width: 10%;
  padding: 10px 5px;
 }

 .jobs_table table td {
  padding: 10px 5px;
 }

}

/* 職種選択 */
section.cat_select_area {
 width: 95%;
 max-width: 1000px;
 margin: 0 auto 50px;
}

.cat_select {
 display: flex;
 flex-direction: row;
 align-items: baseline;
}

@media all and (max-width: 767px) {
 section.cat_select_area {
  padding: 3rem 0;
  margin-bottom: 0;
 }

 .cat_select {
  flex-direction: column;
  align-items: baseline;
 }
}

section.cat_select_area .cat_ttl {
 font-size: 1.2em;
 font-weight: 600;
 width: 200px;
}

.tag-area {
 margin-top: 5px;
}

ul.tag-all {
 display: flex;
 flex-direction: row;
 justify-content: center;
 flex-wrap: wrap;
 justify-content: flex-start;
 width: 80%;
}

@media all and (max-width: 767px) {
 ul.tag-all {
  width: 100%;
 }
}

ul.tag-all li {
 margin-left: 10px;
 margin-top: 3px;
 list-style: none;
}

ul.tag-all li a {
 display: block;
 font-size: 1em;
 padding: 3px 8px;
 color: #FFF;
 font-weight: 600;
 background-color: var(--main-color);
}

ul.tag-all li a:hover {
 background-color: var(--gray-color);
}

/*  記事属性部分のタグ */

ul.tag {
 display: flex;
 flex-direction: row;
 justify-content: center;
 flex-wrap: wrap;
}

ul.tag li {
 margin: 0 5px 2px 3px;
}

ul.tag li a {
 display: block;
 font-size: 0.8em;
 padding: 3px 8px;
 color: #FFF;
 font-weight: 600;
 background-color: var(--main-color);
 border-radius: 15px;
}

ul.tag li a:before {
 content: "# ";
}

ul.tag li a:hover {
 background-color: var(--gray-color);
 border-radius: 15px;
}

/*-------------------------------------

　　募集職種 シングル　Jobs

---------------------------------------*/

@media screen and (max-width: 767px) {
 .jobs_list .jobs_list_area {
  width: 100%;
  margin-bottom: 0;
 }
}

.jobs_content {
 margin-top: 50px;
}

.jobs_content_area {
 background-color: var(--white-color);
 padding: 30px 20px;
 text-align: left;
 width: 100%;
 max-width: 1000px;
 margin: 1.5em auto;
}

@media screen and (max-width: 767px) {
 .jobs_content_area {
  padding: 0;
 }
}

.jobs_content .scene {
 margin-bottom: 0;
}

.jobs_content_ttl {
 margin-bottom: 2rem;
}

.jobs_content_area h3 {
 position: relative;
 padding: 1rem 0;
 color: var(--sub-color);
 margin: 2.5em auto 1em;
 line-height: 1.4;
 text-align: left;
 font-size: 1.5em;
 font-weight: 600;
}

.jobs_content_area h3:after {
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 4px;
 content: '';
 background-image: var(--gradient-color);
}

.jobs_content_area h3 span {
 margin-bottom: -2px;
 letter-spacing: 0.15vw;
 display: inline-block;
}

.jobs_content_area h4 {
 position: relative;
 padding: 5px 20px;
 width: fit-content;
 font-size: 1em;
 letter-spacing: 0.1em;
 font-weight: 600;
 height: fit-content;
 color: var(--main-color);
}

.jobs_content_area h4::before,
.jobs_content_area h4::after {
 display: inline-block;
 position: absolute;
 width: 10px;
 height: 100%;
 border: 3px solid var(--main-color);
 box-sizing: border-box;
 content: '';
}

.jobs_content_area h4::before {
 top: 0;
 left: 0;
 border-right: none;
}

.jobs_content_area h4::after {
 bottom: 0;
 right: 0;
 border-left: none;
}

.single .jobs_system {
 width: 100%;
}

/*募集要項テーブル*/
.jobs_table table.table01 {
 width: 100%;
 border-collapse: collapse;
 border-spacing: 0;
 font-size: 14px;
}

.jobs_table table.table01 tr {
 border-bottom: 1px solid var(--sub-color);
}

.jobs_table table.table01 th {
 width: 22%;
 background-color: var(--back-color);
 border-top: 1px solid var(--gray-color);
 border-bottom: 1px solid var(--gray-color);
 box-sizing: border-box;
 padding: 30px 15px;
 vertical-align: middle;
 font-weight: 700;
 text-align: center;
}

.jobs_table table.table01 td {
 background: #fff;
 /* border-top: 1px solid var(--gray-color); */
 border-bottom: 1px solid var(--gray-color);
 box-sizing: border-box;
 padding: 30px 15px;
 vertical-align: top;
 text-align: left;
}

@media all and (max-width: 767px) {

 .jobs_table table.table01 th,
 .jobs_table table.table01 td {
  display: block;
  width: 100%;
  border-bottom: none;
  padding: 15px;
 }

 /* .jobs_table table.table01 th {
    background-color: var(--back-color);
  } */

 .jobs_table table.table01 td {
  margin-bottom: 15px;
 }
}

/*採用フロー*/
.stepbar {
 margin: 0 auto;
 width: 80%;
 max-width: 600px;
 text-align: left;
}

.stepbar .stepbarwrap {
 margin: 2em 0;
 position: relative;
}

.stepbar .stepbarwrap .steptitle {
 display: inline-flex;
 align-items: center;
}

.stepbar .stepbarwrap .steptitle .stepcircle {
 display: inline-block;
 width: 3em;
 height: 3em;
 content: "";
 border-radius: 50%;
 background-color: var(--sub-color);
 color: #fff;
 text-align: center;
}

.stepbar .stepbarwrap .steptitle .stepcircle span {
 display: inline-block;
 line-height: 1.2em;
 font-size: 0.8em;
 font-weight: bold;
 position: relative;
 top: 0.9em;
}

.stepbar .stepbarwrap .steptitle .title {
 margin: 0.5em;
 font-weight: bold;
 font-size: 1.2em;
}

.stepbar .stepbarwrap .steptxt {
 padding-left: 3.5em;
}

.stepbar .stepbarwrap .steptxt .txt {
 font-size: 0.9em;
}

.stepbar .stepbarwrap .stepline {
 width: 1px;
 height: calc(100% + 1em);
 background-color: var(--sub-color);
 position: absolute;
 top: 1em;
 left: 1.5em;
 z-index: -1;
}

.stepbarwrap:last-of-type .stepline:last-of-type {
 display: none;
}

@media screen and (max-width: 960px) {
 .stepbar {
  width: 90%;
 }
}

@media screen and (max-width: 767px) {
 .stepbar {
  width: 100%;
 }
}


/*-------------------------------------

　　フォーム　Jobs,Entry

---------------------------------------*/
.form_area .container {
 width: 80%;
 max-width: 1200px;
}

@media screen and (max-width: 767px) {
 .form_area .container {
  width: 100%;
  padding: 0 1.5rem;
 }
}

.form_area h2 {
 margin-bottom: 2rem;
}

.form_area .cta_tel {
 width: 100%;
 max-width: 500px;
 margin-left: auto;
 margin-right: auto;
}

.form_area .cta_tel {
 width: fit-content;
 pointer-events: none;
 display: inline-block;
}

.form_area .cta_tel .tel {
 font-weight: bold;
 text-align: center;
 font-size: 1.8em;
}

.form_area .cta_tel .hours {
 font-weight: normal;
 text-align: center;
}

.form_area .cta_tel a {
 padding: 24px 40px;
 background-color: var(--back-color);
 border-radius: 10px;
}

@media screen and (max-width: 767px) {
 .form_area .cta_tel a {
  display: block;
  padding: 16px;
 }
}

/*必須*/
.hissu {
 background-color: #f55;
 color: var(--white-color);
 font-size: .75rem;
 padding: 2px 5px;
 border-radius: 3px;
 float: right;
}

a.policy_link {
 font-size: 1em;
 color: var(--link-color);
 padding-bottom: 10px;
 text-decoration: underline;
}


/*フォームテーブル*/
.form_area table.table01 {
 width: 100%;
 border-collapse: collapse;
 border-spacing: 0;
 font-size: 14px;
 margin-bottom: 5rem;
}

.form_area table.table01 th {
 width: 22%;
 border-bottom: 1px solid #e1e1e1;
 box-sizing: border-box;
 padding: 15px;
 vertical-align: middle;
 font-weight: bold;
 text-align: left;
}

.form_area table.table01 td {
 background: #fff;
 border-bottom: 1px solid #e1e1e1;
 box-sizing: border-box;
 padding: 20px 15px 20px 40px;
 vertical-align: middle;
 text-align: left;
 /* margin-left: 5px; */
}

.form_area table.table01 td input,
.form_area table.table01 td select {
 margin-bottom: 0;
}

.form_area table.table01 td.check-padding {
 padding-bottom: 20px;
}

/* .form_area table .mwform-checkbox-field input,
.form_area table .mwform-radio-field input {
  margin-right: 5px;
  margin-top: 18px;
} */

@media all and (max-width: 767px) {

 .form_area table.table01 th,
 .form_area table.table01 td {
  display: block;
  width: 100%;
  border-bottom: none;
 }

 .form_area table.table01 th {
  background-color: var(--gray-thin-color);
  padding: 10px 20px;
 }

 .form_area table.table01 td {
  padding: 20px 0 40px;
 }

 .form_area table.table01 tr:last-child td:last-child {
  /*border-bottom: 1px solid #ccc;*/
 }
}

.entry_portal {
 display: flex;
 justify-content: space-between;
 align-items: center;
 border: 2px solid var(--sub-color);
 padding: 0 20px;
 margin-bottom: 4rem;
 max-width: 800px;
}

.entry_portal a {
 width: 44%;
}


@media screen and (max-width: 767px) {
 .entry_portal {
  margin-bottom: 3rem;
 }

 .entry_portal a {
  width: 80%;
  margin-bottom: 2rem;
 }

}

/*-------------------------------------

　　policy

---------------------------------------*/

.policy_txt {
 text-align: left;
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
}

/*-------------------------------------

　　Blog

---------------------------------------*/

.container.blog_wrap {
 width: 100%;
 margin-inline: auto;
}

.container.blog_wrap .blog_Area {
 display: flex;
 justify-content: space-between;
 gap: 30px;
}

.topix-single_content {
 background: #fff;
 width: 90%;
 padding: 45px;
 flex: 1 1 auto;
 margin-top: 50px;
}

.topix-single_content .topix_flex {
 display: flex;
 align-items: center;
 margin-bottom: 30px;
}

.topix-single_content .time {
 font-size: 0.9rem;
 margin-right: 10px;

}

.topix-single_content .topix_tag {
 display: flex;
 align-items: center;
 background: var(--main-color);
 border-radius: 10px;
 color: var(--white-color);
 padding: 0px 5px;
 font-size: 0.5em !important;
 margin-bottom: 15px;
}

.topix-single_content .topix_tag span {
 background: var(--main-color);
 padding: 2px 8px;
 font-size: 0.8rem;
 border-radius: 12px;
 color: #fff;
 margin-right: 5px;
}

.container.blog_wrap .aside {
 flex: 0 0 240px;
 padding: 10px;
 margin-top: 30px;
}

.container.blog_wrap .aside {
 flex: 0 0 240px;
 padding: 10px;
 margin-top: 30px;
}

.container.blog_wrap .aside .aside_box {
 max-width: 220px;
 margin-bottom: 50px;
}

.container.blog_wrap .aside .aside_tit {
 font-size: 1rem;
 padding-bottom: .5em;
 border-bottom: 3px solid var(--gray-thin-color);
}

.container.blog_wrap .aside .aside_list {
 margin-top: 15px;
}

.container.blog_wrap .aside .aside_list {
 list-style-type: none;
}

.container.blog_wrap .aside .aside_list li {
 margin-bottom: 10px;
 position: relative;
 margin-left: 20px;
}

.container.blog_wrap .aside .aside_list li:before {}

.container.blog_wrap .aside .aside_list li .aside_post_tit {
 overflow: hidden;
 text-overflow: ellipsis;
 white-space: nowrap;
}

.container.blog_wrap .aside .aside_list li a {
 display: block;
 font-size: 1rem;
}

@media screen and (max-width: 650px) {
 .container.blog_wrap .blog_Area {
  display: flex;
  flex-direction: column;
 }

 .topix-single_content {
  width: 100%;
  padding: 20px;
  margin-top: 10px;
 }

 .blog_Area span.under {
  padding-left: 0em;
 }

 .container.blog_wrap .aside {
  flex: 0 0 auto;
  width: 100%;
  margin-top: 0;
  margin-bottom: 50px;
 }

 .container.blog_wrap .aside .aside_box {
  max-width: 325px;
  width: 100%;
  margin: 0 auto 30px;
 }

}

ul.topix_content li {
 list-style-type: none;
 border-bottom: 1px solid var(--gray-color);
}