body {
  margin: 0 auto;
  padding: 0;
  font-family:'Yu Gothic',sans-serif;
  color: #181B39;
  line-height: 1.6;
  letter-spacing: .15em;
  background: #fff;
}

/* ___________  共通 _________________ */

.nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 21, 46, .8);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  /* 初期：非表示 */
  visibility: hidden;
  opacity: 0;
  /* ふわっと表示 */
  transition: 0.5s ease-in-out;
  z-index: 100;
}
.nav ul{
  list-style:none;
}
.nav li:not(:last-child){
  margin-bottom: 8px;
}
.nav a{
  color: #ffffff;
}

/* ナビゲーションボタン（開く） */
#navbtn{
position: fixed;
top: 80px;
right: 104px;
padding: 0;
outline: none;
border: none;
background: none;
width: 30px;
height: 20px;
cursor: pointer;
z-index: 100;
}

#navbtn::before,
#navbtn::after{
content : '';
display: block;
height: 1px;
background-color: #00152E;
transform: translateY(10px);
transition: 0.3s ease-in-out;
}

#navbtn::before{
transform: translateY(-10px);
box-shadow: 0 10px #00152E;
}

/* ナビゲーションボタン（閉じる） */
.open #navbtn{
z-index: 100;
}
.open #navbtn::before{
transform: rotate(-45deg);
box-shadow: none;
background-color: white;
}
.open #navbtn::after{
transform: rotate(45deg);
box-shadow: none;
background-color: white;
}
/* ナビゲーションメニュー 開いた時*/
.open .nav{
visibility: visible;
opacity: 1;
}

.nav{
  margin-left: auto;
}
.nav ul{
  display: flex;
  list-style:none;
  flex-direction: column;
  width: 48%;
}

.nav ul li a {
  text-decoration: none;
  color: #fff;
  text-decoration :none;
  font-size: 40px;
  font-weight: 700;
}

.nav ul li a:hover{
  opacity: .5;
  padding-left: 8px;
}



/* 　HEADER　　 */

.header_top {
  background-image:url(/assets/img/header_top.JPG);
  background-repeat:  no-repeat;
  height: 720px;
  width: 100%;
  background-size: cover;
  /* position: relative; */
  background-position: center;
  z-index: 0;
  }

  .header_top::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 21, 46, .8);
  opacity: 0.2;
  display:block;
  height: 720px;
  }


/*   HEADER  */


.header_title{
  margin: 0 auto;
  position: absolute;
  top: 40%;
  left: 104px;
  color: white;
  letter-spacing: -0.2em;
  font-weight: 500;
  line-height: 1.3;
  z-index: 10;
}

.header_title_textbox {
/* animation: OpText 1s ease normal; */
margin: 0 auto;
font-family: Ropa Sans;
font-size: 48px;
text-shadow: 0px 0px 10px rgba(24, 27, 57, 0.3);
}

.opt:nth-child(1) {
animation: OpText 1s ease 0.3s 1 normal;
}

.opt:nth-child(2) {
animation: OpText 2s ease 0.3s 1 normal;
}

.opt:nth-child(3) {
animation: OpText 3s ease 0.3s 1 normal;
}

.opt:nth-child(4) {
animation: OpText 4s ease 0.3s 1 normal;
}

.opt:nth-child(5) {
animation: OpText 5s ease 0.3s 1 normal;
}

.opt:nth-child(6) {
animation: OpText 6s ease 0.3s 1 normal;
}

.opt:nth-child(7) {
animation: OpText 7s ease 0.3s 1 normal;
}

.opt:nth-child(8) {
animation: OpText 8s ease 0.3s 1 normal;
}

.opt:nth-child(9) {
animation: OpText 9s ease 0.3s 1 normal;
}

.opt:nth-child(10) {
animation: OpText 10s ease 0.3s 1 normal;
}

.opt:nth-child(11) {
animation: OpText 11s ease 0.3s 1 normal;
}

@keyframes OpText {
0% {opacity: 0}
100% {opacity: 1}
}




/* ___________  button _________________ */

.btn-border {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background: #001B57;
  padding: 16px 128px;
  outline: 1px solid;
      outline-color: currentcolor;
  outline-color: #001B57;
  outline-offset: 0px;
  display: inline-block;
  transition: .3s;
  letter-spacing: 0.3em;
  text-decoration: none;
}
.btn-border:hover {
  animation: light .8s infinite;
}

.btn-border span{
  font-weight: normal;
  position: relative;
  /* padding-left: 30px; */
}

.btn-border span::before{
  content: "";
  position: absolute;
  top: 50%;
  right: -72px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}

