@charset "UTF-8";
@import url("https://use.typekit.net/mnb2pin.css");
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-style: normal;
}

body {
  /* for iOS */
  -webkit-text-size-adjust: 100%;
}

img {
  /* for Chrome */
  -webkit-backface-visibility: hidden;
}

/***********************共通設定************************/
/* ホバーで下線が左に消える */
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
a:hover {
  text-decoration: none;
}

#loadingWrap {
  background-color: #F0EDE6;
}

#breadcrumb .blist {
  background: none;
}

#pageRecruit .inner {
  padding: 0 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #pageRecruit .inner {
    padding: 0 68px;
    max-width: 1080px;
    margin: 0 auto;
  }
}
@media all and (min-width: 1148px) {
  #pageRecruit .inner {
    padding: 0;
  }
}

.boxOpacity {
  opacity: 0;
}

/* 下からフワッと出てくる */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*----------------------------------------------------
改行 表示非表示
----------------------------------------------------*/
.brsp {
  display: block;
  /* 751- */
}
@media all and (min-width: 751px) {
  .brsp {
    display: none;
  }
}

.brsptb {
  display: block;
  /* 1136- */
}
@media all and (min-width: 1136px) {
  .brsptb {
    display: none;
  }
}

.brpc {
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  .brpc {
    display: block;
  }
}

/*----------------------------------------------------
MV
----------------------------------------------------*/
#mv {
  position: relative;
  overflow: hidden;
}
#mv .content_wrapper {
  height: 100vh;
  width: 100vw;
  background-image: url(../images/recruit/mv/top_bg.webp);
  background-size: cover;
  display: -ms-grid;
  display: grid;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
#mv .content_wrapper .mv_circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: 120vw;
  height: 120vw;
  background-color: #F0EDE6;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  /* 751- */
  /* 1136- */
}
@media all and (min-width: 751px) {
  #mv .content_wrapper .mv_circle {
    width: 90vw;
    height: 90vw;
  }
}
@media all and (min-width: 1136px) {
  #mv .content_wrapper .mv_circle {
    width: 70vw;
    height: 70vw;
  }
}
#mv .content_wrapper .content_inner {
  width: 85%;
  overflow: hidden;
  padding-top: 8vh;
  /* 751- */
  /* 1136- */
}
@media all and (min-width: 751px) {
  #mv .content_wrapper .content_inner {
    width: 88%;
    padding-top: 7vh;
  }
}
@media all and (min-width: 1136px) {
  #mv .content_wrapper .content_inner {
    width: 70%;
    max-width: 1100px;
  }
}
#mv .content_wrapper .content_inner .chArea .mainImg {
  position: relative;
}
#mv .content_wrapper .content_inner .chArea .mainImg .mainChara {
  position: absolute;
  top: 58%;
  right: 7.5%;
  width: 13.5%;
  -webkit-transform: rotate(29deg);
          transform: rotate(29deg);
  /* 751- */
}
@media all and (min-width: 751px) {
  #mv .content_wrapper .content_inner .chArea .mainImg .mainChara {
    top: 55%;
    right: 38%;
    width: 10%;
  }
}
#mv .content_wrapper .content_inner .chArea .mainImg .mainChara.jumped {
  -webkit-animation: surprisedJump 0.5s ease-out;
          animation: surprisedJump 0.5s ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
