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

/*=====================Reset Css Start==================================*/
* {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-weight: 700;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  font-size: 1rem;
  scroll-behavior: auto !important;
}

body {
  line-height: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  outline: none;
}

a {
  text-decoration: none;
  color: #263238;
  transition: all 0.2s;
}

a:hover {
  color: #263238;
}

/*=====================Reset Css End==================================*/
/****=====Global CSS=======******/
body {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
  font-weight: 700;
  background: #FFFFFF;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1100px;
    margin: 0 auto;
  }
}


/************Main Header CSS******************/
.mobile-menu-otr {
  display: none;
}

header {
  padding: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-blk a {
  text-decoration: none;
}

.logo-blk a h1 {
  display: none;
}

.link-blk {
  display: flex;
}

.menu-blk ul {
  margin: 0;
  padding: 0;
  display: flex;
}

.menu-blk ul li {
  list-style-type: none;
  padding: 0 1rem;
}

.menu-blk ul li:last-child {
  padding-right: 0;
}

.menu-blk ul li a {
  font-family: 'Noto Sans JP';
  font-weight: 400;
  text-decoration: none;
  font-size: 0.813rem;
  line-height: 175.3%;
  color: #E77160;
  padding: 0.4rem 0;
  border: 2px solid #E77160;
  border-radius: 10px;
  border-bottom-right-radius: 0px;
  min-width: 110px;
  display: inline-block;
  text-align: center;
  min-height: 40px;
}

.more-blk {
  margin: 0 0 0 4rem;
}

.more-blk ul {
  margin: 0;
  padding: 0;
  display: flex;
}

.more-blk ul li {
  list-style-type: none;
  padding: 0 0 0 1.4rem;
}

.more-blk ul li a {
  font-family: 'Noto Sans JP';
  font-weight: 400;
  text-decoration: none;
  font-size: 0.813rem;
  line-height: 175.3%;
  color: #FFFFFF;
  padding: 0.5rem 1.2rem;
  display: inline-block;
  text-align: center;
  min-height: 40px;
}

.more-blk ul li:first-child a {
  background: #445476;
}

.more-blk ul li:last-child a {
  background: #E77160;
}

.call-to-action-row {
  padding: 6em 0px 2em 0;
}

.other-banner .call-to-action-row {
  padding: 6em 0;
}
.other-banner .call-to-action-row{margin-bottom: 0px;}
.no-bottom-padding{padding-bottom:0px !important;}
.no-bottom-margin{margin-bottom: 0px !important;}

/************Responsive CSS Start******************/
@media all and (min-width: 767px) {
	/************Main Header CSS******************/
	header {
		position: fixed;
		left: 0;
		right: 0;
		z-index: 2;
		top: 0;
		background: #fff;
		transition: top 0.2s ease-in-out;
		height: 96px;
	}
	header.nav-down {
	  top: -96px;
	}

	header.nav-down.nav-up {
	  top: 0;
	}
}
@media all and (max-width: 1108px) {

  /************Main Header CSS******************/
  .menu-blk ul li {
    padding: 0 0.4rem;
  }

  .menu-blk ul li a {
    min-width: 100px;
  }

  .more-blk {
    margin: 0;
  }
}

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

  /************Main Header CSS******************/
  .menu-blk ul li {
    padding: 0 0.6rem;
  }

  .more-blk ul li {
    padding: 0 0 0 0.6rem;
  }
}

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

  /************Main Header CSS******************/
  header {
    padding: 1.4rem 1rem;
  }

  .menu-blk ul li {
    padding: 0 0.2rem;
  }

  .menu-blk ul li a {
    font-size: 0.75rem;
    padding: 0.4rem 0.4rem;
    min-height: auto;
    min-width: auto;
  }

  .more-blk {
    margin: 0 0 0 0.4rem;
  }

  .more-blk ul li {
    padding: 0 0 0 0.2rem;
  }

  .more-blk ul li a {
    font-size: 0.75rem;
    padding: 0.5rem 0.4rem;
    min-height: auto;
  }

  /****=====Social Line Fixed CSS=======******/
  .social-line {
    display: none;
  }
}

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

  /************Main Header CSS******************/
  .logo-blk a img {
    display: none;
  }

  .logo-blk a h1 {
    display: block;
    font-size: 1rem;
    line-height: 144.8%;
    letter-spacing: 0.08em;
    color: #fff;
    text-decoration: none;
    margin: 0;
  }

  .link-blk {
    display: none;
  }

  /************Mobile Menu CSS******************/
  .navbar-toggle {
    width: 54px;
    height: 54px;
    line-height: 54px;
    position: fixed;
    right: 16px;
    cursor: pointer;
    vertical-align: middle;
    background: rgba(255, 255, 255, 0.57);
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10000;
  }

  .navbar-toggle span {
    display: block;
    height: 2px;
    width: 33px;
    background: #383838;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    transform-origin: left center;
    opacity: 1;
    position: relative;
    border-radius: 4px;
  }

  .navbar-toggle span:nth-child(1) {
    top: -4px;
  }

  .navbar-toggle span:nth-child(2) {
    top: 5px;
  }

  .menu-open .navbar-toggle {
    display: none;
  }

  .mobile-menu-otr {
    height: 100%;
    padding: 0;
    position: fixed;
    top: 0;
    z-index: 8;
    width: 100%;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1) 0s;
  }

  .mobile-header {
    background: #FFFFFF;
    padding: 2.4rem 1.6rem;
    display: flex;
    justify-content: end;
  }

  .mobile-toggle {
    width: 31px;
    height: 25px;
    display: inline-block;
    cursor: pointer;
    vertical-align: middle;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
  }

  .mobile-toggle span {
    display: block;
    height: 1.6px;
    width: 100%;
    background: #3E362F;
    position: absolute;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    transform-origin: left center;
    opacity: 1;
  }

  .mobile-toggle span:nth-child(1) {
    top: 0;
    left: 0;
    transform: rotate(45deg);
  }

  .mobile-toggle span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }

  .mobile-toggle span:nth-child(3) {
    top: 22px;
    left: 0;
    transform: rotate(-45deg);
  }

  .mobile-menu-blk {
    padding: 0.6rem 1.6rem 4rem;
    height: calc(100vh - 82px);
    overflow-y: auto;
  }

  .mobile-menu-list {
    margin: 0 0 2rem;
  }

  .mobile-menu-list>ul {
    margin: 0;
    padding: 0;
  }

  .mobile-main-menu>li {
    list-style-type: none;
  }

  .mobile-main-menu>li>a,
  .mobile-main-menu>li>div {
    padding: 1rem 0;
    border-bottom: 1px solid #DAD0C7;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-main-menu>li:last-child>a {
    border-bottom: none;
  }

  .mobile-main-menu>li>a span {
    font-family: 'Noto Sans JP';
    font-weight: 400;
    font-size: 1rem;
    line-height: 124.3%;
    color: #3F3F3F;
  }

  .specific-link a span {
    font-family: 'Noto Sans JP';
    font-weight: 400;
    color: #3F3F3F;
    font-size: 1rem;
    line-height: 124.3%;
  }

  .mobile-main-menu>li>a i {
    color: #3F3F3F;
    font-size: 1rem;
  }

  .mobile-main-menu>li.active i:before {
    content: "\f068" !important;
  }

  .sub-menu-list {
    display: none;
    margin: 0;
    padding: 0;
  }

  .sub-menu-list li {
    list-style-type: none;
  }

  .sub-menu-list li a {
    background: #fff;
    padding: 1rem 0.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .sub-menu-list li a span {
    font-family: 'Noto Sans JP';
    font-weight: 400;
    font-size: 1rem;
    line-height: 124.3%;
    letter-spacing: 0.085em;
    color: #3F3F3F;
  }

  .sub-menu-list li a span i {
    color: #6D6660;
    font-size: 0.8rem;
    padding: 0 0.6rem 0 0;
  }

  body.menu-open {
    overflow-y: hidden;
  }

  body.menu-open .mobile-menu-otr {
    opacity: 1;
    visibility: visible;
    display: block;
  }

  .mobile-links ul {
    margin: 0;
    padding: 0;
  }

  .mobile-links ul li {
    list-style-type: none;
    padding: 0 0 1.4rem;
  }

  .mobile-links ul li a {
    font-family: 'Noto Sans JP';
    font-weight: 400;
    display: block;
    font-size: 1rem;
    line-height: 124.3%;
    letter-spacing: 0.085em;
    color: #FFFFFF;
    padding: 1.6rem;
    text-align: center;
    text-decoration: none;
    border-radius: 16px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0;
  }

  .mobile-links ul li:nth-child(1) a {
    background: linear-gradient(75.09deg, #7E4992 0%, #E7697E 39.37%, #FFA264 70.62%, #FFDF66 100%);
  }

  .mobile-links ul li:nth-child(2) a {
    background: #FFFFFF;
    border: 1px solid #E77160;
    color: #E77160;
  }

  .mobile-links ul li:nth-child(3) a {
    background: #445476;
	margin-bottom: 40px;
  }

  .container .call-to-action-row{padding: 4em 0; margin: 0px;}
}


/****=====Footer CSS=======******/
.call-to-action-row .col-12{padding: 0px;}
.footer {
  min-height: 473px;
  background-color: #445476;
}

.footer .logo-container {
  width: 406px !important;
  display: flex;
  justify-content: start;
  align-content: start;
  align-items: start;
  vertical-align: middle;
  margin-left: 20px;
}

.footer .footer-items {
  padding-top: 112px;
}
@media screen and (max-width: 767px) {
	.footer .footer-items {
    padding-top: 80px;
}
}

.footer .footer-list-1 {
  list-style-type: none;
}

@media screen and (max-width: 1199px) {
  .footer .footer-list-1 {
    margin-left: 20px;
  }
}

.footer .footer-list-1 .footer-sub-menu {
  list-style-type: none;
  padding: 0 0 32px 0;
  font-size: 14px;
  font-weight: 400;
}

.footer .footer-list-1 .footer-sub-menu a {
  color: white;
}

.footer .footer-list-2 {
  list-style-type: none;
}

@media screen and (max-width: 1199px) {
  .footer .footer-list-2 {
    padding-left: 60px;
  }
}

@media screen and (min-width: 1200px) {
  .footer .footer-list-2 {
    padding-left: 160px;
  }
}

.footer .mobile-logo {
  display: flex;
  justify-content: center;
}

.footer .footer-line {
  height: 1px;
  background-color: #DCDCDC;
  margin-top: 40px;
}

.footer .copyright-text {
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 12px;
  margin-top: 25px;
}

@media screen and (max-width: 1199px) {
  .footer .copyright-text {
    font-size: 10px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
	.footer .copyright-text {
		padding-bottom: 80px;
	}
}

.footer-sub-menu button {
  font-family: 'Noto Sans JP';
  font-weight: 400;
  font-size: 14px;
  background-color: #445476;
  padding: 11px 39px;
  border: 1px solid #fff;
  color: white;
}

.footer-sub-menu {
  list-style-type: none;
  padding: 0 0 32px 0;
  font-size: 14px;
  font-weight: 400;
}

.footer-sub-menu a {
  color: white;
}

.footer-sub-menu a span {
  font-family: 'Noto Sans JP';
  font-weight: 400;
  font-size: 0.875rem;
}

/****=====Social Line Fixed CSS=======******/
.social-line {
  position: fixed;
  right: 3%;
  bottom: 30px;
  z-index: 7;
}

.social-line.close {
  display: none;
}

.social-otr {
  position: relative;
  background: #445476;
  border: 5px solid #FFFFFF;
  padding: 0.8rem 1.4rem;
  border-radius: 20px 20px 20px 0;
}

.social-inr {}

.social-inr a {
  display: flex;
  align-items: center;
}

.social-inr img {}

.social-txt {
  padding: 0 0 0 0.4rem;
}

.social-txt span {
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 24px;
  line-height: 139.3%;
  letter-spacing: 0.095em;
  color: #FFFFFF;
}

.social-txt em {
  font-style: normal;
  font-size: 14px;
  line-height: 139.3%;
  letter-spacing: 0.095em;
  color: #FFFFFF;
}

.social-close {
  position: absolute;
  top: 4px;
  right: 13px;
}

.social-close i {
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}


/* Page Common */
.page-title {
  background-image: url("/wp-content/themes/bbnrecruit/images/common/title-background.png");
  margin-top: 71px;
  margin-bottom: 139px;
  width: 100%;
  height: 100px;
  align-items: center;
  justify-content: center;
  background-repeat: round;
}

@media screen and (max-width: 768px) {
  .page-title {
    background-image: url("/wp-content/themes/bbnrecruit/images/common/title-background-mobile.png");
    margin-bottom: 63px !important;
    margin-top: 0 !important;
    height: 70px;
    background-repeat: round;
  }
}

.page-title-text {
  font-size: 28px;
  line-height: 124.3%;
  letter-spacing: 0.085em;
  color: #E77160;
}

@media screen and (max-width: 768px) {
  .page-title-text {
    /*background-image: url("/wp-content/themes/bbnrecruit/images/common/title-background-mobile.png");*/
    font-size: 20px;
    line-height: 124.3%;
    letter-spacing: 0.085em;
    color: #E77160;
  }
}

.call-to-action-left {
  position: relative;
  margin-bottom: 13px;
  height: 139px;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, .32);
  background-image: url("/wp-content/uploads/2022/09/61756223-6.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 50px 0;
  color: #fff;
}

.call-to-action-right {
  position: relative;
  height: 139px;
  background-image: url("/wp-content/uploads/2022/09/79784433-2.png");
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.16);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 50px 0;
  color: #fff;
}

.call-to-action-left::before,
.call-to-action-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  background: rgba(231, 113, 97, 0.7);
  transition: .5s;
}

