/* ===========================
   Reset & Base
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color:var(--gray700);
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
hr{
  margin: 20px auto;
}
.bold {
  font-weight: 600;
}
.center{
  text-align: center;
  margin: 0 auto;
}
.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sp-none{
  display: none;
}
.right{
  text-align: right;
}
.left{
  text-align: left;
}
.mt10 {
    margin-top: 10px;
}
.mb10 {
    margin-bottom: 10px;
}
.mt20 {
    margin-top: 20px;
}
.mb20 {
    margin-bottom: 20px;
}
.mt60 {
    margin-top: 60px;
}
.mb60 {
    margin-bottom: 60px;
}
@media (min-width: 768px) {
  hr{
    margin: 40px auto;
  }
.sp-none{
  display: block;
}
}
/* ===========================
   Background
=========================== */
@media (min-width: 768px) {
  .bg{
    position: relative;
    overflow: hidden;
  }
  .bg::before{
    content: '';
    background: url('../images/icon_round.svg') no-repeat center center/cover;
    width: 974px;
    height: 974px;
    border-radius: 50%;
    opacity: .07;
    top: 20px;
    left: 65%;
    display: block;
    position: absolute;
    z-index: -1;
  }
  .bg-right,
  .bg-left{
    position: relative;
    overflow: hidden;
  }
  .bg-right::before{
    content: '';
    background: url('../images/icon_round.svg') no-repeat center center/cover;
    width: 974px;
    height: 974px;
    border-radius: 50%;
    opacity: .07;
    top: 20px;
    left: 50%;
    display: block;
    position: absolute;
    z-index: -1;
  }
  .bg-left::after{
    content: '';
    background: url('../images/icon_round.svg') no-repeat center center/cover;
    width: 974px;
    height: 974px;
    border-radius: 50%;
    opacity: .07;
    top: 0;
    right: 50%;
    display: block;
    position: absolute;
    z-index: -1;
  }
}
/* ===========================
   Colors
=========================== */
:root{
  --MS_blue: #006EB2;
  --MS_black: #221815;
  --MS_blue_light: #1A92DC;
  --MS_blue_dark: #23577D;
  --blue000: #F6FBFF;
  --blue100: #E6F0F7;
  --blue200: #C4DDED;
  --blue300: #84BEE2;
  --blue400: #1A92DC;
  --blue500: #006EB2;
  --blue800: #2B5A7C;
  --gray000: #FCFCFC;
  --gray020: #F5F5F5;
  --gray050: #EDEDED;
  --gray100: #DEDEDE;
  --gray200: #CCCCCC;
  --gray300: #ABABAB;
  --gray400: #999999;
  --gray500: #787878;
  --gray600: #666666;
  --gray700: #454545;
  --gray800: #333333;
  --gray900: #121212;
  --gold900: #4E341B;
  --gold800: #856220;
  --gold550: #B69200;
  --gold500: #BF923D;
  --gold400: #D7B94A;
  --gold300: #F4E683;
  --gold200: #FFFBE6;
  --gold100: #FFFCF2;
  --gold000: #FFFDF7;
  --wood000: #FAF8F6;
  --wood800: #462809;
  --wood600: #6B492E;
  --wood300: #DEB794;
  --wood200: #EFE9E3;
  --wood100: #F8F2ED;
  --wood000: #FAF8F6;
  --white: #ffffff;
}
.blue_dark{
  color: var(--MS_blue_dark);
}
.note{
  color: var(--gray600);
  font-size: 14px;
  font-weight: normal;
}
.clearfix::after {
   content: " ";
   visibility: hidden;
   display: block;
   height: 0;
   clear: both;
}
/* ===========================
   Containers
=========================== */
.container{
	width: 100%;
	margin: 0 auto;
  padding: 0 20px;
}
.sp{
  display: block;
}
.tb{
  display: none;
}
.pc{
  display: none;
}
#content {
  margin: 80px auto;
}
#content .container{
  padding: 30px 20px 0;
}
.main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media (min-width: 768px) {
  .sp{
    display: none;
  }
  .tb{
    display: none;
  }
  .pc{
    display: block;
  }
  #content .container{
    margin: 0 auto;
    padding: 30px 20px 0;
  }
   .main {
      flex-direction: row;
      gap: 10px;
   }
}
@media (min-width: 820px) {
  .tb{
    display: block;
  }
}
@media (min-width: 1240px) {
  .container{
    width: 1240px;
    margin: 0 auto;
    padding: 0;
}
}
@media (min-width: 1265px) {
  #content {
  margin-top: 80px;
  margin-bottom: 80px;
  }
}
/* ===========================
   Boxes
=========================== */
/*  box-cards: pefectfitting */
.box-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.box-card {
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
  padding: 15px;
}
.box-card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.box-text {
  font-size: 14px;
  color: #0078C3;
  font-weight: bold;
  margin: 7px auto;
}
.box-note {
  font-size: 14px;
  margin: 20px 0;
  color: #666;
}
@media (min-width: 768px) {
  .box-cards {
    gap: 20px;
  }
  .box-card {
    width: calc(96% / 3);
    margin-bottom: 20px;
  }
  .box-text{
    font-size: 28px;
  }
}
/* ===========================
   Titles, texts
=========================== */
/* 見出し */
h1, h2, h3, h4 {
  font-weight: bold;
  line-height: 1.4;
  color: #222;
}
.title-wrap {
   position: relative;
}
.title-image {
   position: absolute;
   top: 60px;
   right: 0;
  z-index: -1;
}
.title-image img {
  width: 100%;
  max-width: 90%;
  margin: 0 0 1.5rem auto;
}
.title-text {
   display: flex;
   flex-direction: column;
   padding: 330px 0 0;
}
.title-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.title-name {
  font-size: 16px;
  color: var(--gray600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.title-name span{
  font-size: 14px;
}
.title-name ul{
  list-style: disc;
  margin-left: 30px;
  font-size: 15px;
  font-weight: 600;
}
.title-box{
  text-align: left;
}
.title-tag {
  font-size: 18px;
  color: var(--MS_black);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.title-copy {
  font-size: 36px;
  font-weight: 700;
   line-height: 1.3;
  background-image: linear-gradient(175deg, #0376C9, #4EB5FF);
  color: transparent;
  background-clip: text;
   margin-bottom: 30px;
}
.title-tag.white,
.title-copy.white {
  color: var(--white);
}
.title-sub{
  font-size: 24px;
  color: var(--MS_blue);
  font-weight: bold;
  margin-bottom: 20px;
}
.description{
  font-size: 15px;
  color: #383838;
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 1.8;
}
@media (min-width: 821px) {
  .title-image {
    overflow: hidden;
  }
  .title-image img {
    max-width: 100%;
   max-height: 1080px;
   margin-right: -80px;
  }
  .title-text {
   height: 880px;
   justify-content: center;
   padding-top: 8rem;
}
  .title-title {
    font-size: 54px;
  }
   .title-name {
   font-size: 22px;
   margin-top: 6rem;
  color: #383838;
   }
   .title-name span{
   font-size: 18px;
   }
  .title-name ul{
    font-size: 22px;
    margin-top: 20px;
  }
  .title-tag {
    font-size: 22px;
  }
  .title-copy {
    font-size: 48px;
  line-height: 1.3;
  }
.title-sub{
  font-size: 32px;
  margin: 60px 0 30px;
}
.description{
  font-size: 16px;
}
}
@media (min-width: 1024px) {
    .title-copy{
    font-size: 60px;
   letter-spacing: -0.1rem;
    }
}
/* ===========================
   Buttons
=========================== */
/* ボタン共通 */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-align: center;
  transition: background 0.3s ease;
}
.btn:hover {
  background-color: (--blue200);
}
.entry-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}
.btn-link{
  border: 1px solid var(--MS_blue);
  color: var(--MS_blue);
  position: relative;
  width: 90%;
  max-width: 154px;
  padding: 5px 10px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 3px 10px;
  margin: 10px auto 0;
  transition: background 0.3s ease;
}
.btn-info{
  border: 1px solid var(--white);
  position: relative;
  width: 90%;
  max-width: 192px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  margin: 20px auto 30px;
}/*
.btn-info span::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background: url(../images/arrow_right_white.svg) no-repeat right;
  position: absolute;
  left: -35px;
  bottom: 50%;
  margin-bottom: -10px;
}*/
.btn-entry {
  background-color: var(--white);
  color: var(--MS_blue);
  font-size: 21px;
  font-weight: 600;
  transition: background 0.3s;
  width: 90%;
  display: flex;
  justify-content: center;
}
.btn-info img,
.btn-entry img,
.btn-blue img{
  margin-right: 10px;
}
.btn-entry span::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background: url(../images/arrow_right_blue.svg) no-repeat right;
  position: absolute;
  left: -35px;
  bottom: 50%;
  margin-bottom: -10px;
}
.btn-entry:hover {
  background-color: var(--white);
  color: var(--MS_blue);
}
.btn-blue{
  background: var(--MS_blue);
  color: var(--white);
  display: flex;
  justify-content: center;
  width: 90%;
  margin: 20px auto 0;
  width: 326px;
  max-width: 100%;
  border-radius: 50px;
}
.btn-line{
  border: 1px solid var(--white);
}
.btn-back {
  display: inline-block;
  background: var(--MS_blue);
  color: var(--white);
  border: 1px solid var(--MS_blue);
  padding: 5px 30px 5px 15px;
  border-radius: 30px;
  font-size: 14px;
  transition: background 0.3s;
  position: relative;
}
.btn-back:after {
    content: "";
    display: block;
    width: 7px;
    height: 12px;
    background: url(../images/arrow_right_white.svg.svg) no-repeat right;
    position: absolute;
    right: 10px;
    bottom: 50%;
    margin-bottom: -6px;
}
.btn-back:hover {
  background: var(--white);
  color: var(--MS_blue);
}
.btn-back:hover:after {
    background: url(../images/icon_arrow_right_white.svg) no-repeat right;
}
@media (min-width: 768px) {
.entry-buttons {
    flex-direction: column;
}
  .btn-entry{
    font-size: 24px;
    width: 360px;
  }
}
/* ===========================
   Header
=========================== */
.site-header {
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  max-height: 60px;
}
.site-header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: space-between;
  padding: 0;
}
.site-header .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.2rem;
  padding: 5px 10px;
}
.site-header .logo img {
  max-width: 168px;
  height: auto;
}
.site-header .logo span {
  font-size: 0.58rem;
  margin-top: 3px;
  color: var(--MS_blue_light);
  border: 1px solid var(--MS_blue);
  width: 100%;
  text-align: center;
  display: block;
}
.top-logo .site-logo {
  content: url("/wp-content/themes/MS-recruit/images/logo_white.svg");
}
.site-header.scrolled .site-logo {
  content: url("/wp-content/themes/MS-recruit/images/logo.svg");
}
.logo:not(.top-logo) .site-logo {
  content: url("/wp-content/themes/MS-recruit/images/logo.svg");
}
.header-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-links-sp {
  display: flex;
}
.top-links-sp li {
  position: relative;
  cursor: pointer;
}
.top-links-sp li a {
  display: flex;
  font-size: 0.75rem;
  text-decoration: none;
  color: var(--white);
  padding: 20px 10px;
  font-weight: bold;
  min-width: 90px;
  justify-content: center;
  height: 60px;
  align-items: center;
}
.top-links-sp li a.top-job {
  display: none;
}
.top-links-sp li.sub a{
  display: none;
}
.top-links-sp li a.top-entry {
  position: relative;
  background-color: var(--MS_blue);
}
.top-links-sp li a.top-entry:hover {
  background-color: var(--MS_blue_light);
}
.top-links-sp li ul {
  display: none;
}/*
.menu-toggle {
  background: url('../images/icon_menu.svg') no-repeat center;
  background-size: 24px;
  width: 60px;
  height: 60px;
  background-color: var(--MS_black);
  border: none;
  cursor: pointer;
  z-index: 9;
}*/
.menu-toggle {
  position: relative;
  width: 60px;
  height: 60px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  background-color: var(--MS_black);
}
.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
  content: '';
  display: block;
  height: 2px;
  width: 24px;
  background: white;
  margin: 4px auto;
  transition: 0.3s ease;
}
.menu-toggle span {
  background: white;
}
.menu-toggle.active::before {
  transform: translateY(10px) rotate(45deg);
}
.menu-toggle.active::after {
  transform: translateY(-10px) rotate(-45deg);
}
.menu-toggle.active span {
  opacity: 0;
}
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ★ オーバーレイ背景 */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.7);
  z-index: 0;
  transition: opacity 0.3s ease;
}
.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* main-nav */
.main-nav {
  display: none;
}
.main-nav.active {
  display: block;
  background: #fff;
  width: 80%;
  height: 100vh;
  position: absolute;
  color: var(--MS_blue);
  top: 0;
  right: 0;
  padding-top: 70px;
}
.main-nav li {
  position: relative;
  border-bottom: 1px solid var(--gray100);
  font-weight: 600;
}
.main-nav li.sub > ul {
  padding: 0 0 0 20px;
}
.main-nav li.sub.open > ul {
  display: block;
}
.main-nav li.sub ul li {
  border: none;
  font-weight: normal;
}
.main-nav li a{
  color: var(--MS_blue);
  padding: 10px;
  display: block;
}
.main-nav li.sub ul li a::after,
.main-nav li a::after{
  content: '';
  width: 0.65em;
  height: 0.65em;
  border: 0.1em solid var(--MS_blue_light);
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: 20px;
  box-sizing: border-box;
}
.main-nav li.sub ul li a::before,
.main-nav li a::before{
  content: '';
  display: inline-block;
  vertical-align: middle;
  color: var(--MS_blue_light);
  line-height: 1;
  position: relative;
  width: 1em;
  height: 1.5px;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -0.05em;
}
.main-nav li.sub ul li a{
  padding: 5px;
}
.main-nav.active .sp{
    display: block;
}
.main-nav li.sub.sp ul a::after,
.main-nav li.sub.sp ul a::before,
.main-nav li.sub a::after,
.main-nav li.sub a::before {
  content: none;
}
.main-nav li.sub.sp ul a::after{
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: url('../images/icon_exit.svg') no-repeat center right/cover;
  margin-top: -10px;
  border: none;
  transform: none;
}
@media screen and (min-width: 768px) {
  .top-links-sp li.sp{
    display: block;
  }
}
@media screen and (min-width: 1265px) {
  .site-header {
    max-height: 72px;
  }
  .site-header .container {
    justify-content: space-between;
    align-items: center;
  }
  .site-header .logo {
    align-items: center;
    padding: 5px 20px;
  }
  .site-header .logo span {
    font-size: 0.6rem;
    margin-top: 6px;
    padding: 3px;
  }
  .site-header .logo img {
    max-width: 218px;
    height: auto;
  }
  .menu-toggle {
    display: none;
  }
  .top-links-sp li a {
    font-size: 1rem;
    max-width: 130px;
    min-width: 130px;
    padding: 25px 10px;
    height: 72px;
  }
  .top-links-sp li a.top-job {
    display: flex;
    background: var(--MS_black);
  }
  .top-links-sp li ul{
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 260px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .top-links-sp li ul li:first-child{
    border-bottom: 1px solid var(--gray100);
  }
  .top-links-sp li ul a{
    color: var(--MS_blue);
    padding: 10px 20px;
    max-width: 100%;
    font-weight: 600;
    height: auto;
    justify-content: flex-start;
    font-size: 15px;
  }
  .top-links-sp li.open > ul {
    display: block;
  }
  .top-links-sp li a.top-entry{
    z-index: auto;
  }
  .top-links-sp li.sp{
    display: none;
  }
  .top-links-sp li.sub a{
    display: flex;
  }
  /* main-nav */
  .main-nav {
    display: block;
  }
  .main-nav li.sub ul li a {
    font-weight: normal;
    font-size: 0.9rem;
    color: #006EB2;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .main-nav ul {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .main-nav li a {
    font-weight: 600;
    font-size: 0.96rem;
    color: var(--MS_blue);
    text-decoration: none;
    position: relative;
    padding: 20px 10px;
  }
  .main-nav li a::before,
  .main-nav li a::after,
  .main-nav li.sub ul li a::before, 
  .main-nav li.sub ul li a::after{
    content: none;
  }
  .main-nav li.sub a::after {
    content: '';
    transition: width 0.3s;
    position: absolute;
    bottom: 10px;
    left: 50%;
    margin-left: -6px;
    display: inline-block;
    vertical-align: middle;
    color: var(--MS_blue);
    line-height: 1;
    width: 9px;
    height: 9px;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
    opacity: 0.5;
    top: auto;
    bottom: 0;
  }
  .main-nav li ul{
    position: relative;
    background: #fff;
    padding: 20px;
  }
  .main-nav li {
    border: none;
  }
  .main-nav li.sub > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--white);
    border-radius: 14px;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 0;
    margin-top: 0;
  }
  .main-nav li.sub:hover > ul {
    display: block;
  }
  .main-nav li.sub ul li {
    padding: 0;
    border-bottom: 1px solid var(--gray100);
    position: relative;
  }
  .main-nav li.sub ul li:last-child {
    border-bottom: none;
  }
  .main-nav li.sub ul li a {
    display: block;
    padding: 10px 20px;
    color: var(--MS_blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
  }
  .top-links-sp li ul li::after,
  .main-nav li.sub ul li::after{
    content: '';
    width: 0.65em;
    height: 0.65em;
    border: 0.1em solid var(--MS_blue_light);
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: 20px;
    box-sizing: border-box;
  }
  .top-links-sp li ul li::before,
  .main-nav li.sub ul li::before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    color: var(--MS_blue_light);
    line-height: 1;
    position: relative;
    width: 1em;
    height: 0.1em;
    background: currentColor;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -0.05em;
  }
  .main-nav li.sub ul li a:hover {
    color: var(--blue300);
  }
  .main-nav li.open > ul {
    display: block;
  }
}
@media screen and (min-width: 1352px) {
  .main-nav ul {
    gap: 32px;
  }
}

