@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*--Base--*/
*, *:before, *:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    -webkit-box-sizing: border-box;
}

* a {
    text-decoration: none;
    color: #000;
}

a:hover {
    opacity: .8;
}

html {
    font-size: 62.5%;
}

body {
    background-color: #FFF;
    font-size: 1.5rem;
    font-family: 'Noto Sans JP';
    letter-spacing: 1.5px;
    font-weight: normal;
    line-height: 1.2;
    color: #000;
    width: 100%;
}

main {
    padding-top: 6rem;
    overflow-x: hidden;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section_inner {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pc {
    display: none;
}

/*--Header--*/

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    height: 6rem;
    width: 100%;
    background-color: #FFF;
    z-index: 100;
    padding: 0 0 0 .9rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.pc_nav {
    display: none;
}

.hamburger {
    display: block;
    position: relative;
    width: 6rem;
    height: 6rem;
    background-color: #E78932;
}

.hamburger span {
	position: absolute;
	width: 50%;
	height: 2px;
	left: calc(50% - 50% / 2); /*中央から長さの半分を引く*/
	background: #FFF; 
	transition: .4s;
}

/*bars*/
.top_bar {
  top: calc(35% - 2px / 2); /*上から35%の位置*/ 
}
.center_bar {
  top: calc(50% - 2px / 2); /*上から50%の位置*/
}
.under_bar {
  top: calc(65% - 2px / 2); /*上から65%の位置*/
}

/*active*/
.top_bar.active {
	top: calc(50% - 2px / 2); /*中央*/
	transform: rotate(45deg); 
}
.center_bar.active {
	opacity: 0;
}
.under_bar.active {
	top: calc(50% - 2px / 2); /*中央*/
	transform: rotate(-45deg);
}

.sp_nav {
    position: absolute;
    top: 6rem;
    left: 0;
    background-color: #E78932;
    width: 100%;
    height: calc(100vh - 6rem);
    transform: translateX(100%); 
    transition: ease .4s;
}

.sp_nav.active {
	transform: translateX(0); 
}

.menu-main_nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 90%;
    margin: 4rem auto;
}

.menu-main_nav-container ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background-color: #FFF;
    width: 100%;
    height: 100%;
}

.menu-main_nav-container ul li {
    width: 70%;
}

.menu-main_nav-container ul li a {
    font-size: 1.8rem;
    display: block;
    width: 100%;
    height: 100%;
    padding: 2rem 0;
}

.menu-main_nav-container ul li:last-child {
    background-color: #E78932;
    text-align: center;
}

.menu-main_nav-container ul li:last-child a {
    padding: 2rem 3rem;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 1.5px;
}

.logo_box {
    width: 220px;
    margin-top: 5px;
    display: block;
}

.logo_box img {
    width: 100%;
}

/*--FrontPage--*/
.mv {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-flow: column-reverse;
    align-items: center;
    justify-content: flex-end;
}

.mv h2 {
    color: #83C2EC;
    font-size: 2.7rem;
    line-height: 1.5;
    letter-spacing: .1em;
    margin: 0;
    text-align: center;
}

@keyframes guru {
    0%{transform:rotateZ(0deg);}
    100%{transform:rotateZ(360deg);}
}

@-webkit-keyframes guru {
    0%{-webkit-transform:rotateZ(0deg);}
    100%{-webkit-transform:rotateZ(360deg);}
}

.sekai {
    margin: 4rem 0 4rem 1rem;
    width: 97%;
    animation-name: guru;
    -webkit-animation-name: guru;
    animation-duration: 45s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-fill-mode:none;
    border-radius: 50%;
    overflow: hidden;
}

.sekai img {
    width: 100%;
}

.slide_one {
    width: 100%;
    height: 60vh;
}

.slide_img {
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: relative;
}

.slide_img img {
    height: 100%;
    position: absolute;
    top: 0;
    left: -50%;
}

.top_news {
    width: 100%;
    margin-bottom: 4rem;
}

.slide-area {
    width: 90%;
    position: relative;
    margin-bottom: 5rem;
}

.slide_two {
    width: 100%;
    height: fit-content;
}

.top_works_post {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
    height: 50px !important;
    width: 50px !important;
}

.swiper-button-prev {
    left: -2rem !important;
}

.swiper-button-next {
    right: -2rem !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    background-color: rgba(0,0,0,0.6);
    content: '' !important;
    height: 50px;
    margin: auto;
    width: 50px;
    border-radius: 50%;
}

.swiper-button-prev:before,
.swiper-button-next:before {
    width: 10px;
    height: 10px;
    content: '';
    border-right: 3px solid #FFF;
    border-bottom: 3px solid #FFF;
    position: absolute;
    top: calc(50% - 5px);
}