@-webkit-keyframes surprisedJump {
  0% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
  25% {
    -webkit-transform: translateY(-20px) scale(1.05);
            transform: translateY(-20px) scale(1.05);
  }
  50% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
  75% {
    -webkit-transform: translateY(-20px) scale(1.05);
            transform: translateY(-20px) scale(1.05);
  }
  100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@keyframes surprisedJump {
  0% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
  25% {
    -webkit-transform: translateY(-20px) scale(1.05);
            transform: translateY(-20px) scale(1.05);
  }
  50% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
  75% {
    -webkit-transform: translateY(-20px) scale(1.05);
            transform: translateY(-20px) scale(1.05);
  }
  100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
#mv .content_wrapper .content_inner .chArea .mainImg .door {
  position: absolute;
  width: 12.5%;
  right: 15%;
  top: 45.9%;
  -webkit-transform-origin: left;
          transform-origin: left;
  /* 751- */
}
@media all and (min-width: 751px) {
  #mv .content_wrapper .content_inner .chArea .mainImg .door {
    width: 8.5%;
    right: 43.5%;
    top: 46%;
  }
}
#mv .content_wrapper .content_inner .chArea .threeCh .ch_imgs {
  position: relative;
}
#mv .content_wrapper .content_inner .chArea .threeCh .ch_imgs .ch_img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  -webkit-animation: slideAnime 9s infinite;
          animation: slideAnime 9s infinite;
  opacity: 0;
}
#mv .content_wrapper .content_inner .chArea .threeCh .ch_imgs .ch_img:nth-child(2) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
#mv .content_wrapper .content_inner .chArea .threeCh .ch_imgs .ch_img:nth-child(3) {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
@-webkit-keyframes slideAnime {
  0%, 60%, 100% {
    opacity: 0;
  }
  20%, 30% {
    opacity: 1;
  }
}
@keyframes slideAnime {
  0%, 60%, 100% {
    opacity: 0;
  }
  20%, 30% {
    opacity: 1;
  }
}
#mv .content_wrapper .content_inner .textArea {
  padding-top: 21vh;
  text-align: center;
  font-weight: bold;
  color: #525252;
  font-size: 14px;
  /* 751- */
  /* 1136- */
}
@media all and (min-width: 751px) {
  #mv .content_wrapper .content_inner .textArea {
    padding-top: 5vh;
    font-size: 25px;
  }
}
@media all and (min-width: 1136px) {
  #mv .content_wrapper .content_inner .textArea {
    padding-top: 10vh;
    line-height: 1.5;
  }
}
#mv .content_wrapper .content_inner .textArea p {
  margin-bottom: 10px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #mv .content_wrapper .content_inner .textArea p {
    margin-bottom: 20px;
  }
}
#mv .content_wrapper .content_inner .textArea strong {
  font-size: 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #mv .content_wrapper .content_inner .textArea strong {
    font-size: 40px;
  }
}
#mv .intro {
  opacity: 0;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.9);
          transform: translate(-50%, -50%) scale(0.9);
  width: 100%;
}
#mv .intro .inner {
  text-align: center;
}
#mv .intro .inner .en {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-size: 12px;
  font-weight: bold;
  color: #80744F;
  letter-spacing: 0.05em;
  /* 751- */
}
@media all and (min-width: 751px) {
  #mv .intro .inner .en {
    font-size: 18px;
  }
}
#mv .intro .inner .catch {
  font-size: 21px;
  font-weight: bold;
  margin: 20px 0 30px;
  /* 751- */
  /* 1136- */
}
@media all and (min-width: 751px) {
  #mv .intro .inner .catch {
    font-size: 30px;
    margin: 30px 0 50px;
  }
}
@media all and (min-width: 1136px) {
  #mv .intro .inner .catch {
    font-size: 36px;
  }
}
#mv .intro .inner p {
  font-size: 13px;
  font-weight: bold;
  line-height: 2.4;
  /* 751- */
  /* 1136- */
}
@media all and (min-width: 751px) {
  #mv .intro .inner p {
    font-size: 18px;
    line-height: 2.8;
  }
}
@media all and (min-width: 1136px) {
  #mv .intro .inner p {
    font-size: 20px;
  }
}