.call-to-action-left:hover::before,
.call-to-action-right:hover::before {
  opacity: 1;
}

.call-to-action-right p {
  font-family: 'Noto Sans JP';
    font-weight: 400;
    position: relative;
    font-size: 12px;
    letter-spacing: 1px;
    color: #fff;
}

.call-to-action-left p {
  font-family: 'Noto Sans JP';
  font-weight: 400;
  position: relative;
  font-size: 12px;
  letter-spacing: 1px;
  color: #fff;
}

.call-to-action-left h2 {
  font-size: 20px;
  padding: 10px 0;
  letter-spacing: 3px;
  color: #fff;
}

.call-to-action-right h2 {
  font-size: 20px;
  padding: 10px 0;
  letter-spacing: 3px;
  color: #fff;
}

.go-to {
  position: relative;
  display: flex;
  justify-content: center;
}

.go-to svg {
  position: relative;
  margin-left: 9px;
  margin-top: 15px;
}

.return-text {
  margin-bottom: 6em;
  font-size: 16px;
  line-height: 199.8%;
  color: #E77160;
}

.return-text a {
  font-family: 'Noto Sans JP';
  font-weight: 400;
  display: flex;
  color: #E77160;
}

.return-text p {
  font-family: 'Noto Sans JP';
  font-weight: 400;
}
.return-text svg {
    margin-left: 12px;
    margin-top: 10px;
}