/* ===========================
   Slider (top, interview)
=========================== */
.team {
  padding: 80px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.team .title-copy{
  font-size: 42px;
}
.team-list{
  display: none;
}
/* members card */
.members {
  margin-bottom: 50px;
}
.member {
  width: 270px;
  border-radius: 12px;
  margin-right: 20px;
}
.slick-slide {
    float: none;/*
    display: flex;
    flex-direction: column;*/
}
.slick-slider .slick-track{
	overflow: hidden;
	border-radius: 10px;
	display: flex;
	flex-direction: row;
    align-items: stretch;
}
.slick-slider .slick-list {
    overflow: visible;
}
.slick-prev:before,
.slick-next:before{
    display: none;
}
.slick-prev,
.slick-next{
    background: url('../images/arrow_round_right.svg') no-repeat center center/cover #fff;
    width: 60px;
    height: 60px;
    right: -70px;
    border-radius: 50%;
    opacity: .75;
    z-index: 999;
    margin-top: -60px;
}
.slick-prev{
    left: -70px;
    opacity: 0.5;
    background: url('../images/arrow_round_left.svg') no-repeat center center/cover #fff;
}
.slick-next:hover, .slick-next:focus{
  background: url('../images/arrow_round_right.svg') no-repeat center center/cover #fff;
  opacity: 1;
}
.slick-prev:hover, .slick-prev:focus{
  background: url('../images/arrow_round_left.svg') no-repeat center center/cover #fff;
  opacity: 1;
}
.member-img{
  position: relative;
  overflow: hidden;/*
  aspect-ratio: 3 / 4;*/
}
.member-img img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  object-position: top;
  display: block;
}/*
.member span {
    font-size: 12px;
    position: absolute;
    left: 15px;
    top: 10px;
    color: var(--black);
}
.member img {
  border-radius: 8px;
  width: 100%;
  height: auto;
}*/
.member-prof{
    font-size: 13px;
    padding: 15px;
    border-radius: 12px 0 0 0;
    background: var(--white);
    position: absolute;
    right: 0;
    bottom: -1px;
    max-width: 200px;
    text-align: left;
    margin-top: -50px;
    z-index: 2;/*
    position: relative;
    margin-top: -120px;
    z-index: 2;*/
    float: right;
}