/*----------------------------------------------------
#shonan #kyoto
----------------------------------------------------*/
#place_shonan, #place_kyoto {
  position: relative;
}
#place_shonan .bg, #place_kyoto .bg {
  width: 100%;
  /* 751- */
}
#place_shonan .bg img, #place_kyoto .bg img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 600px;
  max-height: 720px;
}
@media all and (min-width: 751px) {
  #place_shonan .bg img, #place_kyoto .bg img {
    min-height: 640px;
    max-height: 710px;
  }
}
#place_shonan .textArea, #place_kyoto .textArea {
  position: absolute;
  width: 100%;
  top: 75px;
  color: white;
}
#place_shonan .title, #place_kyoto .title {
  margin-bottom: 61px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #place_shonan .title, #place_kyoto .title {
    margin-bottom: 65px;
  }
}
#place_shonan .title .sub, #place_kyoto .title .sub {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0em;
  line-height: 1.45;
  margin-bottom: 5px;
}
#place_shonan .title .main, #place_kyoto .title .main {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-size: 46px;
  letter-spacing: 0em;
  line-height: 0.987;
}
#place_shonan .text, #place_kyoto .text {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 2.5;
  font-weight: bold;
  margin-bottom: 50px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #place_shonan .text, #place_kyoto .text {
    font-size: 17px;
    letter-spacing: 0.1em;
    line-height: 2.5;
    margin-bottom: 70px;
  }
}
#place_shonan .view_btn, #place_kyoto .view_btn {
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  /* 751- */
  /* 768- */
}
@media all and (min-width: 751px) {
  #place_shonan .view_btn, #place_kyoto .view_btn {
    gap: 25px;
  }
}
#place_shonan .view_btn .btn_arrow, #place_kyoto .view_btn .btn_arrow {
  border-color: rgba(255, 255, 255, 0.4);
  /* -750 */
}
@media all and (max-width: 750px) {
  #place_shonan .view_btn .btn_arrow, #place_kyoto .view_btn .btn_arrow {
    width: 77px;
  }
}
#place_shonan .view_btn .btn_arrow .arrows, #place_kyoto .view_btn .btn_arrow .arrows {
  /* -750 */
}
@media all and (max-width: 750px) {
  #place_shonan .view_btn .btn_arrow .arrows, #place_kyoto .view_btn .btn_arrow .arrows {
    width: 20px;
  }
}
#place_shonan .view_btn .btn_arrow .arrows .arrow path, #place_kyoto .view_btn .btn_arrow .arrows .arrow path {
  fill: #fff;
}
#place_shonan .view_btn .btn_arrow::before, #place_kyoto .view_btn .btn_arrow::before {
  background-color: #fff;
}
@media (min-width: 768px) and (hover: hover) {
  #place_shonan .view_btn:hover .btn_arrow .arrows .arrow path, #place_kyoto .view_btn:hover .btn_arrow .arrows .arrow path {
    fill: #393939;
  }
}