.mobile-fixed-links {
  display: none;
}

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

  /** FOOTER */
  .footer-items {
    justify-content: center;
  }

  .footer .footer-list-1 {
    margin-left: unset;
  }

  .mobile-fixed-links {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
	z-index: 10;
  }

  .mobile-fixed-links>a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    height: 44px;
    font-size: 12px;
    line-height: 16.72px;
    color: #fff;
    letter-spacing: 0.035em;
  }

  .mobile-fixed-links a:first-child {
    background: #F4D764;
    color: #3f3f3f;
  }

  .mobile-fixed-links a:nth-child(2) {
    background: #445476;
  }

  .mobile-fixed-links a:last-child {
    background: #E77160;
  }

  /** FOOTER ENDS */

  .return-text {
    margin-bottom: 4em;
  }

  .call-to-action-left,
  .call-to-action-right {
    height: 94px !important;
    padding: unset !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

  }

  .call-to-action-left h2,
  .call-to-action-right h2 {
    padding-bottom: 0 !important;
  }
}

.return-text svg {
  margin-left: 12px;
  margin-top: 10px;
}

/** morfilic */
.mfp-counter {
  display: none;
}

.mfp-arrow {
  margin-top: unset !important;
  transform: translateY(-50%);
  opacity: 1 !important;
}

.mfp-arrow-left {
  background: url('/wp-content/uploads/2022/09/Vector.png') no-Repeat top left !important;
  width: 15px !important;
  height: 27px !important;
  margin-left: 10px !important;
}

.mfp-arrow-right {
  background: url('/wp-content/uploads/2022/09/Vector-1.png') no-Repeat top right !important;
  width: 15px !important;
  height: 27px !important;
  margin-right: 10px !important;
}

.mfp-arrow-left::before,
.mfp-arrow-right::before {
  display: none !important;
  content: ''
}

.mfp-arrow-left::after,
.mfp-arrow-right::after {
  display: none !important;
  content: ''
}

@media screen and (max-width: 767px) {
	.call-to-action-right {
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.36);
}
}