.swiper-button-prev:before {
    transform: rotate(135deg);
    left: calc(50% - 4px);
}

.swiper-button-next:before {
    transform: rotate(-45deg);
    left: calc(50% - 6px);
}

.swiper-button-prev[aria-disabled="true"],
.swiper-button-next[aria-disabled="true"] {
  display: none;
}

.swiper-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 0.3rem;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -3.2rem !important;
}

.swiper-pagination-bullet {
    width: 1.6rem !important;
    height: 4px !important;
    border-radius: 0 !important;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    vertical-align: top;
    background-color: var(--color-gray);
}

.swiper-pagination-bullet-active {
    width: 4rem !important;
    background-color: #E78932 !important;
}

li.swiper-slide-prev,
li.swiper-slide-next {
    pointer-events: none;
    opacity: .3 !important;
  }
  
  /*--Reason--*/
  .reason {
    padding-top: 0;
  }
  
  .reason_title {
    padding-left: 180px;
    font-size: 1.8rem;
    position: relative;
  }
  
  .reason_title:before {
    content: '';
    background-image: url(../img/logo.png);
    width: 183px;
    position: absolute;
    bottom: -23px;
    left: 0;
    height: 60px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
  }
 
 .reason_flex {
    display: flex;
    flex-direction: column;
    margin-top: 9rem;
 }
 
 .reason_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 9rem;
 }
 
 .reason_number {
    color: #FFF;
    background-color: #E78932;
    border-radius: 40px;
    padding: 20px;
    font-size: 2rem;
    font-weight: bold;
 }
 
 .reason_title_txt {
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem; 
    margin: 2rem auto;
 }
 
 .reason_txt {
    width: 90%;
    margin: 0 auto;
 }
 
 /*--Service--*/
.service {
    display: flex;
    flex-flow: column;
}
 
.service_top {
    display: flex;
    flex-flow: column;
}
 
.service_top h2 {
    color: #FFBB5F;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.service_list_cr {
    position: relative;
    width: 348px;
}

.service_list_cr li {
    color: #83C2EC;
    text-align: center;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #A1CCD8;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.5;
    position: absolute;
}

.cr1 {
    top: 0;
    left: calc(50% - 64px);
}

.cr2 {
    top: 64px;
    right: 0;
}

.cr3 {
    top: 183px;
    right: 46px;
}

.cr4 {
    top: 183px;
    left: 46px;
}

.cr5 {
    top: 64px;
    left: 0;
}

.service_img {
    width: 93%;
    margin-top: 27rem;
    margin-bottom: 3rem;
}

.service_img img {
    width: 100%;
}

.service_flex {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 100%;
}

 .service_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    width: 80%;
 }
 
 .service_inbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: .5rem;
    width: 100%;
 }
 
 .service_number {
    color: #FFF;
    background-color: #83C2EC;
    border-radius: 40px;
    padding: 12px;
    font-size: 2rem;
    font-weight: bold;
    margin-right: 10px;
 }
 
 .service_title_txt {
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem; 
    color: #83C2EC;
 }
 
 .service_txt {
    width: 100%;
    line-height: 1.5;
    margin: 0 auto;
 }
 

 .top_recruit_inner {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center; 
    padding: 7rem 0;
 }
 
 .top_recruit_inner h2 {
    font-weight: 600;
 }
 
/*--Top About--*/
.top_about_title {
    margin-bottom: 5rem !important;
 }
.top_about_flex {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 100%;
    gap: 4rem;
}

.top_about_flex p {
    color: #83C2EC;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .15em;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px dashed #A1CCD8;
    padding: 11%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.top_about_buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 4rem;
}

.top_about_buttons a {
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48%;
    padding: 5% 0;
}