/*----------------------------------------------------
location gallery
----------------------------------------------------*/
.locatGalle {
  padding: 40px 0 50px;
  overflow: hidden;
  /* 751- */
}
@media all and (min-width: 751px) {
  .locatGalle {
    padding: 110px 0;
  }
}
.locatGalle .title {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0em;
  line-height: 1.6667;
  margin-left: 10px;
  margin-bottom: 21px;
  position: relative;
  /* 751- */
}
.locatGalle .title::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 20px;
  background-color: #101010;
  top: 50%;
  left: -30px;
}
@media all and (min-width: 751px) {
  .locatGalle .title {
    margin-bottom: 40px;
    font-size: 18px;
    letter-spacing: 0em;
    line-height: 1.6667;
  }
  .locatGalle .title::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 80px;
    background-color: #101010;
    left: -100px;
  }
}
.locatGalle .locationGallery .slider_wrap {
  position: relative;
  /* 左に余白を開ける */
}
@media all and (min-width: 1000px) {
  .locatGalle .locationGallery .slider_wrap {
    margin-left: 243px;
  }
}
.locatGalle .locationGallery .slider {
  position: relative;
  z-index: 2;
}
.locatGalle .locationGallery .slider .item {
  background: #eee;
}
@media all and (min-width: 1000px) {
  .locatGalle .locationGallery .slider .item {
    margin-right: 30px;
    margin-left: 30px;
  }
}
.locatGalle .locationGallery .slick-slide {
  /*スライド左右の余白調整*/
}
@media all and (min-width: 1000px) {
  .locatGalle .locationGallery .slick-slide {
    /* 高さを固定 */
    width: 700px;
    height: 480px;
  }
  .locatGalle .locationGallery .slick-slide img {
    width: 100%;
    height: auto;
  }
}
.locatGalle .locationGallery .btn_arrow_link {
  position: absolute;
  cursor: pointer;
}
.locatGalle .locationGallery .btn_arrow_link.prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  right: 66px;
  bottom: -50px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .locatGalle .locationGallery .btn_arrow_link.prev {
    right: 110px;
    bottom: -90px;
  }
}
@media all and (min-width: 1000px) {
  .locatGalle .locationGallery .btn_arrow_link.prev {
    right: auto;
    left: -100px;
    bottom: 82px;
  }
}
.locatGalle .locationGallery .btn_arrow_link.next {
  right: 20px;
  bottom: -50px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .locatGalle .locationGallery .btn_arrow_link.next {
    bottom: -90px;
  }
}
@media all and (min-width: 1000px) {
  .locatGalle .locationGallery .btn_arrow_link.next {
    right: auto;
    left: -100px;
    bottom: 0;
  }
}
.locatGalle .locationGallery .btn_arrow_link .btn_arrow {
  width: 36px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .locatGalle .locationGallery .btn_arrow_link .btn_arrow {
    width: 70px;
  }
}
.locatGalle .locationGallery .btn_arrow_link .btn_arrow .arrows {
  width: 10px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .locatGalle .locationGallery .btn_arrow_link .btn_arrow .arrows {
    width: 19px;
  }
}
.locatGalle .locationGallery .btn_arrow_link .btn_arrow::before {
  background-color: #393939;
}
.locatGalle .locationGallery .slick-num {
  margin-top: 20px;
  margin-left: 20px;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  /* 751- */
}
@media all and (min-width: 751px) {
  .locatGalle .locationGallery .slick-num {
    margin-top: 41px;
    margin-right: 30px;
  }
}
@media all and (min-width: 1000px) {
  .locatGalle .locationGallery .slick-num {
    text-align: initial;
    margin: 0;
    position: absolute;
    z-index: 5;
    top: calc(0% + 280px);
    left: -80px;
  }
}

/*----------------------------------------------------
募集要項
----------------------------------------------------*/
#application {
  margin-bottom: 34px;
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
  /* 751- */
  /* タブ */
}
@media all and (min-width: 751px) {
  #application {
    margin-bottom: 100px;
  }
}
#application .tab_box .tab_buttons li {
  width: 50%;
  font-size: 17px;
}
#application .tab_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* 751- */
}
#application .tab_buttons li {
  color: #909090;
  border-radius: 10px 10px 0 0px;
  padding: 16px 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