.btn-border-white {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background: transparent;
  padding: 16px 128px;
  outline: 1px solid;
      outline-color: currentcolor;
  outline-color: #fff;
  outline-offset: 0px;
  display: inline-block;
  letter-spacing: 0.3em;
  text-decoration: none;
}

.btn-border-white:hover {
  background-color: rgba(255, 255, 255, 0.3);
}


.btn-border-white span{
  font-weight: normal;
  position: relative;
}

.btn-border-white span::before{
  content: "";
  position: absolute;
  top: 50%;
  right: -72px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}


@keyframes light {
  100% {
    outline-color: transparent;
    outline-offset: 12px;
  }
}


/* ___________  ABOUT _________________ */

.about {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  padding: 200px 0 320px 0;
  /* z-index: -1; */
  background: rgba(33, 93, 99, 0.03);
}

.about_content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.about_img {
  position   : relative;
  overflow   : hidden;
  width: 720px;
  height: 480px;
}

.about_img img {
  width: 100%;
}

.about_img::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(31, 63, 112, .5);
  display:block;
  width: 720px;
  height: 480px;
}


.aboutboxs {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 80px 128px;
  position: absolute;
  right: 0;
  top: 24%;
}

.about_title {
  color: rgba(0, 0, 0, 0);
  text-shadow: 2px 2px 0 rgba(33, 93, 99, 0.5);
  -webkit-text-stroke: 1px rgba(24, 27, 57, 0.8);
  text-stroke: 1px rgba(24, 27, 57, 0.5);
  margin: 0;
  font-weight: bold;
  font-size: 56px;
  letter-spacing: 0.1em;
}

.about_second_title {
  margin: 0;
  padding: 24px 0 56px 0;
}

.emphasis {
  font-size: 24px;
}

/* ___________  SERVICE  _________________ */

.service {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  padding: 80px 0 40px 0;
  /* z-index: -1; */
}

.service_title {
  color: rgba(0, 0, 0, 0);
  text-shadow: 2px 2px 0 rgba(33, 93, 99, 0.5);
  -webkit-text-stroke: 1px rgba(24, 27, 57, 0.8);
  text-stroke: 1px rgba(24, 27, 57, 0.5);
  margin: 0 auto;
  font-weight: bold;
  font-size: 56px;
  letter-spacing: 0.1em;
}

 .service_titlebox {
  position: relative;
  display: flex;
  align-items: center;
}


.service_content {
  position: relative;
  padding: 80px 0 104px 0;
}

.service_boxs {
  position: relative;
  display: flex;
  flex-direction: row;
}

.service_imgbox01 {
  width: 50%;
  position: relative;
}

.service_imgbox01 {
  background-image:url(/assets/img/top_service.png);
  background-repeat:  no-repeat;
  height: 380px;
  width: 50%;
  background-size: cover;
  position: relative;
  background-position: center;
}

.service_imgbox01::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(31, 63, 112, .5);
  display:block;
  width: 100%;
  height: 380px;
  }

  .service_imgbox02 {
    background-image:url(/assets/img/Receptioncontract_top.JPG);
    background-repeat:  no-repeat;
    height: 380px;
    width: 50%;
    background-size: cover;
    position: relative;
    background-position: center;
    display: flex;
    justify-content: end;
  }

.service_imgbox02::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 63, 112, 0.5);
  display: block;
  width: 100%;
  height: 380px;
}

.service_texts01 {
  position: absolute;
  display: flex;
  flex-direction: column;
  text-align: center;
  left: 38px;
  top: 7%;
  width: 35%;
  padding: 56px;
  border: 1px solid #fff;
}

.service_secondtitle01,
.service_textcontent01,
.service_secondtitle02,
.service_textcontent02  {
  color: white;
  padding-bottom: 32px;
  margin: 0;
}

.service_texts02 {
  position: absolute;
  display: flex;
  flex-direction: column;
  text-align: center;
  right: 38px;
  top: 7%;
  width: 35%;
  padding: 56px;
  border: 1px solid #fff;
}


.service_img {
  width: 96%;
  height: 88%;
  position: relative;
}



/*    RECRUIT     */

.reccuit {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 80px 0 104px 0;
  background: linear-gradient(180deg,rgba(33, 93, 99, 0.03) 0%,rgba(33, 93, 99, 0.03) 35%,transparent 35%, transparent 100%);
  /* z-index: -1; */
}