/*--Pagehead--*/
.page_head {
    background-color: #FFBB5F;
    height: 6rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page_head_inner {
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 500;
    width: 93%;
}

.page_head h2 {
    font-size: 2rem;
    font-weight: bold;
}

.single_head {
    background-color: #FDF8D6;
    height: 6rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single_head_inner {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.4rem;
    font-weight: 500;
    width: 90%;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.breadcrumbs_txt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-icon {
    width: 1.8rem;
    height: 1.8rem;
    background-image: url("../img/home-icon.png");
    background-size: contain;
}

.arr {
    color: #AAA;
    margin: 0 1rem;
    font-size: 1.2rem;
}

/*--Footer--*/

.footer_top {
    background-color: #FDF8D6;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 0;
}

.footer_top_title {
    font-size: 1.8rem;
}

.footer_top_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.org_button {
    background-color: #E78932;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 600;
    width: 24rem;
    text-align: center;
    position: relative;
    transition: transform .3s;
    transform: translate( 7px, 7px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem auto;
    padding: 2rem 0;
}

.org_button:before {
    content: '';
    border: 3px solid #E78932;
    width: 24rem;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    transition: transform .3s;
    transform: translate( -7px, -7px);
    z-index: -1;
}

.org_button:hover {
    color: #E78932;
    background-color: transparent;
    
}

.org_button:hover,
.org_button:hover:before {
    transform: translate( 0, 0);
}

.org_button:hover:before {
    background-color: #FFF;
}

.org_buttons {
    background-color: transparent;
    color: #000;
    font-size: 1.6rem;
    font-weight: 600;
    width: 24rem;
    text-align: center;
    position: relative;
    transition: transform .3s;
    transform: translate( -7px, -7px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem auto;
    padding: 6% 0;
    border: 1px solid #000;
}

.org_buttons:before {
    content: '';
    width: 24rem;
    background-color: rgba(231, 137, 50, .4);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    transition: transform .3s;
    transform: translate( 7px, 7px);
    z-index: -1;
}

.org_buttons:hover {
    color: #FFF;
    background-color: #E78932;
    border: none;
}

.org_buttons:hover,
.org_buttons:hover:before {
    transform: translate( 0, 0);
}

.org_button:hover:before {
    background-color: #FFF;
}

.yel_button {
    background-color: #FFBB5F;
    color: #FFF;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
    width: 24rem;
    text-align: center;
    position: relative;
    transition: transform .3s;
    transform: translate( 7px, 7px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 3rem auto;
    padding: 2rem 0;
}

.yel_button:before {
    content: '';
    border: 3px solid #FFBB5F;
    width: 24rem;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    transition: transform .3s;
    transform: translate( -7px, -7px);
    z-index: -1;
}

.yel_button:hover {
    color: #FFBB5F;
    background-color: transparent;
}

.yel_button:hover,
.yel_button:hover:before {
    transform: translate( 0, 0);
}

.yel_button:hover:before {
    background-color: #FFF;
}

.phone_num {
    font-size: 2.4rem;
    font-weight: bold;
    vertical-align: middle;
}

.phone_num:before{
    content: '';
    background-image: url('../img/phone-icon.png');
    background-size: contain;
    display: inline-block;
    width: 3rem;
    height: 3rem;
    margin-right: .3rem;
}

.yel_button:hover .phone_num:before {
    background-image: url('../img/phone-icon-yel.png');
}

.footer_middle {
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem;
}

.menu-footer_nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 2rem auto;
}

.menu-footer_nav-container ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
}

.menu-footer_nav-container ul li {
    width: 70%;
}

.menu-footer_nav-container ul li a {
    font-size: 1.8rem;
    display: block;
    width: 100%;
    height: 100%;
    padding: 2rem 0;
}

.footer_bottom {
    background-color: #E78932;
    color: #FFF;
    text-align: center;
    width: 100%;
    font-size: 1.2rem;
    padding: .5rem 0;
}

/*--Sidebar--*/
.left_container {
    width: 100%;
    padding: 7rem 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.side_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 7rem 0;
}

.side_recruit {
    background-image: url('../img/img1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    height: 20rem;
    color: #FFF;
    font-size: 3rem;
    font-weight: 600;
    padding: 1.5rem;
    line-height: 1.4;
}

.side_recruit span {
    font-size: 2.3rem;
}

.side_list {
    margin: 6rem 0;
    width: 100%;
}

.side_list li {
    border-top: 1px solid #AAA;
}

.side_list li:last-child {
    border-bottom: 1px solid #AAA;
}

.side_list li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 3rem;
    font-size: 1.5rem;
}

.side_post_box {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.side_post_box h4 {
    font-size: 1.7rem;
}

.side_post {
    width: 100%;
    margin: 3rem 0;
}

.side_post li {
    width: 100%;
}

.side_post li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-bottom: 2rem;
}

.side_post_img {
    width: 10rem;
    height: 10rem;
    overflow: hidden;
}

.side_post_img img {
    height: 100%;
}

.side_post_title {
    width: calc(100% - 12rem);
    margin-left: 2rem;
    display: flex;
    align-items: center;
    height: 100%;
}

.more_link {
    color: #AAA;
    align-self: flex-end;
}

/*--Page--*/
.post_category {
    background-color: #000;
    color: #FFF;
    border-radius: 15px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    width: 9rem;
    padding: .4rem;
    margin-right: 1rem;
}

/*--Pagenation--*/
.pagination_box {
    width: 85%;
    display: flex;
}

.pagination_box ul {
    display: flex;
    margin: 6rem auto;
}

a.page-numbers,
span.page-numbers {
    padding: 1.2rem;
    font-size: 1.6rem;
}

span.page-numbers {
    position: relative;
}

.page-numbers.current:after {
    content: '';
    display: block;
    background-color: #E78932;
    width: 3.3rem;
    height: .5rem;
    position: absolute;
    bottom: 0rem;
    left: 0;
}

/*--News_all--*/
.news_post_list {
    width: 100%;
}

.news_post_list a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid #AAA;
    padding: 1.5rem;
}

.post_date_box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.post_date {
    color: #AAA;
    font-size: 1.4rem;
    margin-right: 1.5rem;
}

.post_title {
    font-size: 1.6rem;
    font-weight: 600;
}

/*--Single news--*/
.single_date_box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.single_title_box {
    width: 100%;
    margin-bottom: 3rem;
}

.news_img {
    width: 100%;
    margin-bottom: 3rem;
}

.news_img img{
    width: 100%;
}

.next_card_box_sp {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 8rem 0 0 0;
}

.next_card_box_pc {
    display: none;
}

.prev_card,
.next_card {
    border: 1px solid #000;
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.next_card_box_sp p {
    height: 6rem;
}

.prev_card {
    padding-left: 1.5rem;
    position: relative;
}

.next_card {
    padding-right: 1.5rem;
    position: relative;
}

.prev_card:before {
    content: '＜';
    font-family: 'Noto Sans JP';
    color: #AAA;
    position: absolute;
    top: 36%;
    left: 1rem;
}

.next_card:before {
    content: '＞';
    font-family: 'Noto Sans JP';
    color: #AAA;
    position: absolute;
    top: 36%;
    right: 1rem;
}

/*--Works_all--*/
.works_post_list li {
    margin-bottom: 5rem;
}

.works_post {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.before_img,
.after_img {
    width: 50%;
    height: 12rem;
    border: 3px solid #FFE77B;
    position: relative;
}

.before_img {
    border-right: 1px solid #FFE77B;
}

.after_img {
    border-left: 1px solid #FFE77B;
}

.before_img img,
.after_img img {
    width: 100%;
    height: 100%;
}

.before_img:before {
    content: 'BEFORE';
    background-color: #FFE77B;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 9rem;
    padding: 1rem;
    text-align: center;
}

.after_img:before {
    content: 'AFTER';
    background-color: #FFE77B;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 9rem;
    padding: 1rem;
    text-align: center;
}

.works_title_box {
    border: 3px solid #FFE77B;
    border-top: 1px solid #FFE77B;
    width: 100%;
    padding: 1.5rem 1.5rem 2.5rem 1.5rem;
    position: relative;
}

.works_title_box:after {
    content: 'READ MORE ＞＞';
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: fit-content;
    padding: 1rem .5rem .5rem 1rem;
    text-align: center;
    font-size: 1.2rem;
    color: #AAA;
}

.works_post_title {
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 700;
    margin-top: 1.2rem;
}

/*--Single works--*/
.works_txt {
    margin-top: 3rem;
}

/*--Recruit--*/
.recruit_link_box {
    display: flex;
    flex-direction: column;
    margin: 7rem 0;
    align-items: center;
}

.recruit_link {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin-bottom: 4rem;
}

.recruit_link img {
    width: 100%;
}

.recruit_link_under {
    border: 2px solid #FFBB5F;
    border-top: none;
    padding: 2rem;
    position: relative;
}

.recruit_link_under h2 {
    font-size: 2rem;
    margin-top: 1rem;
    font-weight: 500;
}

.recruit_label {
    background-color: #000;
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 400;
    padding: .4rem .6rem;
    text-align: center;
    width: fit-content;
}

.recruit_link_under:after {
    content: '';
    background-image: url('../img/arrow.png');
    background-size: contain;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 2.5rem;
    height: 2.5rem;
}

.back_yel {
    background-color: #FDF8D6;
}

.page_inner {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 7rem 0;
}

.page_inner h2 {
    margin-bottom: 7rem;
    font-weight: 600;
}

.youkou_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 5rem;
    padding-top: 9rem;
    margin-top: -9rem;
}

.youkou_img {
    margin-bottom: -3px;
}

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

.youkou_txt_box {
    background-color: #FFF;
    padding: 3rem 2rem;
}

.youkou_title {
    display: flex;
}

.youkou_title h3 {
    margin-left: 2rem;
    font-weight: 500;
}

.recruit_table {
    margin-top: 2rem;
}

.recruit_table li {
    display: flex;
    align-items: center;
    margin-bottom: .4rem;
}

.thead {
    background-color: #E8E8E8;
    font-size: 1.4rem;
    padding: 1rem;
    width: 9rem;
    text-align: center;
    margin-right: 2rem;
    font-weight: 500;
}

.recruit_flow_flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.recruit_flow_box {
    width: 90%;
    border: 3px solid #E78932;
    text-align: center;
    padding: 3rem;
    position: relative;
    height: 24rem;
}

.recruit_flow_number {
    background-color: #E78932;
    color: #FFF;
    font-size: 2.1rem;
    font-weight: 700;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    position: absolute;
    top: -2.5rem;
    left: calc(50% - 2.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow_title {
    margin: 3rem auto 4rem auto;
}

.recruit_flow_arrow_box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
}

.recruit_flow_arrow {
    width: 0;
    height: 0;
    border-top: 1rem solid #FFBB5F;
    border-right: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
    border-left: 1rem solid transparent;
}

/*--About--*/
.rinen {
    margin-bottom: 9rem;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 2px dashed #A1CCD8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rinen li {
    line-height: 2;
    text-align: center;
    font-weight: 600;
    font-size: 1.7rem;
    margin-bottom: 2rem;
    letter-spacing: 1.5px;
    color: #83C2EC;
}

.company_list {
    width: 90%;
}

.company_list li {
    display: flex;
    flex-direction: column;
}

.company_head {
    color: #FFF;
    background-color: #FFBB5F;
    text-align: center;
    padding: 1.5rem 0;
    font-weight: 600;
    letter-spacing: 4px;
}

.company_body {
    background-color: #FFF;
    padding: 2.1rem 0;
    text-align: center;
    font-weight: 500;
    line-height: 1.7;
}

#company_info {
    padding-top: 7rem;
    margin-top: -7rem;
}

/*--Contact--*/
.step-box {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    width: 24rem;
    margin: 0 auto;
}

.step-inbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFBB5F;
    font-size: 1.2rem;
    width: 30%;
    white-space: nowrap;
}

.step-line {
    width: 80%;
    height: 1px;
    background-color: #FFBB5F;
    position: absolute;
    top: 3rem;
    left: 10%;
    z-index: -1;
}

.active-step {
    background-color: #FFBB5F;
    color: #FFF;
    border-radius: 50%;
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: .5rem;
}

.non-step {
    background-color: #FFF;
    color: #FFBB5F;
    border: 1.5px solid #FFBB5F;
    border-radius: 50%;
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: .5rem;
}

.form-comment {
    text-align: center;
    font-size: 1.4rem;
    margin: 3rem auto;
    line-height: 1.5;
}

.form-comment a {
    color: blue;
    text-decoration: underline;
}

.form-container {
    width: 100%;
    margin: 0 auto;
}

.label-box {
    display: flex;
    align-items: center;
    margin: 1.5rem 0 .5rem 0;
}

.label-txt {
    font-weight: 500;
    font-size: 1.6rem;
}

.label-txt-red {
    background-color: red;
    color: #FFF;
    font-size: 1.2rem;
    padding: 3px 4px;
    line-height: 1;
    margin-left: .5rem;
    font-weight: 600;
    border-radius: 3px;
}

input::placeholder,
textarea::placeholder {
    color: #AAA;
}

.wpcf7-text,
.wpcf7-textarea {
    border: 1px solid #AAA;
    background-color: #FCF3E6;
    padding: .7rem;
    width: 100%;
}

input[type=radio] {
    background-color: #FCF3E6;
}

.policy-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #AAA;
    margin: 2rem 0;
}

.policy-head {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #AAA;
    width: 100%;
    padding: 1rem 0;
}

.policy-body {
    width: 100%;
    height: 9rem;
    overflow: scroll;
    padding: .5rem;
    font-size: 1.3rem;
}

.submit-box {
    text-align: center;
    width: 100%;
    margin-top: 4rem;
}

.wpcf7-submit {
    border: none;
    background-color: #E78932;
    color: #FFF;
    padding: 2rem 3rem;
    min-width: 15rem;
    margin: 2rem auto;
    align-self: center;
    font-weight: bold;
    font-size: 1.6rem;
    letter-spacing: 1.5px;
}

.wpcf7-spinner {
    display: block;
}

.thanks_container {
    width: 100%;
    margin: 4rem auto 0;
}

.thanks_title {
    color: #E78932;
    font-size: 2rem;
    text-align: center;
    font-size: 2.7rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.thanks_txt {
    margin-bottom: 2rem;
}

.thanks_txt span {
    display: inline-block;
    margin-bottom: 5px;
}