#application .tab_buttons li h2 {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#application .tab_buttons li span {
  display: block;
}
#application .tab_buttons li .en {
  font-size: 15px;
  letter-spacing: 0em;
  line-height: 1.6667;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  position: relative;
  /* 751- */
}
@media all and (min-width: 751px) {
  #application .tab_buttons li .en::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: white;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    bottom: 0;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1); /* x軸方向に縮小で0にして消えてるように見せる */
  }
}
#application .tab_buttons li .jp {
  font-size: 11px;
  letter-spacing: 0em;
  line-height: 1.6667;
}
#application .tab_buttons li.is_active {
  background: #101010;
  border-bottom: 1px solid #E2E2E2;
  pointer-events: none;
  color: white;
}
#application .tab_buttons li:hover {
  cursor: pointer;
  background: #807450;
  color: white;
}
#application .tab_buttons li:hover .en::before {
  width: 100%;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media all and (min-width: 751px) {
  #application .tab_buttons li .en {
    font-size: 34px;
    letter-spacing: 0em;
    line-height: 1.6667;
  }
  #application .tab_buttons li .jp {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.6667;
  }
}
#application .tab_contents > li {
  display: none;
}
#application .tab_contents > li.is_active {
  display: block;
  background-color: #fff;
}
#application .tab_contents > li .tab_content {
  padding: 30px 18px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #application .tab_contents > li .tab_content {
    padding: 68px 91px;
  }
}
#application .data_contents .title {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.6667;
  color: #2F2F2F;
  /* 751- */
}
@media all and (min-width: 751px) {
  #application .data_contents .title {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.6667;
  }
}
#application .data_contents .data_list li {
  border-bottom: 1px solid #E4E4E4;
  padding: 30px 0;
}
#application .data_contents .data_list li:first-child {
  padding-top: 0;
}
@media all and (min-width: 1000px) {
  #application .data_contents .data_list li:first-child .titleArea, #application .data_contents .data_list li:first-child .contents {
    padding-top: 0;
  }
}
@media all and (min-width: 1000px) {
  #application .data_contents .data_list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
  #application .data_contents .data_list li::before, #application .data_contents .data_list li::after {
    display: none;
  }
}
#application .data_contents .data_list li a {
  position: relative;
  color: #1169B0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  /* 751- */
}
#application .data_contents .data_list li a::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #1169B0;
  left: 0;
  bottom: -2px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media all and (min-width: 751px) {
  #application .data_contents .data_list li a:hover::after {
    left: 0%;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0); /* x軸方向に縮小で0にして消えてるように見せる */
    width: 0%;
  }
}
#application .data_contents .titleArea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (min-width: 1000px) {
  #application .data_contents .titleArea {
    width: 23.4%;
    margin-right: 5px;
    padding: 40px 10px;
  }
}
#application .data_contents .contents {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 20px;
  /* 751- */
}
#application .data_contents .contents p {
  color: #676767;
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media all and (min-width: 751px) {
  #application .data_contents .contents p {
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 2;
  }
}
@media all and (min-width: 1000px) {
  #application .data_contents .contents {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 40px 0px;
  }
}
#application .entryBtn {
  display: block;
  position: relative;
  background: #000000;
  color: white;
  text-align: center;
  padding: 20px 0;
  border-top: 2px solid black;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
  /* 768- */
}
@media all and (min-width: 751px) {
  #application .entryBtn {
    padding: 39px 0 49px;
    position: relative;
  }
}
#application .entryBtn .btn_en {
  display: block;
  font-size: 24px;
  letter-spacing: 0em;
  line-height: 1.6667;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  /* 751- */
}
@media all and (min-width: 751px) {
  #application .entryBtn .btn_en {
    font-size: 34px;
    letter-spacing: 0em;
    line-height: 1.6667;
  }
}
#application .entryBtn .btn_jp {
  display: block;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0em;
  line-height: 1.6667;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  /* 751- */
}
@media all and (min-width: 751px) {
  #application .entryBtn .btn_jp {
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.6667;
  }
}
#application .entryBtn .btn_arrow {
  position: absolute;
  top: 35px;
  right: 50px;
  border-color: rgba(255, 255, 255, 0.4);
}
#application .entryBtn .btn_arrow .arrows .arrow path {
  fill: #fff;
}
#application .entryBtn .btn_arrow::before {
  background-color: #fff;
}
@media (min-width: 768px) and (hover: hover) {
  #application .entryBtn:hover {
    background: white;
  }
  #application .entryBtn:hover .btn_en {
    color: #000000;
  }
  #application .entryBtn:hover .btn_jp {
    color: #000000;
  }
  #application .entryBtn:hover .btn_arrow {
    border-color: rgba(0, 0, 0, 0.4);
  }
  #application .entryBtn:hover .btn_arrow .arrows .arrow path {
    fill: #393939;
  }
}