.recruit_box {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.recruit_img {
  width: 48%;
}

.recruit_img img {
  width: 100%;
}

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

.recruit_title {
  color: rgba(0, 0, 0, 0);
  text-shadow: 2px 2px 0 rgba(33, 93, 99, 0.5);
  -webkit-text-stroke: 1px rgba(24, 27, 57, 0.8);
  text-stroke: 1px rgba(24, 27, 57, 0.5);
  margin: 0;
  font-weight: bold;
  font-size: 56px;
  letter-spacing: 0.1em;
}

.recruit_secondtitle {
  font-weight: normal;
  font-size: 16px;
  margin: 0;
  padding: 56px 0;
}

.recruit_secondtitle_rpd375,
.recruit_secondtitle_rpd768 {
  display: none;
}

.recruit_contentsbox {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 80px;
}


/*   お問い合わせ   */

.main_contact {
  position: relative;
  margin-top: 80px;
  padding: 104px;
  background: rgba(40, 165, 176, 0.08);
  /* z-index: -1; */
}

.main_contact_contents {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.main_contact_titlebox {
  width: 32%;
  text-align: center;
  background: #fff;
  position: relative;
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 104px 24px;
}

.main_contact_title {
  color: rgba(0, 0, 0, 0);
  text-shadow: 2px 2px 0 rgba(33, 93, 99, 0.5);
  -webkit-text-stroke: 1px rgba(24, 27, 57, 0.8);
  text-stroke: 1px rgba(24, 27, 57, 0.5);
  margin: 0;
  font-weight: bold;
  font-size: 48px;
  letter-spacing: 0.1em;
}

.main_contact_texts {
  margin: 40px 0;
}

.main_contact_details {
  width: 50%;
}

.main_contact_recruit {
    background: #fff;
    width: 100%;
    height: 47%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.main_contact_recruit_text {
  margin: 0;
  font-weight: bold;
  font-size: 24px;
}

.main_contactbtn_border {
  color: #fff;
  text-decoration: none;
}

.main_contactbtn {
  margin: 24px 0 0 0;
}

.main_contactbtn {
  color: #fff;
  font-size: 16px;
  background: linear-gradient(-45deg,#009efd,#96fbc4,#009efd);
  padding: 14px 104px;
  background-size: 300% 100%;
  transition: all .3s ease-out;
  text-decoration: none;
}
.main_contactbtn:hover {
  background-position: 100% 0;
}

.main_contactbtn_border span {
  font-weight: normal;
  position: relative;
  /* padding-left: 30px; */
}

.main_contactbtn_border span::before{
  content: "";
  position: absolute;
  top: 50%;
  right: -72px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}


.main_contact_phonenumber {
  background: #fff;
  width: 100%;
  height: 47%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.phonenumber {
  margin: 0;
  font-size: 32px;
  font-weight: bold;
  text-decoration: none;
  color: #181B39;
}

.phonenumber:hover {
  color: #D47268;
  text-decoration: underline;
}

.receptiontime {
  margin: 16px 0 0 0;
}

.recruit_img_rpd768 {
  display: none;
}


 /*    footer     */

 .footer {
  position: relative;
  background: #040324;
  /* z-index: -1; */
}

.footer_wrapper {
  padding: 24px 104px;
  margin: 0 auto;
}

.footer_menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer_menubox{
  width: 100%;
}

.footer_menubox nav {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.footer_menubox ul{
  display: flex;
  justify-content: right;
}

.footer_menubox li {
  margin-left: 24px;
  list-style: none;
}

.footer_menubox a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: white;
  display: inline-block;
  position: relative;
}

.footer_menubox a:hover {
  opacity: .7;
}

.footer_copywriter {
  color: #fff;
  font-size: 12px;
  text-align: right;
  margin-top: 40px;
}


@media screen and (min-width:1024px) and (max-width:1279px) {

  /*  各ページ共通  */

 .header_pages_wrapper {
    max-width: none;
    padding: 24px 40px;
  }

  .header_pages_titles {
    margin-top: 144px;
  }

  #navbtn {
    top: 56px;
    right: 40px;
  }

  .nav li:not(:last-child) {
    margin-bottom: 24px;
  }

  .page_contact_wrapper {
    max-width: none;
    padding: 0 40px;
  }

  .footer {
    padding: 0 40px;
  }

  .footer_wrapper {
    padding: 24px 32px;
  }


  /*   HEADER   */

  .header_title {
    top: 50%;
 }


/*  ABOUT   */


  .about {
    padding: 160px 0 256px 0;
  }

  .aboutboxs {
    padding: 80px;
  }


/*  SERVICE   */

.service {
  padding: 80px 0 0 0;
}

.service_contents {
  margin: 64px 0 0 160px;
  padding: 64px 72px;
  }

  .service_second_title {
    padding-left: 24px;
  }

  .service_second_title_rpd375,
  .main_service_btn_rpd375 {
    display: none;
  }

  .service_texts01,
  .service_texts02 {
    top: 8%;
  }

  .service_texts01s {
    left: 21px;
  }

  .service_texts02 {
    right: 21px;
  }

  /*  RECRUIT  */

  .reccuit {
    padding: 80px 0;
    background: linear-gradient(180deg,rgba(33, 93, 99, 0.03) 0%,rgba(33, 93, 99, 0.03) 42%,transparent 42%, transparent 100%);
  }

  .recruit_contentsbox {
    padding: 48px 0 0 40px;
  }

  .recruit_secondtitle {
    padding: 40px 0 56px 0;
  }

  .main_contact {
    padding: 104px 40px 104px 40px;
  }

  .recruit_secondtitle_rpd375,
  .recruit_secondtitle_rpd768 {
    display: none;
  }

}

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

  body {
    font-size: 16px;
  }

  /*  共通  */

  .header_pages {
    height: 280px;
  }

  .header_pages_wrapper {
    padding: 0 40px;
  }

  .header_pages_titles {
    margin-top: 144px;
  }

  .header_pages_link {
    margin-top: 32px;
  }

  #navbtn {
    right: 40px;
    top: 56px;
  }

  .nav ul li a {
    font-size: 32px;
  }

  .footer_wrapper {
    padding: 56px;
  }

  .footer_menubox {
    display: none;
  }

  .footer_copywriter {
    text-align: center;
    margin: 0 ;
  }

  .page_contact_wrapper {
    max-width: none;
    padding: 0 40px;
  }

  .page_contact_boxs {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 0 16px 0;
  }

  .page_contact_contents {
    width: 56%;
    margin: 0 0 40px 0;
    padding: 24px;
  }

  .page_contactbtn {
    padding-bottom: 24px;
  }


  /*   HEADER   */

  .header_title {
    top: 20%;
    left: 40px;
  }

  .header_top {
    height: 480px;
  }

  .header_top::after {
    height: 480px;
  }

  .header_title_textbox {
    font-size: 40px;
  }


  /*  ABOUT   */

  .about {
    padding: 104px 0;
  }

  .aboutboxs {
    padding: 104px;
    position: relative;
    margin: 0 auto;
    text-align: center;
  }

  .about_img {
    display: none;
  }

  /*  SERVICE   */

  .service_content {
    padding: 64px 0 80px 0;
  }

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

  .service_imgbox01 {
    width: 80%;
  }

  .service_imgbox02 {
    width: 80%;
    margin-top: 64px;
 }

 .service_img {
    width: 100%;
    height: 350px;
    position: relative;
  }

  .service_imgbox01::after {
    width: 100%;
    height: 100%;
  }

  .service_imgbox02::after {
    width: 100%;
    height: 100%;
  }

  .service_texts01 {
    left: 15.5%;
    top: 4.5%;
    width: 56%;
    padding: 48px;
  }

  .service_texts02 {
    left: 15.5%;
    top: 58.5%;
    width: 56%;
    padding: 48px;
  }

  /*   RECRUIT  */

  .reccuit {
    padding: 80px 0 104px 0;
    background: linear-gradient(180deg
  ,transparent 0%, transparent 30%,rgba(33, 93, 99, 0.03) 30%,rgba(33, 93, 99, 0.03) 100%);
  }

  .recruit_img {
    display: none;
  }

  .recruit_img_rpd768 {
    display: inherit;
    width: 80%;
  }

  .recruit_img_rpd768 img {
    width: 100%;
  }

  .recruit_box {
    justify-content: center;
  }

  .recruit_contentsbox {
    padding: 64px 0 0 0;
    text-align: center;
    align-items: center;
  }

  .recruit_secondtitle {
    padding: 24px 0 48px 0;
  }

  .recruit_secondtitle_rpd768 {
    display: inline;
    font-weight: normal;
    padding: 32px 0;
  }

  .recruit_secondtitle_rpd375,
  .recruit_secondtitle {
    display: none;
  }


  /*  CONTACT   */

  .main_contact {
    margin-top: 80px;
    padding: 104px 40px 80px 40px;
  }

  .main_contact_contents {
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
  }

  .main_contact_titlebox {
    width: auto;
    background: transparent;
    padding: 0;
  }

  .main_contact_texts {
    margin: 24px 0;
  }

  .main_contact_details {
    width: 64%;
    padding: 40px 0;
  }

  .main_contact_recruit {
    width: auto;
    height: auto;
    margin-bottom: 40px;
    padding: 40px;
  }

  .main_contact_phonenumber {
    background: #fff;
    width: auto;
    height: auto;
    padding: 40px;
  }

}


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

    /*  共通  */

  .header_pages {
    height: 200px;
  }

  .header_pages_wrapper {
    padding: 0 24px;
  }

  #navbtn {
    top: 40px;
    right: 24px;
  }

  .header_pages_titles {
    margin-top: 120px;
  }

  .header_pages_link {
    display: none;
  }

  .nav {
    height: 100vh;
  }

  .nav ul {
    width: auto;
    padding: 0;
  }

  .nav ul li a {
    font-size: 28px;
  }

  .nav li:not(:last-child) {
    margin-bottom: 16px;
  }

  .footer_menubox {
    display: none;
  }

  .footer_wrapper {
    padding: 40px 0;
  }

  .footer_copywriter {
    font-size: 8px;
    width: 100%;
    margin-top: 0;
    text-align: center;
  }

  /*   HEADER   */

  .header_title {
    top: 40%;
    left: 24px;
  }

  .header_title_textbox {
    font-size: 32px;
  }


  /*   ABOUT    */

  .about {
    padding: 104px 0;
    height: 400px;
  }

  .about_img {
    display: none;
  }

  .aboutboxs {
    padding: 64px 24px;
    width: 88%;
    align-items: center;
    text-align: center;
  }

  .about_title {
    font-size: 40px;
  }

  .about_second_title {
    padding: 24px 0 40px 0;
    font-weight: 300;
  }

  .emphasis {
    font-size: 20px;
    font-weight: 700;
  }

  .btn-border {
    font-size: 16px;
    padding: 16px 104px;
  }


  /*   SERVICE    */

  .service_title {
    font-size: 40px;
  }

  .service_content {
    padding: 56px 0 68px 0;
  }

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

  .service_imgbox01 {
    width: 100%;
    height: 320px;
  }

  .service_imgbox02 {
    width: 100%;
    justify-content: inherit;
    margin-top: 56px;
    height: 320px;
 }

  .service_imgbox01::after {
    width: 100%;
    height: 320px;
  }

  .service_imgbox02::after {
    width: 100%;
    height: 320px;
  }

  .service_texts01 {
    left: 3.5%;
    top: 5%;
    width: 80%;
    padding: 56px 24px;
  }

  .service_texts02 {
    left: 3.5%;
    top: 60%;
    width: 80%;
    padding: 56px 24px;
  }

  .service_textcontent01,
  .service_textcontent02 {
    padding-bottom: 32px;
  }

  .service_secondtitle01,
  .service_secondtitle02 {
    display: none;
  }

  .btn-border-white {
    font-size: 16px;
    padding: 16px 104px;
  }


  /*   RECRUIT  */

  .reccuit {
    padding: 48px 0 56px 0;
    background: linear-gradient(180deg
  ,transparent 0%, transparent 20%,rgba(33, 93, 99, 0.03) 20%,rgba(33, 93, 99, 0.03) 100%);
  }

  .recruit_img {
    display: none;
  }

  .recruit_img_rpd768 {
    display: inherit;
    width: 88%;
  }

  .recruit_img_rpd768 img {
    width: 100%;
  }

  .recruit_box {
    justify-content: center;
    padding: 24px;
  }

  .recruit_contentsbox {
    padding: 24px 0;
    align-items: center;
  }

  .main_recruit_btn {
    position: relative;
  }

  .recruit_secondtitle {
    display: none;
  }

  .recruit_secondtitle_rpd375 {
    display: inherit;
    font-size: 16px;
    font-weight: normal;
    padding: 32px 24px 48px 24px;
  }

  .recruit_title {
    font-size: 40px;
  }


  /*  CONTACT   */

  .main_contact {
    margin-top: 80px;
    padding: 80px 24px;
  }

  .main_contact_contents {
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
  }

  .main_contact_titlebox {
    width: auto;
    background: transparent;
    padding: 0;
  }

  .main_contact_title {
    font-size: 40px;
  }

  .main_contact_texts {
    margin: 24px 0;
  }

  .main_contact_details {
    width: 100%;
    padding: 40px 0;
  }

  .main_contact_recruit {
    width: auto;
    height: auto;
    margin-bottom: 40px;
    padding: 40px 24px;
  }

  .main_contactbtn {
    padding: 14px 88px;
  }

  .main_contact_recruit_text {
    font-size: 20px;
  }

  .main_contact_phonenumber {
    background: #fff;
    width: auto;
    height: auto;
    padding: 40px 24px;
  }

  .phonenumber {
    font-size: 28px;
    letter-spacing: .08em;
  }



}