.member h4 {
  font-size: 22px;
  color: var(--MS_blue);
  margin-bottom: 5px;
  color: var(--MS_blue);
  position: relative;
  padding-right: 50px;
}
.member h4::after {
  content: '';
  width: 0.65em;
  height: 0.65em;
  border: 0.1em solid var(--MS_blue_light);
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: 20px;
  box-sizing: border-box;
}
.member h4::before{
  content: '';
  display: inline-block;
  vertical-align: middle;
  color: var(--MS_blue_light);
  line-height: 1;
  position: relative;
  width: 1em;
  height: 1.5px;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -0.05em;
}
.member-title{
    font-weight: 600;
    margin: 10px 0;
    display: block;
    text-align: left;
}
@media (min-width: 768px) {
  .members {
      margin-bottom: 50px;
  }
  .member {
      width: 320px;
  }
  .team .btn-blue{
      margin: 20px auto;
  }
  .team-box {
      margin-bottom: 20px;
  }
  .team-list{
      display: flex;
      margin-top: 20px;
      align-items: center;
      gap: 20px;
  }
  .member-img{
    aspect-ratio:inherit;
  }
  .team-list ul {
  display: flex;
  flex-direction: row;
  gap: 10px;
  }
  .team-list ul li a{
  display: block;
  font-weight: bold;
  font-size: 14px;
  color: #006EB2;
  padding: 5px 10px;
  border: 1px solid #006EB2;
  border-radius: 60px;
  background-color: #DFF5FF;
  }
  .member-title{
      font-weight: bold;
      display: block;
      text-align: left;
      margin-top: 20px;
  }
}
/* ===========================
   Footer
=========================== */
.footer{
  background-image: linear-gradient(180deg, #63bcdc, #0166AE);
}
/* entry */
.entry {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 6rem 1rem 0;
  overflow: hidden;
}
.entry-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: block;
}
.entry h2{
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 86px;
  color: var(--white);
   letter-spacing: 0.8rem;
}
.entry-box {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  gap: 20px;
}
.entry-copy {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
.entry-copy .btn-info {
    max-width: 300px;
}
.entry-copy .btn-info span{
    font-size: 18px;
}
/* News */
.entry-info {
  margin: 60px auto 40px;
}
.entry-info a{
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: column; 
}
.entry-info li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.entry-info p {
  margin-top: 15px;
}
.entry-info li span{
    font-weight: 600;
}
.notice-link {
  display: flex;
  gap: 10px;
  align-items: center;
}
/* Banner */
.mid-career-box {
  margin: 32px auto 0;
  background-color: var(--MS_blue_dark);
  overflow: hidden;
  border: 1px solid var(--white);
  max-width: 400px;
}
.mid-career-box a {
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  color: var(--white);
  flex-direction: column;
}
.mid-career-text {
  padding: 15px 10px;
  height: 87px;
  text-align: center;
  font-size: 11px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mid-career-text h3 {
  font-size: 22px;
  color: var(--white);
}
.mid-career-img img {
  width: 100%;
  height: 83px;
  object-fit: cover;
  display: block;
}
@media screen and (min-width: 800px) {
.mid-career-box{
  max-width: 900px;
  margin: 0 auto;
}
.mid-career-box a{
  align-items: center;
  justify-content: space-between;
}
.mid-career-img {
    max-width: 360px;
}
.mid-career-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mid-career-box a{
  flex-direction: row;
  height: 120px
}
.mid-career-text{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 18px;
}
.mid-career-text h3{
  font-size: 32px;
  text-align: left;
}
}
@media screen and (min-width: 1024px) {
.mid-career-text{
  margin-left: 30px;
}
}
/* footer */
.site-footer {
  color: #fff;
  padding: 60px 20px 20px;
  font-size: 0.9rem;
}
.footer-grid {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 40px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 10px;
}
.site-footer .logo span {
  font-size: 0.58rem;
  margin-top: 3px;
  color: var(--white);
  border: 1px solid var(--white);
  width: 100%;
  text-align: center;
  display: block;
}
.footer-cards{
  display: none;
}
.footer-grid ul{
  margin-top: 10px;
  margin-left: 10px;
}
.footer-logo li{
  list-style: disc;
  margin-left: 30px;
  padding: 5px;
}
.footer-bottom {
  text-align: center;
  font-size: 0.6rem;
  color: #ccf2ff;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
.footer{
  background-image: linear-gradient(180deg, #56F6FF, #0166AE,);
}
.entry-wave {
  height: 150px;
}
  .footer .container{
    margin-top: 150px;
    width: 100%;
  }
  .entry h2 {
    margin-bottom: 50px;
}
  .footer-grid{
    flex-direction: column;
  }
.entry-copy {
    font-size: 28px;
    text-align: left;
}
  .entry-box{
    flex-direction: row;
  }
  .entry-info a{
    flex-direction: row;
    align-items: center;
    padding: 30px 0;
  }
  .entry-info li{
    flex-direction: row;
  }
  .entry-info li span{
    margin-right: 15px;
  }
  .entry-info p{
    margin: 0;
  }
.btn-info{
  margin: 20px 0;
}
}
@media screen and (min-width: 1124px) {
  .footer .container{
    width: 1124px;
  }
  .site-footer {
    max-width: 100%;
    width: 1128px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 60px 0 20px
  }
  .footer-grid{
    flex-direction: row;
  }
  .footer-logo{
    width: auto;
  }
  .footer-cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    min-width: 780px;
    gap: 0 40px;
  }
  .footer-card {
    flex: 1 1 180px;
    border-top: 1px solid var(--white);
    padding-top: 30px;
    padding-bottom: 10px;
  }
  .footer-card h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: bold;
    padding-bottom: 5px;
    color: var(--white);
  }
  .footer-card ul {
    list-style: none;
    padding: 0;
  }
  .footer-card ul li {
    margin: 8px 0;
  }
  .footer-card ul li a {
    color: #e0f0ff;
    font-size: 0.9rem;
    transition: 0.2s;
  }
  .footer-card ul li a:hover {
    text-decoration: underline;
    color: #ffffff;
    }
  .footer-card:nth-last-child(-n + 2) {
      border-bottom: 1px solid var(--white);
    }
  .footer-bottom {
    font-size: 0.8rem;
    text-align: left;
  }
}
/* ===========================
   News
=========================== */
.news{
  border-bottom: 1px solid #ccc;
}
.news-box{
  border-top: 1px solid #ccc;
  font-size: 15px;
  margin: 0;
  padding: 0;
}
.news-box .news-title {
  font-weight: bold;
  font-size: 20px;
  padding: 20px 0;
  color: var(--MS_blue_dark);
}
.news-box .news-text{
  font-size: 15px;
  margin: 0;
  padding: 0 0 20px;
}
.news-box .news-text h3{
  font-size: 18px;
  margin-bottom: 20px;
}
.news-box p {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .news-box {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: start;
    padding: 15px 0;
  }
   .news-box .news-title {
   padding: 15px 20px;
      margin: 0;
   }
  .news-box .news-text {
    font-size: 15px;
   padding: 18px 0 0 20px;
  }
   .news-box .news-text h3{
   font-size: 19px;
   }
}
/* ===========================
   Breadcrumbs
=========================== */
#breadcrumbs {
  padding: 4px 12px;
  color: #999999;
  font-size: 11px;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  }
#breadcrumbs .breadcrumb_last {
    color: #454545;
}
  @media (min-width: 768px) {
    #breadcrumbs {
        padding: 10px 20px;
        font-size: 12px;
    }
  }